SystemNotificationSendJob.php
2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
namespace App\Jobs;
use App\Enums\NotificationStatusEnum;
use App\Models\Notification;
use App\Models\NotificationUser;
use Bus;
use Illuminate\Bus\Batch;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\Middleware\WithoutOverlapping;
use Illuminate\Queue\SerializesModels;
class SystemNotificationSendJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* @var \App\Models\Notification
*/
public Notification $notification;
public function middleware(): array
{
return [new WithoutOverlapping($this->notification->getKey())];
}
/**
* Create a new job instance.
*
* @return void
*/
public function __construct(Notification $notification)
{
$this->notification = $notification;
$this->queue = 'im';
}
/**
* Execute the job.
*
* @return void
* @throws \Throwable
*/
public function handle(): void
{
$this->notification->update(['status' => NotificationStatusEnum::PROCESSING]);
$batch = Bus::batch([]);
NotificationUser::query()->where('notification_id', $this->notification->getKey())
->chunkById(400, fn(Collection $collection) => $batch->add(new SystemNotificationSendItemJob($this->notification, $collection)));
$batch->name('SystemNotificationSend-' . $this->notification->getKey())
->withOption('notification_id', $this->notification->getKey())
->finally(function (Batch $batch) {
Notification::query()->whereKey($batch->options['notification_id'])->update([
'status' => NotificationUser::query()
->where('notification_id', $batch->options['notification_id'])
->where('status', NotificationStatusEnum::SUCCESS)
->exists() ? NotificationStatusEnum::SUCCESS : NotificationStatusEnum::FAIL
]);
})
->allowFailures()->dispatch();
}
}