blob: aadf8e030182969ca72fb5ef6cbe43142abb8d6b [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001/*!
Michael Landoefa037d2017-02-19 12:57:33 +02002 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
AviZi280f8012017-06-09 02:39:56 +03003 *
Michael Landoefa037d2017-02-19 12:57:33 +02004 * 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
AviZi280f8012017-06-09 02:39:56 +03007 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
Michael Landoefa037d2017-02-19 12:57:33 +020010 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
AviZi280f8012017-06-09 02:39:56 +030012 * 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 Landoefa037d2017-02-19 12:57:33 +020015 */
Michael Landoefa037d2017-02-19 12:57:33 +020016import RestAPIUtil from 'nfvo-utils/RestAPIUtil.js';
17import Configuration from 'sdc-app/config/Configuration.js';
18import {actionTypes as featureGroupsActionConstants} from './FeatureGroupsConstants.js';
Michael Landoefa037d2017-02-19 12:57:33 +020019import EntitlementPoolsActionHelper from 'sdc-app/onboarding/licenseModel/entitlementPools/EntitlementPoolsActionHelper.js';
20import LicenseKeyGroupsActionHelper from 'sdc-app/onboarding/licenseModel/licenseKeyGroups/LicenseKeyGroupsActionHelper.js';
talig8e9c0652017-12-20 14:30:43 +020021import ItemsHelper from 'sdc-app/common/helpers/ItemsHelper.js';
Michael Landoefa037d2017-02-19 12:57:33 +020022
AviZi280f8012017-06-09 02:39:56 +030023function baseUrl(licenseModelId, version) {
Michael Landoefa037d2017-02-19 12:57:33 +020024 const restPrefix = Configuration.get('restPrefix');
AviZi280f8012017-06-09 02:39:56 +030025 const {id: versionId} = version;
26 return `${restPrefix}/v1.0/vendor-license-models/${licenseModelId}/versions/${versionId}/feature-groups`;
Michael Landoefa037d2017-02-19 12:57:33 +020027}
28
talig8e9c0652017-12-20 14:30:43 +020029function fetchFeatureGroup(licenseModelId, featureGroupId, version) {
30 return RestAPIUtil.fetch(`${baseUrl(licenseModelId, version)}/${featureGroupId}`);
31}
32
Michael Landoefa037d2017-02-19 12:57:33 +020033function fetchFeatureGroupsList(licenseModelId, version) {
AviZi280f8012017-06-09 02:39:56 +030034 return RestAPIUtil.fetch(`${baseUrl(licenseModelId, version)}`);
Michael Landoefa037d2017-02-19 12:57:33 +020035}
36
AviZi280f8012017-06-09 02:39:56 +030037function deleteFeatureGroup(licenseModelId, featureGroupId, version) {
38 return RestAPIUtil.destroy(`${baseUrl(licenseModelId, version)}/${featureGroupId}`);
Michael Landoefa037d2017-02-19 12:57:33 +020039}
40
AviZi280f8012017-06-09 02:39:56 +030041function addFeatureGroup(licenseModelId, featureGroup, version) {
42 return RestAPIUtil.post(baseUrl(licenseModelId, version), {
Michael Landoefa037d2017-02-19 12:57:33 +020043 name: featureGroup.name,
44 description: featureGroup.description,
45 partNumber: featureGroup.partNumber,
Avi Ziv61070c92017-07-26 17:37:57 +030046 manufacturerReferenceNumber: featureGroup.manufacturerReferenceNumber,
Michael Landoefa037d2017-02-19 12:57:33 +020047 addedLicenseKeyGroupsIds: featureGroup.licenseKeyGroupsIds,
48 addedEntitlementPoolsIds: featureGroup.entitlementPoolsIds
49 });
50}
51
AviZi280f8012017-06-09 02:39:56 +030052function updateFeatureGroup(licenseModelId, previousFeatureGroup, featureGroup, version) {
Michael Landoefa037d2017-02-19 12:57:33 +020053
54 const {licenseKeyGroupsIds = []} = featureGroup;
55 const {licenseKeyGroupsIds: prevLicenseKeyGroupsIds = []} = previousFeatureGroup;
56 const {entitlementPoolsIds = []} = featureGroup;
57 const {entitlementPoolsIds: prevEntitlementPoolsIds = []} = previousFeatureGroup;
AviZi280f8012017-06-09 02:39:56 +030058 return RestAPIUtil.put(`${baseUrl(licenseModelId, version)}/${featureGroup.id}`, {
Michael Landoefa037d2017-02-19 12:57:33 +020059 name: featureGroup.name,
60 description: featureGroup.description,
61 partNumber: featureGroup.partNumber,
Avi Ziv61070c92017-07-26 17:37:57 +030062 manufacturerReferenceNumber: featureGroup.manufacturerReferenceNumber,
Michael Landoefa037d2017-02-19 12:57:33 +020063 addedLicenseKeyGroupsIds: licenseKeyGroupsIds.filter(licenseKeyGroupId => prevLicenseKeyGroupsIds.indexOf(licenseKeyGroupId) === -1),
64 removedLicenseKeyGroupsIds: prevLicenseKeyGroupsIds.filter(prevLicenseKeyGroupId => licenseKeyGroupsIds.indexOf(prevLicenseKeyGroupId) === -1),
65 addedEntitlementPoolsIds: entitlementPoolsIds.filter(entitlementPoolId => prevEntitlementPoolsIds.indexOf(entitlementPoolId) === -1),
66 removedEntitlementPoolsIds: prevEntitlementPoolsIds.filter(prevEntitlementPoolId => entitlementPoolsIds.indexOf(prevEntitlementPoolId) === -1)
67
68 });
69}
70
71export default {
talig8e9c0652017-12-20 14:30:43 +020072 fetchFeatureGroup(dispatch, {licenseModelId, featureGroupId, version}) {
73 return fetchFeatureGroup(licenseModelId, featureGroupId, version);
74 },
75
Michael Landoefa037d2017-02-19 12:57:33 +020076 fetchFeatureGroupsList(dispatch, {licenseModelId, version}) {
77 return fetchFeatureGroupsList(licenseModelId, version).then(response => dispatch({
78 type: featureGroupsActionConstants.FEATURE_GROUPS_LIST_LOADED,
79 response
80 }));
81 },
82
AviZi280f8012017-06-09 02:39:56 +030083 deleteFeatureGroup(dispatch, {licenseModelId, featureGroupId, version}) {
talig8e9c0652017-12-20 14:30:43 +020084 return deleteFeatureGroup(licenseModelId, featureGroupId, version).then(() => {
85 dispatch({
86 type: featureGroupsActionConstants.DELETE_FEATURE_GROUPS,
87 featureGroupId
88 });
89 ItemsHelper.checkItemStatus(dispatch, {itemId: licenseModelId, versionId: version.id});
90 });
Michael Landoefa037d2017-02-19 12:57:33 +020091 },
92
AviZi280f8012017-06-09 02:39:56 +030093 saveFeatureGroup(dispatch, {licenseModelId, previousFeatureGroup, featureGroup, version}) {
Michael Landoefa037d2017-02-19 12:57:33 +020094 if (previousFeatureGroup) {
AviZi280f8012017-06-09 02:39:56 +030095 return updateFeatureGroup(licenseModelId, previousFeatureGroup, featureGroup, version).then(() =>{
96 dispatch({
97 type: featureGroupsActionConstants.EDIT_FEATURE_GROUPS,
98 featureGroup
99 });
100 EntitlementPoolsActionHelper.fetchEntitlementPoolsList(dispatch, {licenseModelId, version});
101 LicenseKeyGroupsActionHelper.fetchLicenseKeyGroupsList(dispatch, {licenseModelId, version});
talig8e9c0652017-12-20 14:30:43 +0200102 ItemsHelper.checkItemStatus(dispatch, {itemId: licenseModelId, versionId: version.id});
AviZi280f8012017-06-09 02:39:56 +0300103 });
Michael Landoefa037d2017-02-19 12:57:33 +0200104 }
105 else {
AviZi280f8012017-06-09 02:39:56 +0300106 return addFeatureGroup(licenseModelId, featureGroup, version).then(response => {
107 dispatch({
108 type: featureGroupsActionConstants.ADD_FEATURE_GROUPS,
109 featureGroup: {
110 ...featureGroup,
111 id: response.value,
112 referencingLicenseAgreements: []
113 }
114 });
115 EntitlementPoolsActionHelper.fetchEntitlementPoolsList(dispatch, {licenseModelId, version});
116 LicenseKeyGroupsActionHelper.fetchLicenseKeyGroupsList(dispatch, {licenseModelId, version});
talig8e9c0652017-12-20 14:30:43 +0200117 ItemsHelper.checkItemStatus(dispatch, {itemId: licenseModelId, versionId: version.id});
AviZi280f8012017-06-09 02:39:56 +0300118 });
Michael Landoefa037d2017-02-19 12:57:33 +0200119 }
120 },
121
122 selectEntitlementPoolsEditorTab(dispatch, {tab}) {
123 dispatch({
124 type: featureGroupsActionConstants.featureGroupsEditor.SELECT_TAB,
125 tab
126 });
127 },
128
AviZi280f8012017-06-09 02:39:56 +0300129 openFeatureGroupsEditor(dispatch, {featureGroup, licenseModelId, version}) {
talig8e9c0652017-12-20 14:30:43 +0200130 return Promise.all([
131 EntitlementPoolsActionHelper.fetchEntitlementPoolsList(dispatch, {licenseModelId, version}),
132 LicenseKeyGroupsActionHelper.fetchLicenseKeyGroupsList(dispatch, {licenseModelId, version})
133 ]).then(() => {
134 dispatch({
135 type: featureGroupsActionConstants.featureGroupsEditor.OPEN,
136 featureGroup
137 });
Michael Landoefa037d2017-02-19 12:57:33 +0200138 });
139 },
140
141 closeFeatureGroupsEditor(dispatch) {
142 dispatch({
143 type: featureGroupsActionConstants.featureGroupsEditor.CLOSE
144 });
Michael Landoefa037d2017-02-19 12:57:33 +0200145 }
146};