-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Virtualmin.php
654 lines (573 loc) · 19.2 KB
/
Virtualmin.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
<?php
/**
* Copyright 2022-2023 FOSSBilling
* Copyright 2011-2021 BoxBilling, Inc.
* SPDX-License-Identifier: Apache-2.0
*
* @copyright FOSSBilling (https://www.fossbilling.org)
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache-2.0
*/
/**
* @see http://doxfer.com/Webmin/TheWebminAPI
*/
class Server_Manager_Virtualmin extends Server_Manager
{
public function init()
{
if(empty($this->_config['port'])){
$this->_config['port'] = 10000;
}
}
public static function getForm()
{
return array(
'label' => 'Virtualmin',
);
}
public function getLoginUrl()
{
if ($this->_config['secure']) {
return 'https://'.$this->_config['host'] . ':' . $this->_config['port'] . '/';
} else {
return 'http://'.$this->_config['host'] . ':' . $this->_config['port'] . '/';
}
}
public function getResellerLoginUrl()
{
return $this->getLoginUrl();
}
public function testConnection()
{
$result = $this->_makeRequest('list-commands');
if (isset($result['status']) && $result['status'] == 'success') {
return true;
} else {
throw new Server_Exception('Failed to connect to the :type: server. Please verify your credentials and configuration', [':type:' => 'Virtualmin']);
}
}
public function synchronizeAccount(Server_Account $a)
{
$this->getLog()->info('Synchronizing account with server '.$a->getUsername());
return $a;
}
public function createAccount(Server_Account $a)
{
try {
if ($a->getReseller()) {
if (!$this->_createReseller($a)) {
return false;
}
} else {
if (!$this->_createUser($a)) {
return false;
}
}
} catch (Exception $e) {
if (!str_contains(strtolower($e->getMessage()), strtolower('You are already hosting this domain'))) {
throw new Server_Exception($e->getMessage());
} else {
return true;
}
}
return true;
}
public function suspendAccount(Server_Account $a)
{
if ($a->getReseller()) {
throw new Server_Exception('Virtualmin can\'t suspend/unsuspend reseller\'s account');
} else {
if (!$this->_suspendUser($a)) {
return false;
}
}
return true;
}
public function unsuspendAccount(Server_Account $a)
{
if ($a->getReseller()) {
throw new Server_Exception('Virtualmin can\'t suspend/unsuspend reseller\'s account');
} else {
if (!$this->_unsuspendUser($a)) {
return false;
}
}
return true;
}
public function cancelAccount(Server_Account $a)
{
if ($a->getReseller()) {
if (!$this->_cancelReseller($a)) {
return false;
}
} else {
if (!$this->_cancelUser($a)) {
return false;
}
}
return true;
}
public function changeAccountPackage(Server_Account $a, Server_Package $p)
{
if ($a->getReseller()) {
if (!$this->_modifyReseller($a)) {
return false;
}
} else {
if (!$this->_modifyDomain($a)) {
return false;
}
if (!$this->_disableFeatures($a)) {
return false;
}
if (!$this->_enableFeatures($a)) {
return false;
}
}
return true;
}
public function changeAccountPassword(Server_Account $a, $new)
{
if ($a->getReseller()) {
if (!$this->_changeResellerPassword($a)) {
return false;
}
} else {
if (!$this->_changeUserPassword($a)) {
return false;
}
}
return true;
}
public function changeAccountUsername(Server_Account $a, $new)
{
throw new Server_Exception(':type: does not support :action:', [':type:' => 'Virtualmin', ':action:' => __trans('changing the account IP')]);
}
public function changeAccountDomain(Server_Account $a, $new)
{
throw new Server_Exception(':type: does not support :action:', [':type:' => 'Virtualmin', ':action:' => __trans('changing the account IP')]);
}
public function changeAccountIp(Server_Account $a, $new)
{
throw new Server_Exception(':type: does not support :action:', [':type:' => 'Virtualmin', ':action:' => __trans('changing the account IP')]);
}
/**
*
* Makes request to virtualmin server
* @param string $command
* @param array $params
* @param string $format
* @return array
*/
private function _makeRequest($command, $params = array(), $format = 'json')
{
$url = $this->_getUrl() . '?program=' . $command . '&' . $format . '=1';
$numbers = array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
foreach ($params as $key => $param) {
$key = str_replace($numbers, '', $key);
$url .= '&' . $key . '=' . $param;
}
$client = $this->getHttpClient()->withOptions([
'verify_peer' => false,
'verify_host' => false,
'timeout' => 60,
'auth_basic' => [$this->_config['username'], $this->_config['password']],
]);
$result = $client->request('GET', $url);
$json = $result->toArray();
if (isset($json['full_error'])) {
throw new Server_Exception($json['full_error']);
}
return $json;
}
/**
*
* Forms server url
* @return string
*/
private function _getUrl()
{
$url = (isset($this->_config['secure']) && $this->_config['secure']) ? 'https://' : 'http://';
$url .= $this->_config['host'] . ':' . $this->_config['port'] . '/virtual-server/remote.cgi';
return $url;
}
/**
*
* Parses html to extract error. If string is not html returns same string
* @param string $result
* @return string
*/
private function _extractError($result)
{
$html = new DOMDocument();
try {
$html->loadHTML($result);
} catch (Exception) {
return $result;
}
$h1 = $html->getElementsByTagName('h1')
->item(0);
if (!isset($h1->nodeValue)) {
return $result;
}
$error = $h1->nodeValue;
$body = $html->getElementsByTagName('body')
->item(0);
$body->removeChild($h1);
if (!empty($body->nodeValue)) {
$error .= ' - ' . $body->nodeValue;
}
return $error;
}
/**
*
* Creates reseller
* @throws Server_Exception
* @return boolean
*/
private function _createReseller(Server_Account $a)
{
if (!$this->_checkCommand('create-reseller')) {
throw new Server_Exception('Create reseller command is only available in Virtualmin PRO version');
}
$p = $a->getPackage();
$client = $a->getClient();
$params = array(
'name' => $a->getUsername(),
'pass' => $a->getPassword(),
'email' => $client->getEmail(),
'max-doms' => ($p->getMaxDomains() == 'unlimited') ? 'UNLIMITED' : (int)$p->getMaxDomains(),
'max-aliasdoms' => ($p->getMaxDomains() == 'unlimited') ? 'UNLIMITED' : (int)$p->getMaxDomains(),
'max-realdoms' => ($p->getMaxDomains() == 'unlimited') ? 'UNLIMITED' : (int)$p->getMaxDomains(),
'max-quota' => ($p->getQuota() == 'unlimited') ? 'UNLIMITED' : (int)$p->getQuota() * 1024,
'max-mailboxes' => (int)$p->getMaxPop(),
'max-aliases' => (int)$p->getMaxDomains() ? $p->getMaxDomains() : 1,
'max-dbs' => ($p->getMaxSql() == 'unlimited') ? 'UNLIMITED' : (int)$p->getMaxSql(),
'max-bw' => ($p->getBandwidth() == 'unlimited') ? 'UNLIMITED' : (int)$p->getBandwidth() * 1024 * 1024,
'allow1' => 'dns', //BIND DNS domain
'allow2' => 'web', //Apache website
'allow3' => 'webmin', //Webmin login
'allow4' => 'dir', //Home directory
'allow5' => 'virt', //Virtual IP address
'nameserver1' => $a->getNs1(),
'nameserver2' => $a->getNs2(),
'nameserver3' => $a->getNs3(),
'nameserver4' => $a->getNs4(),
);
if ($p->getMaxPop()) {
$params['allow6'] = 'mail';
}
if ($p->getMaxFtp() > 0) {
$params['allow7'] = 'ftp';
}
if ($p->getMaxSql() > 0) {
$params['allow8'] = 'mysql';
}
$response = $this->_makeRequest('create-reseller', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
$placeholders = ['action' => __trans('create reseller account'), 'type' => 'Virtualmin'];
throw new Server_Exception('Failed to :action: on the :type: server, check the error logs for further details', $placeholders);
}
}
/**
*
* Get available commands list
*/
private function _getCommands() {
$response = $this->_makeRequest('list-commands');
return $response['output'];
}
/**
*
* Checks if command is available
* @param string $command
* @return boolean
*/
private function _checkCommand($command) {
$commands = $this->_getCommands();
if (!str_contains($commands, $command)) {
return false;
} else {
return true;
}
}
/**
*
* Creates user's account
* @throws Server_Exception
* @returns boolean
*/
private function _createUser(Server_Account $a)
{
$p = $a->getPackage();
$client = $a->getClient();
$params = array(
'domain' => $a->getDomain(),
'pass' => $a->getPassword(),
'email' => $client->getEmail(),
'user' => $a->getUsername(),
'dns' => '',
'web' => '',
'webmin' => '',
'max-doms' => (int)$p->getMaxDomains() ? $p->getMaxDomains() : 1,
'max-aliasdoms' => (int)$p->getMaxDomains() ? $p->getMaxDomains() : 1,
'max-realdoms' => (int)$p->getMaxDomains() ? $p->getMaxDomains() : 1,
'max-mailboxes' => (int)$p->getMaxPop() ? $p->getMaxPop() : 1,
'unix' => '',
'dir' => '',
'quota' => ($p->getQuota() == 'unlimited') ? 'UNLIMITED' : (int)$p->getMaxQuota(),
'uquota' => ($p->getQuota() == 'unlimited') ? 'UNLIMITED' : (int)$p->getMaxQuota(),
'bandwidth' => ($p->getBandwidth() == 'unlimited') ? 'UNLIMITED' : (int)$p->getBandwidth() * 1024 * 1024,
'mysql-pass' => $a->getPassword(),
);
if ($p->getMaxPop()) {
$params['mail'] = '';
}
if ($p->getMaxFtp() > 0) {
$params['ftp'] = '';
}
if ($p->getMaxSql() > 0) {
$params['mysql'] = '';
}
if (!$a->getIp()) {
$params['alocate-ip'] = '';
} else {
$params['ip'] = $a->getIp();
$params['ip-already'] = '';
}
$response = $this->_makeRequest('create-domain', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
$placeholders = ['action' => __trans('create account'), 'type' => 'Virtualmin'];
throw new Server_Exception('Failed to :action: on the :type: server, check the error logs for further details', $placeholders);
}
}
/**
*
* Suspends user's account
* @throws Server_Exception
* @return boolean
*/
private function _suspendUser(Server_Account $a)
{
$params = array(
'domain' => $a->getDomain(),
);
$response = $this->_makeRequest('disable-domain', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
$placeholders = ['action' => __trans('suspend account'), 'type' => 'Virtualmin'];
throw new Server_Exception('Failed to :action: on the :type: server, check the error logs for further details', $placeholders);
}
}
/**
*
* Unsuspends user's account
* @throws Server_Exception
* @return booblean
*/
private function _unsuspendUser(Server_Account $a)
{
$params = array(
'domain' => $a->getDomain(),
);
$response = $this->_makeRequest('enable-domain', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
$placeholders = ['action' => __trans('unsuspend account'), 'type' => 'Virtualmin'];
throw new Server_Exception('Failed to :action: on the :type: server, check the error logs for further details', $placeholders);
}
}
/**
*
* Changes user's password
* @throws Server_Exception
* @return boolean
*/
private function _changeUserPassword(Server_Account $a)
{
$params = array(
'domain' => $a->getDomain(),
'pass' => $a->getPassword(),
);
$response = $this->_makeRequest('modify-domain', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
$placeholders = ['action' => __trans('change account password'), 'type' => 'Virtualmin'];
throw new Server_Exception('Failed to :action: on the :type: server, check the error logs for further details', $placeholders);
}
}
/**
*
* Cancels user's account
* @throws Server_Exception
* @return boolean
*/
private function _cancelUser(Server_Account $a)
{
$params = array(
'domain' => $a->getDomain(),
);
$response = $this->_makeRequest('delete-domain', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
$placeholders = ['action' => __trans('cancel account'), 'type' => 'Virtualmin'];
throw new Server_Exception('Failed to :action: on the :type: server, check the error logs for further details', $placeholders);
}
}
/**
*
* Modifies domain
* @throws Server_Exception
* @return boolean
*/
private function _modifyDomain(Server_Account $a)
{
$p = $a->getPackage();
$client = $a->getClient();
$params = array(
'domain' => $a->getDomain(),
'pass' => $a->getPassword(),
'email' => $client->getEmail(),
'quota' => ($p->getQuota() == 'unlimited') ? 'UNLIMITED' : (int)$p->getMaxQuota(),
'uquota' => ($p->getQuota() == 'unlimited') ? 'UNLIMITED' : (int)$p->getMaxQuota(),
'bw' => ($p->getBandwidth() == 'unlimited') ? 'UNLIMITED' : (int)$p->getBandwidth(),
);
$response = $this->_makeRequest('modify-domain', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
$placeholders = ['action' => __trans('modify domain details'), 'type' => 'Virtualmin'];
throw new Server_Exception('Failed to :action: on the :type: server, check the error logs for further details', $placeholders);
}
}
/**
*
* Enables features for user
* @throws Server_Exception
* @return boolean
*/
private function _enableFeatures(Server_Account $a)
{
$p = $a->getPackage();
$params = array(
'domain' => $a->getDomain(),
);
if ($p->getMaxPop() > 0) $params['mail'] = '';
if ($p->getMaxSql() > 0) $params['mysql'] = '';
if ($p->getMaxFtp() > 0) $params['ftp'] = '';
$response = $this->_makeRequest('enable-feature', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
$placeholders = ['action' => __trans('enable features'), 'type' => 'Virtualmin'];
throw new Server_Exception('Failed to :action: on the :type: server, check the error logs for further details', $placeholders);
}
}
/**
*
* Disable not needed features for user
* @throws Server_Exception
* @return boolean
*/
private function _disableFeatures(Server_Account $a)
{
$p = $a->getPackage();
$params = array(
'domain' => $a->getDomain(),
);
if (!$p->getMaxPop() == 0) $params['mail'] = '';
if ($p->getMaxSql() == 0) $params['mysql'] = '';
if ($p->getMaxFtp() == 0) $params['ftp'] = '';
$response = $this->_makeRequest('disable-feature', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
$placeholders = ['action' => __trans('disable features'), 'type' => 'Virtualmin'];
throw new Server_Exception('Failed to :action: on the :type: server, check the error logs for further details', $placeholders);
}
}
private function _cancelReseller(Server_Account $a)
{
if (!$this->_checkCommand('create-reseller')) {
throw new Server_Exception('Cancel reseller command only available in Virtualmin PRO version');
}
$params = array(
'name' => $a->getUsername(),
);
$response = $this->_makeRequest('delete-reseller', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
throw new Server_Exception('Failed to delete reseller');
}
}
private function _changeResellerPassword(Server_Account $a)
{
if (!$this->_checkCommand('modify-reseller')) {
throw new Server_Exception('Modify reseller comand is only available in Virtualmin PRO version');
}
$params = array(
'name' => $a->getUsername(),
'pass' => $a->getPassword(),
);
$response = $this->_makeRequest('modify-reseller', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
throw new Server_Exception('Failed to change reseller\'s password');
}
}
private function _modifyReseller(Server_Account $a)
{
if (!$this->_checkCommand('modify-reseller')) {
throw new Server_Exception('Modify reseller command is only available in Virtualmin PRO version');
}
$p = $a->getPackage();
$client = $a->getClient();
$params = array(
'name' => $a->getUsername(),
'pass' => $a->getPassword(),
'email' => $client->getEmail(),
'max-doms' => ($p->getMaxDomains() == 'unlimited') ? 'UNLIMITED' : $p->getMaxDomains(),
'max-aliasdoms' => ($p->getMaxDomains() == 'unlimited') ? 'UNLIMITED' : $p->getMaxDomains(),
'max-realdoms' => ($p->getMaxDomains() == 'unlimited') ? 'UNLIMITED' : $p->getMaxDomains(),
'max-quota' => ($p->getQuota() == 'unlimited') ? 'UNLIMITED' : (int)$p->getQuota() * 1024,
'max-mailboxes' => (int)$p->getMaxPop(),
'max-aliases' => (int)$p->getMaxDomains() ? $p->getMaxDomains() : 1,
'max-dbs' => ($p->getMaxSql() == 'unlimited') ? 'UNLIMITED' : (int)$p->getMaxSql(),
'max-bw' => ($p->getBandwidth() == 'unlimited') ? 'UNLIMITED' : (int)$p->getBandwidth() * 1024 * 1024,
'allow1' => 'dns', //BIND DNS domain
'allow2' => 'web', //Apache website
'allow3' => 'webmin', //Webmin login
'allow4' => 'dir', //Home directory
'allow5' => 'virt', //Virtual IP address
'nameserver1' => $a->getNs1(),
'nameserver2' => $a->getNs2(),
'nameserver3' => $a->getNs3(),
'nameserver4' => $a->getNs4(),
);
if ($p->getMaxPop()) {
$params['allow6'] = 'mail';
}
if ($p->getMaxFtp() > 0) {
$params['allow7'] = 'ftp';
}
if ($p->getMaxSql() > 0) {
$params['allow8'] = 'mysql';
}
$response = $this->_makeRequest('modify-reseller', $params);
if (isset($response['status']) && $response['status'] == 'success') {
return true;
} else {
$placeholders = ['action' => __trans('create reseller account'), 'type' => 'Virtualmin'];
throw new Server_Exception('Failed to :action: on the :type: server, check the error logs for further details', $placeholders);
}
}
}