misc_pterodactyl-panel/app/Contracts/Repository/DatabaseRepositoryInterface.php

109 lines
2.8 KiB
PHP
Raw Normal View History

2017-07-15 16:52:34 +00:00
<?php
namespace Pterodactyl\Contracts\Repository;
use Pterodactyl\Models\Database;
use Illuminate\Support\Collection;
2018-03-03 23:52:35 +00:00
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
2017-07-15 16:52:34 +00:00
interface DatabaseRepositoryInterface extends RepositoryInterface
{
const DEFAULT_CONNECTION_NAME = 'dynamic';
/**
* Set the connection name to execute statements against.
*
* @param string $connection
* @return $this
*/
public function setConnection(string $connection);
/**
2018-05-13 14:50:56 +00:00
* Return the connection to execute statements against.
*
* @return string
*/
public function getConnection(): string;
/**
* Return all of the databases belonging to a server.
*
* @param int $server
* @return \Illuminate\Support\Collection
*/
public function getDatabasesForServer(int $server): Collection;
2018-03-03 23:52:35 +00:00
/**
* Return all of the databases for a given host with the server relationship loaded.
*
* @param int $host
* @param int $count
* @return \Illuminate\Contracts\Pagination\LengthAwarePaginator
*/
public function getDatabasesForHost(int $host, int $count = 25): LengthAwarePaginator;
2017-07-15 16:52:34 +00:00
/**
* Create a new database if it does not already exist on the host with
* the provided details.
*
2017-08-22 03:10:48 +00:00
* @param array $data
* @return \Pterodactyl\Models\Database
2017-07-15 16:52:34 +00:00
*
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
* @throws \Pterodactyl\Exceptions\Repository\DuplicateDatabaseNameException
2017-07-15 16:52:34 +00:00
*/
public function createIfNotExists(array $data): Database;
2017-07-15 16:52:34 +00:00
/**
* Create a new database on a given connection.
*
* @param string $database
2017-07-15 16:52:34 +00:00
* @return bool
*/
public function createDatabase(string $database): bool;
2017-07-15 16:52:34 +00:00
/**
* Create a new database user on a given connection.
*
* @param string $username
* @param string $remote
* @param string $password
2017-07-15 16:52:34 +00:00
* @return bool
*/
public function createUser(string $username, string $remote, string $password): bool;
2017-07-15 16:52:34 +00:00
/**
* Give a specific user access to a given database.
*
* @param string $database
* @param string $username
* @param string $remote
2017-07-15 16:52:34 +00:00
* @return bool
*/
public function assignUserToDatabase(string $database, string $username, string $remote): bool;
2017-07-15 16:52:34 +00:00
/**
* Flush the privileges for a given connection.
*
* @return bool
2017-07-15 16:52:34 +00:00
*/
public function flush(): bool;
2017-07-15 16:52:34 +00:00
/**
* Drop a given database on a specific connection.
*
* @param string $database
2017-07-15 16:52:34 +00:00
* @return bool
*/
public function dropDatabase(string $database): bool;
2017-07-15 16:52:34 +00:00
/**
* Drop a given user on a specific connection.
*
* @param string $username
* @param string $remote
2017-07-15 16:52:34 +00:00
* @return mixed
*/
public function dropUser(string $username, string $remote): bool;
2017-07-15 16:52:34 +00:00
}