2023-04-11 14:47:38 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Services\Helpers;
|
|
|
|
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
|
2023-06-18 14:29:35 -04:00
|
|
|
use Pterodactyl\Services\Helpers\BlueprintVariableService;
|
2023-04-11 14:47:38 -04:00
|
|
|
|
|
|
|
class BlueprintTelemetryService
|
|
|
|
{
|
2023-06-18 14:29:35 -04:00
|
|
|
// Construct BlueprintTelemetryService
|
|
|
|
public function __construct(
|
|
|
|
private SettingsRepositoryInterface $settings,
|
|
|
|
private BlueprintVariableService $bp,
|
|
|
|
) {
|
|
|
|
}
|
2023-04-11 14:47:38 -04:00
|
|
|
|
2023-06-18 14:29:35 -04:00
|
|
|
public function send($event) {
|
|
|
|
if ($this->settings->get('blueprint::telemetry') == "") { $this->settings->set('blueprint::telemetry', "true"); };
|
|
|
|
if ($this->settings->get('blueprint::telemetry') == "false") {
|
|
|
|
$this->bp->exec('key KEY_NOT_UPDATED');
|
|
|
|
return;
|
|
|
|
};
|
2023-04-11 15:54:57 -04:00
|
|
|
|
2023-06-18 14:29:35 -04:00
|
|
|
$curl = curl_init();
|
2023-04-11 15:54:57 -04:00
|
|
|
|
2023-06-18 14:29:35 -04:00
|
|
|
curl_setopt_array($curl, array(
|
|
|
|
CURLOPT_URL => 'http://data.ptero.shop:3481/send/'.$this->settings->get('blueprint::panel:id')."/".$event."/",
|
|
|
|
CURLOPT_RETURNTRANSFER => true,
|
|
|
|
CURLOPT_ENCODING => '',
|
|
|
|
CURLOPT_MAXREDIRS => 10,
|
|
|
|
CURLOPT_TIMEOUT => 0,
|
|
|
|
CURLOPT_FOLLOWLOCATION => true,
|
|
|
|
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
|
|
|
|
CURLOPT_CUSTOMREQUEST => 'GET',
|
|
|
|
));
|
2023-04-11 15:54:57 -04:00
|
|
|
|
2023-06-18 14:29:35 -04:00
|
|
|
$response = curl_exec($curl);
|
2023-04-11 15:54:57 -04:00
|
|
|
|
2023-06-18 14:29:35 -04:00
|
|
|
curl_close($curl);
|
|
|
|
$this->bp->exec('key '.$this->settings->get("blueprint::panel:id"));
|
|
|
|
return;
|
|
|
|
}
|
2023-06-18 12:32:02 -04:00
|
|
|
}
|