-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
1573 lines (1295 loc) · 39.6 KB
/
index.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
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use strict';
/*
global module,
require
*/
const colors = require('colors'),
formUrlEncoded = require('form-urlencoded'),
Client = require('node-rest-client').Client;
/**
* Main Robot API interface, contains all API method wrappers
*/
class Robot {
/**
*
* @param {object} config the configuration object
* @param {string} config.username the API username
* @param {string} config.password the API password
* @param {string} [config.baseUrl] the API URL, should it change
* @param {string} [config.responseType] optional content-type specification, either "json" or "yaml"
* @param {Function} config.hasOwnProperty (...just so my IDE won't underline the function)
*
* @constructor
*/
constructor (config) {
// check if we received a config object
if (typeof config === 'undefined') {
throw new Error('Missing configuration data');
}
if (!config.hasOwnProperty('username') || config.username.length === 0) {
throw new Error('Missing API username');
}
if (!config.hasOwnProperty('password') || config.password.length === 0) {
throw new Error('Missing API password');
}
// set the base URL to the API if it has not been overwritten by configuration
if (!config.hasOwnProperty('baseUrl')) {
config.baseUrl = 'https://robot-ws.your-server.de';
}
this.config = config;
/**
* The API client which carries out the network communication
*
* @private
*
* @type {exports.Client}
*/
this._apiClient = new Client({
// authentication configuration
user: config.username,
password: config.password,
// request network configuration
requestConfig: {
timeout: 1000,
noDelay: true,
keepAlive: true,
keepAliveDelay: 1000
},
// response timeout configuration
responseConfig: {
timeout: 1000
}
});
}
/**
* try to parse the response object to JSON. If this fails,
* simply stringify it.
*
* @private
*
* @param {object} response the parsed response object
* @param {number} statusCode the response HTTP status code
* @param {Function} resolve the promise resolver
* @param {Function} reject the promise rejector
*
* @returns {*} the parsed response object or error message string
*/
_parseResponse (response, statusCode, resolve, reject) {
// check if we have a negative response code
if (!(statusCode === 200 || statusCode === 201)) {
try {
return reject((response.error.code + ': ' + response.error.message).red);
}
/**
* if there appeared an error while rejecting the error, most likely the response
* lacked the error object or one of its properties, so just return the response
* itself to avoid trouble
*/
catch (unexpectedResponseError) {
return reject(response);
}
}
// TODO: Implement JSON/YAML parser here
// return response
return resolve(response);
}
/**
* Create a response promise
*
* @private
*
* @param {string} method the request method
* @param {string} uri the API URI to request
* @param {object} [data] an optional data object to submit
* @returns {Promise}
*/
_createRequest (method, uri, data) {
data = data || undefined;
let contentType = 'application/json';
if (method === 'post') {
data = formUrlEncoded(data, {
sorted: false
});
contentType = 'application/x-www-form-urlencoded';
}
return new Promise((resolve, reject) => {
this._apiClient[ method ](
this.config.baseUrl + uri,
{
headers: { "Content-Type": contentType },
data: data
},
(response, rawData) => this._parseResponse(response, rawData.statusCode, resolve, reject)
).on('error', (error) => reject(error));
});
}
/**
* query the client servers
*
* @public
* @returns {Promise} a promise containing the API response when ready
*/
queryServers () {
return this._createRequest('get', '/server');
}
/**
* query a client server
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise} a promise containing the API response when ready
*/
queryServer (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
if (ServerCache.has(ipAddress)) {
console.log(ServerCache.get(ipAddress));
}
var self = this;
/**
* return a HTTP request promise that holds the parsed JSON result on success,
* or an error message on failure. Additionally, a callback will be attached
* on success which stores the result properties for this server in eventually
* existing identified instances.
* That means, if this method is called on a registered server, it will hold
* the server properties afterwards.
*/
return this._createRequest('get', '/server/' + ipAddress).then(function(data) {
for (let key in data.server) {
self.setServerProperty(key, data.server[ key ]);
}
return data;
});
}
/**
* query all server IPs
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise} a promise containing the API response when ready
*/
queryIps (ipAddress) {
var data = {};
if (typeof ipAddress !== 'undefined') {
data.server_ip = ipAddress;
}
return this._createRequest('get', '/ip', data)
}
/**
* query a specific server IP
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise} a promise containing the API response when ready
*/
queryIp (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createResponse('get', '/ip/' + ipAddress)
}
/**
* Query reset status for all client servers
*
* @public
*
* @param {string} [ipAddress] an optional IP parameter to query a single server
* @returns {Promise}
*/
queryReset (ipAddress) {
var uri = '/reset' + (typeof ipAddress === 'undefined' ? '' : '/' + ipAddress);
return this._createRequest('get', uri)
}
/**
* Query WOL status for a client server
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
queryWol (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('get', '/wol/' + ipAddress)
}
/**
* Query boot this.config.ration
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
queryBootConfig (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('get', '/boot/' + ipAddress)
}
/**
* Query rescue system boot this.config.ration
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
queryRescueBootConfig (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('get', '/boot/' + ipAddress + '/rescue')
}
/**
* Enable the rescue boot system
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @param {string} operatingSystem the rescue OS to boot (one of linux, linuxold, freebsd,
* freebsdbeta, vkvm)
* @param {string} [architecture] optional architecture to use, defaults to 64 Bit
* @param {Array} [keys] optional key fingerprints to import into SSH this.config.ration
* @returns {Promise}
*/
enableRescueBoot (ipAddress, operatingSystem, architecture, keys) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
if (typeof operatingSystem === 'undefined') {
throw new Error('Operating system is missing.');
}
architecture = architecture || 64;
keys = keys || [];
var data = {
os: operatingSystem,
arch: architecture,
authorized_key: keys
};
return this._createRequest('post', '/boot/' + ipAddress + '/rescue', data);
}
/**
* Disable the rescue boot system
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
disableRescueBoot (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('delete', '/boot/' + ipAddress + '/rescue')
}
/**
* Query data for last rescue boot system activation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
queryLastRescueBoot (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('get', '/boot/' + ipAddress + '/rescue/last')
}
/**
* Query ip failover
*
* @public
*
* @param {string} failoverIp the IP address of the failover IP
* @returns {Promise}
*/
queryFailover (failoverIp) {
if (typeof failoverIp === 'undefined') {
throw new Error('Failover IP is missing.');
}
return this._createRequest('get', '/failover/' + failoverIp)
}
/**
* Set ip failover
*
* @public
*
* @param {string} failoverIp the IP address of the failover IP
* @param {string} ipAddress the IP address of the server
* @returns {Promise}
*/
setFailover (failoverIp, ipAddress) {
if (typeof failoverIp === 'undefined') {
throw new Error('Failover IP is missing.');
}
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
var data = {
active_server_ip: ipAddress
};
return this._createRequest('post', '/failover/' + failoverIp, data)
}
/**
* Query available boot options for linux installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
queryLinuxBootConfig (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('get', '/boot/' + ipAddress + '/linux')
}
/**
* Enable linux installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @param {object} options an object containing installation options
* @param {string} options.distribution the linux distribution to install
* @param {number} [options.architecture] optional architecture to use, defaults to 64 Bit
* @param {string} [options.language] optional language to install the system in, defaults
* to en (english)
* @param {Array} [options.keys] optional key fingerprints to import into SSH
* this.config.ration
* @returns {Promise}
*/
enableLinuxBoot (ipAddress, options) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
if (!options.hasOwnProperty('distribution')) {
throw new Error('Installation distribution is missing.');
}
var data = {
dist: options.distribution,
arch: options.architecture || 64,
lang: options.language || 'en',
authorized_key: options.keys || []
};
return this._createRequest('post', '/boot/' + ipAddress + '/linux', data)
}
/**
* Disable linux installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
disableLinuxBoot (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('delete', '/boot/' + ipAddress + '/linux')
}
/**
* Query data for last linux installation activation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
queryLastLinuxBoot (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('get', '/boot/' + ipAddress + '/linux/last')
}
/**
* Query available boot options for vnc installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
queryVncBootConfig (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('get', '/boot/' + ipAddress + '/vnc')
}
/**
* Enable vnc installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @param {object} options an object containing installation options
* @param {string} options.distribution the vnc distribution to install
* @param {number} [options.architecture] optional architecture to use, defaults to 64 Bit
* @param {string} [options.language] optional language to install the system in, defaults
* to en (english)
* @returns {Promise}
*/
enableVncBoot (ipAddress, options) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
if (!options.hasOwnProperty('distribution')) {
throw new Error('Installation distribution is missing.');
}
var data = {
dist: options.distribution,
arch: options.architecture || 64,
lang: options.language || 'en'
};
return this._createRequest('post', '/boot/' + ipAddress + '/vnc', data)
}
/**
* Disable vnc installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
disableVncBoot (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('delete', '/boot/' + ipAddress + '/vnc')
}
/**
* Query available boot options for windows installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
queryWindowsBootConfig (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('get', '/boot/' + ipAddress + '/windows')
}
/**
* Enable windows installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @param {string} [language] optional installation language. defaults to en (english)
* @returns {Promise}
*/
enableWindowsBoot (ipAddress, language) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
var data = {
lang: language || 'en'
};
return this._createRequest('post', '/boot/' + ipAddress + '/windows', data)
}
/**
* Disable windows installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
disableWindowsBoot (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('delete', '/boot/' + ipAddress + '/windows')
}
/**
* Query available boot options for plesk installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
queryPleskBootConfig (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('get', '/boot/' + ipAddress + '/plesk')
}
/**
* Enable plesk installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @param {Object} options options this.config.ration
* @param {string} options.distribution the linux distribution to use as install base
* @param {number} [options.architecture] optional architecture to use, defaults to 64 Bit
* @param {string} [options.language] optional installation language. defaults to en (english)
* @param {Function} options.hasOwnProperty ...just so my IDE won't complain about it being missing
* @param {string} options.hostname the hostname for the new plesk installation
* @returns {Promise}
*/
enablePleskBoot (ipAddress, options) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
if (!options.hasOwnProperty('distribution')) {
throw new Error('Installation distribution is missing.');
}
if (!options.hasOwnProperty('hostname')) {
throw new Error('Installation hostname is missing.');
}
var data = {
dist: options.distribution,
lang: options.language || 'en',
arch: options.architecture || 64,
hostname: options.hostname
};
return this._createRequest('post', '/boot/' + ipAddress + '/plesk', data)
}
/**
* Disable plesk installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
disablePleskBoot (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('delete', '/boot/' + ipAddress + '/plesk')
}
/**
* Query available boot options for CPanel installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
queryCpanelBootConfig (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('get', '/boot/' + ipAddress + '/cpanel')
}
/**
* Enable CPanel installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @param {object} options options this.config.ration
* @param {string} options.distribution the linux distribution to use as install base
* @param {number} [options.architecture] optional architecture to use, defaults to 64 Bit
* @param {string} [options.language] optional installation language. defaults to en
* (english)
* @param {string} options.hostname the hostname for the new plesk installation
* @returns {Promise}
*/
enableCpanelBoot (ipAddress, options) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
if (!options.hasOwnProperty('distribution')) {
throw new Error('Installation distribution is missing.');
}
if (!options.hasOwnProperty('hostname')) {
throw new Error('Installation hostname is missing.');
}
var data = {
dist: options.distribution,
lang: options.language || 'en',
arch: options.architecture || 64,
hostname: options.hostname
};
return this._createRequest('post', '/boot/' + ipAddress + '/cpanel', data)
}
/**
* Disable CPanel installation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise}
*/
disableCpanelBoot (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('delete', '/boot/' + ipAddress + '/cpanel')
}
/**
* change a client server's name
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @param {string} newName the new server name
* @returns {Promise} a promise containing the API response when ready
*/
updateServerName (ipAddress, newName) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
if (typeof newName === 'undefined') {
throw new Error('New server name is missing.');
}
var data = {
server_name: newName
};
return this._createRequest('post', '/server/' + ipAddress, data);
}
/**
* reset a server
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @param {string} [resetType] the reset type to perform (one of sw, hw or man). defaults to
* sw (software reset)
* @returns {Promise} a promise containing the API response when ready
*/
resetServer (ipAddress, resetType) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
resetType = resetType || 'sw';
var data = {
type: resetType
};
return this._createRequest('post', '/reset/' + ipAddress, data);
}
/**
* wake a server up
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise} a promise containing the API response when ready
*/
wakeServer (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
var data = {
server_ip: ipAddress
};
return this._createRequest('post', '/wol/' + ipAddress, data);
}
/**
* Query reverse DNS entries for either a single or all client servers
*
* @public
*
* @param {string} [ipAddress] optional IP address of a specific client server
* @returns {Promise}
*/
queryReverseDns (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
var uri = '/rdns' + (typeof ipAddress === 'undefined' ? '' : '/' + ipAddress);
return this._createRequest('get', uri)
}
/**
* set a reverse DNS entry
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @param {string} pointerRecord the DNS name to point to
* @returns {Promise} a promise containing the API response when ready
*/
setReverseDns (ipAddress, pointerRecord) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
if (typeof pointerRecord === 'undefined') {
throw new Error('Pointer record name is missing.');
}
var data = {
ptr: pointerRecord
};
return this._createRequest('put', '/rdns/' + ipAddress, data)
}
/**
* update a reverse DNS entry
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @param {string} pointerRecord the DNS name to point to
* @returns {Promise} a promise containing the API response when ready
*/
updateReverseDns (ipAddress, pointerRecord) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
if (typeof pointerRecord === 'undefined') {
throw new Error('Pointer record name is missing.');
}
var data = {
ptr: pointerRecord
};
return this._createRequest('post', '/rdns/' + ipAddress, data)
}
/**
* remove a reverse DNS entry
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise} a promise containing the API response when ready
*/
removeReverseDns (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('delete', '/rdns/' + ipAddress)
}
/**
* query a client server's cancellation status
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise} a promise containing the API response when ready
*/
queryCancellationStatus (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('get', '/server/' + ipAddress + '/cancellation');
}
/**
* cancel a client server
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @param {string} cancellationDate the date to cancel the server at
* @param {string} [cancellationReason] an optional cancellation reason
* @returns {Promise} a promise containing the API response when ready
*/
createCancellation (ipAddress, cancellationDate, cancellationReason) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
if (typeof cancellationDate === 'undefined') {
throw new Error('Server cancellation date is missing.');
}
var data = {
cancellation_date: cancellationDate,
cancellation_reason: cancellationReason || null
};
return this._createRequest('post', '/server/' + ipAddress + '/cancellation', data);
}
/**
* cancel a client server cancellation
*
* @public
*
* @param {string} ipAddress the IP address of the client server
* @returns {Promise} a promise containing the API response when ready
*/
removeCancellation (ipAddress) {
if (typeof ipAddress === 'undefined') {
throw new Error('Server IP is missing.');
}
return this._createRequest('delete', '/server/' + ipAddress + '/cancellation');
}
/**
* wrapper method for day statistics
*
* @public
*
* @param options
* @returns {Promise}
*/
queryDailyStatistics (options) {
options.type = 'day';