- Add isset() guards before count() on ipv4/ipv6 arrays in ServerResource to prevent PHP 8.0+ TypeError - Add null checks after getWhmcsService() and getCP() in 18 Module methods and 5 ModuleFunctions methods to prevent fatal null dereference errors - Add null guards for $whmcsService and $cp in admin.php impersonateServerOwner - Fix HTTP status codes throughout admin.php (404, 400, 500, 502 instead of 200) - Guard ConfigureService methods against $this->cp === false - Use null coalescing for customfields access in initServerBuild - Check API response code in initServerBuild instead of always returning true - Replace exit() with RuntimeException in Curl.php - Change catch(Exception) to catch(Throwable) in hooks.php for PHP 8.0+ - Open VNC window before AJAX call to avoid popup blocker Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
94 lines
3.0 KiB
PHP
94 lines
3.0 KiB
PHP
<?php
|
|
|
|
require dirname(__DIR__, 3) . '/init.php';
|
|
|
|
use WHMCS\Module\Server\VirtFusionDirect\Database;
|
|
use WHMCS\Module\Server\VirtFusionDirect\Module;
|
|
use WHMCS\Module\Server\VirtFusionDirect\ServerResource;
|
|
|
|
$vf = new Module();
|
|
|
|
$vf->adminOnly();
|
|
|
|
switch ($vf->validateAction(true)) {
|
|
|
|
/**
|
|
*
|
|
* Get server information.
|
|
*
|
|
*/
|
|
case 'serverData':
|
|
|
|
if ($vf->validateServiceID(true)) {
|
|
|
|
/** No need to validate ownership **/
|
|
|
|
$whmcsService = Database::getWhmcsService((int)$_GET['serviceID']);
|
|
|
|
if (!$whmcsService) {
|
|
$vf->output(['success' => false, 'errors' => 'Service not found.'], true, true, 404);
|
|
}
|
|
|
|
if ($whmcsService->domainstatus == 'Pending' || $whmcsService->domainstatus == 'Terminated' || $whmcsService->domainstatus == 'Cancelled' || $whmcsService->domainstatus == 'Fraud') {
|
|
$vf->output(['success' => false, 'errors' => 'Server is not Active, Suspended or Completed. Not fetching remote data.'], true, true, 400);
|
|
}
|
|
|
|
$data = $vf->fetchServerData((int)$_GET['serviceID']);
|
|
|
|
if (!$data) {
|
|
$vf->output(['success' => false, 'errors' => 'No data returned from VirtFusion.'], true, true, 502);
|
|
|
|
}
|
|
|
|
(new Module())->updateWhmcsServiceParamsOnServerObject((int)$_GET['serviceID'], $data);
|
|
$vf->output(['success' => true, 'data' => (new ServerResource())->process($data)], true, true, 200);
|
|
|
|
}
|
|
break;
|
|
|
|
/**
|
|
*
|
|
* Impersonate server owner.
|
|
*
|
|
*/
|
|
case 'impersonateServerOwner':
|
|
|
|
if ($vf->validateServiceID(true)) {
|
|
|
|
$service = Database::getSystemService((int)$_GET['serviceID']);
|
|
|
|
if (!$service) {
|
|
$vf->output(['success' => false, 'errors' => 'Service not found'], true, true, 404);
|
|
}
|
|
|
|
$whmcsService = Database::getWhmcsService((int)$_GET['serviceID']);
|
|
|
|
if (!$whmcsService) {
|
|
$vf->output(['success' => false, 'errors' => 'WHMCS service not found'], true, true, 404);
|
|
}
|
|
|
|
$cp = $vf->getCP($whmcsService->server);
|
|
|
|
if (!$cp) {
|
|
$vf->output(['success' => false, 'errors' => 'Control server not found'], true, true, 500);
|
|
}
|
|
|
|
$request = $vf->initCurl($cp['token']);
|
|
|
|
$data = $request->get($cp['url'] . '/users/' . $whmcsService->userid . '/byExtRelation');
|
|
|
|
if ($request->getRequestInfo('http_code') === 200) {
|
|
$vf->output(['success' => true, 'url' => $cp['base_url'], 'user' => json_decode($data, true)['data']], true, true, 200);
|
|
}
|
|
|
|
$vf->output(['success' => false, 'errors' => 'Received HTTP code ' . $request->getRequestInfo('http_code')], true, true, 502);
|
|
|
|
}
|
|
break;
|
|
|
|
default:
|
|
/** No valid action was specified **/
|
|
|
|
$vf->output(['success' => false, 'errors' => 'invalid action'], true, true, 400);
|
|
}
|