misc_pterodactyl-panel/app/Models/ServerTransfer.php

95 lines
2.6 KiB
PHP
Raw Normal View History

2020-04-04 17:37:44 +00:00
<?php
namespace Pterodactyl\Models;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
2020-04-04 17:37:44 +00:00
/**
* @property int $id
* @property int $server_id
* @property int $old_node
* @property int $new_node
* @property int $old_allocation
* @property int $new_allocation
* @property array|null $old_additional_allocations
* @property array|null $new_additional_allocations
* @property bool|null $successful
* @property bool $archived
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
2020-04-04 17:37:44 +00:00
* @property \Pterodactyl\Models\Server $server
* @property \Pterodactyl\Models\Node $oldNode
* @property \Pterodactyl\Models\Node $newNode
2020-04-04 17:37:44 +00:00
*/
class ServerTransfer extends Model
2020-04-04 17:37:44 +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 = 'server_transfer';
2020-04-04 17:37:44 +00:00
/**
* The table associated with the model.
*/
protected $table = 'server_transfers';
/**
* Fields that are not mass assignable.
*/
protected $guarded = ['id', 'created_at', 'updated_at'];
/**
* Cast values to correct type.
*/
protected $casts = [
'server_id' => 'int',
'old_node' => 'int',
'new_node' => 'int',
'old_allocation' => 'int',
'new_allocation' => 'int',
'old_additional_allocations' => 'array',
'new_additional_allocations' => 'array',
'successful' => 'bool',
'archived' => 'bool',
2020-04-04 17:37:44 +00:00
];
public static array $validationRules = [
2020-04-04 17:37:44 +00:00
'server_id' => 'required|numeric|exists:servers,id',
'old_node' => 'required|numeric',
'new_node' => 'required|numeric',
'old_allocation' => 'required|numeric',
'new_allocation' => 'required|numeric',
'old_additional_allocations' => 'nullable|array',
'old_additional_allocations.*' => 'numeric',
'new_additional_allocations' => 'nullable|array',
'new_additional_allocations.*' => 'numeric',
'successful' => 'sometimes|nullable|boolean',
2020-04-04 17:37:44 +00:00
];
/**
* Gets the server associated with a server transfer.
2020-04-04 17:37:44 +00:00
*/
public function server(): BelongsTo
2020-04-04 17:37:44 +00:00
{
return $this->belongsTo(Server::class);
}
2020-12-16 23:55:44 +00:00
/**
* Gets the source node associated with a server transfer.
*/
public function oldNode(): HasOne
2020-12-16 23:55:44 +00:00
{
return $this->hasOne(Node::class, 'id', 'old_node');
}
/**
* Gets the target node associated with a server transfer.
*/
public function newNode(): HasOne
2020-12-16 23:55:44 +00:00
{
return $this->hasOne(Node::class, 'id', 'new_node');
}
2020-04-04 17:37:44 +00:00
}