2016-11-27 01:29:57 +01:00
|
|
|
<?php
|
2016-12-07 23:46:38 +01:00
|
|
|
|
2017-08-24 04:34:11 +02:00
|
|
|
namespace Pterodactyl\Contracts\Repository;
|
2016-11-27 01:29:57 +01:00
|
|
|
|
2017-10-28 04:42:53 +02:00
|
|
|
use Pterodactyl\Models\Subuser;
|
|
|
|
|
2017-08-24 04:34:11 +02:00
|
|
|
interface SubuserRepositoryInterface extends RepositoryInterface
|
2016-11-27 01:29:57 +01:00
|
|
|
{
|
2017-08-27 01:08:11 +02:00
|
|
|
/**
|
|
|
|
* Return a subuser with the associated server relationship.
|
|
|
|
*/
|
2017-11-05 19:38:39 +01:00
|
|
|
public function loadServerAndUserRelations(Subuser $subuser, bool $refresh = false): Subuser;
|
2017-08-27 01:08:11 +02:00
|
|
|
|
2017-09-05 01:12:13 +02:00
|
|
|
/**
|
|
|
|
* Return a subuser with the associated permissions relationship.
|
|
|
|
*/
|
2017-10-28 04:42:53 +02:00
|
|
|
public function getWithPermissions(Subuser $subuser, bool $refresh = false): Subuser;
|
2017-09-05 01:12:13 +02:00
|
|
|
|
2017-09-24 03:45:25 +02:00
|
|
|
/**
|
|
|
|
* Return a subuser and associated permissions given a user_id and server_id.
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
2017-11-05 23:07:50 +01:00
|
|
|
public function getWithPermissionsUsingUserAndServer(int $user, int $server): Subuser;
|
2016-11-27 01:29:57 +01:00
|
|
|
}
|