filesystem = $filesystem; $this->importerService = $importerService; $this->repository = $repository; $this->updateImporterService = $updateImporterService; $this->nestRepository = $nestRepository; } /** * Run the egg seeder. */ public function run() { $this->getEggsToImport()->each(function ($nest) { $this->parseEggFiles($this->findMatchingNest($nest)); }); } /** * Return a list of eggs to import. */ protected function getEggsToImport(): Collection { return collect([ 'Minecraft', 'Source Engine', 'Voice Servers', 'Rust', ]); } /** * Find the nest that these eggs should be attached to. * * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException */ private function findMatchingNest(string $nestName): Nest { return $this->nestRepository->findFirstWhere([ ['author', '=', 'support@pterodactyl.io'], ['name', '=', $nestName], ]); } /** * Loop through the list of egg files and import them. */ private function parseEggFiles(Nest $nest) { $files = $this->filesystem->allFiles(database_path('Seeders/eggs/' . kebab_case($nest->name))); $this->command->alert('Updating Eggs for Nest: ' . $nest->name); Collection::make($files)->each(function ($file) use ($nest) { /* @var \Symfony\Component\Finder\SplFileInfo $file */ $decoded = json_decode($file->getContents()); if (json_last_error() !== JSON_ERROR_NONE) { $this->command->error('JSON decode exception for ' . $file->getFilename() . ': ' . json_last_error_msg()); return; } $file = new UploadedFile($file->getPathname(), $file->getFilename(), 'application/json'); try { $egg = $this->repository->setColumns('id')->findFirstWhere([ ['author', '=', $decoded->author], ['name', '=', $decoded->name], ['nest_id', '=', $nest->id], ]); $this->updateImporterService->handle($egg, $file); $this->command->info('Updated ' . $decoded->name); } catch (RecordNotFoundException $exception) { $this->importerService->handleFile($nest->id, $file); $this->command->comment('Created ' . $decoded->name); } }); $this->command->line(''); } }