fix artifact delivery id implementation 64/79364/1
authorArielk <Ariel.Kenan@amdocs.com>
Thu, 28 Feb 2019 14:37:57 +0000 (16:37 +0200)
committerArielk <Ariel.Kenan@amdocs.com>
Thu, 28 Feb 2019 14:45:22 +0000 (16:45 +0200)
Change-Id: Ib2dc33852ff86ec0fd789b74e6a1fd7d9a50e798
Issue-ID: SDC-2084
Signed-off-by: Arielk <Ariel.Kenan@amdocs.com>
catalog-ui/src/app/models/operation.ts
catalog-ui/src/app/ng2/pages/interface-operation/interface-operation.page.component.ts
catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/operation-creator.component.html
catalog-ui/src/app/ng2/services/component-services/component.service.ts
catalog-ui/src/app/ng2/services/workflow.service.ts
catalog-ui/src/assets/languages/en_US.json

index d36b72a..d9d0858 100644 (file)
@@ -38,6 +38,8 @@ export class BEOperationModel {
     workflowId: string;
     workflowVersionId: string;
 
+    implementation?: { artifactUUID: string; };
+
     constructor(operation?: any) {
         if (operation) {
             this.name = operation.name;
@@ -50,6 +52,7 @@ export class BEOperationModel {
             this.workflowAssociationType = operation.workflowAssociationType;
             this.workflowId = operation.workflowId;
             this.workflowVersionId = operation.workflowVersionId;
+            this.implementation = operation.implementation;
         }
     }
 
@@ -87,17 +90,6 @@ export class OperationModel extends BEOperationModel {
     }
 }
 
-export class CreateOperationResponse extends OperationModel {
-    artifactUUID: string;
-
-    constructor(operation?: any) {
-        super(operation);
-        if (operation) {
-            this.artifactUUID = operation.artifactUUID;
-        }
-    }
-}
-
 export class InterfaceModel {
     type: string;
     uniqueId: string;
index f04ccd9..9035b3f 100644 (file)
@@ -9,7 +9,7 @@ import {Observable} from "rxjs/Observable";
 
 import {ModalComponent} from 'app/ng2/components/ui/modal/modal.component';
 import {ModalService} from 'app/ng2/services/modal.service';
-import {ModalModel, ButtonModel, InputBEModel, OperationModel, InterfaceModel, CreateOperationResponse, WORKFLOW_ASSOCIATION_OPTIONS} from 'app/models';
+import {ModalModel, ButtonModel, InputBEModel, OperationModel, InterfaceModel, WORKFLOW_ASSOCIATION_OPTIONS} from 'app/models';
 
 import {IModalConfig, IModalButtonComponent} from "sdc-ui/lib/angular/modals/models/modal-config";
 import {SdcUiComponents} from "sdc-ui/lib/angular";
@@ -301,7 +301,7 @@ export class InterfaceOperationComponent {
     }
 
     private createOperation = (operation: OperationModel): void => {
-        this.ComponentServiceNg2.createInterfaceOperation(this.component, operation).subscribe((response: CreateOperationResponse) => {
+        this.ComponentServiceNg2.createInterfaceOperation(this.component, operation).subscribe((response: OperationModel) => {
             this.openOperation = null;
             let curInterf = _.find(
                 this.interfaces,
index 7abc1a5..9f78088 100644 (file)
@@ -85,7 +85,7 @@
             <div class="form-item sdc-input" *ngIf="isUsingExistingWF()">
                 <label class="sdc-input__label required">{{ 'OPERATION_WORKFLOW' | translate }}
                     <span class="archive-warning" *ngIf="workflowIsOnline && archivedWorkflowId === operation.workflowId">({{ 'OPERATION_WORKFLOW_ARCHIVED' | translate }})</span>
-                    <span class="no-workflow-warning" *ngIf="!workflowIsOnline">Failed to load workflows</span>
+                    <span class="no-workflow-warning" *ngIf="!workflowIsOnline">{{ 'OPERATION_NO_WORKFLOW_CONNECTION' | translate }}</span>
                     <span class="no-workflow-warning" *ngIf="workflowIsOnline && !workflows.length">{{ 'OPERATION_NO_WORKFLOW_ERROR' | translate }}</span>
                 </label>
                 <sdc-dropdown
index e9036a8..41bfc4e 100644 (file)
@@ -25,7 +25,7 @@ import 'rxjs/add/operator/map';
 import 'rxjs/add/operator/toPromise';
 import {Response, URLSearchParams} from '@angular/http';
 import { Component, ComponentInstance, InputBEModel, InstancePropertiesAPIMap, FilterPropertiesAssignmentData,
-    PropertyBEModel, OperationModel, BEOperationModel, CreateOperationResponse} from "app/models";
+    PropertyBEModel, OperationModel, BEOperationModel} from "app/models";
 import {downgradeInjectable} from '@angular/upgrade/static';
 import {COMPONENT_FIELDS, CommonUtils, SERVICE_FIELDS} from "app/utils";
 import {ComponentGenericResponse} from "../responses/component-generic-response";
@@ -139,7 +139,7 @@ export class ComponentServiceNg2 {
             });
     }
 
-    createInterfaceOperation(component:Component, operation:OperationModel):Observable<CreateOperationResponse> {
+    createInterfaceOperation(component:Component, operation:OperationModel):Observable<OperationModel> {
         const operationList = {
             'interfaces': {
                 [operation.interfaceType]: {
@@ -154,7 +154,7 @@ export class ComponentServiceNg2 {
             .map((res:Response) => {
                 const interf = _.find(res.json().interfaces, (interf: any) => interf.type === operation.interfaceType);
                 const newOperation = _.find(interf.operations, (op:OperationModel) => op.name === operation.name);
-                return new CreateOperationResponse({
+                return new OperationModel({
                     ...newOperation,
                     interfaceType: interf.type,
                     interfaceId: interf.uniqueId
@@ -162,7 +162,7 @@ export class ComponentServiceNg2 {
             });
     }
 
-    updateInterfaceOperation(component:Component, operation:OperationModel):Observable<CreateOperationResponse> {
+    updateInterfaceOperation(component:Component, operation:OperationModel):Observable<OperationModel> {
         const operationList = {
             'interfaces': {
                 [operation.interfaceType]: {
@@ -177,7 +177,7 @@ export class ComponentServiceNg2 {
             .map((res:Response) => {
                 const interf = _.find(res.json().interfaces, (interf: any) => interf.type === operation.interfaceType);
                 const newOperation = _.find(interf.operations, (op:OperationModel) => op.name === operation.name);
-                return new CreateOperationResponse({
+                return new OperationModel({
                     ...newOperation,
                     interfaceType: interf.type,
                     interfaceId: interf.uniqueId
index 36d56d6..81a2ea3 100644 (file)
@@ -3,7 +3,7 @@ import { Response } from "@angular/http";
 import { Observable } from "rxjs/Observable";
 import { HttpService } from "./http.service";
 import { SdcConfigToken, ISdcConfig } from "../config/sdc-config.config";
-import { Component, CreateOperationResponse } from "app/models";
+import { Component, OperationModel } from "app/models";
 
 interface WorkflowOutputParameter {
     name: string,
@@ -30,9 +30,9 @@ export class WorkflowServiceNg2 {
         this.catalogBaseUrl = sdcConfig.api.POST_workflow_artifact;
     }
 
-    public associateWorkflowArtifact(component: Component, operation: CreateOperationResponse): Observable<any> {
+    public associateWorkflowArtifact(component: Component, operation: OperationModel): Observable<any> {
         return this.http.post(this.baseUrl + '/workflows/' + operation.workflowId + '/versions/' + operation.workflowVersionId + '/artifact-deliveries', {
-                endpoint: this.catalogBaseUrl + '/' + component.getTypeUrl() + component.uuid + '/interfaces/' + operation.interfaceId + '/operations/' + operation.uniqueId + '/artifacts/' + operation.artifactUUID,
+                endpoint: this.catalogBaseUrl + '/' + component.getTypeUrl() + component.uuid + '/interfaces/' + operation.interfaceId + '/operations/' + operation.uniqueId + '/artifacts/' + operation.implementation.artifactUUID,
                 method: 'POST'
             })
             .map((res:Response) => {
index 1c68091..41f543a 100644 (file)
     "OPERATION_WORKFLOW_ASSIGNMENT": "Workflow Assignment",
     "OPERATION_WORKFLOW": "Workflow",
     "OPERATION_NO_WORKFLOW_ERROR": "No Certified Versions Available",
+    "OPERATION_NO_WORKFLOW_CONNECTION": "Failed to Load Workflows",
     "OPERATION_WORKFLOW_ARCHIVED": "Archived",
     "OPERATION_WORKFLOW_VERSION": "Workflow Version",
     "OPERATION_ADD_PARAMS": "Add Paramaters",