coolify/app/Livewire/Project/Database/BackupExecutions.php

71 lines
2.6 KiB
PHP
Raw Normal View History

<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Database;
2023-10-25 09:28:26 +02:00
use Illuminate\Support\Facades\Storage;
use Livewire\Component;
class BackupExecutions extends Component
{
public $backup;
2023-12-14 15:01:19 +01:00
public $executions = [];
2023-10-24 14:31:28 +02:00
public $setDeletableBackup;
public function getListeners()
{
$userId = auth()->user()->id;
return [
"echo-private:team.{$userId},BackupCreated" => 'refreshBackupExecutions',
"refreshBackupExecutions",
"deleteBackup"
];
}
2023-10-24 14:31:28 +02:00
public function deleteBackup($exeuctionId)
{
$execution = $this->backup->executions()->where('id', $exeuctionId)->first();
if (is_null($execution)) {
2023-12-07 19:06:32 +01:00
$this->dispatch('error', 'Backup execution not found.');
2023-10-24 14:31:28 +02:00
return;
}
2023-11-07 12:11:47 +01:00
if ($execution->scheduledDatabaseBackup->database->getMorphClass() === 'App\Models\ServiceDatabase') {
delete_backup_locally($execution->filename, $execution->scheduledDatabaseBackup->database->service->destination->server);
} else {
delete_backup_locally($execution->filename, $execution->scheduledDatabaseBackup->database->destination->server);
}
2023-10-24 14:31:28 +02:00
$execution->delete();
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Backup deleted successfully.');
$this->dispatch('refreshBackupExecutions');
2023-10-24 14:31:28 +02:00
}
2023-10-25 09:28:26 +02:00
public function download($exeuctionId)
{
try {
$execution = $this->backup->executions()->where('id', $exeuctionId)->first();
if (is_null($execution)) {
2023-12-07 19:06:32 +01:00
$this->dispatch('error', 'Backup execution not found.');
2023-10-25 09:28:26 +02:00
return;
}
$filename = data_get($execution, 'filename');
2023-11-07 12:11:47 +01:00
if ($execution->scheduledDatabaseBackup->database->getMorphClass() === 'App\Models\ServiceDatabase') {
$server = $execution->scheduledDatabaseBackup->database->service->destination->server;
} else {
$server = $execution->scheduledDatabaseBackup->database->destination->server;
}
2023-10-25 09:28:26 +02:00
$privateKeyLocation = savePrivateKeyToFs($server);
$disk = Storage::build([
'driver' => 'sftp',
'host' => $server->ip,
'port' => $server->port,
'username' => $server->user,
'privateKey' => $privateKeyLocation,
]);
return $disk->download($filename);
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
public function refreshBackupExecutions(): void
{
2023-12-14 15:01:19 +01:00
$this->executions = data_get($this->backup, 'executions', []);
}
}