actorId . ':fid:' . $this->followingId; } /** * Get the middleware the job should pass through. * * @return array */ public function middleware(): array { return [(new WithoutOverlapping("hts:feed:insert:follows:aid:{$this->actorId}:fid:{$this->followingId}"))->shared()->dontRelease()]; } /** * Create a new job instance. */ public function __construct($actorId, $followingId) { $this->actorId = $actorId; $this->followingId = $followingId; } /** * Execute the job. */ public function handle(): void { $actorId = $this->actorId; $followingId = $this->followingId; $minId = SnowflakeService::byDate(now()->subWeeks(6)); $ids = Status::where('id', '>', $minId) ->where('profile_id', $followingId) ->whereNull(['in_reply_to_id', 'reblog_of_id']) ->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album']) ->whereIn('visibility',['public', 'unlisted', 'private']) ->orderByDesc('id') ->limit(HomeTimelineService::FOLLOWER_FEED_POST_LIMIT) ->pluck('id'); foreach($ids as $id) { HomeTimelineService::add($actorId, $id); } } }