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