Files
services_core/app/Console/Commands/PruneNotifications.php
T
2026-07-31 13:57:11 +07:00

32 lines
1.1 KiB
PHP

<?php
namespace App\Console\Commands;
use App\Models\NotificationChannel;
use App\Models\NotificationWebhookLog;
use App\Models\UserNotification;
use Illuminate\Console\Command;
class PruneNotifications extends Command
{
protected $signature = 'notifications:prune';
protected $description = 'Menghapus notifikasi aplikasi dan log webhook yang melewati masa retensi';
public function handle(): int
{
$deleted = 0;
NotificationChannel::where('channel', 'system')->where('enabled', true)->chunkById(100, function ($channels) use (&$deleted) {
foreach ($channels as $channel) {
$days = max(7, (int) data_get($channel->settings, 'retention_days', 90));
$deleted += UserNotification::where('tenant_id', $channel->tenant_id)
->where('created_at', '<', now()->subDays($days))->delete();
}
});
NotificationWebhookLog::where('created_at', '<', now()->subDays(90))->delete();
$this->info("{$deleted} notifikasi lama dihapus.");
return self::SUCCESS;
}
}