mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 01:22:30 +01:00
f0e4764a11
Closes #1849 Allows database users to be limited to a number of concurrent connections to prevent one user from connecting hundreds of time and bottlenecking the MySQL server.
79 lines
1.8 KiB
PHP
79 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
class Database extends Model
|
|
{
|
|
/**
|
|
* The resource name for this model when it is transformed into an
|
|
* API representation using fractal.
|
|
*/
|
|
const RESOURCE_NAME = 'server_database';
|
|
|
|
/**
|
|
* 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'];
|
|
|
|
/**
|
|
* Fields that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'server_id', 'database_host_id', 'database', 'username', 'password', 'remote', 'max_connections',
|
|
];
|
|
|
|
/**
|
|
* Cast values to correct type.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'server_id' => 'integer',
|
|
'database_host_id' => 'integer',
|
|
];
|
|
|
|
/**
|
|
* @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',
|
|
'username' => 'string|alpha_dash|between:3,100',
|
|
'max_connections' => 'string',
|
|
'remote' => 'required|string|regex:/^[0-9%.]{1,15}$/',
|
|
'password' => 'string',
|
|
];
|
|
|
|
/**
|
|
* 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');
|
|
}
|
|
|
|
/**
|
|
* Gets the server associated with a database.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function server()
|
|
{
|
|
return $this->belongsTo(Server::class);
|
|
}
|
|
}
|