-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsolus.php
727 lines (628 loc) · 21.3 KB
/
solus.php
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
<?php
/**
* PHP Library for SolusVM's XMLRPC API
*
* https://documentation.solusvm.com/display/DOCS/API
*
* @author Benton Snyder
* @website https://www.bensnyde.me
* @created 12/22/2012
* @updated 7/24/2017
*/
class Solus {
private $url;
private $id;
private $key;
/**
* Public constructor
*
* @access public
* @param str, str, str
* @return
*/
function __construct($url, $id, $key) {
$this->url = $url;
$this->id = $id;
$this->key = $key;
}
/**
* Executes xmlrpc api call with given parameters
*
* @access private
* @param array
* @return str
*/
private function execute(array $params) {
$params["id"] = $this->id;
$params["key"] = $this->key;
$params["rdtype"] = "json";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->url . "/command.php");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Expect:"));
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
$response = curl_exec($ch);
if($response === false)
throw new Exception("Curl error: " . curl_error($ch));
curl_close($ch);
return $response;
}
/**
* Get serial console details
*
* https://documentation.solusvm.com/display/DOCS/Serial+Console
*/
public function console($serverID, $access, $time) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-console", "vserverid"=>$serverID, "access"=>$access, "time"=>$time));
}
/**
* Disable TUN/TAP
*
* https://documentation.solusvm.com/pages/viewpage.action?pageId=558494
*/
public function disableTUN($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-tun-disable", "vserverid"=>$serverID));
}
/**
* Enable TUN/TAP
*
* https://documentation.solusvm.com/pages/viewpage.action?pageId=558498
*/
public function enableTUN($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-tun-enable", "vserverid"=>$serverID));
}
/**
* PAE Enable/Disable
*
* https://documentation.solusvm.com/pages/viewpage.action?pageId=558505
*/
public function paestatus($serverID, $pae) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-pae", "vserverid"=>$serverID, "pae"=>$pae));
}
/**
* Reboots specified vserver
*
* https://documentation.solusvm.com/display/DOCS/Reboot+Virtual+Server
*
* @access public
* @param int
* @return str
*/
public function reboot($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-reboot", "vserverid"=>$serverID));
}
/**
* Boots specified vserver
*
* https://documentation.solusvm.com/display/DOCS/Boot+Virtual+Server
*
* @access public
* @param int
* @return str
*/
public function boot($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-boot", "vserverid"=>$serverID));
}
/**
* Shuts down specified vserver
*
* https://documentation.solusvm.com/display/DOCS/Shutdown+Virtual+Server
*
* @access public
* @param int
* @return str
*/
public function shutdown($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-shutdown", "vserverid"=>$serverID));
}
/**
* Retrives list of available ISO images
*
* https://documentation.solusvm.com/display/DOCS/List+ISO+Images
*
* @access public
* @param str
* @return str
*/
public function listISO($type) {
if(!in_array($type, array("xen hvm", "kvm", "xen", "openvz")))
throw new Exception("Invalid Type");
return $this->execute(array("action"=>"listiso", "type"=>$type));
}
/**
* Mounts ISO specified by its filename to vserver specified by ID
*
* https://documentation.solusvm.com/display/DOCS/Mount+ISO
*
* @access public
* @param int, str
* @return str
*/
public function mountISO($serverID, $iso) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-mountiso", "vserverid"=>$serverID, "iso"=>$iso));
}
/**
* Unmounts the currently mounted ISO of a vserver specified by its ID
*
* https://documentation.solusvm.com/display/DOCS/Unmount+ISO
*
* @access public
* @param int
* @return str
*/
public function unmountISO($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-unmountiso", "vserverid"=>$serverID));
}
/**
* Updates the boot order of a vserver specified by its ID
*
* https://documentation.solusvm.com/display/DOCS/Change+Boot+Order
*
* @access public
* @param int, str
* @return str
*/
public function changeBootOrder($serverID, $bootOrder) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
if(!in_array($bootOrder, array("cd", "dc", "c", "d")))
throw new Exception("Invalid bootorder");
return $this->execute(array("action"=>"vserver-bootorder", "vserverid"=>$serverID, "bootorder"=>$bootOrder));
}
/**
* Retrieves VNC ip, port and password for vserver specified by its ID
*
* https://documentation.solusvm.com/display/DOCS/VNC+Info
*
* @access public
* @param int
* @return str
*/
public function getVNC($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-vnc", "vserverid"=>$serverID));
}
/**
* Retrieves details of vserver specified by its ID
*
* https://documentation.solusvm.com/display/DOCS/Virtual+Server+Information
*
* @access public
* @param int
* @return str
*/
public function getServerInfo($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-info", "vserverid"=>$serverID));
}
/**
* Retrieves server state information of vserver specified by its ID
*
* https://documentation.solusvm.com/display/DOCS/Virtual+Server+State
*
* @access public
* @param int
* @return str
*/
public function getServerState($serverID,$nostatus,$nographs) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-infoall", "vserverid"=>$serverID, "nostatus"=>$nostatus, "nographs"=>$nographs));
}
/**
* Retrieves current status of vserver specified by ID
*
* https://documentation.solusvm.com/display/DOCS/Virtual+Server+Status
*
* @access public
* @param int
* @return str
*/
public function getServerStatus($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-status", "vserverid"=>$serverID));
}
/**
* Authenticates client credentials
*
* https://documentation.solusvm.com/display/DOCS/Client+Authenticate
*
* @access public
* @param str, str
* @return str
*/
public function authenticateClient($username, $password) {
if(!ctype_alnum($username))
throw new Exception("Invalid Username");
return $this->execute(array("action"=>"vserver-authenticate", "username"=>$username, "password"=>$password));
}
/**
* Updates hostname associated with vserver specified by its ID
*
* https://documentation.solusvm.com/display/DOCS/Change+Hostname
*
* @access public
* @param int, str
* @return str
*/
public function changeHostname($serverID, $hostname) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
if(!preg_match('/[\w-.]+/', $hostname))
throw new Exception("Invalid Hostname");
return $this->execute(array("action"=>"vserver-hostname", "vserverid"=>$serverID, "hostname"=>$hostname));
}
/**
* Retrieves client list
*
* https://documentation.solusvm.com/display/DOCS/List+Clients
*
* @access public
* @param
* @return str
*/
public function listClients() {
return $this->execute(array("action"=>"client-list"));
}
/**
* Retrieves a list of virtual servers on specified node
*
* https://documentation.solusvm.com/display/DOCS/List+Virtual+Servers
*
* @access public
* @param int
* @return str
*/
public function listServers($nodeid) {
if(!is_numeric($nodeid))
throw new Exception("Invalid NodeID");
return $this->execute(array("action"=>"node-virtualservers", "nodeid"=>$nodeid));
}
/**
* Determines if a vserver exists as specified by its ID
*
* https://documentation.solusvm.com/display/DOCS/Check+Exists
*
* @access public
* @param int
* @return str
*/
public function vserverExists($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-checkexists", "vserverid"=>$serverID));
}
/**
* Adds an IP address to specified vserver
*
* https://documentation.solusvm.com/display/DOCS/Add+IP+Address
*
* @access public
* @param int, str, bool
* @return str
*/
public function addIP($serverID, $ipv4addr=0, $forceaddip=0) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
$args = array(
"action" => "vserver-addip",
"vserverid" => $serverID
);
if($ipv4addr) {
if(filter_var($ipv4addr, FILTER_VALIDATE_IP) === false)
throw new Exception("Invalid IPv4 Address");
if(filter_var($forceaddip, FILTER_VALIDATE_BOOLEAN) === false)
throw new Exception("forceaddip must be boolean");
$args['ipv4addr'] = $ipv4addr;
$args['forceaddip'] = $forceaddip;
}
return $this->execute($args);
}
/**
* Deletes an IP address from the specified vserver
*
* https://documentation.solusvm.com/display/DOCS/Delete+IP+Address
*
* @access public
* @param int, str
* @return str
*/
public function deleteIP($serverID, $ipaddr) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
if(filter_var($ipaddr, FILTER_VALIDATE_IP) === false)
throw new Exception("Invalid IPv4 Address");
return $this->execute(array("action"=>"vserver-delip", "vserverid"=>$serverID, "ipaddr"=>$ipaddr));
}
/**
* Updates owner of specified vserver
*
* https://documentation.solusvm.com/display/DOCS/Change+Owner
*
* @access public
* @param int, int
* @return str
*/
public function changeOwner($serverID, $clientID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
if(!is_numeric($clientID))
throw new Exception("Invalid ClientID");
return $this->execute(array("action"=>"vserver-changeowner", "vserverid"=>$serverID, "clientid"=>$clientID));
}
/**
* Updates vserver plan
*
* https://documentation.solusvm.com/display/DOCS/Change+Plan
*
* @access public
* @param int, str, bool
* @return str
*/
public function changePlan($serverID, $plan, $changeHDD=false) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
if(filter_var($changeHDD, FILTER_VALIDATE_BOOLEAN) === false)
throw new Exception("changeHDD must be boolean");
return $this->execute(array("action"=>"vserver-change", "vserverid"=>$serverID, "plan"=>$plan, "changehdd"=>$changeHDD));
}
/**
* Terminates specified vserver
*
* https://documentation.solusvm.com/display/DOCS/Terminate+Virtual+Server
*
* @access public
* @param int, bool
* @return str
*/
public function terminate($serverID, $deleteclient=false) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
if(filter_var($deleteclient, FILTER_VALIDATE_BOOLEAN) === false)
throw new Exception("deleteclient must be boolean");
return $this->execute(array("action"=>"vserver-terminate", "vserverid"=>$serverID, "deleteclient"=>$deleteclient));
}
/**
* Suspends specified vserver
*
* https://documentation.solusvm.com/display/DOCS/Suspend+Virtual+Server
*
* @access public
* @param int
* @return str
*/
public function suspend($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-suspend", "vserverid"=>$serverID));
}
/**
* Unsuspends specified vserver
*
* https://documentation.solusvm.com/display/DOCS/Unsuspend+Virtual+Server
*
* @access public
* @param int
* @return str
*/
public function unsuspend($serverID) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-unsuspend", "vserverid"=>$serverID));
}
/**
* Updates vserver's bandwidth limit
*
* https://documentation.solusvm.com/display/DOCS/Change+Bandwidth+Limits
*
* @access public
* @param int, int, int
* @return str
*/
public function changeBandwidth($serverID, $limit, $overlimit) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
if(!is_numeric($limit))
throw new Exception("Invalid Limit");
if(!is_numeric($overlimit))
throw new Exception("Invalid OverLimit");
return $this->execute(array("action"=>"vserver-bandwidth", "vserverid"=>$serverID, "limit"=>$limit, "overlimit"=>$overlimit));
}
/**
* Updates vserver's memory
*
* https://documentation.solusvm.com/display/DOCS/Change+Memory
*
* @access public
* @param int, int
* @return str
*/
public function changeMemory($serverID, $memory) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
if(!is_numeric($memory))
throw new Exception("Invalid Memory");
return $this->execute(array("action"=>"vserver-change-memory", "vserverid"=>$serverID, "memory"=>$memory));
}
/**
* Updates vserver's hdd size
*
* https://documentation.solusvm.com/display/DOCS/Change+Hard+Disk+Size
*
* @access public
* @param int, int
* @return str
*/
public function changeDiskSize($serverID, $hdd) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
if(!is_numeric($hdd))
throw new Exception("Invalid HDD");
return $this->execute(array("action"=>"vserver-change-hdd", "vserverid"=>$serverID, "hdd"=>$hdd));
}
/**
* Rebuilds specified vserver
*
* https://documentation.solusvm.com/display/DOCS/Rebuild+Virtual+Server
*
* @access public
* @param int, str
* @return str
*/
public function rebuild($serverID, $template) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-rebuild", "vserverid"=>$serverID, "template"=>$template));
}
/**
* Changes vserver's root password
*
* https://documentation.solusvm.com/display/DOCS/Change+Root+Password
*
* @access public
* @param int, str
* @return str
*/
public function changeRootPassword($serverID, $rootpassword) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-rootpassword", "vserverid"=>$serverID, "rootpassword"=>$rootpassword));
}
/**
* Changes VNC password
*
* https://documentation.solusvm.com/display/DOCS/Change+VNC+Password
*
* @access public
* @param int, str
* @return str
*/
public function changeVNCpassword($serverID, $vncpassword) {
if(!is_numeric($serverID))
throw new Exception("Invalid ServerID");
return $this->execute(array("action"=>"vserver-vncpass", "vserverid"=>$serverID, "vncpassword"=>$vncpassword));
}
/**
* Retrives list of available templates
*
* https://documentation.solusvm.com/display/DOCS/List+Templates
*
* @access public
* @param str
* @return str
*/
public function listTemplates($type, $listpipefriendly) {
if(!in_array($type, array("xen hvm", "kvm", "xen", "openvz")))
throw new Exception("Invalid Type");
return $this->execute(array("action"=>"listtemplates", "type"=>$type, "listpipefriendly"=>$listpipefriendly));
}
/**
* Retrives list of available plans
*
* https://documentation.solusvm.com/display/DOCS/List+Plans
*
* @access public
* @param str
* @return str
*/
public function listPlans($type) {
if(!in_array($type, array("xen hvm", "kvm", "xen", "openvz")))
throw new Exception("Invalid Type");
return $this->execute(array("action"=>"listplans", "type"=>$type));
}
/**
* Retrives list of nodes annotated by their ID
*
* https://documentation.solusvm.com/display/DOCS/List+Nodes+by+ID
*
* @access public
* @param str
* @return str
*/
public function listNodesByID($type) {
if(!in_array($type, array("xen hvm", "kvm", "xen", "openvz")))
throw new Exception("Invalid Type");
return $this->execute(array("action"=>"node-idlist", "type"=>$type));
}
/**
* Retrives list of nodes annotated by their name
*
* https://documentation.solusvm.com/display/DOCS/List+Nodes+by+Name
*
* @access public
* @param str
* @return str
*/
public function listNodesByName($type) {
if(!in_array($type, array("xen hvm", "kvm", "xen", "openvz")))
throw new Exception("Invalid Type");
return $this->execute(array("action"=>"listnodes", "type"=>$type));
}
/**
* Retrieves list of IP address associated with specified node
*
* https://documentation.solusvm.com/display/DOCS/List+All+IP+Addresses+for+a+Node
*
* @access public
* @param int, int
* @return str
*/
public function getNodeIPs($nodeid) {
if(!is_numeric($nodeid))
throw new Exception("Invalid NodeID");
return $this->execute(array("action"=>"node-iplist", "nodeid"=>$nodeid));
}
/**
* Retrieves list of node groups
*
* https://documentation.solusvm.com/display/DOCS/List+Node+Groups
*
* @access public
* @param int, str
* @return str
*/
public function listNodeGroups($type) {
if(!in_array($type, array("xen hvm", "kvm")))
throw new Exception("Invalid Type");
return $this->execute(array("action"=>"listnodegroups", "type"=>$type));
}
/**
* List node statistics
*
* https://documentation.solusvm.com/display/DOCS/Node+Statistics
*
* @access public
* @param int, str
* @return str
*/
public function getNodeStatistics($nodeid) {
return $this->execute(array("action"=>"node-statistics","nodeid"=>$nodeid));
}
}