forked from fa/breadcrumb-the-shire
44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Module\Notifications\Handler;
|
||
|
|
|
||
|
|
use MintyPHP\Module\Notifications\Service\NotificationService;
|
||
|
|
use MintyPHP\Service\Scheduler\Handler\ScheduledJobHandlerInterface;
|
||
|
|
|
||
|
|
class NotificationCleanupJobHandler implements ScheduledJobHandlerInterface
|
||
|
|
{
|
||
|
|
public function __construct(private readonly NotificationService $notificationService)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
public function definition(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'label' => 'Notification cleanup',
|
||
|
|
'description' => 'Purges read notifications older than 90 days',
|
||
|
|
'default_enabled' => 1,
|
||
|
|
'default_timezone' => defined('APP_TIMEZONE') ? (string) APP_TIMEZONE : 'UTC',
|
||
|
|
'default_schedule_type' => 'daily',
|
||
|
|
'default_schedule_interval' => 1,
|
||
|
|
'default_schedule_time' => '04:00',
|
||
|
|
'default_schedule_weekdays_csv' => null,
|
||
|
|
'default_catchup_once' => 1,
|
||
|
|
'allowed_schedule_types' => ['daily', 'weekly'],
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|
||
|
|
public function execute(?int $actorUserId): array
|
||
|
|
{
|
||
|
|
$deleted = $this->notificationService->purgeOldRead(90);
|
||
|
|
|
||
|
|
return [
|
||
|
|
'status' => 'success',
|
||
|
|
'error_code' => null,
|
||
|
|
'error_message' => null,
|
||
|
|
'result' => [
|
||
|
|
'deleted_count' => $deleted,
|
||
|
|
],
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|