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-04-09 17:15:15 +00:00
|
|
|
use Schema;
|
2017-01-25 00:15:03 +00:00
|
|
|
use Illuminate\Notifications\Notifiable;
|
2019-09-05 04:21:07 +00:00
|
|
|
use Pterodactyl\Models\Traits\Searchable;
|
2017-09-24 01:45:25 +00:00
|
|
|
use Znck\Eloquent\Traits\BelongsToThrough;
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2019-08-17 23:03:10 +00:00
|
|
|
/**
|
|
|
|
* @property int $id
|
|
|
|
* @property string|null $external_id
|
|
|
|
* @property string $uuid
|
|
|
|
* @property string $uuidShort
|
|
|
|
* @property int $node_id
|
|
|
|
* @property string $name
|
|
|
|
* @property string $description
|
|
|
|
* @property bool $skip_scripts
|
2019-11-24 20:50:16 +00:00
|
|
|
* @property int $suspended
|
2019-08-17 23:03:10 +00:00
|
|
|
* @property int $owner_id
|
|
|
|
* @property int $memory
|
|
|
|
* @property int $swap
|
|
|
|
* @property int $disk
|
|
|
|
* @property int $io
|
|
|
|
* @property int $cpu
|
|
|
|
* @property bool $oom_disabled
|
|
|
|
* @property int $allocation_id
|
|
|
|
* @property int $nest_id
|
|
|
|
* @property int $egg_id
|
|
|
|
* @property int|null $pack_id
|
|
|
|
* @property string $startup
|
|
|
|
* @property string $image
|
|
|
|
* @property int $installed
|
|
|
|
* @property int $allocation_limit
|
|
|
|
* @property int $database_limit
|
|
|
|
* @property \Carbon\Carbon $created_at
|
|
|
|
* @property \Carbon\Carbon $updated_at
|
|
|
|
*
|
|
|
|
* @property \Pterodactyl\Models\User $user
|
2019-12-28 20:03:19 +00:00
|
|
|
* @property \Pterodactyl\Models\User[]|\Illuminate\Database\Eloquent\Collection $subusers
|
2019-08-17 23:03:10 +00:00
|
|
|
* @property \Pterodactyl\Models\Allocation $allocation
|
2019-12-28 20:03:19 +00:00
|
|
|
* @property \Pterodactyl\Models\Allocation[]|\Illuminate\Database\Eloquent\Collection $allocations
|
2019-08-17 23:03:10 +00:00
|
|
|
* @property \Pterodactyl\Models\Pack|null $pack
|
|
|
|
* @property \Pterodactyl\Models\Node $node
|
|
|
|
* @property \Pterodactyl\Models\Nest $nest
|
|
|
|
* @property \Pterodactyl\Models\Egg $egg
|
2019-12-28 20:03:19 +00:00
|
|
|
* @property \Pterodactyl\Models\ServerVariable[]|\Illuminate\Database\Eloquent\Collection $variables
|
|
|
|
* @property \Pterodactyl\Models\Schedule[]|\Illuminate\Database\Eloquent\Collection $schedule
|
|
|
|
* @property \Pterodactyl\Models\Database[]|\Illuminate\Database\Eloquent\Collection $databases
|
2019-08-17 23:03:10 +00:00
|
|
|
* @property \Pterodactyl\Models\Location $location
|
|
|
|
* @property \Pterodactyl\Models\DaemonKey $key
|
2019-12-28 20:03:19 +00:00
|
|
|
* @property \Pterodactyl\Models\DaemonKey[]|\Illuminate\Database\Eloquent\Collection $keys
|
2019-08-17 23:03:10 +00:00
|
|
|
*/
|
2019-09-05 04:00:34 +00:00
|
|
|
class Server extends Validable
|
2015-12-06 18:58:49 +00:00
|
|
|
{
|
2019-09-05 04:21:07 +00:00
|
|
|
use BelongsToThrough, Notifiable, Searchable;
|
2016-10-28 00:05:29 +00:00
|
|
|
|
2018-01-20 03:47:06 +00:00
|
|
|
/**
|
|
|
|
* The resource name for this model when it is transformed into an
|
|
|
|
* API representation using fractal.
|
|
|
|
*/
|
|
|
|
const RESOURCE_NAME = 'server';
|
|
|
|
|
2020-04-03 20:46:45 +00:00
|
|
|
const STATUS_INSTALLING = 0;
|
|
|
|
const STATUS_INSTALLED = 1;
|
|
|
|
const STATUS_INSTALL_FAILED = 2;
|
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'servers';
|
|
|
|
|
2019-08-03 20:41:24 +00:00
|
|
|
/**
|
|
|
|
* Default values when creating the model. We want to switch to disabling OOM killer
|
|
|
|
* on server instances unless the user specifies otherwise in the request.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $attributes = [
|
|
|
|
'oom_disabled' => true,
|
|
|
|
];
|
|
|
|
|
2016-10-28 00:05:29 +00:00
|
|
|
/**
|
|
|
|
* The attributes that should be mutated to dates.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-10-25 04:35:25 +00:00
|
|
|
protected $dates = [self::CREATED_AT, self::UPDATED_AT, 'deleted_at'];
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2015-12-15 20:08:41 +00:00
|
|
|
/**
|
|
|
|
* Fields that are not mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-10-25 04:35:25 +00:00
|
|
|
protected $guarded = ['id', 'installed', self::CREATED_AT, self::UPDATED_AT, 'deleted_at'];
|
2015-12-15 20:08:41 +00:00
|
|
|
|
2017-08-05 22:20:07 +00:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2019-09-05 05:19:57 +00:00
|
|
|
public static $validationRules = [
|
|
|
|
'external_id' => 'sometimes|nullable|string|between:1,191|unique:servers',
|
|
|
|
'owner_id' => 'required|integer|exists:users,id',
|
|
|
|
'name' => 'required|string|min:1|max:255',
|
|
|
|
'node_id' => 'required|exists:nodes,id',
|
2018-01-01 18:23:45 +00:00
|
|
|
'description' => 'string',
|
2019-09-05 05:19:57 +00:00
|
|
|
'memory' => 'required|numeric|min:0',
|
|
|
|
'swap' => 'required|numeric|min:-1',
|
|
|
|
'io' => 'required|numeric|between:10,1000',
|
|
|
|
'cpu' => 'required|numeric|min:0',
|
|
|
|
'oom_disabled' => 'sometimes|boolean',
|
|
|
|
'disk' => 'required|numeric|min:0',
|
|
|
|
'allocation_id' => 'required|bail|unique:servers|exists:allocations,id',
|
|
|
|
'nest_id' => 'required|exists:nests,id',
|
|
|
|
'egg_id' => 'required|exists:eggs,id',
|
|
|
|
'pack_id' => 'sometimes|nullable|numeric|min:0',
|
|
|
|
'startup' => 'required|string',
|
|
|
|
'skip_scripts' => 'sometimes|boolean',
|
|
|
|
'image' => 'required|string|max:255',
|
2019-03-03 21:44:28 +00:00
|
|
|
'installed' => 'in:0,1,2',
|
2019-09-05 05:19:57 +00:00
|
|
|
'database_limit' => 'present|nullable|integer|min:0',
|
|
|
|
'allocation_limit' => 'sometimes|nullable|integer|min:0',
|
2017-07-20 01:49:41 +00:00
|
|
|
];
|
|
|
|
|
2017-03-15 01:18:36 +00:00
|
|
|
/**
|
|
|
|
* Cast values to correct type.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $casts = [
|
|
|
|
'node_id' => 'integer',
|
2017-04-21 21:52:44 +00:00
|
|
|
'skip_scripts' => 'boolean',
|
2017-03-15 01:18:36 +00:00
|
|
|
'suspended' => 'integer',
|
|
|
|
'owner_id' => 'integer',
|
|
|
|
'memory' => 'integer',
|
|
|
|
'swap' => 'integer',
|
|
|
|
'disk' => 'integer',
|
|
|
|
'io' => 'integer',
|
|
|
|
'cpu' => 'integer',
|
2019-08-03 20:41:24 +00:00
|
|
|
'oom_disabled' => 'boolean',
|
2017-03-15 01:18:36 +00:00
|
|
|
'allocation_id' => 'integer',
|
2017-10-07 04:57:53 +00:00
|
|
|
'nest_id' => 'integer',
|
|
|
|
'egg_id' => 'integer',
|
2017-03-15 01:18:36 +00:00
|
|
|
'pack_id' => 'integer',
|
|
|
|
'installed' => 'integer',
|
2018-03-02 02:08:27 +00:00
|
|
|
'database_limit' => 'integer',
|
|
|
|
'allocation_limit' => 'integer',
|
2017-03-15 01:18:36 +00:00
|
|
|
];
|
2016-01-27 03:17:51 +00:00
|
|
|
|
2017-03-15 01:18:36 +00:00
|
|
|
/**
|
|
|
|
* Parameters for search querying.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-08-05 22:20:07 +00:00
|
|
|
protected $searchableColumns = [
|
2018-02-24 17:57:12 +00:00
|
|
|
'name' => 100,
|
|
|
|
'uuid' => 80,
|
|
|
|
'uuidShort' => 80,
|
|
|
|
'external_id' => 50,
|
|
|
|
'user.email' => 40,
|
|
|
|
'user.username' => 30,
|
2018-01-06 00:49:00 +00:00
|
|
|
'node.name' => 10,
|
2018-02-24 17:57:12 +00:00
|
|
|
'pack.name' => 10,
|
2017-03-15 01:18:36 +00:00
|
|
|
];
|
2017-02-19 00:31:44 +00:00
|
|
|
|
2017-04-09 17:15:15 +00:00
|
|
|
/**
|
|
|
|
* Return the columns available for this table.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2017-04-09 23:16:39 +00:00
|
|
|
public function getTableColumns()
|
|
|
|
{
|
2017-04-09 17:15:15 +00:00
|
|
|
return Schema::getColumnListing($this->getTable());
|
|
|
|
}
|
|
|
|
|
2019-11-24 23:08:54 +00:00
|
|
|
/**
|
|
|
|
* Returns the format for server allocations when communicating with the Daemon.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAllocationMappings(): array
|
|
|
|
{
|
|
|
|
return $this->allocations->groupBy('ip')->map(function ($item) {
|
|
|
|
return $item->pluck('port');
|
|
|
|
})->toArray();
|
|
|
|
}
|
|
|
|
|
2018-08-25 22:07:42 +00:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isInstalled(): bool
|
|
|
|
{
|
|
|
|
return $this->installed === 1;
|
|
|
|
}
|
|
|
|
|
2017-02-03 21:50:28 +00:00
|
|
|
/**
|
|
|
|
* Gets the user who owns the server.
|
|
|
|
*
|
2017-02-05 23:00:39 +00:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2017-02-03 21:50:28 +00:00
|
|
|
*/
|
|
|
|
public function user()
|
|
|
|
{
|
2017-02-05 23:00:39 +00:00
|
|
|
return $this->belongsTo(User::class, 'owner_id');
|
2017-02-03 21:50:28 +00:00
|
|
|
}
|
|
|
|
|
2017-02-10 00:38:54 +00:00
|
|
|
/**
|
|
|
|
* Gets the subusers associated with a server.
|
|
|
|
*
|
2019-12-28 19:39:44 +00:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
2017-02-10 00:38:54 +00:00
|
|
|
*/
|
|
|
|
public function subusers()
|
|
|
|
{
|
2019-12-28 19:39:44 +00:00
|
|
|
return $this->hasMany(Subuser::class, 'server_id', 'id');
|
2017-02-10 00:38:54 +00:00
|
|
|
}
|
|
|
|
|
2017-02-06 00:19:46 +00:00
|
|
|
/**
|
|
|
|
* Gets the default allocation for a server.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasOne
|
|
|
|
*/
|
|
|
|
public function allocation()
|
|
|
|
{
|
|
|
|
return $this->hasOne(Allocation::class, 'id', 'allocation_id');
|
|
|
|
}
|
|
|
|
|
2017-02-02 21:24:08 +00:00
|
|
|
/**
|
|
|
|
* Gets all allocations associated with this server.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function allocations()
|
|
|
|
{
|
2017-02-03 21:50:28 +00:00
|
|
|
return $this->hasMany(Allocation::class, 'server_id');
|
2017-02-02 21:24:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets information for the pack associated with this server.
|
|
|
|
*
|
2017-03-15 01:18:36 +00:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2017-02-02 21:24:08 +00:00
|
|
|
*/
|
|
|
|
public function pack()
|
|
|
|
{
|
2017-03-15 01:18:36 +00:00
|
|
|
return $this->belongsTo(Pack::class);
|
2017-02-02 21:24:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-10-07 04:57:53 +00:00
|
|
|
* Gets information for the nest associated with this server.
|
2017-02-02 21:24:08 +00:00
|
|
|
*
|
2017-02-05 23:00:39 +00:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2017-02-02 21:24:08 +00:00
|
|
|
*/
|
2017-10-07 04:57:53 +00:00
|
|
|
public function nest()
|
2017-02-02 21:24:08 +00:00
|
|
|
{
|
2017-10-07 04:57:53 +00:00
|
|
|
return $this->belongsTo(Nest::class);
|
2017-02-02 21:24:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-10-07 04:57:53 +00:00
|
|
|
* Gets information for the egg associated with this server.
|
2017-02-02 21:24:08 +00:00
|
|
|
*
|
2020-01-18 23:26:15 +00:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasOne
|
2017-02-02 21:24:08 +00:00
|
|
|
*/
|
2017-10-07 04:57:53 +00:00
|
|
|
public function egg()
|
2017-02-02 21:24:08 +00:00
|
|
|
{
|
2020-01-18 23:26:15 +00:00
|
|
|
return $this->hasOne(Egg::class, 'id', 'egg_id');
|
2017-02-02 21:24:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets information for the service variables associated with this server.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function variables()
|
|
|
|
{
|
2017-02-12 21:03:17 +00:00
|
|
|
return $this->hasMany(ServerVariable::class);
|
2017-02-02 21:24:08 +00:00
|
|
|
}
|
2017-02-02 23:21:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets information for the node associated with this server.
|
|
|
|
*
|
2017-02-05 23:00:39 +00:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2017-02-02 23:21:36 +00:00
|
|
|
*/
|
|
|
|
public function node()
|
|
|
|
{
|
2017-02-05 23:00:39 +00:00
|
|
|
return $this->belongsTo(Node::class);
|
2017-02-02 23:21:36 +00:00
|
|
|
}
|
2017-02-03 00:41:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets information for the tasks associated with this server.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
2017-09-24 01:45:25 +00:00
|
|
|
public function schedule()
|
2017-02-03 00:41:38 +00:00
|
|
|
{
|
2017-09-24 01:45:25 +00:00
|
|
|
return $this->hasMany(Schedule::class);
|
2017-02-03 00:41:38 +00:00
|
|
|
}
|
2017-02-09 22:43:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets all databases associated with a server.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function databases()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Database::class);
|
|
|
|
}
|
2017-04-08 00:28:58 +00:00
|
|
|
|
|
|
|
/**
|
2017-09-24 01:45:25 +00:00
|
|
|
* Returns the location that a server belongs to.
|
2017-04-08 00:28:58 +00:00
|
|
|
*
|
2017-09-24 01:45:25 +00:00
|
|
|
* @return \Znck\Eloquent\Relations\BelongsToThrough
|
|
|
|
*
|
|
|
|
* @throws \Exception
|
2017-04-08 00:28:58 +00:00
|
|
|
*/
|
|
|
|
public function location()
|
|
|
|
{
|
2017-09-24 01:45:25 +00:00
|
|
|
return $this->belongsToThrough(Location::class, Node::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the key belonging to the server owner.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasOne
|
|
|
|
*/
|
2017-09-25 02:12:30 +00:00
|
|
|
public function key()
|
2017-09-24 01:45:25 +00:00
|
|
|
{
|
|
|
|
return $this->hasOne(DaemonKey::class, 'user_id', 'owner_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns all of the daemon keys belonging to this server.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function keys()
|
|
|
|
{
|
|
|
|
return $this->hasMany(DaemonKey::class);
|
2017-04-08 00:28:58 +00:00
|
|
|
}
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|