Add collaboration feature
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / users / UsersActionHelper.js
1 /*!
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
17 import RestAPIUtil from 'nfvo-utils/RestAPIUtil.js';
18 import Configuration from 'sdc-app/config/Configuration.js';
19 import {actionTypes} from './UsersConstants.js';
20
21 function getUserId() {
22         let attApiHeaders = Configuration.get('ATTApiHeaders');
23         let User = attApiHeaders && attApiHeaders.userId;
24         let userId = User && User.value ? User.value : '';
25         return userId;
26 }
27
28 function baseUrl() {
29         const restATTPrefix = Configuration.get('restATTPrefix');
30         return `${restATTPrefix}`;
31 }
32
33
34 function fetchUsersList() {
35         const url = '/v1/user/users';
36         return  RestAPIUtil.fetch(`${baseUrl()}${url}`);
37 }
38
39
40
41 const 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
61 export default UsersActionHelper;