[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / licenseModel / licenseAgreement / LicenseAgreementActionHelper.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 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';
20 import LicenseModelActionHelper from 'sdc-app/onboarding/licenseModel/LicenseModelActionHelper.js';
21
22 function baseUrl(licenseModelId, version) {
23         const restPrefix = Configuration.get('restPrefix');
24         const {id: versionId} = version;
25         return `${restPrefix}/v1.0/vendor-license-models/${licenseModelId}/versions/${versionId}/license-agreements`;
26 }
27
28 function fetchLicenseAgreementList(licenseModelId, version) {
29         return RestAPIUtil.fetch(`${baseUrl(licenseModelId, version)}`);
30 }
31
32 function postLicenseAgreement(licenseModelId, licenseAgreement, version) {
33         return RestAPIUtil.post(baseUrl(licenseModelId, version), {
34                 name: licenseAgreement.name,
35                 description: licenseAgreement.description,
36                 licenseTerm: licenseAgreement.licenseTerm,
37                 requirementsAndConstrains: licenseAgreement.requirementsAndConstrains,
38                 addedFeatureGroupsIds: licenseAgreement.featureGroupsIds
39         });
40 }
41
42 function putLicenseAgreement(licenseModelId, previousLicenseAgreement, licenseAgreement, version) {
43         const {featureGroupsIds = []} = licenseAgreement;
44         const {featureGroupsIds: prevFeatureGroupsIds = []} = previousLicenseAgreement;
45         return RestAPIUtil.put(`${baseUrl(licenseModelId, version)}/${licenseAgreement.id}`, {
46                 name: licenseAgreement.name,
47                 description: licenseAgreement.description,
48                 licenseTerm: licenseAgreement.licenseTerm,
49                 requirementsAndConstrains: licenseAgreement.requirementsAndConstrains,
50                 addedFeatureGroupsIds: featureGroupsIds.filter(featureGroupId => prevFeatureGroupsIds.indexOf(featureGroupId) === -1),
51                 removedFeatureGroupsIds: prevFeatureGroupsIds.filter(prevFeatureGroupsId => featureGroupsIds.indexOf(prevFeatureGroupsId) === -1)
52         });
53 }
54
55 function deleteLicenseAgreement(licenseModelId, licenseAgreementId, version) {
56         return RestAPIUtil.destroy(`${baseUrl(licenseModelId, version)}/${licenseAgreementId}`);
57 }
58
59 export default {
60
61         fetchLicenseAgreementList(dispatch, {licenseModelId, version}) {
62                 return fetchLicenseAgreementList(licenseModelId, version).then(response => dispatch({
63                         type: licenseAgreementActionTypes.LICENSE_AGREEMENT_LIST_LOADED,
64                         response
65                 }));
66         },
67
68         openLicenseAgreementEditor(dispatch, {licenseModelId, licenseAgreement, version}) {
69                 FeatureGroupsActionHelper.fetchFeatureGroupsList(dispatch, {licenseModelId, version});
70                 dispatch({
71                         type: licenseAgreementActionTypes.licenseAgreementEditor.OPEN,
72                         licenseAgreement
73                 });
74         },
75
76         closeLicenseAgreementEditor(dispatch) {
77                 dispatch({
78                         type: licenseAgreementActionTypes.licenseAgreementEditor.CLOSE
79                 });
80         },
81
82
83         saveLicenseAgreement(dispatch, {licenseModelId, previousLicenseAgreement, licenseAgreement, version}) {
84                 if (previousLicenseAgreement) {
85                         return putLicenseAgreement(licenseModelId, previousLicenseAgreement, licenseAgreement, version).then(() => {
86                                 dispatch({
87                                         type: licenseAgreementActionTypes.EDIT_LICENSE_AGREEMENT,
88                                         licenseAgreement
89                                 });
90                         });
91                 }
92                 else {
93                         return postLicenseAgreement(licenseModelId, licenseAgreement, version).then(response => {
94                                 dispatch({
95                                         type: licenseAgreementActionTypes.ADD_LICENSE_AGREEMENT,
96                                         licenseAgreement: {
97                                                 ...licenseAgreement,
98                                                 id: response.value
99                                         }
100                                 });
101                         });
102                 }
103         },
104
105         deleteLicenseAgreement(dispatch, {licenseModelId, licenseAgreementId, version}) {
106                 return deleteLicenseAgreement(licenseModelId, licenseAgreementId, version).then(() => {
107                         dispatch({
108                                 type: licenseAgreementActionTypes.DELETE_LICENSE_AGREEMENT,
109                                 licenseAgreementId
110                         });
111                 });
112         },
113
114         selectLicenseAgreementEditorTab(dispatch, {tab}) {
115                 dispatch({
116                         type: licenseAgreementActionTypes.licenseAgreementEditor.SELECT_TAB,
117                         tab
118                 });
119         },
120
121         switchVersion(dispatch, {licenseModelId, version}) {
122                 LicenseModelActionHelper.fetchLicenseModelById(dispatch, {licenseModelId, version}).then(() => {
123                         this.fetchLicenseAgreementList(dispatch, {licenseModelId, version});
124                 });
125         }
126 };