Boy132 cc1ac1eba1
Allow importing eggs via url (#344)
* allow importing eggs via url

* refactor

* run pint

* turn back into one button

* fix empty check

* small cleanup

* removed container for tabs

* Update URL function

* Use sys temp

---------

Co-authored-by: notCharles <charles@pelican.dev>
2024-06-07 17:31:34 -04:00

89 lines
2.4 KiB
PHP

<?php
namespace Database\Seeders;
use App\Models\Egg;
use Exception;
use Illuminate\Database\Seeder;
use Illuminate\Http\UploadedFile;
use App\Services\Eggs\Sharing\EggImporterService;
use App\Services\Eggs\Sharing\EggUpdateImporterService;
class EggSeeder extends Seeder
{
protected EggImporterService $importerService;
protected EggUpdateImporterService $updateImporterService;
/**
* @var string[]
*/
public static array $imports = [
'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::$imports as $import) {
/* @noinspection PhpParamsInspection */
$this->parseEggFiles($import);
}
}
/**
* Loop through the list of egg files and import them.
*/
protected function parseEggFiles($name)
{
$files = new \DirectoryIterator(database_path('Seeders/eggs/' . kebab_case($name)));
$this->command->alert('Updating Eggs for: ' . $name);
/** @var \DirectoryIterator $file */
foreach ($files as $file) {
if (!$file->isFile() || !$file->isReadable()) {
continue;
}
try {
$decoded = json_decode(file_get_contents($file->getRealPath()), true, 512, JSON_THROW_ON_ERROR);
} catch (Exception) {
continue;
}
$file = new UploadedFile($file->getPathname(), $file->getFilename(), 'application/json');
$egg = Egg::query()
->where('author', $decoded['author'])
->where('name', $decoded['name'])
->first();
if ($egg instanceof Egg) {
$this->updateImporterService->fromFile($egg, $file);
$this->command->info('Updated ' . $decoded['name']);
} else {
$this->importerService->fromFile($file);
$this->command->comment('Created ' . $decoded['name']);
}
}
$this->command->line('');
}
}