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