Catalog alignment
[sdc.git] / catalog-ui / src / app / models / capability.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 /**
22  * Created by obarda on 4/20/2016.
23  */
24 'use strict';
25 import * as _ from 'lodash';
26 import { PropertyModel } from './properties';
27
28 export interface RequirementCapabilityModel {}
29
30 // this is an object contains keys, when each key has matching array.
31 // for example: key = tosca.capabilities.network.Linkable and the match array is array of capabilities objects
32 export class CapabilitiesGroup {
33     constructor(capabilityGroupObj?: CapabilitiesGroup) {
34         _.forEach(capabilityGroupObj, (capabilitiesArrayObj: Capability[], instance) => {
35             this[instance] = [];
36             _.forEach(capabilitiesArrayObj, (capability: Capability): void => {
37                 this[instance].push(new Capability(capability));
38             });
39         });
40     }
41     
42     public static getFlattenedCapabilities(capabilitiesGroup: CapabilitiesGroup): Array<Capability> {
43         return _.reduce(
44             _.toArray(capabilitiesGroup),
45             (allCaps, capArr) => allCaps.concat(capArr),
46             []);
47     }
48 }
49
50 export class Capability implements RequirementCapabilityModel {
51
52     // server data
53     name: string;
54     ownerId: string;
55     ownerName: string;
56     type: string;
57     uniqueId: string;
58     capabilitySources: string[];
59     leftOccurrences: string;
60     minOccurrences: string | number;
61     maxOccurrences: string;
62     description: string;
63     validSourceTypes: string[];
64     properties: PropertyModel[];
65
66     // custom
67     selected: boolean;
68     filterTerm: string;
69
70     constructor(capability?: Capability) {
71
72         if (capability) {
73             // server data
74             this.name = capability.name;
75             this.ownerId = capability.ownerId;
76             this.ownerName = capability.ownerName;
77             this.type = capability.type;
78             this.uniqueId = capability.uniqueId;
79             this.capabilitySources = capability.capabilitySources;
80             this.leftOccurrences = capability.leftOccurrences;
81             this.minOccurrences = capability.minOccurrences;
82             this.maxOccurrences = capability.maxOccurrences;
83             this.properties = capability.properties;
84             this.description = capability.description;
85             this.validSourceTypes = capability.validSourceTypes;
86             this.selected = capability.selected;
87             this.initFilterTerm();
88
89         }
90     }
91
92     public getTitle(): string {
93         return this.ownerName + ': ' + this.name;
94     }
95
96     public getFullTitle(): string {
97         const maxOccurrences: string = this.maxOccurrences === 'UNBOUNDED' ? '∞' : this.maxOccurrences;
98         return this.getTitle() + ': [' + this.minOccurrences + ', ' + maxOccurrences + ']';
99     }
100
101     public toJSON = (): any => {
102         this.selected = undefined;
103         this.filterTerm = undefined;
104         return this;
105     }
106
107     public isFulfilled() {
108         return parseInt(this.leftOccurrences) === 0;
109     }
110
111     private initFilterTerm = (): void => {
112         this.filterTerm = this.name + ' ' +
113             (this.type ? (this.type.replace('tosca.capabilities.', '') + ' ' ) : '') +
114             (this.description || '') + ' ' +
115             (this.ownerName || '') + ' ' +
116             (this.validSourceTypes ? (this.validSourceTypes.join(',') + ' ') : '') +
117             this.minOccurrences + ',' + this.maxOccurrences;
118         if (this.properties && this.properties.length) {
119             _.forEach(this.properties, (prop: PropertyModel) => {
120                 this.filterTerm += ' ' + prop.name +
121                     ' ' + (prop.description || '') +
122                     ' ' + prop.type +
123                     (prop.schema && prop.schema.property ? (' ' + prop.schema.property.type) : '');
124             });
125         }
126     }
127 }
128
129 export class CapabilityUI extends Capability {
130     isCreatedManually: boolean;
131
132     constructor(input: Capability, componentUniqueId: string) {
133         super(input);
134         this.isCreatedManually = input.ownerId === componentUniqueId;
135     }
136 }
137
138