mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 09:32:29 +01:00
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Services\Nodes;
|
|
|
|
use Ramsey\Uuid\Uuid;
|
|
use Illuminate\Support\Str;
|
|
use Pterodactyl\Models\Node;
|
|
use Illuminate\Contracts\Encryption\Encrypter;
|
|
use Pterodactyl\Contracts\Repository\NodeRepositoryInterface;
|
|
|
|
class NodeCreationService
|
|
{
|
|
/**
|
|
* @var \Pterodactyl\Contracts\Repository\NodeRepositoryInterface
|
|
*/
|
|
protected $repository;
|
|
|
|
/**
|
|
* @var \Illuminate\Contracts\Encryption\Encrypter
|
|
*/
|
|
private $encrypter;
|
|
|
|
/**
|
|
* CreationService constructor.
|
|
*/
|
|
public function __construct(Encrypter $encrypter, NodeRepositoryInterface $repository)
|
|
{
|
|
$this->repository = $repository;
|
|
$this->encrypter = $encrypter;
|
|
}
|
|
|
|
/**
|
|
* Create a new node on the panel.
|
|
*
|
|
* @return \Pterodactyl\Models\Node
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
*/
|
|
public function handle(array $data)
|
|
{
|
|
$data['uuid'] = Uuid::uuid4()->toString();
|
|
$data['daemon_token'] = $this->encrypter->encrypt(Str::random(Node::DAEMON_TOKEN_LENGTH));
|
|
$data['daemon_token_id'] = Str::random(Node::DAEMON_TOKEN_ID_LENGTH);
|
|
|
|
return $this->repository->create($data, true, true);
|
|
}
|
|
}
|