misc_pterodactyl-panel/app/Models/Subuser.php

90 lines
2.1 KiB
PHP
Raw Permalink Normal View History

<?php
2016-12-07 22:46:38 +00:00
namespace Pterodactyl\Models;
2022-10-24 12:01:26 -04:00
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Notifications\Notifiable;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
2019-11-03 12:20:11 -08:00
/**
* @property int $id
* @property int $user_id
* @property int $server_id
* @property array $permissions
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property \Pterodactyl\Models\User $user
2019-11-03 12:20:11 -08:00
* @property \Pterodactyl\Models\Server $server
*/
class Subuser extends Model
{
use Notifiable;
/**
* The resource name for this model when it is transformed into an
* API representation using fractal.
*/
2021-01-23 12:33:34 -08:00
public const RESOURCE_NAME = 'server_subuser';
/**
* The table associated with the model.
*/
protected $table = 'subusers';
2016-01-18 19:57:10 -05:00
/**
* Fields that are not mass assignable.
*/
protected $guarded = ['id', 'created_at', 'updated_at'];
2017-02-12 15:10:39 -05:00
/**
* Cast values to correct type.
*/
protected $casts = [
'user_id' => 'int',
'server_id' => 'int',
'permissions' => 'array',
];
public static array $validationRules = [
'user_id' => 'required|numeric|exists:users,id',
'server_id' => 'required|numeric|exists:servers,id',
'permissions' => 'nullable|array',
'permissions.*' => 'string',
2017-08-23 21:34:11 -05:00
];
/**
* Return a hashid encoded string to represent the ID of the subuser.
*/
2022-10-24 12:01:26 -04:00
public function hashid(): Attribute
{
2022-10-24 12:01:26 -04:00
return Attribute::make(
get: fn () => app()->make('hashids')->encode($this->id),
);
}
/**
* Gets the server associated with a subuser.
*/
public function server(): BelongsTo
{
return $this->belongsTo(Server::class);
}
/**
* Gets the user associated with a subuser.
*/
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
2017-02-09 18:44:07 -05:00
/**
* Gets the permissions associated with a subuser.
*/
public function permissions(): HasMany
2017-02-09 18:44:07 -05:00
{
2017-02-09 19:38:54 -05:00
return $this->hasMany(Permission::class);
2017-02-09 18:44:07 -05:00
}
}