mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
166 lines
4.7 KiB
PHP
166 lines
4.7 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Jobs\Ninja;
|
|
|
|
use App\Models\Backup;
|
|
use App\Models\Company;
|
|
use App\Models\Credit;
|
|
use App\Models\Invoice;
|
|
use App\Models\Quote;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class SystemMaintenance implements ShouldQueue
|
|
{
|
|
use Dispatchable;
|
|
use InteractsWithQueue;
|
|
use Queueable;
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
set_time_limit(0);
|
|
|
|
nlog('Starting System Maintenance');
|
|
|
|
$delete_pdf_days = config('ninja.maintenance.delete_pdfs');
|
|
|
|
nlog("Number of days to keep PDFs {$delete_pdf_days}");
|
|
|
|
$delete_backup_days = config('ninja.maintenance.delete_backups');
|
|
|
|
nlog("Number of days to keep PDFs {$delete_backup_days}");
|
|
|
|
$this->maintainPdfs($delete_pdf_days);
|
|
|
|
$this->maintainBackups($delete_backup_days);
|
|
}
|
|
|
|
private function maintainPdfs(int $delete_pdf_days)
|
|
{
|
|
if ($delete_pdf_days == 0) {
|
|
return;
|
|
}
|
|
|
|
Invoice::with('invitations')
|
|
->whereBetween('created_at', [now()->subYear(), now()->subDays($delete_pdf_days)])
|
|
->withTrashed()
|
|
->cursor()
|
|
->each(function ($invoice) {
|
|
nlog("deleting invoice {$invoice->number}");
|
|
|
|
$invoice->service()->deletePdf();
|
|
});
|
|
|
|
Quote::with('invitations')
|
|
->whereBetween('created_at', [now()->subYear(), now()->subDays($delete_pdf_days)])
|
|
->withTrashed()
|
|
->cursor()
|
|
->each(function ($quote) {
|
|
nlog("deleting quote {$quote->number}");
|
|
|
|
$quote->service()->deletePdf();
|
|
});
|
|
|
|
Credit::with('invitations')
|
|
->whereBetween('created_at', [now()->subYear(), now()->subDays($delete_pdf_days)])
|
|
->withTrashed()
|
|
->cursor()
|
|
->each(function ($credit) {
|
|
nlog("deleting credit {$credit->number}");
|
|
|
|
$credit->service()->deletePdf();
|
|
});
|
|
}
|
|
|
|
private function maintainBackups(int $delete_backup_days)
|
|
{
|
|
if ($delete_backup_days == 0) {
|
|
return;
|
|
}
|
|
|
|
Backup::where('created_at', '<', now()->subDays($delete_backup_days))
|
|
->cursor()
|
|
->each(function ($backup) {
|
|
nlog("deleting {$backup->filename}");
|
|
|
|
if ($backup->filename) {
|
|
$backup->deleteFile();
|
|
}
|
|
|
|
$backup->delete();
|
|
});
|
|
}
|
|
|
|
//double check this is correct.
|
|
|
|
// private function cleanPdfs()
|
|
// {
|
|
// $company_keys = Company::query()
|
|
// ->pluck('company_key')
|
|
// ->toArray();
|
|
|
|
// $directories = Storage::disk(config('filesystems.default'))->directories();
|
|
|
|
// $del_dirs = ['quotes','invoices','credits','recurring_invoices', 'e_invoice'];
|
|
|
|
// collect($directories)->each(function ($parent_directory) use ($del_dirs, $company_keys) {
|
|
|
|
// if (! in_array($parent_directory, $company_keys)) {
|
|
// nlog("Deleting {$parent_directory}");
|
|
|
|
// /* Ensure we are not deleting the root folder */
|
|
// if (strlen($parent_directory) > 1) {
|
|
// nlog("Company No Longer Exists => deleting {$parent_directory}");
|
|
// Storage::disk(config('filesystems.default'))->deleteDirectory($parent_directory);
|
|
// return;
|
|
// }
|
|
|
|
// }
|
|
|
|
// $sub_directories = Storage::allDirectories($parent_directory);
|
|
|
|
// collect($sub_directories)->each(function ($sub_dir) use ($del_dirs) {
|
|
// foreach($del_dirs as $del_dir) {
|
|
// if(stripos($sub_dir, $del_dir) !== false) {
|
|
// nlog("Deleting {$sub_dir} as it matches {$del_dir}");
|
|
// Storage::deleteDirectory($sub_dir);
|
|
// }
|
|
// }
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
// }
|
|
|
|
}
|