talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 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() { |
ilanap | 785dc1e | 2018-01-08 15:50:18 +0200 | [diff] [blame] | 22 | let catalogApiHeaders = Configuration.get('CatalogApiHeaders'); |
| 23 | let User = catalogApiHeaders && catalogApiHeaders.userId; |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 24 | let userId = User && User.value ? User.value : ''; |
| 25 | return userId; |
| 26 | } |
| 27 | |
| 28 | function baseUrl() { |
ilanap | 785dc1e | 2018-01-08 15:50:18 +0200 | [diff] [blame] | 29 | const restCatalogPrefix = Configuration.get('restCatalogPrefix'); |
| 30 | return `${restCatalogPrefix}`; |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 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; |