mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
109 lines
3.2 KiB
PHP
109 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Pterodactyl\Services\Nests\NestCreationService;
|
|
use Pterodactyl\Contracts\Repository\NestRepositoryInterface;
|
|
|
|
class NestSeeder extends Seeder
|
|
{
|
|
/**
|
|
* @var \Pterodactyl\Services\Nests\NestCreationService
|
|
*/
|
|
private $creationService;
|
|
|
|
/**
|
|
* @var \Pterodactyl\Contracts\Repository\NestRepositoryInterface
|
|
*/
|
|
private $repository;
|
|
|
|
/**
|
|
* NestSeeder constructor.
|
|
*/
|
|
public function __construct(
|
|
NestCreationService $creationService,
|
|
NestRepositoryInterface $repository
|
|
) {
|
|
$this->creationService = $creationService;
|
|
$this->repository = $repository;
|
|
}
|
|
|
|
/**
|
|
* Run the seeder to add missing nests to the Panel.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
*/
|
|
public function run()
|
|
{
|
|
$items = $this->repository->findWhere([
|
|
'author' => 'support@pterodactyl.io',
|
|
])->keyBy('name')->toArray();
|
|
|
|
$this->createMinecraftNest(array_get($items, 'Minecraft'));
|
|
$this->createSourceEngineNest(array_get($items, 'Source Engine'));
|
|
$this->createVoiceServersNest(array_get($items, 'Voice Servers'));
|
|
$this->createRustNest(array_get($items, 'Rust'));
|
|
}
|
|
|
|
/**
|
|
* Create the Minecraft nest to be used later on.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
*/
|
|
private function createMinecraftNest(array $nest = null)
|
|
{
|
|
if (is_null($nest)) {
|
|
$this->creationService->handle([
|
|
'name' => 'Minecraft',
|
|
'description' => 'Minecraft - the classic game from Mojang. With support for Vanilla MC, Spigot, and many others!',
|
|
], 'support@pterodactyl.io');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create the Source Engine Games nest to be used later on.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
*/
|
|
private function createSourceEngineNest(array $nest = null)
|
|
{
|
|
if (is_null($nest)) {
|
|
$this->creationService->handle([
|
|
'name' => 'Source Engine',
|
|
'description' => 'Includes support for most Source Dedicated Server games.',
|
|
], 'support@pterodactyl.io');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create the Voice Servers nest to be used later on.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
*/
|
|
private function createVoiceServersNest(array $nest = null)
|
|
{
|
|
if (is_null($nest)) {
|
|
$this->creationService->handle([
|
|
'name' => 'Voice Servers',
|
|
'description' => 'Voice servers such as Mumble and Teamspeak 3.',
|
|
], 'support@pterodactyl.io');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create the Rust nest to be used later on.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
*/
|
|
private function createRustNest(array $nest = null)
|
|
{
|
|
if (is_null($nest)) {
|
|
$this->creationService->handle([
|
|
'name' => 'Rust',
|
|
'description' => 'Rust - A game where you must fight to survive.',
|
|
], 'support@pterodactyl.io');
|
|
}
|
|
}
|
|
}
|