2016-02-09 00:03:02 +01:00
|
|
|
<?php
|
2016-12-07 23:46:38 +01:00
|
|
|
|
2016-02-09 00:03:02 +01:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2019-09-05 06:00:34 +02:00
|
|
|
class Database extends Validable
|
2016-02-09 00:03:02 +01:00
|
|
|
{
|
2018-01-26 04:26:06 +01:00
|
|
|
/**
|
|
|
|
* The resource name for this model when it is transformed into an
|
|
|
|
* API representation using fractal.
|
|
|
|
*/
|
|
|
|
const RESOURCE_NAME = 'server_database';
|
|
|
|
|
2016-02-09 00:03:02 +01:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'databases';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes excluded from the model's JSON form.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $hidden = ['password'];
|
|
|
|
|
|
|
|
/**
|
2017-03-17 00:35:29 +01:00
|
|
|
* Fields that are mass assignable.
|
2016-02-09 00:03:02 +01:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-03-17 00:35:29 +01:00
|
|
|
protected $fillable = [
|
2017-07-22 20:55:30 +02:00
|
|
|
'server_id', 'database_host_id', 'database', 'username', 'password', 'remote',
|
2017-03-17 00:35:29 +01:00
|
|
|
];
|
2016-02-09 00:03:02 +01:00
|
|
|
|
2017-03-20 00:36:50 +01:00
|
|
|
/**
|
|
|
|
* Cast values to correct type.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $casts = [
|
|
|
|
'server_id' => 'integer',
|
|
|
|
'database_host_id' => 'integer',
|
|
|
|
];
|
2017-02-03 21:19:14 +01:00
|
|
|
|
2019-09-05 07:19:57 +02:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public static $validationRules = [
|
|
|
|
'server_id' => 'required|numeric|exists:servers,id',
|
|
|
|
'database_host_id' => 'required|exists:database_hosts,id',
|
|
|
|
'database' => 'required|string|alpha_dash|between:3,100',
|
2017-07-15 18:52:34 +02:00
|
|
|
'username' => 'string|alpha_dash|between:3,100',
|
2019-09-05 07:19:57 +02:00
|
|
|
'remote' => 'required|string|regex:/^[0-9%.]{1,15}$/',
|
2017-07-15 18:52:34 +02:00
|
|
|
'password' => 'string',
|
|
|
|
];
|
|
|
|
|
2017-03-20 00:36:50 +01:00
|
|
|
/**
|
|
|
|
* Gets the host database server associated with a database.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function host()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(DatabaseHost::class, 'database_host_id');
|
|
|
|
}
|
2017-02-03 21:19:14 +01:00
|
|
|
|
2017-03-20 00:36:50 +01:00
|
|
|
/**
|
|
|
|
* Gets the server associated with a database.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function server()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Server::class);
|
|
|
|
}
|
2016-02-09 00:03:02 +01:00
|
|
|
}
|