added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / shared / services / test-definition.service.ts
diff --git a/otf-frontend/client/src/app/shared/services/test-definition.service.ts b/otf-frontend/client/src/app/shared/services/test-definition.service.ts
new file mode 100644 (file)
index 0000000..100696d
--- /dev/null
@@ -0,0 +1,89 @@
+/*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
+#                                                                              #\r
+#   Licensed under the Apache License, Version 2.0 (the "License");            #\r
+#   you may not use this file except in compliance with the License.           #\r
+#   You may obtain a copy of the License at                                    #\r
+#                                                                              #\r
+#       http://www.apache.org/licenses/LICENSE-2.0                             #\r
+#                                                                              #\r
+#   Unless required by applicable law or agreed to in writing, software        #\r
+#   distributed under the License is distributed on an "AS IS" BASIS,          #\r
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
+#   See the License for the specific language governing permissions and        #\r
+#   limitations under the License.                                             #\r
+##############################################################################*/\r
+\r
+\r
+import { Injectable } from '@angular/core';\r
+import { HttpClient } from '@angular/common/http';\r
+import { AppGlobals } from '../../app.global';\r
+import { Observable } from 'rxjs';\r
+import { ParamsService } from './params.service';\r
+import { CookieService } from 'ngx-cookie-service';\r
+import { ModelService } from './model.service';\r
+import { FeathersService } from './feathers.service';\r
+import { GroupService } from './group.service';\r
+\r
+\r
+\r
+@Injectable({\r
+  providedIn: 'root'\r
+})\r
+\r
+export class TestDefinitionService extends ModelService {\r
+\r
+  constructor(http: HttpClient, Params: ParamsService, cookie: CookieService, feathers: FeathersService, private _groups: GroupService) {\r
+    super('test-definitions', http, Params, cookie, feathers);\r
+    this.deployAll();\r
+  }\r
+\r
+  create(data, params?): Observable<Object>{\r
+    this.setGroup(data);\r
+    return super.create(data, params);\r
+  }\r
+\r
+  validate(testDefinition): Observable<Object> {\r
+    return this.call('create', {data: { testDefinition: testDefinition } }, AppGlobals.baseAPIUrl + 'bpmn-validate')\r
+    //return this.http.post(AppGlobals.baseAPIUrl + 'bpmn-validate', {testDefinition: testDefinition}, this.getHttpOptions());\r
+  }\r
+\r
+  validateSave(testDefinition): Observable<Object> {\r
+    return this.call('update', { data: {_id: null, testDefinition: testDefinition } }, AppGlobals.baseAPIUrl + 'bpmn-validate')\r
+    //return this.http.put(AppGlobals.baseAPIUrl + 'bpmn-validate', {testDefinition: testDefinition}, this.getHttpOptions());\r
+  }\r
+\r
+  check(processDefinitionKey): Observable<Object>{\r
+    return this.call('get', {data: processDefinitionKey} , AppGlobals.baseAPIUrl + 'bpmn-validate')\r
+    //return this.http.get(AppGlobals.baseAPIUrl + 'bpmn-validate/' + processDefinitionKey, this.getHttpOptions());\r
+  }\r
+\r
+  deploy(testDefinition, versionName?): Observable<Object> {\r
+    let data = {testDefinition: testDefinition};\r
+\r
+    if(versionName != null && versionName != undefined){\r
+      data['version'] = versionName;\r
+    }\r
+    return this.call('create', {data: data }, AppGlobals.baseAPIUrl + 'bpmn-upload')\r
+    //return this.http.post(AppGlobals.baseAPIUrl + 'bpmn-upload', {testDefinition: testDefinition}, this.getHttpOptions());\r
+  }\r
+\r
+  deployAll(){\r
+    // this.find({$limit: -1}).subscribe(definitions => {\r
+    //   //definitions = definitions['data'];\r
+    //   (definitions as Array<Object>).forEach((elem, val) => {\r
+    //     elem['bpmnInstances'].forEach((e , v) => {\r
+    //       let el = e;\r
+    //       this.deploy(elem, el.version).subscribe(res => {\r
+    //         console.log(res);\r
+    //       });\r
+    //     })\r
+    //   })\r
+    // })\r
+  }\r
+\r
+  private setGroup(data){\r
+    if(!data['groupId']){\r
+      data['groupId'] = this._groups.getGroup()['_id'];\r
+    }\r
+  }\r
+}\r