misc_pterodactyl-panel/app/Models/DatabaseHost.php

102 lines
2.3 KiB
PHP
Raw Normal View History

<?php
2016-12-07 22:46:38 +00:00
namespace Pterodactyl\Models;
2017-07-15 16:52:34 +00:00
use Sofa\Eloquence\Eloquence;
use Sofa\Eloquence\Validable;
use Illuminate\Database\Eloquent\Model;
use Sofa\Eloquence\Contracts\CleansAttributes;
use Sofa\Eloquence\Contracts\Validable as ValidableContract;
class DatabaseHost extends Model implements CleansAttributes, ValidableContract
{
2017-07-15 16:52:34 +00:00
use Eloquence, Validable;
/**
* The resource name for this model when it is transformed into an
* API representation using fractal.
*/
const RESOURCE_NAME = 'database_host';
/**
* The table associated with the model.
*
* @var string
*/
2017-03-16 23:35:29 +00:00
protected $table = 'database_hosts';
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = ['password'];
/**
2017-03-16 23:35:29 +00:00
* Fields that are mass assignable.
*
* @var array
*/
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.
*
* @var array
*/
protected $casts = [
'id' => 'integer',
'max_databases' => 'integer',
'node_id' => 'integer',
];
2017-07-15 16:52:34 +00:00
/**
* Application validation rules.
*
* @var array
*/
protected static $applicationRules = [
'name' => 'required',
'host' => 'required',
'port' => 'required',
'username' => 'required',
2017-11-25 19:45:47 +00:00
'node_id' => 'sometimes',
2017-07-15 16:52:34 +00:00
];
2017-08-05 22:26:30 +00:00
/**
* Validation rules to assign to this model.
*
* @var array
*/
2017-07-15 16:52:34 +00:00
protected static $dataIntegrityRules = [
'name' => 'string|max:255',
'host' => 'unique:database_hosts,host',
2017-07-15 16:52:34 +00:00
'port' => 'numeric|between:1,65535',
'username' => 'string|max:32',
'password' => 'nullable|string',
2017-11-25 19:45:47 +00:00
'node_id' => 'nullable|integer|exists:nodes,id',
];
2017-03-19 23:36:50 +00:00
/**
* Gets the node associated with a database host.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function node()
{
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
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function databases()
{
return $this->hasMany(Database::class);
}
}