89 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			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->handle($egg, $file);
 | 
						|
                $this->command->info('Updated ' . $decoded['name']);
 | 
						|
            } else {
 | 
						|
                $this->importerService->handle($file);
 | 
						|
                $this->command->comment('Created ' . $decoded['name']);
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        $this->command->line('');
 | 
						|
    }
 | 
						|
}
 |