story = $story; } /** * Execute the job. * * @return void */ public function handle() { $story = $this->story; $profile = $story->profile; if($story->local == false || $story->remote_url) { return; } StoryService::delLatest($story->profile_id); $audience = FollowerService::softwareAudience($story->profile_id, 'pixelfed'); if(empty($audience)) { // Return on profiles with no remote followers return; } $fractal = new Fractal\Manager(); $fractal->setSerializer(new ArraySerializer()); $resource = new Fractal\Resource\Item($story, new CreateStory()); $activity = $fractal->createData($resource)->toArray(); $payload = json_encode($activity); $client = new Client([ 'timeout' => config('federation.activitypub.delivery.timeout') ]); $requests = function($audience) use ($client, $activity, $profile, $payload) { foreach($audience as $url) { $version = config('pixelfed.version'); $appUrl = config('app.url'); $headers = HttpSignature::sign($profile, $url, $activity, [ 'Content-Type' => 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"', 'User-Agent' => "(Pixelfed/{$version}; +{$appUrl})", ]); yield function() use ($client, $url, $headers, $payload) { return $client->postAsync($url, [ 'curl' => [ CURLOPT_HTTPHEADER => $headers, CURLOPT_POSTFIELDS => $payload, CURLOPT_HEADER => true ] ]); }; } }; $pool = new Pool($client, $requests($audience), [ 'concurrency' => config('federation.activitypub.delivery.concurrency'), 'fulfilled' => function ($response, $index) { }, 'rejected' => function ($reason, $index) { } ]); $promise = $pool->promise(); $promise->wait(); } }