2017-08-05 22:20:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Services\Nodes;
|
|
|
|
|
2020-04-17 00:47:53 +00:00
|
|
|
use Ramsey\Uuid\Uuid;
|
2020-04-10 22:15:38 +00:00
|
|
|
use Illuminate\Support\Str;
|
|
|
|
use Pterodactyl\Models\Node;
|
2020-06-25 04:54:56 +00:00
|
|
|
use Illuminate\Contracts\Encryption\Encrypter;
|
2017-08-05 22:20:07 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\NodeRepositoryInterface;
|
|
|
|
|
2017-08-27 20:10:51 +00:00
|
|
|
class NodeCreationService
|
2017-08-05 22:20:07 +00:00
|
|
|
{
|
|
|
|
/**
|
2022-10-14 16:59:20 +00:00
|
|
|
* NodeCreationService constructor.
|
2017-08-05 22:20:07 +00:00
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function __construct(private Encrypter $encrypter, protected NodeRepositoryInterface $repository)
|
2017-08-05 22:20:07 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new node on the panel.
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function handle(array $data): Node
|
2017-08-05 22:20:07 +00:00
|
|
|
{
|
2020-04-17 00:47:53 +00:00
|
|
|
$data['uuid'] = Uuid::uuid4()->toString();
|
2020-04-12 02:49:56 +00:00
|
|
|
$data['daemon_token'] = $this->encrypter->encrypt(Str::random(Node::DAEMON_TOKEN_LENGTH));
|
|
|
|
$data['daemon_token_id'] = Str::random(Node::DAEMON_TOKEN_ID_LENGTH);
|
2017-08-05 22:20:07 +00:00
|
|
|
|
2020-04-10 22:15:38 +00:00
|
|
|
return $this->repository->create($data, true, true);
|
2017-08-05 22:20:07 +00:00
|
|
|
}
|
|
|
|
}
|