-
Notifications
You must be signed in to change notification settings - Fork 3
/
SolusVM.php
518 lines (457 loc) · 15.6 KB
/
SolusVM.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
<?php
namespace modules\products\vps\integrations\SolusVM;
/**
* -------------------------------------------------------------------------------------
* SolusVM.
*
* Author : Cas de Reuver
* Copyright : 2016
* Version : v1.0
*
* CHANGE LOG:
* -------------------------------------------------------------------------------------
* 2016-05-21 Cas de Reuver Initial version
* -------------------------------------------------------------------------------------
*/
class SolusVM
{
// use these to connect to VPS platform
public $ServerURL, $ServerUser, $ServerPass, $NodeGroup;
public $Error;
public $Warning;
public $Success;
public function __construct()
{
$this->Error = [];
$this->Warning = [];
$this->Success = [];
$this->loadLanguageArray(LANGUAGE_CODE);
}
public function doCall($postfields)
{
$postfields['id'] = $this->ServerUser;
$postfields['key'] = $this->ServerPass;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->ServerURL.'/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, ['Expect:']);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
$data = curl_exec($ch);
curl_close($ch);
// Parse the returned data and build an array
preg_match_all('/<(.*?)>([^<]+)<\/\\1>/i', $data, $match);
if (isset($postfields['rdtype'])) {
return $data;
}
$result = [];
foreach ($match[1] as $x => $y) {
$result[$y] = $match[2][$x];
}
return $result;
}
/**
* Use this function to prefix all errors messages with your VPS platform.
*
* @param string $message The error message
*
* @return bool Always false
*/
private function __parseError($message)
{
$this->Error[] = 'SolusVM: '.$message;
return false;
}
/**
* Get list of templates from the VPS platform.
*
* @return array List of templates
*/
public function getTemplateList()
{
$response = json_decode($this->doCall(['action' => 'list-plans', 'type' => 'kvm', 'rdtype' => 'json']), true);
if ($response) {
if (count($response['plans']) == 0) {
return $this->__parseError(__('node has no templates', 'SolusVM'));
}
$templates = [];
$i = 0;
foreach ($response['plans'] as $template) {
$templates[$i]['templateid'] = $template['id'];
$templates[$i]['templatename'] = $template['name'];
$templates[$i]['memory'] = $template['ram'] / 1024 / 1024;
$templates[$i]['diskspace'] = $template['disk'] / 1024 / 1024 / 1024;
$templates[$i]['cpucores'] = $template['cpus'];
$templates[$i]['bandwidth'] = $template['bandwidth'] / 1024 / 1024 / 1024;
$i++;
}
return $templates;
}
$this->__parseError($response['statusmsg']);
return false;
}
/**
* Perform an action on the VPS (eg pause, start, restart).
*
* @param string $vps_id ID of the VPS on the VPS platform
* @param string $action Type of action
*
* @return bool True on success; False otherwise.
*/
public function doServerAction($vps_id, $action)
{
switch ($action) {
case 'pause':
$response = $this->doCall([
'action' => 'vserver-shutdown',
'vserverid' => $vps_id,
]);
break;
case 'start':
$response = $this->doCall([
'action' => 'vserver-boot',
'vserverid' => $vps_id,
]);
break;
case 'restart':
$response = $this->doCall([
'action' => 'vserver-reboot',
'vserverid' => $vps_id,
]);
break;
}
/*
* Step 2) provide feedback to WeFact
*/
if ($response && $response['status'] == 'success') {
return true;
} else {
$this->__parseError($response['statusmsg']);
return false;
}
}
/**
* Get template details from VPS platform.
*
* @param string $template_id ID of the template on the VPS platform
*
* @return array Array with template details
*/
public function getTemplate($template_id)
{
/*
* Step 1) get template
*/
$response = json_decode($this->doCall(['action' => 'list-plans', 'type' => 'kvm', 'rdtype' => 'json']), true);
/*
* Step 2) provide feedback to WeFact
*/
if (!$response) {
return $this->__parseError(__('node has no templates', 'SolusVM'));
}
$td = [];
foreach ($response['plans'] as $template) {
if ($template['id'] == $template_id) {
$td = $template;
break;
}
}
if (empty($td)) {
return $this->__parseError(__('node has no templates', 'SolusVM'));
}
$template = [];
$template['templateid'] = $td['id'];
$template['templatename'] = $td['name'];
$template['memory'] = $td['ram'] / 1024 / 1024;
$template['diskspace'] = $td['disk'] / 1024 / 1024 / 1024;
$template['cpucores'] = $td['cpus'];
$template['bandwidth'] = $td['bandwidth'] / 1024 / 1024 / 1024;
return $template;
}
/**
* Get list of images from the VPS platform.
*
* @return array List of images
*/
public function getImageList()
{
/*
* Step 1) get images list
*/
$response = $this->doCall(['action' => 'listtemplates', 'listpipefriendly' => true, 'type' => 'kvm']);
/*
* Step 2) provide feedback to WeFact
*/
if ($response) {
$images = [];
$i = 0;
// loop through images and build return array
foreach (explode(',', $response['templateskvm']) as $image) {
$image = explode('|', $image);
$images[$i]['imageid'] = $image[0];
$images[$i]['imagename'] = $image[1];
$i++;
}
if (count($images) == 0) {
return $this->__parseError(__('node has no images', 'SolusVM'));
}
return $images;
}
$this->__parseError($response['statusmsg']);
return false;
}
/**
* Validate the VPS server login credentials.
*
* @return bool True on success; False otherwise.
*/
public function validateLogin()
{
$response = $this->doCall([]);
if ($response['status'] == 'error') {
return $response['statusmsg'];
} else {
return true;
}
}
/**
* This function makes it possible to provide additional settings or notes on the create and edit page of a VPS server within WeFact Hosting.
* This may be necessary if more information is needed than just the URL, username and password of the platform.
*
* @param string $edit_or_show edit|show; determines if we are adding/editing or showing a VPS server
*
* @return string $html input HTML
*/
public function showSettingsHTML($edit_or_show = 'edit')
{
$html = '';
if ($edit_or_show == 'show') {
$html = '<strong class="title2">Node group (ID)</strong>'.
'<span class="title2_value">'.
((isset($this->ServerSettings->NodeGroup)) ? htmlspecialchars($this->ServerSettings->NodeGroup) : '').
'</span>';
$html .= '<strong class="title2">Client username</strong>'.
'<span class="title2_value">'.
((isset($this->ServerSettings->ClientUser)) ? htmlspecialchars($this->ServerSettings->ClientUser) : '').
'</span>';
} else {
$html = '<strong class="title">Node group</strong>'.
'<input type="text" name="module[vps][Settings][NodeGroup]" class="text1 size1" value="'.((isset($this->ServerSettings->NodeGroup)) ? htmlspecialchars($this->ServerSettings->NodeGroup) : '').'" />';
$html .= '<strong class="title">Client username</strong>'.
'<input type="text" name="module[vps][Settings][ClientUser]" class="text1 size1" value="'.((isset($this->ServerSettings->ClientUser)) ? htmlspecialchars($this->ServerSettings->ClientUser) : '').'" />';
}
return $html;
}
/**
* Create a VPS on the VPS platform.
*
* @return array Return array with VPS ID on success; False on fail;
*/
public function createVPS()
{
/*
* Step 1) send create command
*
*/
$template = $this->getTemplate($this->TemplateID);
$response = $this->doCall([
'action' => 'vserver-create',
'type' => 'kvm',
'nodegroup' => $this->ServerSettings->NodeGroup,
'hostname' => $this->VPSName,
'password' => $this->Password,
'username' => $this->ServerSettings->ClientUser,
'plan' => $template['templatename'],
'template' => $this->Image,
'ips' => 1,
]);
/*
* Step 2) provide feedback to WeFact
*/
if ($response && $response['status'] == 'success' && isset($response['vserverid'])) {
$vps = [];
$vps['id'] = $response['vserverid'];
return $vps;
} else {
$this->__parseError($response['statusmsg']);
return false;
}
}
/**
* Remove a VPS from the VPS platform.
*
* @param string $vps_id ID of the VPS on the VPS platform
*
* @return bool True on success; False otherwise.
*/
public function delete($vps_id)
{
/*
* Step 1) send delete command
*
*/
$response = $this->doCall([
'action' => 'vserver-terminate',
'vserverid' => $vps_id,
'deleteclient' => false,
]);
/*
* Step 2) provide feedback to WeFact
*/
if ($response && $response['status'] == 'success') {
return true;
} else {
$this->__parseError($response['statusmsg']);
return false;
}
}
/**
* Function to support multiple languages for return messages
* use __('your message', 'YourName'); to translate a message based on the language of WeFact.
*
* @param string $language_code Language code
*/
public function loadLanguageArray($language_code)
{
$_LANG = [];
switch ($language_code) {
case 'nl_NL':
$_LANG['node gave no response'] = 'Server gaf geen antwoord terug.';
$_LANG['node returned error'] = 'Server gaf een error terug.';
$_LANG['node returned wrong data'] = 'Server gaf een antwoord terug, maar niet de benodigde data.';
$_LANG['node has no images'] = 'Server heeft geen images';
$_LANG['node has no templates'] = 'Server heeft geen templates';
break;
default: // In case of other language, use English
$_LANG['node gave no response'] = 'No response from node';
$_LANG['node returned error'] = 'Node returned an error.';
$_LANG['node returned wrong data'] = 'Node returned incorrect data';
$_LANG['node has no images'] = 'Node has no images';
$_LANG['node has no templates'] = 'Node has no templates';
break;
}
// Save to global array
global $_module_language_array;
$_module_language_array['SolusVM'] = $_LANG;
}
/**
* Suspend or unsuspend a VPS on the VPS platform.
*
* @param string $vps_id ID of the VPS on the VPS platform
* @param string $action suspend|unsuspend
*
* @return bool True on success; False otherwise.
*/
public function suspend($vps_id, $action)
{
if (!$this->validateLogin()) {
return false;
}
switch ($action) {
case 'suspend':
$response = $this->doCall([
'action' => 'vserver-suspend',
'vserverid' => $vps_id,
]);
break;
case 'unsuspend':
$response = $this->doCall([
'action' => 'vserver-unsuspend',
'vserverid' => $vps_id,
]);
break;
}
/*
* Step 2) provide feedback to WeFact
*/
if ($response && $response['status'] == 'success') {
return true;
} else {
$this->__parseError($response['statusmsg']);
return false;
}
}
/**
* Get details of a VPS by ID.
*
* @param string $vps_id ID of the VPS on the VPS platform
*
* @return array Array with VPS information
*/
public function getVPSDetails($vps_id)
{
$info = $this->doCall([
'action' => 'vserver-info',
'vserverid' => $vps_id,
]);
if (!$info || $info['status'] != 'success' && isset($info['state'])) {
$this->__parseError($info['statusmsg']);
return false;
}
$infoall = $this->doCall([
'action' => 'vserver-infoall',
'vserverid' => $vps_id,
]);
if (!$infoall || $infoall['status'] != 'success' && isset($infoall['state'])) {
$this->__parseError($infoall['statusmsg']);
return false;
}
$vps_details = [];
$vps_details['status'] = $this->__convertStatus($infoall['state']);
$vps_details['hostname'] = $info['hostname'];
$vps_details['ipaddress'] = $info['ipaddress']; // not required
return $vps_details;
}
/**
* Get details of a VPS by hostname.
*
* @param string $hostname Hostname of the VPS on the VPS platform
*
* @return array $vps Array with VPS information
*/
// TODO: Make this work
public function getVPSByHostname($hostname)
{
return false;
}
/**
* When a VPS is created from WeFact, this function is regularly called to check it's status.
*
* @param string $vps_id ID of the VPS on the VPS platform
*
* @return string active|building|error; Return status
*/
public function doPending($vps_id)
{
return 'active';
}
/**
* Use this function to convert VPS statusses from the VPS platform to a status WeFact can handle.
*
* @param string $status Status returned from a VPS platform command of a VPS
*
* @return string Converted status
*/
private function __convertStatus($status)
{
switch ($status) {
// VPS is active
case 'online':
$new_status = 'active';
break;
// VPS is paused
case 'offline':
$new_status = 'paused';
break;
default:
$new_status = '';
break;
}
return $new_status;
}
}