mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
88 lines
2.9 KiB
PHP
88 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
/**
|
|
* App\Models\Backup
|
|
*
|
|
* @property int $id
|
|
* @property int $activity_id
|
|
* @property string|null $json_backup
|
|
* @property int|null $created_at
|
|
* @property int|null $updated_at
|
|
* @property string $amount
|
|
* @property string|null $filename
|
|
* @property string|null $disk
|
|
* @property-read \App\Models\Activity $activity
|
|
* @property-read mixed $hashed_id
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel company()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel exclude($columns)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Backup newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Backup newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Backup query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Backup whereActivityId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Backup whereAmount($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Backup whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Backup whereDisk($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Backup whereFilename($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Backup whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Backup whereJsonBackup($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Backup whereUpdatedAt($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class Backup extends BaseModel
|
|
{
|
|
public function getEntityType()
|
|
{
|
|
return self::class;
|
|
}
|
|
|
|
public function activity()
|
|
{
|
|
return $this->belongsTo(Activity::class);
|
|
}
|
|
|
|
public function storeRemotely(?string $html, Client | Vendor $client_or_vendor)
|
|
{
|
|
if (! $html || strlen($html) == 0) {
|
|
return;
|
|
}
|
|
|
|
$path = $client_or_vendor->backup_path().'/';
|
|
$filename = now()->format('Y_m_d').'_'.md5(time()).'.html'; //@phpstan-ignore-line
|
|
$file_path = $path.$filename;
|
|
|
|
Storage::disk(config('filesystems.default'))->put($file_path, $html);
|
|
|
|
$this->filename = $file_path;
|
|
$this->save();
|
|
}
|
|
|
|
public function deleteFile()
|
|
{
|
|
nlog('deleting => '.$this->filename);
|
|
|
|
if (!$this->filename) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
Storage::disk(config('filesystems.default'))->delete($this->filename);
|
|
} catch (\Exception $e) {
|
|
nlog('BACKUPEXCEPTION deleting backup file with error '.$e->getMessage());
|
|
}
|
|
}
|
|
}
|