mirror of
https://github.com/pyrohost/pyrodactyl.git
synced 2026-04-05 19:51:59 +02:00
38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Repositories\Wings;
|
|
|
|
use Pterodactyl\Models\Node;
|
|
use Lcobucci\JWT\Token\Plain;
|
|
use GuzzleHttp\Exception\GuzzleException;
|
|
use Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException;
|
|
|
|
/**
|
|
* @method \Pterodactyl\Repositories\Wings\DaemonTransferRepository setNode(\Pterodactyl\Models\Node $node)
|
|
* @method \Pterodactyl\Repositories\Wings\DaemonTransferRepository setServer(\Pterodactyl\Models\Server $server)
|
|
*/
|
|
class DaemonTransferRepository extends DaemonRepository
|
|
{
|
|
/**
|
|
* @throws DaemonConnectionException
|
|
*/
|
|
public function notify(Node $targetNode, Plain $token): void
|
|
{
|
|
try {
|
|
$this->getHttpClient()->post(sprintf('/api/servers/%s/transfer', $this->server->uuid), [
|
|
'json' => [
|
|
'server_id' => $this->server->uuid,
|
|
'url' => $targetNode->getConnectionAddress() . '/api/transfers',
|
|
'token' => 'Bearer ' . $token->toString(),
|
|
'server' => [
|
|
'uuid' => $this->server->uuid,
|
|
'start_on_completion' => false,
|
|
],
|
|
],
|
|
]);
|
|
} catch (GuzzleException $exception) {
|
|
throw new DaemonConnectionException($exception);
|
|
}
|
|
}
|
|
}
|