mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 01:22:30 +01:00
99 lines
2.9 KiB
PHP
99 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Repositories\Wings;
|
|
|
|
use Webmozart\Assert\Assert;
|
|
use Pterodactyl\Models\Backup;
|
|
use Pterodactyl\Models\Server;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use GuzzleHttp\Exception\TransferException;
|
|
use Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException;
|
|
|
|
class DaemonBackupRepository extends DaemonRepository
|
|
{
|
|
/**
|
|
* @var string|null
|
|
*/
|
|
protected $adapter;
|
|
|
|
/**
|
|
* Sets the backup adapter for this execution instance.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setBackupAdapter(string $adapter)
|
|
{
|
|
$this->adapter = $adapter;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Tells the remote Daemon to begin generating a backup for the server.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
|
*/
|
|
public function backup(Backup $backup): ResponseInterface
|
|
{
|
|
Assert::isInstanceOf($this->server, Server::class);
|
|
|
|
try {
|
|
return $this->getHttpClient()->post(
|
|
sprintf('/api/servers/%s/backup', $this->server->uuid),
|
|
[
|
|
'json' => [
|
|
'adapter' => $this->adapter ?? config('backups.default'),
|
|
'uuid' => $backup->uuid,
|
|
'ignore' => implode("\n", $backup->ignored_files),
|
|
],
|
|
]
|
|
);
|
|
} catch (TransferException $exception) {
|
|
throw new DaemonConnectionException($exception);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sends a request to Wings to begin restoring a backup for a server.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
|
*/
|
|
public function restore(Backup $backup, string $url = null, bool $truncate = false): ResponseInterface
|
|
{
|
|
Assert::isInstanceOf($this->server, Server::class);
|
|
|
|
try {
|
|
return $this->getHttpClient()->post(
|
|
sprintf('/api/servers/%s/backup/%s/restore', $this->server->uuid, $backup->uuid),
|
|
[
|
|
'json' => [
|
|
'adapter' => $backup->disk,
|
|
'truncate_directory' => $truncate,
|
|
'download_url' => $url ?? '',
|
|
],
|
|
]
|
|
);
|
|
} catch (TransferException $exception) {
|
|
throw new DaemonConnectionException($exception);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Deletes a backup from the daemon.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
|
*/
|
|
public function delete(Backup $backup): ResponseInterface
|
|
{
|
|
Assert::isInstanceOf($this->server, Server::class);
|
|
|
|
try {
|
|
return $this->getHttpClient()->delete(
|
|
sprintf('/api/servers/%s/backup/%s', $this->server->uuid, $backup->uuid)
|
|
);
|
|
} catch (TransferException $exception) {
|
|
throw new DaemonConnectionException($exception);
|
|
}
|
|
}
|
|
}
|