peliprint/app/BlueprintFramework/Services/VariableService/BlueprintVariableService.php
2023-09-07 16:24:28 +02:00

52 lines
1.3 KiB
PHP

<?php
namespace Pterodactyl\BlueprintFramework\Services\VariableService;
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
use Pterodactyl\BlueprintFramework\Services\PlaceholderService\BlueprintPlaceholderService;
class BlueprintVariableService
{
// Construct core
public function __construct(
private SettingsRepositoryInterface $settings,
private BlueprintPlaceholderService $blueprintplaceholderservice,
) {
}
// $bp->serve()
// $bp->isInstalled()
// $bp->version()
// $bp->dbGet('db::record')
// $bp->dbSet('db::record', 'value')
// $bp->config('item', value);
public function serve(): void {
return;
}
public function version(): string {
return $this->blueprintplaceholderservice->version();
}
public function isInstalled(): string {
return $this->blueprintplaceholderservice->installed();
}
public function dbGet($key): string {
$a = $this->settings->get("blueprint::".$key);
if (!$a) {
return "";
} else {
return $a;
};
}
public function dbSet($key, $value): void {
$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");
}
}