140 lines
3.9 KiB
PHP
140 lines
3.9 KiB
PHP
<?php
|
|
|
|
// Core file for the console library for Blueprint Extensions
|
|
|
|
|
|
namespace Pterodactyl\BlueprintFramework\Libraries\ExtensionLibrary\Console;
|
|
|
|
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
|
|
|
|
class BlueprintConsoleLibrary
|
|
{
|
|
// Construct core
|
|
public function __construct(
|
|
private SettingsRepositoryInterface $settings,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* Fetch a record from the database.
|
|
*
|
|
* @param string $table Database table
|
|
* @param string $record Database record
|
|
* @return mixed Database value
|
|
*
|
|
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
|
|
*/
|
|
public function dbGet($table, $record): mixed {
|
|
return $this->settings->get($table."::".$record);
|
|
}
|
|
|
|
/**
|
|
* Set a database record.
|
|
*
|
|
* @param string $table Database table
|
|
* @param string $record Database record
|
|
* @param string $value Value to store
|
|
*
|
|
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
|
|
*/
|
|
public function dbSet($table, $record, $value) {
|
|
return $this->settings->set($table."::".$record, $value);
|
|
}
|
|
|
|
/**
|
|
* Delete/forget a database record.
|
|
*
|
|
* @param string $table Database table
|
|
* @param string $record Database record
|
|
*
|
|
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
|
|
*/
|
|
public function dbForget($table, $record) {
|
|
return $this->settings->forget($table."::".$record);
|
|
}
|
|
|
|
/**
|
|
* Read and returns the content of a given file.
|
|
*
|
|
* @param string $path Path to file
|
|
* @return string File contents
|
|
* @throws string File cannot be read or found
|
|
*
|
|
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
|
|
*/
|
|
public function fileRead($path) {
|
|
if (!file_exists($path)) {
|
|
return "File not found: " . $path;
|
|
}
|
|
if (!is_readable($path)) {
|
|
return "File is not readable: " . $path;
|
|
}
|
|
|
|
return file_get_contents($path);
|
|
}
|
|
|
|
/**
|
|
* Attempts to create a file.
|
|
*
|
|
* @param string $path File name/path
|
|
* @return void
|
|
*
|
|
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
|
|
*/
|
|
public function fileMake($path): void {
|
|
$file = fopen($path, "w");
|
|
fclose($file);
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Attempts to remove a file or directory.
|
|
*
|
|
* @param string $path Path to file/directory
|
|
* @return void
|
|
*
|
|
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
|
|
*/
|
|
public function fileWipe($path) {
|
|
if(is_dir($path)) {
|
|
$files = array_diff(scandir($path), ['.', '..']);
|
|
foreach ($files as $file) {
|
|
$this->fileWipe($path . DIRECTORY_SEPARATOR . $file);
|
|
}
|
|
rmdir($path);
|
|
} elseif (is_file($path)) {
|
|
unlink($path);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check if an extension is installed based on it's identifier.
|
|
*
|
|
* @param string $identifier Extension identifier
|
|
* @return bool Boolean
|
|
*
|
|
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
|
|
*/
|
|
public function extension($identifier): bool {
|
|
if(str_contains($this->fileRead(base_path(".blueprint/extensions/blueprint/private/db/installed_extensions")), $identifier.',')) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns an array containing all installed extensions's identifiers.
|
|
*
|
|
* @return array Array
|
|
*
|
|
* [BlueprintExtensionLibrary documentation](https://blueprint.zip/docs/?page=documentation/$blueprint)
|
|
*/
|
|
public function extensionList(): array {
|
|
$array = explode(',', $this->fileRead(base_path(".blueprint/extensions/blueprint/private/db/installed_extensions")));
|
|
$extensions = array_filter($array, function($value) {
|
|
return !empty($value);
|
|
});
|
|
return $extensions;
|
|
}
|
|
}
|