mirror of
https://github.com/projectsend/projectsend.git
synced 2026-09-16 16:45:07 +00:00
6e47d76ba6
Client file sharing, rebuilt from the ground up: a private area per client, resumable uploads, folders, groups and categories, sharing with expiry dates and download limits, comments, file versions, an activity log, a REST API, and sixteen languages. This repository begins here. ProjectSend 2 was developed privately, and that development history is not published — the previous generation remains available, with its own history, at projectsend/legacy. Free software under the GNU General Public License v2, or (at your option) any later version.
47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Modules\Files\Console;
|
|
|
|
use App\Modules\Audit\Action;
|
|
use App\Modules\Audit\ActivityLogger;
|
|
use App\Modules\Files\Models\File;
|
|
use App\Modules\Platform\Settings\Setting;
|
|
use App\Modules\Platform\Settings\Settings;
|
|
use Illuminate\Console\Command;
|
|
|
|
class PurgeExpiredFilesCommand extends Command
|
|
{
|
|
protected $signature = 'projectsend:purge-expired-files';
|
|
|
|
protected $description = 'Permanently delete files whose expiry grace period has passed (runs daily)';
|
|
|
|
public function handle(Settings $settings, ActivityLogger $activity): int
|
|
{
|
|
if ($settings->get(Setting::ExpiredFilesAutoDeleteEnabled) !== true) {
|
|
$this->info('Auto-delete of expired files is disabled.');
|
|
|
|
return self::SUCCESS;
|
|
}
|
|
|
|
$graceDays = (int) $settings->get(Setting::ExpiredFilesDeleteAfterDays);
|
|
|
|
$due = File::query()
|
|
->whereNotNull('expires_at')
|
|
->where('expires_at', '<=', now()->subDays($graceDays))
|
|
->get();
|
|
|
|
foreach ($due as $file) {
|
|
$activity->logSystem(Action::ExpiredFileDeleted, ['name' => $file->name, 'id' => $file->id]);
|
|
// Soft delete — File::booted()'s `deleted` hook already runs
|
|
// FileDiskCleanup, same as a manual delete from the editor.
|
|
$file->delete();
|
|
}
|
|
|
|
$this->info("Deleted {$due->count()} expired file(s).");
|
|
|
|
return self::SUCCESS;
|
|
}
|
|
}
|