-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass.hitechcloud.php
More file actions
438 lines (386 loc) · 13.9 KB
/
class.hitechcloud.php
File metadata and controls
438 lines (386 loc) · 13.9 KB
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
<?php
/**
* Hitechcloud Shared Hosting Module for HostBill
*
* Manages shared hosting accounts via Hitechcloud Agent API.
*/
require_once __DIR__ . '/lib/include.php';
use Hosting\Hitechcloud\lib\HitechcloudAPI;
use Hosting\Hitechcloud\lib\Constants;
class Hitechcloud
extends HostingModule
implements Constants
{
protected $modname = 'Hitechcloud';
protected $description = 'Hitechcloud Shared Hosting Management';
protected $version = '1.0.0';
/** @var HitechcloudAPI|null */
protected $api = null;
// -------------------------------------------------------------------------
// Server connection fields
// -------------------------------------------------------------------------
protected $serverFields = [
self::CONNECTION_FIELD_CHECKBOX => false,
self::CONNECTION_FIELD_MAXACCOUNTS => false,
self::CONNECTION_FIELD_STATUSURL => false,
self::CONNECTION_FIELD_INPUT1 => true, // API URL
self::CONNECTION_FIELD_INPUT2 => true, // API Key
];
protected $serverFieldsDescription = [
self::CONNECTION_FIELD_INPUT1 => 'API URL <a class="vtip_description">Full URL to Hitechcloud Agent API (e.g. https://server.example.com:8443)</a>',
self::CONNECTION_FIELD_INPUT2 => 'API Key <a class="vtip_description">API key for authentication with Hitechcloud Agent</a>',
];
// -------------------------------------------------------------------------
// Product configuration options (shown in HostBill product setup)
// -------------------------------------------------------------------------
protected $options = [
self::O_PLAN_NAME => [
'type' => 'input',
'default' => 'default',
],
self::O_DISK_QUOTA => [
'type' => 'input',
'default' => '10240',
],
self::O_BANDWIDTH => [
'type' => 'input',
'default' => '102400',
],
self::O_MAX_DOMAINS => [
'type' => 'input',
'default' => '5',
],
self::O_MAX_DATABASES => [
'type' => 'input',
'default' => '5',
],
self::O_MAX_FTP => [
'type' => 'input',
'default' => '5',
],
self::O_MAX_CRONJOBS => [
'type' => 'input',
'default' => '3',
],
self::O_PHP_VERSION => [
'type' => 'select',
'default' => ['7.4', '8.0', '8.1', '8.2', '8.3'],
],
self::O_SHELL_ACCESS => [
'type' => 'check',
],
self::O_SSL_ENABLED => [
'type' => 'check',
],
self::O_BACKUP_ENABLED => [
'type' => 'check',
],
];
// -------------------------------------------------------------------------
// Account detail fields (per-account data stored by HostBill)
// -------------------------------------------------------------------------
protected $details = [
self::D_USERNAME => [
'name' => 'username',
'value' => false,
'type' => 'input',
'default' => false,
],
self::D_PASSWORD => [
'name' => 'password',
'value' => false,
'type' => 'hidden',
'default' => false,
],
self::D_DOMAIN => [
'name' => 'domain',
'value' => false,
'type' => 'input',
'default' => false,
],
];
// -------------------------------------------------------------------------
// Connection / API helpers
// -------------------------------------------------------------------------
/**
* Called by HostBill when server connection is established.
* Stores connection data and initializes the API client.
*
* @param array $connect Server connection data from HostBill
*/
public function connect($connect)
{
$server = [];
$server['host'] = (!$connect['ip'] && $connect['host']) ? $connect['host'] : $connect['ip'];
$server['api_url'] = !empty($connect['field1']) ? rtrim($connect['field1'], '/') : '';
$server['api_key'] = !empty($connect['field2']) ? $connect['field2'] : '';
$server['username'] = $connect['username'];
$server['password'] = $connect['password'];
$this->connection = $server;
if (!empty($server['api_url']) && !empty($server['api_key'])) {
try {
$this->api = new HitechcloudAPI($server['api_url'], $server['api_key']);
} catch (\Exception $ex) {
$this->addError($ex->getMessage());
}
}
}
/**
* Get or create the API client instance.
*
* @return HitechcloudAPI
* @throws \RuntimeException if connection data is missing
*/
protected function getApi()
{
if ($this->api !== null) {
return $this->api;
}
if (empty($this->connection['api_url']) || empty($this->connection['api_key'])) {
throw new \RuntimeException('Hitechcloud API connection not configured');
}
$this->api = new HitechcloudAPI($this->connection['api_url'], $this->connection['api_key']);
return $this->api;
}
/**
* Test connection to the Hitechcloud server.
*
* @param callable|null $log Optional logger callback
* @return bool
*/
public function testConnection($log = null)
{
$conn = $this->connection;
if ($log) {
$log(\Monolog\Logger::INFO, "Connecting to {$conn['api_url']}");
}
try {
$api = $this->getApi();
$result = $api->getHealth();
if ($log && isset($result['version'])) {
$log(\Monolog\Logger::INFO, "Hitechcloud Agent version: {$result['version']}");
}
return true;
} catch (\Exception $ex) {
$this->addError('Connection test failed: ' . $ex->getMessage());
return false;
}
}
// -------------------------------------------------------------------------
// Helper: build account parameters from HostBill options/details
// -------------------------------------------------------------------------
/**
* Build the account creation/package parameters array from HostBill data.
*
* @return array
*/
protected function buildAccountParams()
{
return [
'username' => $this->details[self::D_USERNAME]['value'],
'password' => $this->details[self::D_PASSWORD]['value'],
'domain' => $this->details[self::D_DOMAIN]['value'],
'plan_name' => $this->getOption(self::O_PLAN_NAME),
'disk_quota' => (int) $this->getOption(self::O_DISK_QUOTA),
'bandwidth' => (int) $this->getOption(self::O_BANDWIDTH),
'max_domains' => (int) $this->getOption(self::O_MAX_DOMAINS),
'max_databases' => (int) $this->getOption(self::O_MAX_DATABASES),
'max_ftp' => (int) $this->getOption(self::O_MAX_FTP),
'max_cronjobs' => (int) $this->getOption(self::O_MAX_CRONJOBS),
'php_version' => $this->getOption(self::O_PHP_VERSION),
'shell_access' => (bool) $this->getOption(self::O_SHELL_ACCESS),
'ssl_enabled' => (bool) $this->getOption(self::O_SSL_ENABLED),
'backup_enabled' => (bool) $this->getOption(self::O_BACKUP_ENABLED),
];
}
/**
* Safely read an option value.
*
* @param string $key
* @return mixed
*/
protected function getOption($key)
{
if (isset($this->options[$key]['value'])) {
return $this->options[$key]['value'];
}
if (isset($this->options[$key]['default'])) {
$def = $this->options[$key]['default'];
return is_array($def) ? reset($def) : $def;
}
return '';
}
/**
* Get the username for the current account.
*
* @return string
*/
protected function getUsername()
{
if (!empty($this->details[self::D_USERNAME]['value'])) {
return $this->details[self::D_USERNAME]['value'];
}
if (!empty($this->account_details['username'])) {
return $this->account_details['username'];
}
return '';
}
// -------------------------------------------------------------------------
// Provisioning methods
// -------------------------------------------------------------------------
/**
* Create hosting account.
*
* @return bool
*/
public function Create()
{
if ($this->account_details['status'] === 'Active' || $this->account_details['status'] === 'Suspended') {
$this->addError('Service already provisioned, terminate it before re-provisioning');
return false;
}
try {
$api = $this->getApi();
$params = $this->buildAccountParams();
if (empty($params['username'])) {
$this->addError('Username is required to create account');
return false;
}
if (empty($params['domain'])) {
$this->addError('Domain is required to create account');
return false;
}
$result = $api->createAccount($params);
// Store the username returned by the API (if any)
if (!empty($result['username'])) {
$this->details[self::D_USERNAME]['value'] = $result['username'];
$this->account_details['username'] = $result['username'];
}
return true;
} catch (\Exception $ex) {
$this->addError('Failed to create account: ' . $ex->getMessage());
return false;
}
}
/**
* Suspend hosting account.
*
* @return bool
*/
public function Suspend()
{
try {
$api = $this->getApi();
$username = $this->getUsername();
if (empty($username)) {
$this->addError('Cannot suspend: username not found');
return false;
}
$api->suspendAccount($username, 'Suspended by HostBill');
return true;
} catch (\Exception $ex) {
$this->addError('Failed to suspend account: ' . $ex->getMessage());
return false;
}
}
/**
* Unsuspend hosting account.
*
* @return bool
*/
public function Unsuspend()
{
try {
$api = $this->getApi();
$username = $this->getUsername();
if (empty($username)) {
$this->addError('Cannot unsuspend: username not found');
return false;
}
$api->unsuspendAccount($username);
return true;
} catch (\Exception $ex) {
$this->addError('Failed to unsuspend account: ' . $ex->getMessage());
return false;
}
}
/**
* Terminate (delete) hosting account.
*
* @return bool
*/
public function Terminate()
{
try {
$api = $this->getApi();
$username = $this->getUsername();
if (empty($username)) {
$this->addError('Cannot terminate: username not found');
return false;
}
$api->terminateAccount($username);
return true;
} catch (\Exception $ex) {
$this->addError('Failed to terminate account: ' . $ex->getMessage());
return false;
}
}
/**
* Change account password.
*
* @param string $newpassword
* @return bool
*/
public function ChangePassword($newpassword)
{
try {
$api = $this->getApi();
$username = $this->getUsername();
if (empty($username)) {
$this->addError('Cannot change password: username not found');
return false;
}
$api->changePassword($username, $newpassword);
// Update stored password
$this->details[self::D_PASSWORD]['value'] = $newpassword;
return true;
} catch (\Exception $ex) {
$this->addError('Failed to change password: ' . $ex->getMessage());
return false;
}
}
/**
* Change account package (upgrade/downgrade).
*
* @return bool
*/
public function ChangePackage()
{
try {
$api = $this->getApi();
$username = $this->getUsername();
if (empty($username)) {
$this->addError('Cannot change package: username not found');
return false;
}
$package = [
'plan_name' => $this->getOption(self::O_PLAN_NAME),
'disk_quota' => (int) $this->getOption(self::O_DISK_QUOTA),
'bandwidth' => (int) $this->getOption(self::O_BANDWIDTH),
'max_domains' => (int) $this->getOption(self::O_MAX_DOMAINS),
'max_databases' => (int) $this->getOption(self::O_MAX_DATABASES),
'max_ftp' => (int) $this->getOption(self::O_MAX_FTP),
'max_cronjobs' => (int) $this->getOption(self::O_MAX_CRONJOBS),
'php_version' => $this->getOption(self::O_PHP_VERSION),
'shell_access' => (bool) $this->getOption(self::O_SHELL_ACCESS),
'ssl_enabled' => (bool) $this->getOption(self::O_SSL_ENABLED),
'backup_enabled' => (bool) $this->getOption(self::O_BACKUP_ENABLED),
];
$api->changePackage($username, $package);
return true;
} catch (\Exception $ex) {
$this->addError('Failed to change package: ' . $ex->getMessage());
return false;
}
}
}