mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 07:30:25 +00:00
46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire;
|
|
|
|
use Livewire\Component;
|
|
|
|
class BackupLog extends Component
|
|
{
|
|
public $backupId;
|
|
|
|
public $backupLog;
|
|
|
|
public $backupLogFile = '';
|
|
|
|
public function pullBackupLog()
|
|
{
|
|
|
|
if ($this->backupLogFile) {
|
|
if (file_exists($this->backupLogFile)) {
|
|
|
|
$backupLogContent = shell_exec('tail -n 1000 ' . $this->backupLogFile);
|
|
// Get last 1000 lines of the log
|
|
$backupLogContent = substr($backupLogContent, -5000, 5000);
|
|
$backupLogContent = str_replace("\n", "<br>", $backupLogContent);
|
|
|
|
$this->backupLog = $backupLogContent;
|
|
}
|
|
}
|
|
|
|
}
|
|
public function mount($backupId)
|
|
{
|
|
$this->backupId = $backupId;
|
|
|
|
$findBackup = \App\Models\Backup::where('id', $this->backupId)->first();
|
|
if ($findBackup) {
|
|
$this->backupLogFile = $findBackup->path . '/backup.log';
|
|
$this->pullBackupLog();
|
|
}
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.hosting-subscription-backup-log');
|
|
}
|
|
}
|