2022-01-26 19:35:32 +01:00
|
|
|
<?php declare(strict_types=1);
|
2022-01-22 16:37:00 +01:00
|
|
|
namespace App\Controller;
|
|
|
|
|
2022-01-26 19:35:32 +01:00
|
|
|
error_reporting(error_level: E_ALL);
|
|
|
|
|
2022-01-22 16:37:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class CheckController
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param String $serverName
|
|
|
|
* @param int $versionIP
|
|
|
|
* @param String $apiKey
|
|
|
|
* @param String $command
|
2022-01-25 20:32:34 +01:00
|
|
|
* @param String $type
|
2022-01-22 16:37:00 +01:00
|
|
|
*
|
2022-01-25 20:32:34 +01:00
|
|
|
* @return array
|
2022-01-22 16:37:00 +01:00
|
|
|
*/
|
2022-01-25 20:32:34 +01:00
|
|
|
function sendCommand(String $serverName, int $versionIP, String $apiKey, String $command, String $type): array
|
2022-01-22 16:37:00 +01:00
|
|
|
{
|
|
|
|
$curl = curl_init();
|
2022-01-25 20:32:34 +01:00
|
|
|
if ($type == "panel") {
|
2022-01-26 19:35:32 +01:00
|
|
|
curl_setopt(handle: $curl, option: CURLOPT_URL, value: "https://$serverName/api/v2/" . $command);
|
2022-01-25 20:32:34 +01:00
|
|
|
} else {
|
2022-01-26 19:35:32 +01:00
|
|
|
curl_setopt(handle: $curl, option: CURLOPT_URL, value: "https://$serverName/api/" . $command);
|
2022-01-25 20:32:34 +01:00
|
|
|
}
|
2022-01-26 19:35:32 +01:00
|
|
|
curl_setopt(handle: $curl, option: CURLOPT_RETURNTRANSFER, value: 1);
|
|
|
|
curl_setopt(handle: $curl, option: CURLOPT_TIMEOUT_MS, value: 1000);
|
2022-01-22 16:37:00 +01:00
|
|
|
|
|
|
|
if ($versionIP == 4) {
|
2022-01-26 19:35:32 +01:00
|
|
|
curl_setopt(handle: $curl, option: CURLOPT_IPRESOLVE, value: CURL_IPRESOLVE_V4);
|
2022-01-22 16:37:00 +01:00
|
|
|
} else {
|
2022-01-26 19:35:32 +01:00
|
|
|
curl_setopt(handle: $curl, option: CURLOPT_IPRESOLVE, value: CURL_IPRESOLVE_V6);
|
2022-01-22 16:37:00 +01:00
|
|
|
}
|
|
|
|
|
2022-01-26 19:35:32 +01:00
|
|
|
curl_setopt(handle: $curl, option: CURLOPT_HTTPHEADER, value: ["X-API-Key:$apiKey"]);
|
2022-01-22 16:37:00 +01:00
|
|
|
|
2022-01-26 19:35:32 +01:00
|
|
|
if ($resultJSON = curl_exec(handle: $curl)) {
|
|
|
|
$httpResponse = curl_getinfo(handle: $curl)['http_code'];
|
2022-01-22 16:37:00 +01:00
|
|
|
|
|
|
|
switch($httpResponse) {
|
|
|
|
case 200:
|
2022-01-26 19:35:32 +01:00
|
|
|
$apiResult = json_decode(json: $resultJSON);
|
2022-01-22 16:37:00 +01:00
|
|
|
if ($command == "ping" ) {
|
|
|
|
if ($apiResult->response == "pong") {
|
2022-01-23 16:28:46 +01:00
|
|
|
$result = $apiResult->response;
|
2022-01-22 16:37:00 +01:00
|
|
|
} else {
|
2022-01-25 20:32:34 +01:00
|
|
|
$result = $apiResult;
|
2022-01-22 16:37:00 +01:00
|
|
|
}
|
|
|
|
} else {
|
2022-01-23 16:28:46 +01:00
|
|
|
$result = $resultJSON;
|
2022-01-22 16:37:00 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 401:
|
2022-01-23 16:28:46 +01:00
|
|
|
$result = 'Missing or wrong API Key';
|
2022-01-22 16:37:00 +01:00
|
|
|
break;
|
|
|
|
default:
|
2022-01-23 16:28:46 +01:00
|
|
|
$result = 'Unhandled error: ' . $httpResponse;
|
2022-01-22 16:37:00 +01:00
|
|
|
}
|
|
|
|
} else {
|
2022-01-26 19:35:32 +01:00
|
|
|
$result = curl_error(handle: $curl);
|
2022-01-22 16:37:00 +01:00
|
|
|
}
|
2022-01-26 19:35:32 +01:00
|
|
|
curl_close(handle: $curl);
|
2022-01-25 20:32:34 +01:00
|
|
|
return [
|
|
|
|
'data' => $result,
|
|
|
|
'header' => $httpResponse ?? ''
|
|
|
|
];
|
2022-01-22 16:37:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|