This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
forked from cloudfoundry/overview-broker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
service_broker_interface.js
831 lines (734 loc) · 34.4 KB
/
service_broker_interface.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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
var express = require('express'),
moment = require('moment'),
cfenv = require('cfenv'),
randomstring = require('randomstring'),
Logger = require('./logger'),
ServiceBroker = require('./service_broker');
const { header, body, param, query, validationResult } = require('express-validator');
class ServiceBrokerInterface {
constructor() {
this.serviceBroker = new ServiceBroker();
this.logger = new Logger();
this.serviceInstances = {};
this.latestRequests = [];
this.latestResponses = [];
this.instanceOperations = {};
this.bindingOperations = {};
this.numRequestsToSave = 5;
this.numResponsesToSave = 5;
this.started = moment().toString();
// Check for completed asynchronous operations every 10 seconds
var self = this;
setInterval(() => { self.checkAsyncOperations() }, 10000);
}
checkRequest() {
return [
// Check for version header
header('X-Broker-Api-Version', 'Missing broker api version').exists(),
(request, response, next) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 412, errors);
return;
}
next();
}
]
}
getCatalog(request, response) {
var data = this.serviceBroker.getCatalog();
this.sendJSONResponse(response, 200, data);
}
createServiceInstance() {
return [
param('instance_id', 'Missing instance_id').exists(),
body('service_id', 'Missing service_id').exists(),
body('plan_id', 'Missing plan_id').exists(),
body('organization_guid', 'Missing organization_guid').exists(),
body('space_guid', 'Missing space_guid').exists(),
(request, response) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 400, errors);
return;
}
// Check if we only support asynchronous operations
if (process.env.responseMode == 'async' && request.query.accepts_incomplete != 'true') {
this.sendJSONResponse(response, 422, { error: 'AsyncRequired' } );
return;
}
// Validate serviceId and planId
var service = this.serviceBroker.getService(request.body.service_id);
var plan = this.serviceBroker.getPlanForService(request.body.service_id, request.body.plan_id);
if (!plan) {
this.sendResponse(response, 400, `Could not find service ${request.body.service_id}, plan ${request.body.plan_id}`);
return;
}
// Validate any configuration parameters if we have a schema
var schema = null;
try {
schema = plan.schemas.service_instance.create.parameters;
}
catch (e) {
// No schema to validate with
}
if (schema) {
var validationErrors = this.serviceBroker.validateParameters(schema, (request.body.parameters || {}));
if (validationErrors) {
this.sendResponse(response, 400, validationErrors);
return;
}
}
// Create the service instance
var serviceInstanceId = request.params.instance_id;
this.logger.debug(`Creating service instance ${serviceInstanceId}`);
let dashboardUrl = `${this.serviceBroker.getDashboardUrl()}?time=${new Date().toISOString()}`;
let data = {
dashboard_url: dashboardUrl
};
// Check if a provision is already in progress
var operation = this.instanceOperations[serviceInstanceId];
if (operation && operation.type == 'provision' && operation.state == 'in progress') {
this.sendJSONResponse(response, 202, data);
return;
}
// Check if the instance already exists
if (serviceInstanceId in this.serviceInstances) {
this.sendJSONResponse(response, 200, data);
return;
}
this.serviceInstances[serviceInstanceId] = {
created: moment().toString(),
last_updated: 'never',
api_version: request.header('X-Broker-Api-Version'),
service_id: request.body.service_id,
service_name: service.name,
plan_id: request.body.plan_id,
plan_name: plan.name,
parameters: request.body.parameters || {},
accepts_incomplete: (request.query.accepts_incomplete == 'true'),
organization_guid: request.body.organization_guid,
space_guid: request.body.space_guid,
context: request.body.context || {},
bindings: {},
data: data
};
if ((request.query.accepts_incomplete == 'true' && (process.env.responseMode == 'default') || process.env.responseMode == 'async')) {
// Set the end time for the operation to be one second from now
// unless an explicit delay was requested
var endTime = new Date();
if (parseInt(process.env.ASYNCHRONOUS_DELAY_IN_SECONDS)) {
endTime.setSeconds(endTime.getSeconds() + parseInt(process.env.ASYNCHRONOUS_DELAY_IN_SECONDS));
}
else {
endTime.setSeconds(endTime.getSeconds() + 1);
}
this.instanceOperations[serviceInstanceId] = {
type: 'provision',
state: 'in progress',
endTime: endTime
};
this.sendJSONResponse(response, 202, data);
return;
}
// Else return the data synchronously
this.sendJSONResponse(response, 201, data);
}
]
}
updateServiceInstance() {
return [
param('instance_id', 'Missing instance_id').exists(),
body('service_id', 'Missing service_id').exists(),
(request, response, next) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 400, errors);
return;
}
var serviceInstanceId = request.params.instance_id;
var plan = null;
if (request.body.plan_id) {
plan = this.serviceBroker.getPlanForService(request.body.service_id, request.body.plan_id);
} else {
let service_id = this.serviceInstances[serviceInstanceId].service_id;
let plan_id = this.serviceInstances[serviceInstanceId].plan_id;
plan = this.serviceBroker.getPlanForService(service_id, plan_id);
}
// Validate serviceId and planId
if (!plan) {
this.sendResponse(response, 400, 'Could not find service %s, plan %s', request.body.service_id, request.body.plan_id);
return;
}
// Check if we only support asynchronous operations
if (process.env.responseMode == 'async' && request.query.accepts_incomplete != 'true') {
this.sendJSONResponse(response, 422, { error: 'AsyncRequired' } );
return;
}
// Validate any configuration parameters if we have a schema
var schema = null;
try {
schema = plan.schemas.service_instance.update.parameters;
}
catch (e) {
// No schema to validate with
}
if (schema) {
var validationErrors = this.serviceBroker.validateParameters(schema, (request.body.parameters || {}));
if (validationErrors) {
this.sendResponse(response, 400, validationErrors);
return;
}
}
this.logger.debug(`Updating service ${serviceInstanceId}`);
// Check if an operation is in progress
var operation = this.instanceOperations[serviceInstanceId];
if (operation && operation.state == 'in progress') {
this.sendJSONResponse(response, 422, { error: 'ConcurrencyError' });
return;
}
this.serviceInstances[serviceInstanceId].api_version = request.header('X-Broker-Api-Version'),
this.serviceInstances[serviceInstanceId].service_id = request.body.service_id;
this.serviceInstances[serviceInstanceId].plan_id = plan.id;
this.serviceInstances[serviceInstanceId].plan_name = plan.name;
this.serviceInstances[serviceInstanceId].parameters = request.body.parameters || {};
this.serviceInstances[serviceInstanceId].context = request.body.context || {};
this.serviceInstances[serviceInstanceId].last_updated = moment().toString();
let dashboardUrl = `${this.serviceBroker.getDashboardUrl()}?time=${new Date().toISOString()}`;
let data = {
dashboard_url: dashboardUrl
};
if ((request.query.accepts_incomplete == 'true' && (process.env.responseMode == 'default') || process.env.responseMode == 'async')) {
// Set the end time for the operation to be one second from now
// unless an explicit delay was requested
var endTime = new Date();
if (parseInt(process.env.ASYNCHRONOUS_DELAY_IN_SECONDS)) {
endTime.setSeconds(endTime.getSeconds() + parseInt(process.env.ASYNCHRONOUS_DELAY_IN_SECONDS));
}
else {
endTime.setSeconds(endTime.getSeconds() + 1);
}
this.instanceOperations[serviceInstanceId] = {
type: 'update',
state: 'in progress',
endTime: endTime
};
this.sendJSONResponse(response, 202, data);
return;
}
// Else return the data synchronously
this.sendJSONResponse(response, 200, data);
}
]
}
deleteServiceInstance() {
return [
param('instance_id', 'Missing instance_id').exists(),
query('service_id', 'Missing service_id').exists(),
query('plan_id', 'Missing plan_id').exists(),
(request, response, next) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 400, errors);
return;
}
// Validate serviceId and planId
var plan = this.serviceBroker.getPlanForService(request.query.service_id, request.query.plan_id);
if (!plan) {
// Just throw a warning in case the broker was restarted so the IDs changed
console.warn('Could not find service %s, plan %s', request.query.service_id, request.query.plan_id);
}
// Check if we only support asynchronous operations
if (process.env.responseMode == 'async' && request.query.accepts_incomplete != 'true') {
this.sendJSONResponse(response, 422, { error: 'AsyncRequired' } );
return;
}
var serviceInstanceId = request.params.instance_id;
this.logger.debug(`Deleting service ${serviceInstanceId}`);
// Check if an operation is in progress
var operation = this.instanceOperations[serviceInstanceId];
if (operation && operation.state == 'in progress') {
// If a provision is in progress, we can cancel it
if (operation.type == 'provision') {
delete this.instanceOperations[serviceInstanceId];
}
// Else it must be an update so we should fail
else {
this.sendJSONResponse(response, 422, { error: 'ConcurrencyError' });
return;
}
}
// Delete the service instance from memory
if (serviceInstanceId in this.serviceInstances) {
delete this.serviceInstances[serviceInstanceId];
} else {
this.sendJSONResponse(response, 410, {});
return;
}
// Perform asynchronous deprovision
if ((request.query.accepts_incomplete == 'true' && (process.env.responseMode == 'default') || process.env.responseMode == 'async')) {
// Set the end time for the operation to be one second from now
// unless an explicit delay was requested
var endTime = new Date();
if (parseInt(process.env.ASYNCHRONOUS_DELAY_IN_SECONDS)) {
endTime.setSeconds(endTime.getSeconds() + parseInt(process.env.ASYNCHRONOUS_DELAY_IN_SECONDS));
}
else {
endTime.setSeconds(endTime.getSeconds() + 1);
}
this.instanceOperations[serviceInstanceId] = {
type: 'deprovision',
state: 'in progress',
endTime: endTime
};
this.sendJSONResponse(response, 202, {});
return;
}
// Perform synchronous deprovision
this.sendJSONResponse(response, 200, {});
}
]
}
createServiceBinding() {
return [
param('instance_id', 'Missing instance_id').exists(),
body('service_id', 'Missing service_id').exists(),
body('plan_id', 'Missing plan_id').exists(),
(request, response, next) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 400, errors);
return;
}
// Validate serviceId and planId
var service = this.serviceBroker.getService(request.body.service_id);
if (!service) {
this.sendResponse(response, 400, `Could not find service ${request.body.service_id}`);
return;
}
var plan = this.serviceBroker.getPlanForService(request.body.service_id, request.body.plan_id);
if (!plan) {
this.sendResponse(response, 400, `Could not find service/plan ${request.body.service_id}/${request.body.plan_id}`);
return;
}
// Check if we only support asynchronous operations
if (process.env.responseMode == 'async' && request.query.accepts_incomplete != 'true') {
this.sendJSONResponse(response, 422, { error: 'AsyncRequired' } );
return;
}
// Validate any configuration parameters if we have a schema
var schema = null;
try {
schema = plan.schemas.service_binding.create.parameters;
}
catch (e) {
// No schema to validate with
}
if (schema) {
var validationErrors = this.serviceBroker.validateParameters(schema, (request.body.parameters || {}));
if (validationErrors) {
this.sendResponse(response, 400, validationErrors);
return;
}
}
var serviceInstanceId = request.params.instance_id;
var bindingId = request.params.binding_id;
this.logger.debug(`Creating service binding ${bindingId} for service ${serviceInstanceId}`);
// Generate the binding info depending on the type of binding
var data = {};
if (!service.requires || service.requires.length == 0) {
data = {
credentials: {
username: 'admin',
password: randomstring.generate(16)
}
};
}
else if (service.requires && service.requires.indexOf('syslog_drain') > -1) {
data = {
syslog_drain_url: process.env.SYSLOG_DRAIN_URL
};
}
else if (service.requires && service.requires.indexOf('volume_mount') > -1) {
data = {
volume_mounts: [{
driver: 'nfs',
container_dir: '/tmp',
mode: 'r',
device_type: 'shared',
device: {
volume_id: '1'
}
}]
};
}
// Check if a bind is already in progress
var operation = this.bindingOperations[bindingId];
if (operation && operation.type == 'binding' && operation.state == 'in progress') {
this.sendJSONResponse(response, 202, data);
return;
}
// Check if the instance already exists
if (!this.serviceInstances[serviceInstanceId]) {
this.sendResponse(response, 404, `Could not find service instance ${serviceInstanceId}`);
return;
}
// Check if the binding already exists
if (serviceInstanceId in this.serviceInstances && bindingId in this.serviceInstances[serviceInstanceId].bindings) {
this.sendJSONResponse(response, 200, data);
return;
}
// Save the binding to memory
this.serviceInstances[serviceInstanceId].bindings[bindingId] = {
api_version: request.header('X-Broker-Api-Version'),
service_id: request.body.service_id,
plan_id: request.body.plan_id,
app_guid: request.body.app_guid,
bind_resource: request.body.bind_resource,
parameters: request.body.parameters,
data: data
};
// Perform asynchronous binding
if ((request.query.accepts_incomplete == 'true' && (process.env.responseMode == 'default') || process.env.responseMode == 'async')) {
// Set the end time for the operation to be one second from now
// unless an explicit delay was requested
var endTime = new Date();
if (parseInt(process.env.ASYNCHRONOUS_DELAY_IN_SECONDS)) {
endTime.setSeconds(endTime.getSeconds() + parseInt(process.env.ASYNCHRONOUS_DELAY_IN_SECONDS));
}
else {
endTime.setSeconds(endTime.getSeconds() + 1);
}
this.bindingOperations[bindingId] = {
type: 'binding',
state: 'in progress',
endTime: endTime
};
this.sendJSONResponse(response, 202, {});
return;
}
// Perform synchronous binding
this.sendJSONResponse(response, 201, data);
}
]
}
deleteServiceBinding() {
return [
param('instance_id', 'Missing instance_id').exists(),
param('binding_id', 'Missing binding_id').exists(),
query('service_id', 'Missing service_id').exists(),
query('plan_id', 'Missing plan_id').exists(),
(request, response, next) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 400, errors);
return;
}
var serviceInstanceId = request.params.instance_id;
var bindingId = request.params.binding_id;
// Check if we only support asynchronous operations
if (process.env.responseMode == 'async' && request.query.accepts_incomplete != 'true') {
this.sendJSONResponse(response, 422, { error: 'AsyncRequired' } );
return;
}
// Check if an operation is in progress
var operation = this.bindingOperations[bindingId];
if (operation && operation.state == 'in progress') {
this.sendJSONResponse(response, 422, { error: 'ConcurrencyError' });
return;
}
this.logger.debug(`Deleting service binding ${bindingId} for service ${serviceInstanceId}`);
// Delete the service instance from memory
if (serviceInstanceId in this.serviceInstances && bindingId in this.serviceInstances[serviceInstanceId].bindings) {
delete this.serviceInstances[serviceInstanceId].bindings[bindingId];
}
else {
this.sendJSONResponse(response, 410, {});
return;
}
// Perform asynchronous deprovision
if ((request.query.accepts_incomplete == 'true' && (process.env.responseMode == 'default') || process.env.responseMode == 'async')) {
// Set the end time for the operation to be one second from now
// unless an explicit delay was requested
var endTime = new Date();
if (parseInt(process.env.ASYNCHRONOUS_DELAY_IN_SECONDS)) {
endTime.setSeconds(endTime.getSeconds() + parseInt(process.env.ASYNCHRONOUS_DELAY_IN_SECONDS));
}
else {
endTime.setSeconds(endTime.getSeconds() + 1);
}
this.bindingOperations[bindingId] = {
type: 'unbinding',
state: 'in progress',
endTime: endTime
};
this.sendJSONResponse(response, 202, {});
return;
}
// Perform synchronous deprovision
this.sendJSONResponse(response, 200, {});
}
]
}
getLastServiceInstanceOperation() {
return [
param('instance_id', 'Missing instance_id').exists(),
(request, response, next) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 400, errors);
return;
}
var serviceInstanceId = request.params.instance_id;
var operation = this.instanceOperations[serviceInstanceId];
this.getLastOperation(operation, serviceInstanceId, request, response);
}
]
}
getLastServiceBindingOperation() {
return [
param('instance_id', 'Missing instance_id').exists(),
param('binding_id', 'Missing binding_id').exists(),
(request, response, next) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 400, errors);
return;
}
var bindingId = request.params.binding_id;
var operation = this.bindingOperations[bindingId];
this.getLastOperation(operation, bindingId, request, response);
}
]
}
checkAsyncOperations() {
var self = this;
Object.keys(this.instanceOperations).forEach(function(key) {
self.updateOperation(self.instanceOperations[key], key);
});
Object.keys(this.bindingOperations).forEach(function(key) {
self.updateOperation(self.bindingOperations[key], key);
});
}
updateOperation(operation, id) {
// Check if the operation has finished
if (operation.state == 'in progress' && operation.endTime < new Date()) {
// Check if we should fail the operation
operation.state = process.env.errorMode == 'failasync' ? 'failed' : 'succeeded';
this.logger.debug(`Operation of type ${operation.type} completed with state ${operation.state} (id: ${id})`);
}
}
getLastOperation(operation, id, request, response) {
// If we don't know about the operation, presume that it failed since we have forgotten about it
if (!operation) {
this.sendJSONResponse(response, 200, {
state: 'failed',
description: 'The operation could not be found.'
});
return;
}
// Update the operation in case it has finished
this.updateOperation(operation, id);
// Check if the operation is still going
if (operation.state == 'in progress') {
// Check if we should add a Retry-After header
if (parseInt(process.env.POLLING_INTERVAL_IN_SECONDS)) {
response.append('Retry-After', parseInt(process.env.POLLING_INTERVAL_IN_SECONDS));
}
}
// Return the operation status
this.sendJSONResponse(response, 200, {
state: operation.state,
description: `Operation ${operation.state}`
});
}
getServiceInstance() {
return [
param('instance_id', 'Missing instance_id').exists(),
(request, response, next) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 400, errors);
return;
}
let serviceInstanceId = request.params.instance_id;
if (!this.serviceInstances[serviceInstanceId]) {
this.sendResponse(response, 404, `Could not find service instance ${serviceInstanceId}`);
return;
}
var data = Object.assign({}, this.serviceInstances[serviceInstanceId].data);
data.service_id = this.serviceInstances[serviceInstanceId].service_id;
data.plan_id = this.serviceInstances[serviceInstanceId].plan_id;
data.parameters = this.serviceInstances[serviceInstanceId].parameters;
this.sendJSONResponse(response, 200, data);
}
]
}
getServiceBinding() {
return [
param('instance_id', 'Missing instance_id').exists(),
param('binding_id', 'Missing binding_id').exists(),
(request, response, next) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 400, errors);
return;
}
let serviceInstanceId = request.params.instance_id;
let bindingId = request.params.binding_id;
if (!this.serviceInstances[serviceInstanceId]) {
this.sendResponse(response, 404, `Could not find service instance ${serviceInstanceId}`);
return;
}
if (!this.serviceInstances[serviceInstanceId].bindings[bindingId]) {
this.sendResponse(response, 404, `Could not find service binding ${bindingId}`);
return;
}
var data = Object.assign({}, this.serviceInstances[serviceInstanceId].bindings[bindingId].data);
data.parameters = this.serviceInstances[serviceInstanceId].bindings[bindingId].parameters;
this.sendJSONResponse(response, 200, data);
}
]
}
getDashboardData() {
return {
title: 'Overview Broker',
started: this.started,
serviceInstances: this.serviceInstances,
latestRequests: this.latestRequests.slice().reverse(),
latestResponses: this.latestResponses.slice().reverse(),
catalog: this.serviceBroker.getCatalog(),
env: {
BROKER_USERNAME: process.env.BROKER_USERNAME || 'admin',
BROKER_PASSWORD: process.env.BROKER_PASSWORD || 'password',
SYSLOG_DRAIN_URL: process.env.SYSLOG_DRAIN_URL,
EXPOSE_VOLUME_MOUNT_SERVICE: process.env.EXPOSE_VOLUME_MOUNT_SERVICE,
ENABLE_EXAMPLE_SCHEMAS: process.env.ENABLE_EXAMPLE_SCHEMAS,
ASYNCHRONOUS_DELAY_IN_SECONDS: process.env.ASYNCHRONOUS_DELAY_IN_SECONDS,
MAXIMUM_POLLING_DURATION_IN_SECONDS: process.env.MAXIMUM_POLLING_DURATION_IN_SECONDS,
POLLING_INTERVAL_IN_SECONDS: process.env.POLLING_INTERVAL_IN_SECONDS,
SERVICE_NAME: process.env.SERVICE_NAME,
SERVICE_DESCRIPTION: process.env.SERVICE_DESCRIPTION
}
};
}
getHealth() {
return [
param('instance_id', 'Missing instance_id').exists(),
(request, response, next) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 400, errors);
return;
}
let serviceInstanceId = request.params.instance_id;
if (!this.serviceInstances[serviceInstanceId]) {
this.sendJSONResponse(response, 200, { alive: false });
return;
}
this.sendJSONResponse(response, 200, { alive: true });
}
]
}
getInfo() {
return [
param('instance_id', 'Missing instance_id').exists(),
(request, response, next) => {
const errors = validationResult(request);
if (!errors.isEmpty()) {
this.sendResponse(response, 400, errors);
return;
}
let serviceInstanceId = request.params.instance_id;
if (!this.serviceInstances[serviceInstanceId]) {
this.sendResponse(response, 404, `Could not find service instance ${serviceInstanceId}`);
return;
}
let data = {
server_url: cfenv.getAppEnv().url,
npm_config_node_version: process.env.npm_config_node_version,
npm_package_version: process.env.npm_package_version,
};
this.sendJSONResponse(response, 200, data);
}
]
}
getLogs(request, response) {
request.checkParams('instance_id', 'Missing instance_id').notEmpty();
var errors = request.validationErrors();
if (errors) {
this.sendResponse(response, 400, errors);
return;
}
let serviceInstanceId = request.params.instance_id;
if (!this.serviceInstances[serviceInstanceId]) {
this.sendResponse(response, 404, `Could not find service instance ${serviceInstanceId}`);
return;
}
this.sendJSONResponse(response, 200, data);
}
listInstances(request, response) {
var data = {};
var serviceInstances = this.serviceInstances;
Object.keys(serviceInstances).forEach(function(key) {
data[key] = serviceInstances[key].data;
});
this.sendJSONResponse(response, 200, data);
}
clean(request, response) {
this.serviceInstances = {};
this.latestRequests = [];
this.latestResponses = [];
this.instanceOperations = {};
this.bindingOperations = {};
response.status(200).json({});
}
updateCatalog(request, response) {
let data = request.body.catalog;
let error = this.serviceBroker.setCatalog(data);
if (error) {
this.sendResponse(response, 400, error);
return;
}
this.sendJSONResponse(response, 200, {});
}
saveRequest(request) {
this.latestRequests.push({
timestamp: moment().toString(),
data: {
url: request.url,
method: request.method,
body: request.body,
headers: request.headers
}
});
if (this.latestRequests.length > this.numRequestsToSave) {
this.latestRequests.shift();
}
}
saveResponse(httpCode, data, headers) {
this.latestResponses.push({
timestamp: moment().toString(),
data: {
code: httpCode,
headers: headers,
body: data
}
});
if (this.latestResponses.length > this.numResponsesToSave) {
this.latestResponses.shift();
}
}
sendResponse(response, httpCode, data) {
response.status(httpCode).send(data);
this.saveResponse(httpCode, data, response.getHeaders());
}
sendJSONResponse(response, httpCode, data) {
response.status(httpCode).json(data);
this.saveResponse(httpCode, data, response.getHeaders());
}
getServiceBroker() {
return this.serviceBroker;
}
}
module.exports = ServiceBrokerInterface;