-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpico.js
491 lines (437 loc) · 16.9 KB
/
pico.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
const http = require("http")
const https = require("https")
const url = require("url")
const os = require("os")
class Wrapper {
constructor(wrapperValue) {
this.value = function() {
if(wrapperValue.constructor.name == "Array") { return wrapperValue.map(item => item); }
if(wrapperValue.constructor.name == "Object") { return Object.assign({}, wrapperValue); }
return Object.assign({}, {value: wrapperValue}).value
}
}
static of(x) { return new this(x) }
when(cases) {
for(var type_name in cases) {
if(this.constructor.name == type_name) { return cases[type_name](this.value()) }
}
return cases["_"](this.value())
}
}
class Success extends Wrapper {}
class Failure extends Wrapper {}
class Failures extends Wrapper {}
class HttpException extends Wrapper {}
let fetch = (options) => {
return new Promise((resolve, reject) => {
const lib = require(options.protocol)
options.protocol+=":"
const request = lib.request(options, (response) => {
// http errors
if (response.statusCode < 200 || response.statusCode > 299) {
reject(new Error('Failed to load data, status code: ' + response.statusCode))
}
const body = []
response.on('data', (chunk) => body.push(chunk)) // on content, push it to body
response.on('end', () => resolve(body.join(''))) // resolve promise when terminated
})
request.on('error', (err) => reject(err))
if((request.method=="GET") || (request.method=="DELETE")) { // GET OR DELETE
request.end()
} else { // POST OR PUT
if((request.method=="POST") || (request.method=="PUT")) {
request.write(options.data)
request.end()
} else {
// WIP 🚧
}
}
})
}
class Client {
constructor({service}, ...features) {
this.service = service
this.baseUri = service.domain+service.root;
this.headers = {
"Content-Type": "application/json; charset=utf-8"
};
return Object.assign(this, ...features);
}
healthCheck() {
let serviceurl = url.parse(this.service.domain)
return fetch({
protocol: serviceurl.protocol.slice(0, -1), // remove ":"
host: serviceurl.hostname,
port: serviceurl.port,
method: "GET",
path: `/healthcheck`,
headers: {"Content-Type": "application/json; charset=utf-8"}
}).then(data => {
return JSON.parse(data)
}).catch(error => error)
}
callMethod({name, urlParams=[], data=null}) {
let method = this.service.methods.find(method => method.name == name)
let params = urlParams.length==0 ? "" : "/" + urlParams.join("/")
let serviceurl = url.parse(this.service.domain)
return fetch({
protocol: serviceurl.protocol.slice(0, -1), // remove ":"
host: serviceurl.hostname,
port: serviceurl.port,
method: method.type,
path: `${this.service.root}${method.path}${params}`,
headers: {"Content-Type": "application/json; charset=utf-8"},
data: data!==null ? JSON.stringify(data) : null
}).then(data => {
return JSON.parse(data)
}).catch(error => error)
}
}
class Service {
constructor({discoveryBackend=null, record=null, secure=false}) {
this.discoveryBackend = discoveryBackend
this.record = record
this.routes = []
let when404 = (request, response) => {
response.writeHead(404, {"Content-Type": "application/json; charset=utf-8"});
response.write(JSON.stringify({error: `${request.method} ${request.url} Not Found`, code: 404}))
response.end();
}
let when500 = (err, request, response) => {
response.writeHead(500, {"Content-Type": "application/json; charset=utf-8"});
response.write(JSON.stringify({error: `Internal Server Error`, code: 500}))
response.end();
}
http.ServerResponse.prototype.sendText = function(content={}, code=200) {
this.writeHead(code, {"Content-Type": "text/plain; charset=utf-8"});
this.write(content)
this.end();
}
http.ServerResponse.prototype.sendJson = function(content={}, code=200) {
this.writeHead(code, {"Content-Type": "application/json; charset=utf-8"});
this.write(JSON.stringify(content))
this.end();
}
http.ServerResponse.prototype.sendHtml = function(content={}, code=200) {
this.writeHead(code, {"Content-Type": "text/html; charset=utf-8"});
this.write(content)
this.end();
}
let httpProtocol = secure ? https : http
this.server = httpProtocol.createServer((request, response) => {
try {
// ⚠️ no request params (query string)
if((request.method=="GET") || (request.method=="DELETE")) {
let route = this.routes.find(rt => request.url.startsWith(rt.uri) && rt.method == request.method)
if(route) {
request.params = request.url.split(route.uri)[1].split("/").filter(item => item !== "")
route.f(request, response)
} else {
when404(request, response)
}
} else {
if((request.method=="POST") || (request.method=="PUT")) {
if(request.method=="POST") { // --- POST ---
let route = this.routes.find(rt => request.url == rt.uri && rt.method == request.method)
if(route) {
const body = []
request.on('data', (chunk) => body.push(chunk)) // on content, push it to body
request.on('end', () => { // resolve promise when terminated
request.body = request.headers['content-type'].startsWith("application/json") ? JSON.parse(body.join('')) : body.join('')
route.f(request, response)
})
} else {
when404(request, response)
}
} // --- END POST ---
if(request.method=="PUT") { // --- PUT ---
let route = this.routes.find(rt => request.url.startsWith(rt.uri) && rt.method == request.method)
if(route) {
// the difference with POST
request.params = request.url.split(route.uri)[1].split("/").filter(item => item !== "")
const body = []
request.on('data', (chunk) => body.push(chunk))
request.on('end', () => {
request.body = request.headers['content-type'].startsWith("application/json") ? JSON.parse(body.join('')) : body.join('')
route.f(request, response)
})
} else {
when404(request, response)
}
} // --- END PUT ---
} else {
when500("😡 Houston? We have a problem!", request, response)
}
}
} catch (error) {when500(error, request, response) }
})
this.routes.push({ /* --- health check --- */
uri: "/healthcheck",
method: "GET",
f: (request, response) => {
if(record) {
console.log("👩⚕️ health checking of ", this.record)
response.sendJson(this.record)
} else { // eg: for the DiscoveryBackenServer
response.sendJson({})
}
}
})
function bye(service, cause) {
if(service.discoveryBackend) {
service.removeRegistration(res => {
service.stop(cause)
process.exit()
})
} else { // eg a backend service is not really a sevice
process.exit()
}
}
if(this.discoveryBackend) {
//do something when app is closing
process.on('exit', bye.bind(null, this, 'exit'));
//catches ctrl+c event
process.on('SIGINT', bye.bind(null, this, 'SIGINT'));
//catches uncaught exceptions
process.on('uncaughtException', bye.bind(null, this, 'uncaughtException'));
}
}
createRegistration(callBack) {
this.discoveryBackend.createRegistration(this.record, registrationResult => {
registrationResult.when({
Success: registrationId => callBack(Success.of({message: "😃 registration is ok", record: this.record})),
Failure: error => callBack(Failure.of({message: "😡 registration is ko", error: error}))
}) // end when
}) // end create
} // end register
updateRegistration(callBack) {
this.discoveryBackend.updateRegistration(this.record, registrationResult => {
registrationResult.when({
Success: registrationId => callBack(Success.of({message: "😃 registration is updated", record: this.record})),
Failure: error => callBack(Failure.of({message: "😡 registration update is ko", error: error}))
}) // end when
})
}
removeRegistration(callBack) {
this.discoveryBackend.removeRegistration(this.record, registrationResult => {
registrationResult.when({
Success: registrationId => callBack(Success.of({message: "😃 record is deleted", record: this.record})),
Failure: error => callBack(Failure.of({message: "😡 delete of record is ko", error: error}))
}) // end when
}) // end update
}
add({uri, method, f}) { this.routes.push({uri, method, f}) }
get({uri, f}) { this.add({uri, method:"GET", f}) }
delete({uri, f}) { this.add({uri, method:"DELETE", f}) }
post({uri, f}) { this.add({uri, method:"POST", f}) }
put({uri, f}) { this.add({uri, method:"PUT", f}) }
heartbeat({interval, f}) {
function updateStatusOfService(service) {
return function() {
service.updateRegistration(registration => {
registration.when({
Failure: error => f(Failure.of(error)),
Success: serviceRecord => f(Success.of(serviceRecord))
})
})
}
} // end function updateStatusOfService()
setInterval(updateStatusOfService(this), interval);
}
start({port}, callback) {
try {
this.server.listen(port)
callback(Success.of(port))
} catch (error) {
callback(Failure.of(error))
}
}
}
class DiscoveryBackendServer {
constructor() {
this.servicesDirectory = {}
this.service = new Service({})
this.service.get({uri:`/api/services`, f: (request, response) => {
let keyServices = request.params[0]
if(keyServices) {
response.sendJson({services: this.servicesDirectory[keyServices]})
} else {
response.sendJson({services: this.servicesDirectory})
}
}})
// create registration in the directory service
this.service.post({uri:`/api/services`, f: (request, response) => {
let data = request.body
if(this.servicesDirectory[data.keyServices]==undefined) {
this.servicesDirectory[data.keyServices] = []
}
data.record.date = {}
data.record.date.creation = new Date()
data.record.date.lastUpdate = new Date()
this.servicesDirectory[data.keyServices].push(data.record)
response.sendJson({registration: data.record.registration})
}})
this.service.delete({uri:`/api/services`, f: (request, response) => {
//TODO try catch : when the service does not exists in the directory
let keyServices = request.params[0]
let serviceId = request.params[1]
if(this.servicesDirectory[keyServices]) { // the service is registered
let serviceObject = this.servicesDirectory[keyServices].find(item=>item.registration==serviceId)
let index = this.servicesDirectory[keyServices].indexOf(serviceObject)
// delete the item
if (index > -1) {
this.servicesDirectory[keyServices].splice(index, 1)
}
}
response.sendJson({registration: serviceId})
}})
// update registration in the directory service
this.service.put({uri:`/api/services`, f: (request, response) => {
let keyServices = request.params[0]
let serviceId = request.params[1]
let data = request.body
// update the directory
let serviceObject = this.servicesDirectory[keyServices].find(item=>item.registration==serviceId)
let index = this.servicesDirectory[keyServices].indexOf(serviceObject)
// update and replace the item
data.record.date = serviceObject.date
data.record.date.lastUpdate = new Date()
if (index > -1) {
this.servicesDirectory[keyServices][index] = data.record
}
response.sendJson({registration: data.record.registration})
}})
// always in last position
this.service.get({uri:`/`, f: (request, response) => {
response.sendJson({message: "👋 Hello, I'm the pico discovery backend server"})
}})
}
checkServices({interval, f}) {
function updateStatusesOfServices(servicesDirectory) {
return function() {
for(var keyServices in servicesDirectory) {
servicesDirectory[keyServices].forEach(serviceRecordInDirectory => {
let client = new Client({service: serviceRecordInDirectory})
client.healthCheck()
.then(record => { // record of healthcheck
f(Success.of(serviceRecordInDirectory))
})
.catch(error => f(Failure.of(error)))
})
}
}
} // end function updateStatusesOfServices()
setInterval(updateStatusesOfServices(this.servicesDirectory), interval);
}
start({port}, callback) {
this.service.start({port: port}, res => {
res.when({
Failure: error => callback(Failure.of(error)),
Success: port => callback(Success.of(port))
})
})
}
}
let S4 = () => (((1+Math.random())*0x10000)|0).toString(16).substring(1)
let guid = () => (S4() + S4() + "-" + S4() + "-4" + S4().substr(0,3) + "-" + S4() + "-" + S4() + S4() + S4()).toLowerCase()
class DiscoveryBackend {
constructor({protocol, host, port, keyServices}) {
this.protocol = protocol
this.host = host
this.port = port
this.keyServices = keyServices
}
healthcheck(callback) {
fetch({
protocol: this.protocol, host: this.host, port: this.port,
path: `/healthcheck`,
method: 'GET',
headers: {"Content-Type": "application/json; charset=utf-8"}
}).then(data => { // removeRegistration ok
callback(Success.of(JSON.parse(data)))
}).catch(err => { // removeRegistration ko
callback(Failure.of(err))
})
}
getAllRegistrations(callback) {
fetch({protocol: this.protocol, host: this.host, port: this.port,
path: `/api/services/${this.keyServices}`,
method: 'GET',
headers: {"Content-Type": "application/json; charset=utf-8"}
}).then(data => { // removeRegistration ok
callback(Success.of(JSON.parse(data)))
}).catch(err => { // removeRegistration ko
callback(Failure.of(err))
})
}
getServices({filter}, callback) {
if(filter) {
this.getAllRegistrations(results => {
results.when({
Failure: err => callback(Failure.of(err)),
Success: data => {
if(data.services) {
callback(Success.of(data.services.filter(filter)))
} else { // no services
callback(Success.of({}))
}
}
})
})
} else {
this.getAllRegistrations(results => {
results.when({
Failure: err => callback(Failure.of(err)),
Success: data => {
if(data.services) {
callback(Success.of(data.services))
} else { // no services
callback(Success.of({}))
}
}
})
})
}
}
createRegistration(record, callback) {
record.registration = guid()
fetch({protocol: this.protocol, host: this.host, port: this.port,
path: "/api/services",
method: 'POST',
data:JSON.stringify({record:record, keyServices: this.keyServices}),
headers: {"Content-Type": "application/json; charset=utf-8"}
}).then(data => { // registration ok
callback(Success.of(record.registration))
}).catch(err => { // registration ko
callback(Failure.of(err))
})
}
removeRegistration(record, callback) {
fetch({protocol: this.protocol, host: this.host, port: this.port,
path: `/api/services/${this.keyServices}/${record.registration}`,
method: 'DELETE',
headers: {"Content-Type": "application/json; charset=utf-8"}
}).then(data => { // removeRegistration ok
callback(Success.of(record.registration))
}).catch(err => { // removeRegistration ko
callback(Failure.of(err))
})
}
updateRegistration(record, callback) {
fetch({protocol: this.protocol, host: this.host, port: this.port,
path: `/api/services/${this.keyServices}/${record.registration}`,
method: 'PUT',
data:JSON.stringify({record:record, keyServices: this.keyServices}),
headers: {"Content-Type": "application/json; charset=utf-8"}
}).then(data => { // registration ok
callback(Success.of(record.registration))
}).catch(err => { // registration ko
callback(Failure.of(err))
})
}
}
module.exports = {
Wrapper: Wrapper, Success: Success, Failure: Failure, Failures: Failures, fetch: fetch,
Service: Service, Client: Client,
DiscoveryBackendServer: DiscoveryBackendServer, DiscoveryBackend: DiscoveryBackend
}