blob: a2e92fe0bc78aaa81aa563166b29672c241a47b8 [file] [log] [blame]
talig8e9c0652017-12-20 14:30:43 +02001/*!
2 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
13 * or implied. See the License for the specific language governing
14 * permissions and limitations under the License.
15 */
16
17import RestAPIUtil from 'nfvo-utils/RestAPIUtil.js';
18import Configuration from 'sdc-app/config/Configuration.js';
19import {actionTypes} from './UsersConstants.js';
20
21function getUserId() {
ilanap785dc1e2018-01-08 15:50:18 +020022 let catalogApiHeaders = Configuration.get('CatalogApiHeaders');
23 let User = catalogApiHeaders && catalogApiHeaders.userId;
talig8e9c0652017-12-20 14:30:43 +020024 let userId = User && User.value ? User.value : '';
25 return userId;
26}
27
28function baseUrl() {
ilanap785dc1e2018-01-08 15:50:18 +020029 const restCatalogPrefix = Configuration.get('restCatalogPrefix');
30 return `${restCatalogPrefix}`;
talig8e9c0652017-12-20 14:30:43 +020031}
32
33
34function fetchUsersList() {
35 const url = '/v1/user/users';
36 return RestAPIUtil.fetch(`${baseUrl()}${url}`);
37}
38
39
40
41const UsersActionHelper = {
42 fetchUsersList(dispatch) {
43 fetchUsersList().then(response => {
44 dispatch({
45 type: actionTypes.USERS_LIST_LOADED,
46 usersList: response
47 });
48
49 let userId = getUserId();
50 let userInfo = response.find(user => user.userId === userId);
51 dispatch({
52 type: actionTypes.GOT_USER_INFO,
53 userInfo
54 });
55
56 });
57
58 }
59};
60
61export default UsersActionHelper;