1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- namespace App\Jobs\InternalPipeline;
- use Illuminate\Bus\Queueable;
- use Illuminate\Contracts\Queue\ShouldBeUnique;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Foundation\Bus\Dispatchable;
- use Illuminate\Queue\InteractsWithQueue;
- use Illuminate\Queue\SerializesModels;
- use Illuminate\Queue\Middleware\WithoutOverlapping;
- use Illuminate\Contracts\Queue\ShouldBeUniqueUntilProcessing;
- use App\Notification;
- use Cache;
- use App\Services\NotificationService;
- class NotificationEpochUpdatePipeline implements ShouldQueue, ShouldBeUniqueUntilProcessing
- {
- use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
- public $timeout = 1500;
- public $tries = 3;
- public $maxExceptions = 1;
- public $failOnTimeout = true;
- /**
- * The number of seconds after which the job's unique lock will be released.
- *
- * @var int
- */
- public $uniqueFor = 3600;
- /**
- * Get the unique ID for the job.
- */
- public function uniqueId(): string
- {
- return 'ip:notification-epoch-update';
- }
- /**
- * Get the middleware the job should pass through.
- *
- * @return array<int, object>
- */
- public function middleware(): array
- {
- return [(new WithoutOverlapping('ip:notification-epoch-update'))->shared()->dontRelease()];
- }
- /**
- * Create a new job instance.
- */
- public function __construct()
- {
- //
- }
- /**
- * Execute the job.
- */
- public function handle(): void
- {
- $rec = Notification::where('created_at', '>', now()->subMonths(6))->first();
- $id = 1;
- if($rec) {
- $id = $rec->id;
- }
- Cache::put(NotificationService::EPOCH_CACHE_KEY . '6', $id, 1209600);
- }
- }
|