/*- * ============LICENSE_START======================================================= * SDC * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END========================================================= */ import { Injectable, Inject } from '@angular/core'; import { Observable } from 'rxjs/Observable'; import 'rxjs/add/operator/map'; import 'rxjs/add/operator/toPromise'; import { Response, URLSearchParams } from '@angular/http'; import {Service} from "app/models"; import { downgradeInjectable } from '@angular/upgrade/static'; import { HttpService } from '../http.service'; import {SdcConfigToken, ISdcConfig} from "../../config/sdc-config.config"; import {ForwardingPath} from "app/models/forwarding-path"; import {ComponentMetadata} from "app/models/component-metadata"; import {ComponentType} from "app/utils"; import {Component} from "app/models/components/component"; import {ComponentGenericResponse} from "app/ng2/services/responses/component-generic-response"; import {COMPONENT_FIELDS, SERVICE_FIELDS} from "app/utils/constants"; import {ComponentServiceNg2} from "./component.service"; import {ServiceGenericResponse} from "app/ng2/services/responses/service-generic-response"; import {ServicePathMapItem} from "app/models/graph/nodes-and-links-map"; @Injectable() export class ServiceServiceNg2 extends ComponentServiceNg2 { protected baseUrl = ""; constructor(protected http: HttpService, @Inject(SdcConfigToken) sdcConfig:ISdcConfig) { super(http, sdcConfig); this.baseUrl = sdcConfig.api.root + sdcConfig.api.component_api_root; } validateConformanceLevel(service: Service): Observable { return this.http.get(this.baseUrl + service.getTypeUrl() + service.uuid + '/conformanceLevelValidation') .map((res: Response) => { return res.json(); }); } getNodesAndLinksMap(service: Service):Observable> { return this.http.get(this.baseUrl + service.getTypeUrl() + service.uniqueId + '/linksMap').map(res => { return >res.json(); }); } getServicePath(service: Service, id: string):Observable { return this.http.get(this.baseUrl + service.getTypeUrl() + service.uniqueId + '/paths/' + id) .map(res => { return res.json(); }) } getServicePaths(service: Service):Observable { return this.http.get(this.baseUrl + service.getTypeUrl() + service.uniqueId + '/paths') .map(res => { return res.json(); }) } createOrUpdateServicePath(service: Service, inputsToCreate: ForwardingPath):Observable { if (inputsToCreate.uniqueId) { return this.updateServicePath(service, inputsToCreate); } else { return this.createServicePath(service, inputsToCreate); } } createServicePath(service: Service, inputsToCreate: ForwardingPath):Observable { let input = new ServicePathRequestData(inputsToCreate); return this.http.post(this.baseUrl + service.getTypeUrl() + service.uniqueId + '/paths', input) .map(res => { return this.parseServicePathResponse(res); }); } deleteServicePath(service: Service, id: string):Observable { return this.http.delete(this.baseUrl + service.getTypeUrl() + service.uniqueId + '/paths/' + id ) .map((res) => { return res.json(); }); } updateServicePath(service: Service, inputsToUpdate:ForwardingPath):Observable { let input = new ServicePathRequestData(inputsToUpdate); return this.http.put(this.baseUrl + service.getTypeUrl() + service.uniqueId + '/paths', input) .map((res) => { return this.parseServicePathResponse(res); }); } checkComponentInstanceVersionChange(service: Service, newVersionId: string):Observable> { let instanceId = service.selectedInstance.uniqueId; let queries = {componentInstanceId: instanceId, newComponentInstanceId: newVersionId}; let params:URLSearchParams = new URLSearchParams(); _.map(_.keys(queries), (key:string):void => { params.append(key, queries[key]); }); let url = this.baseUrl + service.getTypeUrl() + service.uniqueId + '/paths-to-delete'; return this.http.get(url, {search: params}).map((res: Response) => { return res.json().forwardingPathToDelete; }); } getComponentCompositionData(component:Component):Observable { return this.getComponentDataByFieldsName(component.componentType, component.uniqueId, [COMPONENT_FIELDS.COMPONENT_INSTANCES_RELATION, COMPONENT_FIELDS.COMPONENT_INSTANCES, SERVICE_FIELDS.FORWARDING_PATHS]); } protected analyzeComponentDataResponse(res: Response):ComponentGenericResponse { return new ServiceGenericResponse().deserialize(res.json()); } private parseServicePathResponse(res: Response):ForwardingPath { let resJSON = res.json(); let pathId = Object.keys(resJSON.forwardingPaths)[0]; let forwardingPath = resJSON.forwardingPaths[pathId]; let path:ForwardingPath = new ForwardingPath(); path.deserialize(forwardingPath); path.uniqueId = pathId; return path; } } class ServicePathRequestData { forwardingPaths: { [key:string]:ForwardingPath } = {}; componentMetadataDefinition: ComponentMetadata; toscaType: string = "topology_template"; constructor(fp? : ForwardingPath) { this.componentMetadataDefinition = new ComponentMetadata(); this.componentMetadataDefinition.ecompGeneratedNaming = true; this.componentMetadataDefinition.componentType = ComponentType.SERVICE; if (fp) { let id = fp.uniqueId ? fp.uniqueId : "NEW"; this.forwardingPaths[fp.uniqueId] = fp; } } }