peliprint/app/Services/Helpers/BlueprintExtensionLibrary.php

77 lines
2 KiB
PHP
Raw Normal View History

<?php
/*
| Welcome to the Blueprint Extension Library.
|
2023-06-16 12:10:26 -04:00
| This allows extensions to easily communicate with
| Blueprint and Pterodactyl.
*/
namespace Pterodactyl\Services\Helpers;
2023-04-14 11:18:24 -04:00
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
use Pterodactyl\Services\Helpers\BlueprintPlaceholderService;
2023-04-14 11:18:24 -04:00
class BlueprintExtensionLibrary
{
// Construct BlueprintExtensionLibrary
public function __construct(
private SettingsRepositoryInterface $settings,
private BlueprintPlaceholderService $placeholder,
) {
}
/*
| Databasing
|
| dbGet("table", "record");
| dbSet("table", "record", "value");
*/
public function dbGet($table, $record) {
return $this->settings->get($table."::".$record);
}
public function dbSet($table, $record, $value) {
return $this->settings->set($table."::".$record, $value);
}
/*
| Notifications
|
| notify("text");
| notifyAfter(delay, "text");
| notifyNow("text");
*/
public function notify($text) {
$this->dbSet("blueprint", "notification:text", $text);
shell_exec("cd /var/www/".escapeshellarg($this->placeholder->folder()).";echo ".escapeshellarg($text)." > .blueprint/data/internal/db/notification;");
return;
}
public function notifyAfter($delay, $text) {
$this->dbSet("blueprint", "notification:text", $text);
shell_exec("cd /var/www/".escapeshellarg($this->placeholder->folder()).";echo ".escapeshellarg($text)." > .blueprint/data/internal/db/notification;");
header("Refresh:$delay");
return;
}
public function notifyNow($text) {
$this->dbSet("blueprint", "notification:text", $text);
shell_exec("cd /var/www/".escapeshellarg($this->placeholder->folder()).";echo ".escapeshellarg($text)." > .blueprint/data/internal/db/notification;");
header("Refresh:0");
return;
}
/*
| Files
|
| fileRead("path");
*/
public function fileRead($path) {
return shell_exec("cat ".escapeshellarg($path).";");
}
2023-06-16 12:10:26 -04:00
}