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-08-27 19:55:25 +00:00
|
|
|
use Sofa\Eloquence\Eloquence;
|
|
|
|
use Sofa\Eloquence\Validable;
|
2015-12-06 18:58:49 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2017-02-18 00:23:27 +00:00
|
|
|
use Illuminate\Notifications\Notifiable;
|
2017-08-24 02:34:11 +00:00
|
|
|
use Sofa\Eloquence\Contracts\CleansAttributes;
|
|
|
|
use Sofa\Eloquence\Contracts\Validable as ValidableContract;
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2017-08-24 02:34:11 +00:00
|
|
|
class Subuser extends Model implements CleansAttributes, ValidableContract
|
2015-12-06 18:58:49 +00:00
|
|
|
{
|
2017-08-24 02:34:11 +00:00
|
|
|
use Eloquence, Notifiable, Validable;
|
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.
|
|
|
|
*/
|
|
|
|
const RESOURCE_NAME = 'server_subuser';
|
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2017-02-06 00:19:46 +00:00
|
|
|
protected $casts = [
|
|
|
|
'user_id' => 'integer',
|
|
|
|
'server_id' => 'integer',
|
|
|
|
];
|
2017-02-09 22:43:54 +00:00
|
|
|
|
2017-08-24 02:34:11 +00:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected static $applicationRules = [
|
|
|
|
'user_id' => 'required',
|
|
|
|
'server_id' => 'required',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected static $dataIntegrityRules = [
|
|
|
|
'user_id' => 'numeric|exists:users,id',
|
|
|
|
'server_id' => 'numeric|exists:servers,id',
|
|
|
|
];
|
|
|
|
|
2017-10-28 02:42:53 +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);
|
|
|
|
}
|
|
|
|
|
2017-02-09 22:43:54 +00: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-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
|
|
|
}
|
2017-09-25 02:12:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the key that belongs to this subuser for the server.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasOne
|
|
|
|
*/
|
|
|
|
public function key()
|
|
|
|
{
|
|
|
|
return $this->hasOne(DaemonKey::class, 'server_id', 'server_id')->where('daemon_keys.user_id', '=', $this->user_id);
|
|
|
|
}
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|