blob: e2b8d55ffee48fc76321f74306508565bc95424e [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';
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020018import { actionTypes } from './LicenseModelCreationConstants.js';
19import { modalContentMapper } from 'sdc-app/common/modal/ModalContentMapper.js';
20import { actionTypes as modalActionTypes } from 'nfvo-components/modal/GlobalModalConstants.js';
AviZi280f8012017-06-09 02:39:56 +030021import i18n from 'nfvo-utils/i18n/i18n.js';
Michael Landoefa037d2017-02-19 12:57:33 +020022
23function baseUrl() {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020024 const restPrefix = Configuration.get('restPrefix');
25 return `${restPrefix}/v1.0/vendor-license-models/`;
Michael Landoefa037d2017-02-19 12:57:33 +020026}
27
28function createLicenseModel(licenseModel) {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020029 return RestAPIUtil.post(baseUrl(), {
30 vendorName: licenseModel.vendorName,
31 description: licenseModel.description,
32 iconRef: 'icon'
33 });
Michael Landoefa037d2017-02-19 12:57:33 +020034}
35
Michael Landoefa037d2017-02-19 12:57:33 +020036export default {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020037 open(dispatch) {
38 dispatch({
39 type: actionTypes.OPEN
40 });
Michael Landoefa037d2017-02-19 12:57:33 +020041
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020042 dispatch({
43 type: modalActionTypes.GLOBAL_MODAL_SHOW,
44 data: {
45 modalComponentName: modalContentMapper.LICENSE_MODEL_CREATION,
46 title: i18n('New License Model')
47 }
48 });
49 },
AviZi280f8012017-06-09 02:39:56 +030050
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020051 close(dispatch) {
52 dispatch({
53 type: actionTypes.CLOSE
54 });
Michael Landoefa037d2017-02-19 12:57:33 +020055
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020056 dispatch({
57 type: modalActionTypes.GLOBAL_MODAL_CLOSE
58 });
59 },
Michael Landoefa037d2017-02-19 12:57:33 +020060
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020061 createLicenseModel(dispatch, { licenseModel }) {
62 return createLicenseModel(licenseModel).then(result => {
63 dispatch({
64 type: actionTypes.LICENSE_MODEL_CREATED,
65 result
66 });
67 return result;
68 });
69 }
Michael Landoefa037d2017-02-19 12:57:33 +020070};