Dead code removed: - Module.php: remove addIPv4() method (no endpoint, feature removed per CLAUDE.md) - Curl.php: remove useCookies(), setLog() (security risk — wrote tokens to web-accessible CURL.log), head(), getHeadersData() — all unused - module.css: remove .vf-button, .vf-button-small (never referenced in DOM) - module.css: remove vestigial #vf-data-server-traffic-sep rule - module.css: merge duplicate #vf-server-info-error declarations - publish-release.yml: remove dead version.json generation step (nothing reads it) Fixes: - AdminHTML.php: update stale cache version strings 20260207 → 20260319 - hooks.php: update stale keygen.js version string - hooks.php: remove unused `use WHMCS\User\User` import - ConfigureService.php: remove unused `use JsonException` import - module.css: fix .vf-os-details class selector → #vf-os-details ID selector - client.php + admin.php: reuse existing $vf instead of new Module() - Module.php: use Cache::forget() instead of forgetPattern() for known key (forgetPattern is a no-op on filesystem cache fallback) Workflow: - Rewrite publish-release.yml: tag-based triggers only (no automatic releases) - Triggers on push of v* tags, creates GitHub release with auto-generated notes - Uses softprops/action-gh-release@v2 — compatible with both Gitea and GitHub Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
94 lines
2.9 KiB
PHP
94 lines
2.9 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);
|
|
|
|
}
|
|
|
|
$vf->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);
|
|
}
|