AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 1 | /*! |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 2 | * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 3 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 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 |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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. |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 15 | */ |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 16 | import RestAPIUtil from 'nfvo-utils/RestAPIUtil.js'; |
| 17 | import Configuration from 'sdc-app/config/Configuration.js'; |
| 18 | import {actionTypes as licenseAgreementActionTypes} from './LicenseAgreementConstants.js'; |
| 19 | import FeatureGroupsActionHelper from 'sdc-app/onboarding/licenseModel/featureGroups/FeatureGroupsActionHelper.js'; |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 20 | import ItemsHelper from 'sdc-app/common/helpers/ItemsHelper.js'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 21 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 22 | function baseUrl(licenseModelId, version) { |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 23 | const restPrefix = Configuration.get('restPrefix'); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 24 | const {id: versionId} = version; |
| 25 | return `${restPrefix}/v1.0/vendor-license-models/${licenseModelId}/versions/${versionId}/license-agreements`; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 26 | } |
| 27 | |
| 28 | function fetchLicenseAgreementList(licenseModelId, version) { |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 29 | return RestAPIUtil.fetch(`${baseUrl(licenseModelId, version)}`); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 30 | } |
| 31 | |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 32 | function fetchLicenseAgreement(licenseModelId, licenseAgreementId, version) { |
| 33 | return RestAPIUtil.fetch(`${baseUrl(licenseModelId, version)}/${licenseAgreementId}`); |
| 34 | } |
| 35 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 36 | function postLicenseAgreement(licenseModelId, licenseAgreement, version) { |
| 37 | return RestAPIUtil.post(baseUrl(licenseModelId, version), { |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 38 | name: licenseAgreement.name, |
| 39 | description: licenseAgreement.description, |
| 40 | licenseTerm: licenseAgreement.licenseTerm, |
| 41 | requirementsAndConstrains: licenseAgreement.requirementsAndConstrains, |
| 42 | addedFeatureGroupsIds: licenseAgreement.featureGroupsIds |
| 43 | }); |
| 44 | } |
| 45 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 46 | function putLicenseAgreement(licenseModelId, previousLicenseAgreement, licenseAgreement, version) { |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 47 | const {featureGroupsIds = []} = licenseAgreement; |
| 48 | const {featureGroupsIds: prevFeatureGroupsIds = []} = previousLicenseAgreement; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 49 | return RestAPIUtil.put(`${baseUrl(licenseModelId, version)}/${licenseAgreement.id}`, { |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 50 | name: licenseAgreement.name, |
| 51 | description: licenseAgreement.description, |
| 52 | licenseTerm: licenseAgreement.licenseTerm, |
| 53 | requirementsAndConstrains: licenseAgreement.requirementsAndConstrains, |
| 54 | addedFeatureGroupsIds: featureGroupsIds.filter(featureGroupId => prevFeatureGroupsIds.indexOf(featureGroupId) === -1), |
| 55 | removedFeatureGroupsIds: prevFeatureGroupsIds.filter(prevFeatureGroupsId => featureGroupsIds.indexOf(prevFeatureGroupsId) === -1) |
| 56 | }); |
| 57 | } |
| 58 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 59 | function deleteLicenseAgreement(licenseModelId, licenseAgreementId, version) { |
| 60 | return RestAPIUtil.destroy(`${baseUrl(licenseModelId, version)}/${licenseAgreementId}`); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | export default { |
| 64 | |
| 65 | fetchLicenseAgreementList(dispatch, {licenseModelId, version}) { |
| 66 | return fetchLicenseAgreementList(licenseModelId, version).then(response => dispatch({ |
| 67 | type: licenseAgreementActionTypes.LICENSE_AGREEMENT_LIST_LOADED, |
| 68 | response |
| 69 | })); |
| 70 | }, |
| 71 | |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 72 | fetchLicenseAgreement(dispatch, {licenseModelId, licenseAgreementId, version}) { |
| 73 | return fetchLicenseAgreement(licenseModelId, licenseAgreementId, version); |
| 74 | }, |
| 75 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 76 | openLicenseAgreementEditor(dispatch, {licenseModelId, licenseAgreement, version}) { |
| 77 | FeatureGroupsActionHelper.fetchFeatureGroupsList(dispatch, {licenseModelId, version}); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 78 | dispatch({ |
| 79 | type: licenseAgreementActionTypes.licenseAgreementEditor.OPEN, |
| 80 | licenseAgreement |
| 81 | }); |
| 82 | }, |
| 83 | |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 84 | closeLicenseAgreementEditor(dispatch) { |
| 85 | dispatch({ |
| 86 | type: licenseAgreementActionTypes.licenseAgreementEditor.CLOSE |
| 87 | }); |
| 88 | }, |
| 89 | |
| 90 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 91 | saveLicenseAgreement(dispatch, {licenseModelId, previousLicenseAgreement, licenseAgreement, version}) { |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 92 | if (previousLicenseAgreement) { |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 93 | return putLicenseAgreement(licenseModelId, previousLicenseAgreement, licenseAgreement, version).then(() => { |
ilanap | cb1d483 | 2017-09-27 11:41:19 +0300 | [diff] [blame] | 94 | this.fetchLicenseAgreementList(dispatch, {licenseModelId, version}); |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 95 | ItemsHelper.checkItemStatus(dispatch, {itemId: licenseModelId, versionId: version.id}); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 96 | }); |
| 97 | } |
| 98 | else { |
ilanap | cb1d483 | 2017-09-27 11:41:19 +0300 | [diff] [blame] | 99 | return postLicenseAgreement(licenseModelId, licenseAgreement, version).then(() => { |
| 100 | this.fetchLicenseAgreementList(dispatch, {licenseModelId, version}); |
| 101 | FeatureGroupsActionHelper.fetchFeatureGroupsList(dispatch, {licenseModelId, version}); |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 102 | ItemsHelper.checkItemStatus(dispatch, {itemId: licenseModelId, versionId: version.id}); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 103 | }); |
| 104 | } |
| 105 | }, |
| 106 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 107 | deleteLicenseAgreement(dispatch, {licenseModelId, licenseAgreementId, version}) { |
| 108 | return deleteLicenseAgreement(licenseModelId, licenseAgreementId, version).then(() => { |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 109 | dispatch({ |
| 110 | type: licenseAgreementActionTypes.DELETE_LICENSE_AGREEMENT, |
| 111 | licenseAgreementId |
| 112 | }); |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 113 | ItemsHelper.checkItemStatus(dispatch, {itemId: licenseModelId, versionId: version.id}); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 114 | }); |
| 115 | }, |
| 116 | |
| 117 | selectLicenseAgreementEditorTab(dispatch, {tab}) { |
| 118 | dispatch({ |
| 119 | type: licenseAgreementActionTypes.licenseAgreementEditor.SELECT_TAB, |
| 120 | tab |
| 121 | }); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 122 | } |
| 123 | }; |