mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
70 lines
1.9 KiB
PHP
70 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Repositories\Eloquent;
|
|
|
|
use Pterodactyl\Models\Subuser;
|
|
use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
|
|
use Pterodactyl\Contracts\Repository\SubuserRepositoryInterface;
|
|
|
|
class SubuserRepository extends EloquentRepository implements SubuserRepositoryInterface
|
|
{
|
|
/**
|
|
* Return the model backing this repository.
|
|
*/
|
|
public function model(): string
|
|
{
|
|
return Subuser::class;
|
|
}
|
|
|
|
/**
|
|
* Return a subuser with the associated server relationship.
|
|
*/
|
|
public function loadServerAndUserRelations(Subuser $subuser, bool $refresh = false): Subuser
|
|
{
|
|
if (!$subuser->relationLoaded('server') || $refresh) {
|
|
$subuser->load('server');
|
|
}
|
|
|
|
if (!$subuser->relationLoaded('user') || $refresh) {
|
|
$subuser->load('user');
|
|
}
|
|
|
|
return $subuser;
|
|
}
|
|
|
|
/**
|
|
* Return a subuser with the associated permissions relationship.
|
|
*/
|
|
public function getWithPermissions(Subuser $subuser, bool $refresh = false): Subuser
|
|
{
|
|
if (!$subuser->relationLoaded('permissions') || $refresh) {
|
|
$subuser->load('permissions');
|
|
}
|
|
|
|
if (!$subuser->relationLoaded('user') || $refresh) {
|
|
$subuser->load('user');
|
|
}
|
|
|
|
return $subuser;
|
|
}
|
|
|
|
/**
|
|
* Return a subuser and associated permissions given a user_id and server_id.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function getWithPermissionsUsingUserAndServer(int $user, int $server): Subuser
|
|
{
|
|
$instance = $this->getBuilder()->with('permissions')->where([
|
|
['user_id', '=', $user],
|
|
['server_id', '=', $server],
|
|
])->first();
|
|
|
|
if (is_null($instance)) {
|
|
throw new RecordNotFoundException();
|
|
}
|
|
|
|
return $instance;
|
|
}
|
|
}
|