mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
86 lines
2.5 KiB
PHP
86 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Pterodactyl\Models\Egg;
|
|
use Pterodactyl\Models\Nest;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Http\UploadedFile;
|
|
use Pterodactyl\Services\Eggs\Sharing\EggImporterService;
|
|
use Pterodactyl\Services\Eggs\Sharing\EggUpdateImporterService;
|
|
|
|
class EggSeeder extends Seeder
|
|
{
|
|
protected EggImporterService $importerService;
|
|
|
|
protected EggUpdateImporterService $updateImporterService;
|
|
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
public static array $import = [
|
|
'Minecraft',
|
|
'Source Engine',
|
|
'Voice Servers',
|
|
'Rust',
|
|
];
|
|
|
|
/**
|
|
* EggSeeder constructor.
|
|
*/
|
|
public function __construct(
|
|
EggImporterService $importerService,
|
|
EggUpdateImporterService $updateImporterService
|
|
) {
|
|
$this->importerService = $importerService;
|
|
$this->updateImporterService = $updateImporterService;
|
|
}
|
|
|
|
/**
|
|
* Run the egg seeder.
|
|
*/
|
|
public function run()
|
|
{
|
|
foreach (static::$import as $nest) {
|
|
/* @noinspection PhpParamsInspection */
|
|
$this->parseEggFiles(
|
|
Nest::query()->where('author', 'support@pterodactyl.io')->where('name', $nest)->firstOrFail()
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Loop through the list of egg files and import them.
|
|
*/
|
|
protected function parseEggFiles(Nest $nest)
|
|
{
|
|
$files = new \DirectoryIterator(database_path('Seeders/eggs/' . kebab_case($nest->name)));
|
|
|
|
$this->command->alert('Updating Eggs for Nest: ' . $nest->name);
|
|
/** @var \DirectoryIterator $file */
|
|
foreach ($files as $file) {
|
|
if (!$file->isFile() || !$file->isReadable()) {
|
|
continue;
|
|
}
|
|
|
|
$decoded = json_decode(file_get_contents($file->getRealPath()), true, 512, JSON_THROW_ON_ERROR);
|
|
$file = new UploadedFile($file->getPathname(), $file->getFilename(), 'application/json');
|
|
|
|
$egg = $nest->eggs()
|
|
->where('author', $decoded['author'])
|
|
->where('name', $decoded['name'])
|
|
->first();
|
|
|
|
if ($egg instanceof Egg) {
|
|
$this->updateImporterService->handle($egg, $file);
|
|
$this->command->info('Updated ' . $decoded['name']);
|
|
} else {
|
|
$this->importerService->handle($file, $nest->id);
|
|
$this->command->comment('Created ' . $decoded['name']);
|
|
}
|
|
}
|
|
|
|
$this->command->line('');
|
|
}
|
|
}
|