74fe7f6793b854e8d1da1002794b11ea0572ef1c
[sdc.git] / catalog-ui / src / app / models / tosca-concat-function.ts
1 /*
2  * -
3  *  ============LICENSE_START=======================================================
4  *  Copyright (C) 2022 Nordix Foundation.
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *       http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 import {ToscaFunction} from "./tosca-function";
23 import {ToscaFunctionType} from "./tosca-function-type.enum";
24 import {ToscaFunctionParameter} from "./tosca-function-parameter";
25 import {ToscaGetFunction} from "./tosca-get-function";
26 import {YamlFunction} from "./yaml-function";
27 import {ToscaStringParameter} from "./tosca-string-parameter";
28
29 export class ToscaConcatFunction implements ToscaFunction, ToscaFunctionParameter {
30     type = ToscaFunctionType.CONCAT;
31     value: any;
32     parameters: Array<ToscaFunctionParameter> = [];
33
34     constructor(toscaConcatFunction?: ToscaConcatFunction) {
35         if (!toscaConcatFunction) {
36             return;
37         }
38         this.value = toscaConcatFunction.value;
39         if (toscaConcatFunction.parameters) {
40             toscaConcatFunction.parameters.forEach(parameter => {
41                 switch (parameter.type) {
42                     case ToscaFunctionType.GET_INPUT:
43                     case ToscaFunctionType.GET_ATTRIBUTE:
44                     case ToscaFunctionType.GET_PROPERTY:
45                         this.parameters.push(new ToscaGetFunction(<ToscaGetFunction>parameter));
46                         break;
47                     case ToscaFunctionType.CONCAT:
48                         this.parameters.push(new ToscaConcatFunction(<ToscaConcatFunction>parameter));
49                         break;
50                     case ToscaFunctionType.YAML:
51                         this.parameters.push(new YamlFunction(<YamlFunction>parameter));
52                         break;
53                     case ToscaFunctionType.STRING:
54                         this.parameters.push(new ToscaStringParameter(<ToscaStringParameter>parameter));
55                         break;
56                     default:
57                         console.error(`Unsupported parameter type "${parameter.type}"`);
58                         this.parameters.push(parameter);
59                 }
60             });
61         }
62     }
63
64     public buildValueString(): string {
65         return JSON.stringify(this.buildValueObject());
66     }
67
68     public buildValueObject(): Object {
69         return {
70             [this.type.toLowerCase()]: this.parameters.map(parameter => parameter.buildValueObject())
71         }
72     }
73
74 }