misc_pterodactyl-panel/app/Models/DatabaseHost.php

84 lines
2 KiB
PHP
Raw Normal View History

<?php
2016-12-07 22:46:38 +00:00
namespace Pterodactyl\Models;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* @property int $id
* @property string $name
* @property string $host
* @property int $port
* @property string $username
* @property string $password
* @property int|null $max_databases
* @property int|null $node_id
* @property \Carbon\CarbonImmutable $created_at
* @property \Carbon\CarbonImmutable $updated_at
*/
class DatabaseHost extends Model
{
/**
* 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';
protected bool $immutableDates = true;
/**
* The table associated with the model.
*/
2017-03-16 23:35:29 +00:00
protected $table = 'database_hosts';
/**
* 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.
*/
2017-03-16 23:35:29 +00:00
protected $fillable = [
'name', 'host', 'port', 'username', 'password', 'max_databases', 'node_id',
2017-03-16 23:35:29 +00:00
];
2017-03-19 23:36:50 +00:00
/**
* Cast values to correct type.
*/
protected $casts = [
'id' => 'integer',
'max_databases' => 'integer',
'node_id' => 'integer',
];
2017-08-05 22:26:30 +00:00
/**
* Validation rules to assign to this model.
*/
public static array $validationRules = [
'name' => 'required|string|max:191',
'host' => 'required|string',
'port' => 'required|numeric|between:1,65535',
'username' => 'required|string|max:32',
2017-07-15 16:52:34 +00:00
'password' => 'nullable|string',
'node_id' => 'sometimes|nullable|integer|exists:nodes,id',
];
2017-03-19 23:36:50 +00:00
/**
* Gets the node associated with a database host.
*/
public function node(): BelongsTo
2017-03-19 23:36:50 +00:00
{
return $this->belongsTo(Node::class);
}
2017-03-19 23:36:50 +00:00
/**
2018-05-13 14:50:56 +00:00
* Gets the databases associated with this host.
2017-03-19 23:36:50 +00:00
*/
public function databases(): HasMany
2017-03-19 23:36:50 +00:00
{
return $this->hasMany(Database::class);
}
}