Phase9
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 9s
CI / Go — node-agent tests (push) Failing after 8s
CI / Go — edge-gateway build (push) Successful in 17s

This commit is contained in:
smueller
2026-06-26 13:46:25 +02:00
parent b335f6a497
commit ed8334328e
49 changed files with 2219 additions and 16 deletions

View File

@@ -0,0 +1,144 @@
<?php
if (!defined('WHMCS')) {
die('This file cannot be accessed directly');
}
require_once __DIR__ . '/lib/ApiClient.php';
function hexagamecloud_MetaData(): array
{
return [
'DisplayName' => 'HexaHost GameCloud',
'APIVersion' => '1.1',
'RequiresServer' => true,
'DefaultNonSSLPort' => '443',
'DefaultSSLPort' => '443',
];
}
function hexagamecloud_ConfigOptions(): array
{
return [
'plan_slug' => [
'FriendlyName' => 'GameCloud Plan Slug',
'Type' => 'text',
'Size' => '32',
'Default' => 'free',
'Description' => 'Maps to a GameCloud plan slug',
],
'minecraft_version' => [
'FriendlyName' => 'Minecraft Version',
'Type' => 'text',
'Size' => '16',
'Default' => '1.21.1',
],
'software_family' => [
'FriendlyName' => 'Software Family',
'Type' => 'dropdown',
'Options' => 'VANILLA,PAPER,PURPUR,FABRIC,FORGE,NEOFORGE,QUILT',
'Default' => 'VANILLA',
],
];
}
function hexagamecloud_CreateAccount(array $params): string
{
try {
$client = new HexaGameCloudApiClient($params);
$externalClientId = (string) $params['clientsdetails']['userid'];
$externalServiceId = (string) $params['serviceid'];
$client->upsertClient($externalClientId, [
'email' => $params['clientsdetails']['email'],
'username' => $params['clientsdetails']['email'],
'displayName' => trim(($params['clientsdetails']['firstname'] ?? '') . ' ' . ($params['clientsdetails']['lastname'] ?? '')),
]);
$response = $client->provisionService([
'externalServiceId' => $externalServiceId,
'externalClientId' => $externalClientId,
'externalProductId' => (string) ($params['pid'] ?? ''),
'planSlug' => $params['configoption1'] ?: 'free',
'serverName' => $params['domain'] ?: ('server-' . $externalServiceId),
'minecraftVersion' => $params['configoption2'] ?: '1.21.1',
'softwareFamily' => $params['configoption3'] ?: 'VANILLA',
'edition' => 'JAVA',
'eulaAccepted' => true,
]);
return 'success';
} catch (Throwable $exception) {
logModuleCall(
'hexagamecloud',
__FUNCTION__,
$params,
$exception->getMessage(),
$exception->getMessage(),
['password', 'secret', 'apiSecret']
);
return $exception->getMessage();
}
}
function hexagamecloud_SuspendAccount(array $params): string
{
return hexagamecloud_lifecycleAction($params, 'suspend', ['reason' => 'Suspended in WHMCS']);
}
function hexagamecloud_UnsuspendAccount(array $params): string
{
return hexagamecloud_lifecycleAction($params, 'unsuspend');
}
function hexagamecloud_TerminateAccount(array $params): string
{
return hexagamecloud_lifecycleAction($params, 'terminate');
}
function hexagamecloud_ChangePackage(array $params): string
{
try {
$client = new HexaGameCloudApiClient($params);
$client->changePackage((string) $params['serviceid'], [
'planSlug' => $params['configoption1'] ?: 'free',
]);
return 'success';
} catch (Throwable $exception) {
logModuleCall('hexagamecloud', __FUNCTION__, $params, $exception->getMessage());
return $exception->getMessage();
}
}
function hexagamecloud_TestConnection(array $params): array
{
try {
$client = new HexaGameCloudApiClient($params);
$health = $client->health();
return [
'success' => true,
'error' => 'Connected to ' . ($health['integrationId'] ?? 'GameCloud'),
];
} catch (Throwable $exception) {
return ['success' => false, 'error' => $exception->getMessage()];
}
}
function hexagamecloud_lifecycleAction(array $params, string $action, array $body = []): string
{
try {
$client = new HexaGameCloudApiClient($params);
$serviceId = (string) $params['serviceid'];
if ($action === 'suspend') {
$client->suspendService($serviceId, $body);
} elseif ($action === 'unsuspend') {
$client->unsuspendService($serviceId);
} else {
$client->terminateService($serviceId);
}
return 'success';
} catch (Throwable $exception) {
logModuleCall('hexagamecloud', $action, $params, $exception->getMessage());
return $exception->getMessage();
}
}