2019-05-02 03:54:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories\Wings;
|
|
|
|
|
2022-11-21 20:15:49 +00:00
|
|
|
use Illuminate\Support\Arr;
|
2019-09-06 03:33:27 +00:00
|
|
|
use Webmozart\Assert\Assert;
|
|
|
|
use Pterodactyl\Models\Server;
|
2019-05-02 03:54:40 +00:00
|
|
|
use Psr\Http\Message\ResponseInterface;
|
2020-07-15 04:16:38 +00:00
|
|
|
use GuzzleHttp\Exception\TransferException;
|
2019-05-25 23:24:13 +00:00
|
|
|
use Pterodactyl\Exceptions\Http\Server\FileSizeTooLargeException;
|
2020-07-15 04:16:38 +00:00
|
|
|
use Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException;
|
2019-05-02 03:54:40 +00:00
|
|
|
|
2019-09-06 03:33:27 +00:00
|
|
|
class DaemonFileRepository extends DaemonRepository
|
2019-05-02 03:54:40 +00:00
|
|
|
{
|
|
|
|
/**
|
2019-05-25 23:24:13 +00:00
|
|
|
* Return the contents of a given file.
|
2019-05-02 03:54:40 +00:00
|
|
|
*
|
2019-05-25 23:24:13 +00:00
|
|
|
* @param int|null $notLargerThan the maximum content length in bytes
|
2019-05-02 03:54:40 +00:00
|
|
|
*
|
|
|
|
* @throws \GuzzleHttp\Exception\TransferException
|
2019-05-25 23:24:13 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Server\FileSizeTooLargeException
|
2020-07-15 04:16:38 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
2019-05-02 03:54:40 +00:00
|
|
|
*/
|
2019-05-25 23:24:13 +00:00
|
|
|
public function getContent(string $path, int $notLargerThan = null): string
|
2019-05-02 03:54:40 +00:00
|
|
|
{
|
2019-09-06 04:16:36 +00:00
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
2019-09-06 03:33:27 +00:00
|
|
|
|
2020-07-15 04:16:38 +00:00
|
|
|
try {
|
|
|
|
$response = $this->getHttpClient()->get(
|
|
|
|
sprintf('/api/servers/%s/files/contents', $this->server->uuid),
|
|
|
|
[
|
|
|
|
'query' => ['file' => $path],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
2019-05-25 23:24:13 +00:00
|
|
|
|
2022-11-21 20:15:49 +00:00
|
|
|
$length = (int) Arr::get($response->getHeader('Content-Length'), 0, 0);
|
2019-05-25 23:24:13 +00:00
|
|
|
if ($notLargerThan && $length > $notLargerThan) {
|
2021-01-23 20:33:34 +00:00
|
|
|
throw new FileSizeTooLargeException();
|
2019-05-25 23:24:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $response->getBody()->__toString();
|
2019-05-02 03:54:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-05-25 23:24:13 +00:00
|
|
|
* Save new contents to a given file. This works for both creating and updating
|
|
|
|
* a file.
|
2019-05-02 03:54:40 +00:00
|
|
|
*
|
2020-07-15 04:16:38 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
2019-05-02 03:54:40 +00:00
|
|
|
*/
|
|
|
|
public function putContent(string $path, string $content): ResponseInterface
|
|
|
|
{
|
2019-09-06 04:16:36 +00:00
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
2019-09-06 03:33:27 +00:00
|
|
|
|
2020-07-15 04:16:38 +00:00
|
|
|
try {
|
|
|
|
return $this->getHttpClient()->post(
|
|
|
|
sprintf('/api/servers/%s/files/write', $this->server->uuid),
|
|
|
|
[
|
|
|
|
'query' => ['file' => $path],
|
|
|
|
'body' => $content,
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
2019-05-02 03:54:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a directory listing for a given path.
|
|
|
|
*
|
2020-07-15 04:16:38 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
2019-05-02 03:54:40 +00:00
|
|
|
*/
|
|
|
|
public function getDirectory(string $path): array
|
|
|
|
{
|
2019-09-06 04:16:36 +00:00
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
2019-09-06 03:33:27 +00:00
|
|
|
|
2020-07-15 04:16:38 +00:00
|
|
|
try {
|
|
|
|
$response = $this->getHttpClient()->get(
|
|
|
|
sprintf('/api/servers/%s/files/list-directory', $this->server->uuid),
|
|
|
|
[
|
|
|
|
'query' => ['directory' => $path],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
2019-05-02 03:54:40 +00:00
|
|
|
|
|
|
|
return json_decode($response->getBody(), true);
|
|
|
|
}
|
2019-05-02 04:45:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new directory for the server in the given $path.
|
|
|
|
*
|
2020-07-15 04:16:38 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
2019-05-02 04:45:39 +00:00
|
|
|
*/
|
|
|
|
public function createDirectory(string $name, string $path): ResponseInterface
|
|
|
|
{
|
2019-09-06 04:16:36 +00:00
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
2019-09-06 03:33:27 +00:00
|
|
|
|
2020-07-15 04:16:38 +00:00
|
|
|
try {
|
|
|
|
return $this->getHttpClient()->post(
|
|
|
|
sprintf('/api/servers/%s/files/create-directory', $this->server->uuid),
|
|
|
|
[
|
|
|
|
'json' => [
|
2020-09-25 03:27:02 +00:00
|
|
|
'name' => $name,
|
|
|
|
'path' => $path,
|
2020-07-15 04:16:38 +00:00
|
|
|
],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
2019-05-02 04:45:39 +00:00
|
|
|
}
|
2019-05-04 23:04:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Renames or moves a file on the remote machine.
|
|
|
|
*
|
2020-07-15 04:16:38 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
2019-05-04 23:04:59 +00:00
|
|
|
*/
|
2020-07-11 23:00:30 +00:00
|
|
|
public function renameFiles(?string $root, array $files): ResponseInterface
|
2019-05-04 23:04:59 +00:00
|
|
|
{
|
2019-09-06 04:16:36 +00:00
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
2019-09-06 03:33:27 +00:00
|
|
|
|
2020-07-15 04:16:38 +00:00
|
|
|
try {
|
|
|
|
return $this->getHttpClient()->put(
|
|
|
|
sprintf('/api/servers/%s/files/rename', $this->server->uuid),
|
|
|
|
[
|
|
|
|
'json' => [
|
|
|
|
'root' => $root ?? '/',
|
|
|
|
'files' => $files,
|
|
|
|
],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
2019-05-04 23:04:59 +00:00
|
|
|
}
|
2019-05-05 00:26:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy a given file and give it a unique name.
|
|
|
|
*
|
2020-07-15 04:16:38 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
2019-05-05 00:26:24 +00:00
|
|
|
*/
|
|
|
|
public function copyFile(string $location): ResponseInterface
|
|
|
|
{
|
2019-09-06 04:16:36 +00:00
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
2019-09-06 03:33:27 +00:00
|
|
|
|
2020-07-15 04:16:38 +00:00
|
|
|
try {
|
|
|
|
return $this->getHttpClient()->post(
|
|
|
|
sprintf('/api/servers/%s/files/copy', $this->server->uuid),
|
|
|
|
[
|
|
|
|
'json' => [
|
2020-09-25 03:27:02 +00:00
|
|
|
'location' => $location,
|
2020-07-15 04:16:38 +00:00
|
|
|
],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
2019-05-05 00:26:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a file or folder for the server.
|
|
|
|
*
|
2020-07-15 04:16:38 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
2019-05-05 00:26:24 +00:00
|
|
|
*/
|
2020-07-11 22:37:59 +00:00
|
|
|
public function deleteFiles(?string $root, array $files): ResponseInterface
|
2019-05-05 00:26:24 +00:00
|
|
|
{
|
2019-09-06 04:16:36 +00:00
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
2019-09-06 03:33:27 +00:00
|
|
|
|
2020-07-15 04:16:38 +00:00
|
|
|
try {
|
|
|
|
return $this->getHttpClient()->post(
|
|
|
|
sprintf('/api/servers/%s/files/delete', $this->server->uuid),
|
|
|
|
[
|
|
|
|
'json' => [
|
|
|
|
'root' => $root ?? '/',
|
|
|
|
'files' => $files,
|
|
|
|
],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
2019-05-05 00:26:24 +00:00
|
|
|
}
|
2020-07-11 20:38:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Compress the given files or folders in the given root.
|
|
|
|
*
|
2020-07-15 04:16:38 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
2020-07-11 20:38:49 +00:00
|
|
|
*/
|
|
|
|
public function compressFiles(?string $root, array $files): array
|
|
|
|
{
|
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
|
|
|
|
2020-07-15 04:16:38 +00:00
|
|
|
try {
|
|
|
|
$response = $this->getHttpClient()->post(
|
|
|
|
sprintf('/api/servers/%s/files/compress', $this->server->uuid),
|
|
|
|
[
|
|
|
|
'json' => [
|
|
|
|
'root' => $root ?? '/',
|
|
|
|
'files' => $files,
|
|
|
|
],
|
2020-08-07 03:25:35 +00:00
|
|
|
// Wait for up to 15 minutes for the archive to be completed when calling this endpoint
|
|
|
|
// since it will likely take quite awhile for large directories.
|
|
|
|
'timeout' => 60 * 15,
|
2020-07-15 04:16:38 +00:00
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
2020-07-11 20:38:49 +00:00
|
|
|
|
|
|
|
return json_decode($response->getBody(), true);
|
|
|
|
}
|
2020-07-15 04:16:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Decompresses a given archive file.
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
|
|
|
*/
|
|
|
|
public function decompressFile(?string $root, string $file): ResponseInterface
|
|
|
|
{
|
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
|
|
|
|
|
|
|
try {
|
|
|
|
return $this->getHttpClient()->post(
|
|
|
|
sprintf('/api/servers/%s/files/decompress', $this->server->uuid),
|
|
|
|
[
|
2020-07-15 18:29:52 +00:00
|
|
|
'json' => [
|
2020-07-15 04:16:38 +00:00
|
|
|
'root' => $root ?? '/',
|
|
|
|
'file' => $file,
|
|
|
|
],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
|
|
|
}
|
2020-11-29 20:49:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Chmods the given files.
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
|
|
|
*/
|
|
|
|
public function chmodFiles(?string $root, array $files): ResponseInterface
|
|
|
|
{
|
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
|
|
|
|
|
|
|
try {
|
|
|
|
return $this->getHttpClient()->post(
|
|
|
|
sprintf('/api/servers/%s/files/chmod', $this->server->uuid),
|
|
|
|
[
|
|
|
|
'json' => [
|
|
|
|
'root' => $root ?? '/',
|
|
|
|
'files' => $files,
|
|
|
|
],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
|
|
|
}
|
2020-12-24 17:15:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Pulls a file from the given URL and saves it to the disk.
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
|
|
|
*/
|
2022-05-28 17:45:23 +00:00
|
|
|
public function pull(string $url, ?string $directory, array $params = []): ResponseInterface
|
2020-12-24 17:15:03 +00:00
|
|
|
{
|
|
|
|
Assert::isInstanceOf($this->server, Server::class);
|
|
|
|
|
2022-05-28 17:45:23 +00:00
|
|
|
$attributes = [
|
|
|
|
'url' => $url,
|
|
|
|
'root' => $directory ?? '/',
|
|
|
|
'file_name' => $params['filename'] ?? null,
|
|
|
|
'use_header' => $params['use_header'] ?? null,
|
|
|
|
'foreground' => $params['foreground'] ?? null,
|
|
|
|
];
|
|
|
|
|
2020-12-24 17:15:03 +00:00
|
|
|
try {
|
|
|
|
return $this->getHttpClient()->post(
|
|
|
|
sprintf('/api/servers/%s/files/pull', $this->server->uuid),
|
|
|
|
[
|
2022-05-28 17:45:23 +00:00
|
|
|
'json' => array_filter($attributes, fn ($value) => !is_null($value)),
|
2020-12-24 17:15:03 +00:00
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (TransferException $exception) {
|
|
|
|
throw new DaemonConnectionException($exception);
|
|
|
|
}
|
|
|
|
}
|
2019-05-02 03:54:40 +00:00
|
|
|
}
|