summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/components/service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/models/components/service.ts')
-rw-r--r--catalog-ui/src/app/models/components/service.ts150
1 files changed, 150 insertions, 0 deletions
diff --git a/catalog-ui/src/app/models/components/service.ts b/catalog-ui/src/app/models/components/service.ts
new file mode 100644
index 0000000000..a4dd3155d7
--- /dev/null
+++ b/catalog-ui/src/app/models/components/service.ts
@@ -0,0 +1,150 @@
+/**
+ * Created by obarda on 2/4/2016.
+ */
+'use strict';
+import {IServiceService} from "../../services/components/service-service";
+import {Component, PropertyModel, DisplayModule, InputsAndProperties, InputModel, InstancesInputsOrPropertiesMapData, InstancesInputsPropertiesMap,
+ Distribution, DistributionComponent, ArtifactGroupModel} from "../../models";
+import {ArtifactGroupType} from "../../utils/constants";
+import {ComponentMetadata} from "../component-metadata";
+
+export class Service extends Component {
+
+ public serviceApiArtifacts:ArtifactGroupModel;
+ public componentService:IServiceService;
+ public ecompGeneratedNaming:boolean;
+ public namingPolicy:string;
+
+ constructor(componentService:IServiceService, $q:ng.IQService, component?:Service) {
+ super(componentService, $q, component);
+ this.ecompGeneratedNaming = true;
+ if (component) {
+ this.serviceApiArtifacts = new ArtifactGroupModel(component.serviceApiArtifacts);
+ this.filterTerm = this.name + ' ' + this.description + ' ' + (this.tags ? this.tags.toString() : '') + ' ' + this.version;
+ this.ecompGeneratedNaming = component.ecompGeneratedNaming;
+ this.namingPolicy = component.namingPolicy;
+ if (component.categories && component.categories[0]) {
+ this.mainCategory = component.categories[0].name;
+ this.selectedCategory = this.mainCategory;
+ }
+ }
+ this.componentService = componentService;
+ this.iconSprite = "sprite-services-icons";
+ }
+
+ public getDistributionsList = ():ng.IPromise<Array<Distribution>> => {
+ return this.componentService.getDistributionsList(this.uuid);
+ };
+
+ public getDistributionsComponent = (distributionId:string):ng.IPromise<Array<DistributionComponent>> => {
+ return this.componentService.getDistributionComponents(distributionId);
+ };
+
+ public markAsDeployed = (distributionId:string):ng.IPromise<any> => {
+ return this.componentService.markAsDeployed(this.uniqueId, distributionId);
+ };
+
+ /* we need to change the name of the input to vfInstanceName + input name before sending to server in order to create the inputs on the service
+ * we also need to remove already selected inputs (the inputs that already create on server, and disabled in the view - but they are selected so they are still in the view model
+ */
+ public createInputsFormInstances = (instancesInputsMap:InstancesInputsOrPropertiesMapData, instancePropertiesMap:InstancesInputsOrPropertiesMapData):ng.IPromise<Array<InputModel>> => {
+
+ let deferred = this.$q.defer();
+ let onSuccess = (inputsCreated:Array<InputModel>):void => {
+ this.inputs = inputsCreated.concat(this.inputs);
+ deferred.resolve(inputsCreated);
+ };
+ let onFailed = (error:any):void => {
+ deferred.reject(error);
+ };
+
+ let propertiesAndInputsMap:InstancesInputsPropertiesMap = new InstancesInputsPropertiesMap(instancesInputsMap, instancePropertiesMap);
+ propertiesAndInputsMap = propertiesAndInputsMap.cleanUnnecessaryDataBeforeSending(); // We need to create a copy of the map, without the already selected inputs / properties, and to send the clean map
+ this.componentService.createInputsFromInstancesInputs(this.uniqueId, propertiesAndInputsMap).then(onSuccess, onFailed);
+ return deferred.promise;
+ };
+
+ // we need to change the name of the input to vfInstanceName + input name before sending to server in order to create the inputs on the service
+ public getServiceInputInputsAndProperties = (inputId:string):ng.IPromise<Array<InputModel>> => {
+ let deferred = this.$q.defer();
+ let onSuccess = (inputsAndProperties:InputsAndProperties):void => {
+ let input:InputModel = _.find(this.inputs, (input:InputModel) => {
+ return input.uniqueId === inputId;
+ });
+ input.inputs = inputsAndProperties.inputs;
+ input.properties = inputsAndProperties.properties;
+ deferred.resolve(inputsAndProperties);
+ };
+ let onFailed = (error:any):void => {
+ deferred.reject(error);
+ };
+ this.componentService.getComponentInputInputsAndProperties(this.uniqueId, inputId).then(onSuccess, onFailed);
+ return deferred.promise;
+ };
+
+ public deleteServiceInput = (inputId:string):ng.IPromise<InputModel> => {
+ let deferred = this.$q.defer();
+
+ let onSuccess = (deletedInput:InputModel):void => {
+ delete _.remove(this.inputs, {uniqueId: deletedInput.uniqueId})[0];
+ deferred.resolve(deletedInput);
+ };
+
+ let onFailed = (error:any):void => {
+ deferred.reject(error);
+ };
+
+ this.componentService.deleteComponentInput(this.uniqueId, inputId).then(onSuccess, onFailed);
+ return deferred.promise;
+ };
+
+ public getArtifactsByType = (artifactGroupType:string):ArtifactGroupModel => {
+ switch (artifactGroupType) {
+ case ArtifactGroupType.DEPLOYMENT:
+ return this.deploymentArtifacts;
+ case ArtifactGroupType.INFORMATION:
+ return this.artifacts;
+ case ArtifactGroupType.SERVICE_API:
+ return this.serviceApiArtifacts;
+ }
+ };
+
+ public updateGroupInstanceProperties = (resourceInstanceId:string, group:DisplayModule, properties:Array<PropertyModel>):ng.IPromise<Array<PropertyModel>> => {
+
+ let deferred = this.$q.defer();
+ let onSuccess = (updatedProperties:Array<PropertyModel>):void => {
+ _.forEach(updatedProperties, (property:PropertyModel) => { // Replace all updated properties on the we needed to update
+ _.extend(_.find(group.properties, {uniqueId: property.uniqueId}), property);
+ });
+ deferred.resolve(updatedProperties);
+ };
+ let onError = (error:any):void => {
+ deferred.reject(error);
+ };
+
+ this.componentService.updateGroupInstanceProperties(this.uniqueId, resourceInstanceId, group.groupInstanceUniqueId, properties).then(onSuccess, onError);
+ return deferred.promise;
+ };
+
+ getTypeUrl():string {
+ return 'services/';
+ }
+
+
+ public setComponentMetadata(componentMetadata: ComponentMetadata) {
+ super.setComponentMetadata(componentMetadata);
+ this.ecompGeneratedNaming = componentMetadata.ecompGeneratedNaming;
+ this.namingPolicy = componentMetadata.namingPolicy;
+ this.setComponentDisplayData();
+ }
+
+ setComponentDisplayData():void {
+ this.filterTerm = this.name + ' ' + this.description + ' ' + (this.tags ? this.tags.toString() : '') + ' ' + this.version;
+ if (this.categories && this.categories[0]) {
+ this.mainCategory = this.categories[0].name;
+ this.selectedCategory = this.mainCategory;
+ }
+ this.iconSprite = "sprite-services-icons";
+ }
+}
+