misc_pterodactyl-panel/app/Models/Subuser.php

103 lines
2.2 KiB
PHP
Raw Normal View History

<?php
2016-12-07 22:46:38 +00:00
namespace Pterodactyl\Models;
use Illuminate\Notifications\Notifiable;
2019-11-03 20:20:11 +00:00
/**
* @property int $id
* @property int $user_id
* @property int $server_id
* @property array $permissions
2019-11-03 20:20:11 +00:00
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*
* @property \Pterodactyl\Models\User $user
* @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.
*/
const RESOURCE_NAME = 'server_subuser';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'subusers';
2016-01-19 00:57:10 +00:00
/**
* Fields that are not mass assignable.
*
* @var array
*/
protected $guarded = ['id', 'created_at', 'updated_at'];
2017-02-12 20:10:39 +00:00
/**
* Cast values to correct type.
*
* @var array
*/
protected $casts = [
'user_id' => 'int',
'server_id' => 'int',
'permissions' => 'array',
];
2017-08-24 02:34:11 +00:00
/**
* @var array
*/
public static $validationRules = [
'user_id' => 'required|numeric|exists:users,id',
'server_id' => 'required|numeric|exists:servers,id',
'permissions' => 'nullable|array',
'permissions.*' => 'string',
2017-08-24 02:34:11 +00: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);
}
/**
* 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-09 23:44:07 +00:00
/**
* Gets the permissions associated with a subuser.
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function permissions()
{
2017-02-10 00:38:54 +00:00
return $this->hasMany(Permission::class);
2017-02-09 23:44:07 +00:00
}
}