mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 14:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			112 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Models;
 | 
						|
 | 
						|
use Sofa\Eloquence\Eloquence;
 | 
						|
use Sofa\Eloquence\Validable;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
use Illuminate\Notifications\Notifiable;
 | 
						|
use Sofa\Eloquence\Contracts\CleansAttributes;
 | 
						|
use Sofa\Eloquence\Contracts\Validable as ValidableContract;
 | 
						|
 | 
						|
class Subuser extends Model implements CleansAttributes, ValidableContract
 | 
						|
{
 | 
						|
    use Eloquence, Notifiable, Validable;
 | 
						|
 | 
						|
    /**
 | 
						|
     * 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';
 | 
						|
 | 
						|
    /**
 | 
						|
     * Fields that are not mass assignable.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $guarded = ['id', 'created_at', 'updated_at'];
 | 
						|
 | 
						|
    /**
 | 
						|
     * Cast values to correct type.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $casts = [
 | 
						|
        'user_id' => 'integer',
 | 
						|
        'server_id' => 'integer',
 | 
						|
    ];
 | 
						|
 | 
						|
    /**
 | 
						|
     * @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',
 | 
						|
    ];
 | 
						|
 | 
						|
    /**
 | 
						|
     * 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);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Gets the permissions associated with a subuser.
 | 
						|
     *
 | 
						|
     * @return \Illuminate\Database\Eloquent\Relations\HasMany
 | 
						|
     */
 | 
						|
    public function permissions()
 | 
						|
    {
 | 
						|
        return $this->hasMany(Permission::class);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * 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);
 | 
						|
    }
 | 
						|
}
 |