2017-08-26 23:08:11 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Contracts\Repository\Daemon;
|
|
|
|
|
2018-01-06 00:27:47 +00:00
|
|
|
use stdClass;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
|
2019-09-06 03:33:27 +00:00
|
|
|
/**
|
|
|
|
* @deprecated
|
|
|
|
*/
|
2017-08-26 23:08:11 +00:00
|
|
|
interface FileRepositoryInterface extends BaseRepositoryInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Return stat information for a given file.
|
|
|
|
*
|
|
|
|
* @param string $path
|
2018-01-06 00:27:47 +00:00
|
|
|
* @return \stdClass
|
2017-09-03 21:32:52 +00:00
|
|
|
*
|
2018-08-07 06:14:13 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\TransferException
|
2017-08-26 23:08:11 +00:00
|
|
|
*/
|
2018-01-06 00:27:47 +00:00
|
|
|
public function getFileStat(string $path): stdClass;
|
2017-08-26 23:08:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the contents of a given file if it can be edited in the Panel.
|
|
|
|
*
|
2019-09-06 04:32:57 +00:00
|
|
|
* @param string $path
|
2019-05-25 23:24:13 +00:00
|
|
|
* @param int|null $notLargerThan
|
2018-01-21 18:31:41 +00:00
|
|
|
* @return string
|
2017-08-26 23:08:11 +00:00
|
|
|
*/
|
2019-05-25 23:24:13 +00:00
|
|
|
public function getContent(string $path, int $notLargerThan = null): string;
|
2017-08-26 23:08:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Save new contents to a given file.
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param string $content
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
2017-09-03 21:32:52 +00:00
|
|
|
*
|
2018-08-07 06:14:13 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\TransferException
|
2017-08-26 23:08:11 +00:00
|
|
|
*/
|
2018-01-06 00:27:47 +00:00
|
|
|
public function putContent(string $path, string $content): ResponseInterface;
|
2017-08-26 23:08:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a directory listing for a given path.
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @return array
|
2017-09-03 21:32:52 +00:00
|
|
|
*
|
2018-08-07 06:14:13 +00:00
|
|
|
* @throws \GuzzleHttp\Exception\TransferException
|
2017-08-26 23:08:11 +00:00
|
|
|
*/
|
2018-01-06 00:27:47 +00:00
|
|
|
public function getDirectory(string $path): array;
|
2019-05-02 04:45:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new directory for the server in the given $path.
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param string $path
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
|
|
|
public function createDirectory(string $name, string $path): ResponseInterface;
|
2019-05-04 23:04:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Renames or moves a file on the remote machine.
|
|
|
|
*
|
|
|
|
* @param string $from
|
|
|
|
* @param string $to
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
|
|
|
public function renameFile(string $from, string $to): ResponseInterface;
|
2019-05-05 00:26:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy a given file and give it a unique name.
|
|
|
|
*
|
|
|
|
* @param string $location
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
|
|
|
public function copyFile(string $location): ResponseInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a file or folder for the server.
|
|
|
|
*
|
|
|
|
* @param string $location
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
*/
|
|
|
|
public function deleteFile(string $location): ResponseInterface;
|
2017-08-26 23:08:11 +00:00
|
|
|
}
|