added svcapi ui and camunda code
[it/otf.git] / otf-frontend / server / src / feathers / services / health / health.class.js
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 const Response = require('http-response-object');\r
18 const request = require('request');\r
19 \r
20 /* eslint-disable no-unused-vars */\r
21 class Service {\r
22         constructor (options) {\r
23                 this.options = options || {};\r
24         }\r
25 \r
26         async find (params) {\r
27                 return new Response(200, {});\r
28         }\r
29 \r
30         async get (id, params) {\r
31                 if(id == 'tcu-engine'){\r
32                         let options = {\r
33                                 url: this.options.app.get('camundaApi').url + 'otf/health/v1',\r
34                                 rejectUnauthorized: false\r
35                         }\r
36                         \r
37                         return await new Promise((resolve, reject) => {\r
38                                 request.get(options, (err, res, body) => {\r
39                                         if(err){\r
40                                                 reject(err);\r
41                                         }\r
42                                         resolve(res);\r
43                                 });\r
44                         }).then(\r
45                                 res => {\r
46                                         return res;\r
47                                 }\r
48                         ).catch(\r
49                                 err => {\r
50                                         return new Response(500, {}, err);\r
51                                 }\r
52                         );\r
53                 }else if(id == 'tcu-api'){\r
54                         let options = {\r
55                                 url: this.options.app.get('serviceApi').url + 'health/v1',\r
56                                 rejectUnauthorized: false\r
57                         }\r
58                         \r
59                         return await new Promise((resolve, reject) => {\r
60                                 request.get(options, (err, res, body) => {\r
61                                         if(err){\r
62                                                 reject(err);\r
63                                         };\r
64                                         resolve(res);\r
65                                 });\r
66                         }).then(\r
67                                 res => {\r
68                                         return res;\r
69                                 }\r
70                         ).catch(\r
71                                 err => {\r
72                                         return new Response(500, {}, err);\r
73                                 }\r
74                         );\r
75                 }else{\r
76                         return new Response(200, {});\r
77                 }\r
78                 \r
79         }\r
80 \r
81         async create (data, params) {\r
82                 if (Array.isArray(data)) {\r
83                         return Promise.all(data.map(current => this.create(current, params)));\r
84                 }\r
85 \r
86                 return new Response(200, {});\r
87         }\r
88 \r
89         async update (id, data, params) {\r
90                 return new Response(200, {});\r
91         }\r
92 \r
93         async patch (id, data, params) {\r
94                 return new Response(200, {});\r
95         }\r
96 \r
97         async remove (id, params) {\r
98                 return new Response(200, {});\r
99         }\r
100 }\r
101 \r
102 module.exports = function (options) {\r
103         return new Service(options);\r
104 };\r
105 \r
106 module.exports.Service = Service;\r