2016-02-08 23:03:02 +00:00
|
|
|
<?php
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2016-02-08 23:03:02 +00:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2022-10-14 16:59:20 +00:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
2022-12-15 01:53:31 +00:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
2022-10-14 16:59:20 +00:00
|
|
|
|
2021-01-23 20:09:16 +00:00
|
|
|
/**
|
2021-01-28 04:52:11 +00:00
|
|
|
* @property int $id
|
|
|
|
* @property string $name
|
|
|
|
* @property string $host
|
|
|
|
* @property int $port
|
|
|
|
* @property string $username
|
|
|
|
* @property string $password
|
|
|
|
* @property int|null $max_databases
|
2021-01-23 20:09:16 +00:00
|
|
|
* @property \Carbon\CarbonImmutable $created_at
|
|
|
|
* @property \Carbon\CarbonImmutable $updated_at
|
|
|
|
*/
|
2020-04-04 06:22:35 +00:00
|
|
|
class DatabaseHost extends Model
|
2016-02-08 23:03:02 +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.
|
|
|
|
*/
|
2021-01-23 20:33:34 +00:00
|
|
|
public const RESOURCE_NAME = 'database_host';
|
2018-01-26 03:26:06 +00:00
|
|
|
|
2022-10-14 16:59:20 +00:00
|
|
|
protected bool $immutableDates = true;
|
2021-01-23 20:09:16 +00:00
|
|
|
|
2016-02-08 23:03:02 +00:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*/
|
2017-03-16 23:35:29 +00:00
|
|
|
protected $table = 'database_hosts';
|
2016-02-08 23:03:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes excluded from the model's JSON form.
|
|
|
|
*/
|
|
|
|
protected $hidden = ['password'];
|
|
|
|
|
|
|
|
/**
|
2017-03-16 23:35:29 +00:00
|
|
|
* Fields that are mass assignable.
|
2016-02-08 23:03:02 +00:00
|
|
|
*/
|
2017-03-16 23:35:29 +00:00
|
|
|
protected $fillable = [
|
2022-12-15 01:53:31 +00:00
|
|
|
'name', 'host', 'port', 'username', 'password', 'max_databases',
|
2017-03-16 23:35:29 +00:00
|
|
|
];
|
2016-02-08 23:03:02 +00:00
|
|
|
|
2017-03-19 23:36:50 +00:00
|
|
|
/**
|
|
|
|
* Cast values to correct type.
|
|
|
|
*/
|
|
|
|
protected $casts = [
|
|
|
|
'id' => 'integer',
|
|
|
|
'max_databases' => 'integer',
|
|
|
|
];
|
2017-02-03 20:19:14 +00:00
|
|
|
|
2017-08-05 22:26:30 +00:00
|
|
|
/**
|
|
|
|
* Validation rules to assign to this model.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public static array $validationRules = [
|
2020-09-26 23:29:26 +00:00
|
|
|
'name' => 'required|string|max:191',
|
2020-08-20 03:38:51 +00:00
|
|
|
'host' => 'required|string',
|
2019-09-05 05:19:57 +00:00
|
|
|
'port' => 'required|numeric|between:1,65535',
|
|
|
|
'username' => 'required|string|max:32',
|
2017-07-15 16:52:34 +00:00
|
|
|
'password' => 'nullable|string',
|
2017-06-18 00:48:31 +00:00
|
|
|
];
|
2017-04-14 03:19:01 +00:00
|
|
|
|
2017-03-19 23:36:50 +00:00
|
|
|
/**
|
2022-12-15 01:53:31 +00:00
|
|
|
* Gets the databases associated with this host.
|
2017-03-19 23:36:50 +00:00
|
|
|
*/
|
2022-12-15 01:53:31 +00:00
|
|
|
public function databases(): HasMany
|
2017-03-19 23:36:50 +00:00
|
|
|
{
|
2022-12-15 01:53:31 +00:00
|
|
|
return $this->hasMany(Database::class);
|
2017-03-19 23:36:50 +00:00
|
|
|
}
|
2017-02-09 22:43:54 +00:00
|
|
|
|
2017-03-19 23:36:50 +00:00
|
|
|
/**
|
2022-12-15 01:53:31 +00:00
|
|
|
* Returns the nodes that a database host is assigned to.
|
2017-03-19 23:36:50 +00:00
|
|
|
*/
|
2022-12-15 01:53:31 +00:00
|
|
|
public function nodes(): BelongsToMany
|
2017-03-19 23:36:50 +00:00
|
|
|
{
|
2022-12-15 01:53:31 +00:00
|
|
|
return $this->belongsToMany(Node::class);
|
2017-03-19 23:36:50 +00:00
|
|
|
}
|
2016-02-08 23:03:02 +00:00
|
|
|
}
|