peliprint/app/BlueprintFramework/Services/VariableService/BlueprintVariableService.php

75 lines
2 KiB
PHP
Raw Normal View History

2023-04-17 07:15:47 -04:00
<?php
namespace Pterodactyl\BlueprintFramework\Services\VariableService;
2023-04-17 07:15:47 -04:00
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
2023-09-07 10:24:28 -04:00
use Pterodactyl\BlueprintFramework\Services\PlaceholderService\BlueprintPlaceholderService;
2023-04-17 07:15:47 -04:00
class BlueprintVariableService
{
// Construct core
public function __construct(
private SettingsRepositoryInterface $settings,
private BlueprintPlaceholderService $blueprintplaceholderservice,
) {
}
2024-03-02 09:30:28 -05:00
// $bp->latest()
// $bp->version()
2024-03-02 09:30:28 -05:00
// $bp->isInstalled()
// $bp->dbGet('db::record')
// $bp->dbSet('db::record', 'value')
// $bp->config('item', value);
public function latest(): string {
$api_url = "http://api.blueprint.zip:50000/api/latest";
$context = stream_context_create([
'http' => [
'method' => 'GET',
'header' => 'User-Agent: BlueprintFramework',
],
]);
$response = file_get_contents($api_url, false, $context);
if ($response) {
$cleaned_response = preg_replace('/[[:^print:]]/', '', $response);
$data = json_decode($cleaned_response, true);
if (isset($data['name'])) {
$latest_version = $data['name'];
return "$latest_version";
} else {
return "Error";
}
} else {
return "Error";
}
}
public function version(): string {
return $this->blueprintplaceholderservice->version();
}
public function isInstalled(): string {
return $this->blueprintplaceholderservice->installed();
}
public function dbGet($key): string {
// BlueprintExtensionLibrary is preferred where possible.
$a = $this->settings->get("blueprint::".$key);
if (!$a) {
return "";
} else {
return $a;
};
}
public function dbSet($key, $value): void {
// BlueprintExtensionLibrary is preferred where possible.
$this->settings->set('blueprint::' . $key, $value);
return;
}
public function config($item, $value): string|null {
return shell_exec("cd ".escapeshellarg($this->blueprintplaceholderservice->folder()).";c$item=$value bash blueprint.sh -config");
}
}