fix(admin): atomic send-time delivery claim so backlog duplicates ship exactly once
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>feat/portal-design
parent
5b85806605
commit
0cc5be5479
|
|
@ -48,20 +48,29 @@ class AppServiceProvider extends ServiceProvider
|
|||
*/
|
||||
public function boot(): void
|
||||
{
|
||||
// Suppress a queued maintenance announcement if its window was cancelled
|
||||
// before the job runs — otherwise a delayed announcement could arrive for
|
||||
// an already-cancelled window. Returning false aborts the send.
|
||||
// Send-time guard for maintenance mail (X-CP-Notification carries the
|
||||
// ledger id). Two things happen atomically here so exactly one copy ships
|
||||
// even if a backlog caused a duplicate job to be queued:
|
||||
// 1) suppress an announcement whose window was cancelled meanwhile;
|
||||
// 2) claim delivery with a conditional update — the first send wins,
|
||||
// any duplicate finds sent_at already set and is aborted.
|
||||
Event::listen(MessageSending::class, function (MessageSending $event) {
|
||||
$header = $event->message->getHeaders()->get('X-CP-Notification');
|
||||
if ($header === null) {
|
||||
return null;
|
||||
}
|
||||
$notification = MaintenanceNotification::query()->with('window')->find((int) $header->getBodyAsString());
|
||||
if ($notification?->event === 'announcement' && $notification->window?->state === 'cancelled') {
|
||||
$id = (int) $header->getBodyAsString();
|
||||
$notification = MaintenanceNotification::query()->with('window')->find($id);
|
||||
if ($notification === null) {
|
||||
return null;
|
||||
}
|
||||
if ($notification->event === 'announcement' && $notification->window?->state === 'cancelled') {
|
||||
return false; // window cancelled meanwhile — do not deliver
|
||||
}
|
||||
|
||||
return null;
|
||||
$claimed = MaintenanceNotification::query()->whereKey($id)->whereNull('sent_at')->update(['sent_at' => now()]);
|
||||
|
||||
return $claimed === 0 ? false : null; // 0 → already delivered, suppress duplicate
|
||||
});
|
||||
|
||||
// Stamp a maintenance-notification ledger row as delivered only once the
|
||||
|
|
|
|||
Loading…
Reference in New Issue