PhyrePanel-mirror/web/app/Models/RemoteBackupServer.php
2024-04-29 19:34:15 +03:00

106 lines
2.8 KiB
PHP

<?php
namespace App\Models;
use Doctrine\DBAL\DriverManager;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Symfony\Component\Process\Process;
class RemoteBackupServer extends Model
{
use HasFactory;
protected $fillable = [
'name',
'type',
'hostname',
'port',
'username',
'password',
'path',
'ssh_private_key',
'ssh_private_key_password',
];
public static function boot()
{
parent::boot();
static::created(function ($model) {
$model->healthCheck();
});
}
public function healthCheck()
{
if ($this->type == 'ftp') {
try {
$username = trim($this->username);
$password = trim($this->password);
$hostname = trim($this->hostname);
$port = trim($this->port);
$path = trim($this->path);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'ftp://'.$hostname.':'.$port.'/');
curl_setopt($curl, CURLOPT_TIMEOUT, 30);
curl_setopt($curl, CURLOPT_FTPLISTONLY, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_USERPWD, "$username:$password");
$curlResponse = curl_exec($curl);
if ($curlResponse === false) {
$this->status = 'offline';
$this->save();
return;
} else {
$this->status = 'online';
$this->save();
return;
}
} catch (\Exception $e) {
$this->status = 'offline';
$this->save();
return;
}
}
}
public function uploadFile($filepath, $directory)
{
$username = trim($this->username);
$password = trim($this->password);
$hostname = trim($this->hostname);
$port = trim($this->port);
if ($this->type == 'ftp') {
$directory = trim($directory);
$uploadCurlCommand = "curl -T $filepath ftp://$hostname:$port/$directory/ -u '$username:$password' --ftp-create-dirs";
$uploadCurlCommand = trim($uploadCurlCommand);
$uploadCurlProcess = Process::fromShellCommandline($uploadCurlCommand);
$uploadCurlProcess->run();
if (!$uploadCurlProcess->isSuccessful()) {
return [
'status' => 'error',
'message' => 'Failed to upload backup to remote server.'
];
}
return [
'status' => 'success',
'message' => 'Backup uploaded successfully.'
];
}
}
}