-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv1.js
467 lines (388 loc) · 15.2 KB
/
v1.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
const request = require('request');
const validMultiServerValues = ["WASCell", "LibertyCollective"];
const validSingleServerValues = ["LibertyCore", "LibertyNDServer", "WASBase", "WASNDServer"];
// version 1 API with org and spaces
let WebSphereOnBluemix = function(credentials){
this.username = "apikey";
this.api_key = credentials.api_key;
this.api_url = credentials.api_url;
// Validate credentials.
if (isUndefinedOrEmpty([this.api_url, this.api_key])){
throw Error("WebSphereOnBluemix Initialization Error: api_url and api_key must both be defined.");
}
this.api_url = `${this.api_url}/v1`;
return this;
};
WebSphereOnBluemix.prototype.get_bearer_token = function (callback){
// Check if the bearer token is set and not expired.
if (this.bearer_token){
return callback(null, this.bearer_token);
}
let req_options = getOptions();
req_options.method = "GET";
req_options.url = `${this.api_url}/oauth`;
req_options.auth = {user: this.username, pass: this.api_key};
request(req_options, (err, res, body) => {
if(err) {
return callback(`WebSphereOnBluemix bearer token Error: ${err}`, null);
}
else if(res.statusCode !== 200){
// The request was good, but the API told us something went wrong.
return callback(body, null);
}
else {
let bodyJSON = JSON.parse(body);
this.bearer_token = bodyJSON.access_token;
this.refresh_token = bodyJSON.refresh_token;
return callback(null, this.bearer_token);
}
});
};
// Get all organizations.
WebSphereOnBluemix.prototype.get_organizations = function(callback) {
this.get_bearer_token((err, token) => {
if (err){
return callback(err, null);
}
let req_options = getOptions(token);
req_options.method = "GET";
req_options.url = `${this.api_url}/organizations`;
this.send_request(req_options, callback);
});
};
// Get an org by name.
WebSphereOnBluemix.prototype.get_organization_by_name = function(options, callback) {
// Validate the user provided an org.
let organization_name = options.organization;
if (isUndefinedOrEmpty([organization_name])){
return callback("organization must be defined in options", null);
}
this.get_bearer_token((err, token) => {
if (err){
return callback(err);
}
let req_options = getOptions(token);
req_options.method = "GET";
req_options.url = `${this.api_url}/organizations/${organization_name}`;
this.send_request(req_options, callback);
});
};
// Get all spaces in a given org.
WebSphereOnBluemix.prototype.get_spaces = function(options, callback) {
// Validate the user provided an org.
let organization_name = options.organization;
if (isUndefinedOrEmpty([organization_name])){
return callback("organization must be defined in options", null);
}
this.get_bearer_token((err, token) => {
if (err){
return callback(err);
}
let req_options = getOptions(token);
req_options.method = "GET";
req_options.url = `${this.api_url}/organizations/${organization_name}/spaces`;
this.send_request(req_options, callback);
});
};
// Get a space given an org and space name.
WebSphereOnBluemix.prototype.get_space_by_name = function(options, callback) {
// Validate the user provided an org and space.
let organization_name = options.organization;
let space_name = options.space;
if (isUndefinedOrEmpty([organization_name, space_name])){
return callback("organization and space must be defined in options", null);
}
this.get_bearer_token((err, token) => {
if (err){
return callback(err);
}
let req_options = getOptions(token);
req_options.method = "GET";
req_options.url = `${this.api_url}/organizations/${organization_name}/spaces/${space_name}`;
this.send_request(req_options, callback);
});
};
// Create a WebSphere on IBM Cloud service instance.
WebSphereOnBluemix.prototype.create_service_instance = function(options, callback) {
let isMultiServer;
// Validate the user provided an org and space.
let organization_name = options.organization;
let space_name = options.space;
let type = options.type;
let name = options.name;
if (isUndefinedOrEmpty([organization_name, space_name, name])){
return callback("organization, space, and name must all be defined in options", null);
}
// check for a valid type
if(validMultiServerValues.indexOf(type) > -1){
isMultiServer = true;
}
else if(validSingleServerValues.indexOf(type) > -1){
isMultiServer = false;
}
else{
return callback(`type must be one of the following: ${validSingleServerValues.join(", ")} , ${validMultiServerValues.join(", ")}`, null);
}
// If false, doProvision allows us to create a subscription without provisioning it so the user can configure it to their needs through
// another means (for examples the IBM Cloud UI)
// if doProvision is not specified the default is true
let do_provision = options.doProvision;
do_provision = typeof do_provision === "undefined" ? true : options.doProvision;
if(typeof do_provision !== "boolean"){
return callback("doProvision must be one of: true, false", null);
}
let service_instance_obj = isMultiServer ? get_multi_server_body(do_provision, options, callback) : get_single_server_body(do_provision, options, callback);
// if there were some validation issues with the users options we will return and not send the request
if(service_instance_obj === false){
return;
}
do_provision = do_provision ? "yes" : "no";
this.get_bearer_token((err, token) => {
if (err){
return callback(err);
}
let req_options = getOptions(token);
req_options.method = "POST";
req_options.url = `${this.api_url}/organizations/${organization_name}/spaces/${space_name}/serviceinstances?provision=${do_provision}`;
req_options.json = service_instance_obj;
this.send_request(req_options, callback);
});
};
function get_single_server_body(doProvision, options, callback){
// if doProvision is false the size doesn't matter as the user will configure it later, the API still wants a size to be happy though
let application_server_vm_size = doProvision ? options.application_server_vm_size : "S";
if(typeof application_server_vm_size === "undefined" || application_server_vm_size === ""){
callback("application_server_vm_size must be defined.", null);
return false;
}
return {Type: options.type, Name: options.name, ApplicationServerVMSize: application_server_vm_size};
}
function get_multi_server_body(doProvision, options, callback){
// if doProvision if false these values do not matter as the user will configure it later, but the API still requires they are sent
let application_server_vm_size = doProvision ? options.application_server_vm_size : "S";
let control_server_vm_size = doProvision ? options.control_server_vm_size : "S";
let num_app_vms = doProvision ? options.number_of_app_vms : 1;
if (isUndefinedOrEmpty([application_server_vm_size, control_server_vm_size, num_app_vms])){
callback("control_server_vm_size, application_server_vm_size, and num_app_vms must all be defined.", null);
return false;
}
return {
Type: options.type,
Name: options.name,
ApplicationServerVMSize: application_server_vm_size,
ControlServerVMSize: control_server_vm_size,
NumberOfApplicationVMs: num_app_vms
};
}
// Get all service instances in a given org and space.
WebSphereOnBluemix.prototype.get_service_instances = function(options, callback) {
// Validate the user provided an org and space.
let organization_name = options.organization;
let space_name = options.space;
if (isUndefinedOrEmpty([organization_name, space_name])){
return callback("organization and space must be defined in options", null);
}
this.get_bearer_token((err, token) => {
if (err){
return callback(err);
}
let req_options = getOptions(token);
req_options.method = "GET";
req_options.url = `${this.api_url}/organizations/${organization_name}/spaces/${space_name}/serviceinstances`;
this.send_request(req_options, callback);
});
};
// Get a single service instance with respect to a service ID.
WebSphereOnBluemix.prototype.get_service_instance = function(options, callback) {
// Validate the user provided and org and space.
let organization_name = options.organization;
let space_name = options.space;
let service_instance_id = options.service_instance_id;
if (isUndefinedOrEmpty([organization_name, space_name])){
return callback("organization, space, and service_instance_id must all be defined in options", null);
}
this.get_bearer_token((err, token) => {
if (err){
return callback(err);
}
let req_options = getOptions(token);
req_options.method = "GET";
req_options.url = `${this.api_url}/organizations/${organization_name}/spaces/${space_name}/serviceinstances/${service_instance_id}`;
this.send_request(req_options, callback);
});
};
// Apply an action to all resources with respect to a service ID.
WebSphereOnBluemix.prototype.action_resources = function(options, callback) {
// Validate the user provided an org and space.
let organization_name = options.organization;
let space_name = options.space;
let service_instance_id = options.service_instance_id;
let action = options.action;
if (isUndefinedOrEmpty([organization_name, space_name, service_instance_id, action])){
return callback("organization, space, service_instance_id, and action must all be defined in options", null);
}
this.get_bearer_token((err, token) => {
if (err){
return callback(err);
}
let req_options = getOptions(token);
req_options.method = "PUT";
req_options.url = `${this.api_url}/organizations/${organization_name}/spaces/${space_name} /serviceinstances/${service_instance_id}?action=${action}`;
this.send_request(req_options, callback);
});
};
// Delete a service instance given a service instance ID.
WebSphereOnBluemix.prototype.delete_service_instance = function(options, callback) {
// Validate the user provided an org and space.
let organization_name = options.organization;
let space_name = options.space;
let service_instance_id = options.service_instance_id;
if (isUndefinedOrEmpty([organization_name, space_name, service_instance_id])){
return callback("organization and space must be defined.", null);
}
this.get_bearer_token((err, token) => {
if (err){
return callback(err);
}
let req_options = getOptions(token);
req_options.method = "DELETE";
req_options.url = `${this.api_url}/organizations/${organization_name}/spaces/${space_name}/serviceinstances/${service_instance_id}`;
this.send_request(req_options, callback);
})
};
// Get all resources with respect to a service ID.
WebSphereOnBluemix.prototype.get_resources = function(options, callback) {
// Validate the user provided an org and space.
let organization_name = options.organization;
let space_name = options.space;
let service_instance_id = options.service_instance_id;
if (isUndefinedOrEmpty([organization_name, space_name, service_instance_id])){
return callback("organization, space, and service_instance_id must all be defined in options", null);
}
this.get_bearer_token((err, token) => {
if (err){
return callback(err);
}
let req_options = getOptions(token);
req_options.method = "GET";
req_options.url = `${this.api_url}/organizations/${organization_name}/spaces/${space_name}/serviceinstances/${service_instance_id}/resources`;
this.send_request(req_options, callback);
});
};
// Get a single resource with respect to service instance ID and resource ID.
WebSphereOnBluemix.prototype.get_resource = function(options, callback) {
// Validate the user provided an org and space.
let organization_name = options.organization;
let space_name = options.space;
let service_instance_id = options.service_instance_id;
let resource_id = options.resource_id;
if (isUndefinedOrEmpty([organization_name, space_name, service_instance_id, resource_id])){
return callback("organization, space, service_instance_id, and resource_id must all be defined in options", null);
}
this.get_bearer_token((err, token) => {
if (err){
return callback(err);
}
let req_options = getOptions(token);
req_options.method = "GET";
req_options.url = `${this.api_url}/organizations/${organization_name}/spaces/${space_name}/serviceinstances/${service_instance_id}/resources/${resource_id}`;
this.send_request(req_options, callback);
});
};
// Apply an action single resource with respect to service instance ID and resource ID.
WebSphereOnBluemix.prototype.action_resource = function(options, callback) {
// Validate the user provided an org and space.
let organization_name = options.organization;
let space_name = options.space;
let service_instance_id = options.service_instance_id;
let resource_id = options.resource_id;
let action = options.action;
if (isUndefinedOrEmpty([organization_name, space_name, service_instance_id, resource_id])){
return callback("organization, space, service_instance_id, resource_id, and action must all be defined in options", null);
}
this.get_bearer_token((err, token) => {
if (err){
return callback(err);
}
let req_options = getOptions(token);
req_options.method = "PUT";
req_options.url = `${this.api_url}/organizations/${organization_name}/spaces/${space_name}/serviceinstances/${service_instance_id}/resources/${resource_id}?action=${action}`;
this.send_request(req_options, callback);
});
};
// Continually check if a subscriptions resources are ready and returns the resource info when it is ready
WebSphereOnBluemix.prototype.monitor_resources = function(options, callback) {
let check_status = () => {
this.get_resources(options, (err, resource) => {
if(err){
console.log(err);
clearInterval(intervalID);
return callback(err, null);
}
let resourceJSON = JSON.parse(resource);
if(resourceJSON.length > 0) {
clearInterval(intervalID);
return callback(null, resource);
}
});
};
// check status now and every 3 min
check_status();
let intervalID = setInterval(check_status, 3 * 60 * 1000);
};
WebSphereOnBluemix.prototype.send_request = function (request_options, callback){
request(request_options, (err, res, body) => {
if (err) {
return callback(err, null);
}
// If we get a 401 or 400 it's possible the bearer token expired. Refresh the token and retry the request.
else if (res.statusCode === 400 || res.statusCode === 401) {
this.bearer_token = null;
this.get_bearer_token((err, refreshed_bearer_token) =>{
request_options.auth.bearer = refreshed_bearer_token;
// Retry the request.
request(request_options, (err, res, body) => {
if (err) {
return callback(err, null);
}
// The request was good, but the API told us something went wrong.
else if (res.statusCode < 200 || res.statusCode > 299) {
return callback(JSON.stringify(body), null);
}
// Request was successful.
else{
return callback(null, body);
}
});
});
}
// The request was good, but the API told us something went wrong.
else if (res.statusCode < 200 || res.statusCode > 299) {
return callback(JSON.stringify(body), null);
}
// Request was successful.
else {
return callback(null, body);
}
});
};
function getOptions(token){
return {
headers: {
Accept: "application/json"
},
auth: {
bearer: token
}
};
}
function isUndefinedOrEmpty(arr){
let isBad = false;
arr.forEach(function (param){
if(typeof param === "undefined" || param === ""){
isBad = true;
}
});
return isBad;
}
module.exports = WebSphereOnBluemix;