1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- namespace App\Jobs\HomeFeedPipeline;
- 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 App\Hashtag;
- use App\StatusHashtag;
- use App\Services\HashtagFollowService;
- use App\Services\HomeTimelineService;
- use App\Services\StatusService;
- use Illuminate\Queue\Middleware\WithoutOverlapping;
- use Illuminate\Contracts\Queue\ShouldBeUniqueUntilProcessing;
- class HashtagRemoveFanoutPipeline implements ShouldQueue, ShouldBeUniqueUntilProcessing
- {
- use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
- protected $sid;
- protected $hid;
- public $timeout = 900;
- 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 'hfp:hashtag:fanout:remove:' . $this->hid . ':' . $this->sid;
- }
- /**
- * Get the middleware the job should pass through.
- *
- * @return array<int, object>
- */
- public function middleware(): array
- {
- return [(new WithoutOverlapping("hfp:hashtag:fanout:remove:{$this->hid}:{$this->sid}"))->shared()->dontRelease()];
- }
- /**
- * Create a new job instance.
- */
- public function __construct($sid, $hid)
- {
- $this->sid = $sid;
- $this->hid = $hid;
- }
- /**
- * Execute the job.
- */
- public function handle(): void
- {
- $sid = $this->sid;
- $hid = $this->hid;
- $status = StatusService::get($sid, false);
- if(!$status) {
- return;
- }
- if(!in_array($status['pf_type'], ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])) {
- return;
- }
- $ids = HashtagFollowService::getPidByHid($hid);
- if(!$ids || !count($ids)) {
- return;
- }
- foreach($ids as $id) {
- HomeTimelineService::rem($id, $sid);
- }
- }
- }
|