mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 02:11:36 +00:00
86 lines
1.9 KiB
PHP
86 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\BackupStatus;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
|
|
|
/**
|
|
* @property string $type
|
|
* @property int $server_id
|
|
* @property int $storage_id
|
|
* @property int $database_id
|
|
* @property string $interval
|
|
* @property int $keep_backups
|
|
* @property string $status
|
|
* @property Server $server
|
|
* @property StorageProvider $storage
|
|
* @property Database $database
|
|
* @property BackupFile[] $files
|
|
*/
|
|
class Backup extends AbstractModel
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'type',
|
|
'server_id',
|
|
'storage_id',
|
|
'database_id',
|
|
'interval',
|
|
'keep_backups',
|
|
'status',
|
|
];
|
|
|
|
protected $casts = [
|
|
'server_id' => 'integer',
|
|
'storage_id' => 'integer',
|
|
'database_id' => 'integer',
|
|
'keep_backups' => 'integer',
|
|
];
|
|
|
|
public static function boot(): void
|
|
{
|
|
parent::boot();
|
|
|
|
static::deleting(function (Backup $backup) {
|
|
$backup->files()->each(function (BackupFile $file) {
|
|
$file->delete();
|
|
});
|
|
});
|
|
}
|
|
|
|
public static array $statusColors = [
|
|
BackupStatus::RUNNING => 'success',
|
|
BackupStatus::FAILED => 'danger',
|
|
];
|
|
|
|
public function server(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Server::class);
|
|
}
|
|
|
|
public function storage(): BelongsTo
|
|
{
|
|
return $this->belongsTo(StorageProvider::class, 'storage_id');
|
|
}
|
|
|
|
public function database(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Database::class);
|
|
}
|
|
|
|
public function files(): HasMany
|
|
{
|
|
return $this->hasMany(BackupFile::class, 'backup_id');
|
|
}
|
|
|
|
public function lastFile(): HasOne
|
|
{
|
|
return $this->hasOne(BackupFile::class, 'backup_id')->latest();
|
|
}
|
|
}
|