migration->id; } /** * Get the middleware the job should pass through. * * @return array */ public function middleware(): array { return [(new WithoutOverlapping('profile:migration:deliver-move-followers:id:'.$this->migration->id))->shared()->dontRelease()]; } /** * Create a new job instance. */ public function __construct($migration, $oldAccount, $newAccount) { $this->migration = $migration; $this->oldAccount = $oldAccount; $this->newAccount = $newAccount; } /** * Execute the job. */ public function handle(): void { if ($this->batch()->cancelled()) { return; } $migration = $this->migration; $profile = $this->oldAccount; $newAccount = $this->newAccount; if ($profile->domain || ! $profile->private_key) { return; } $audience = $profile->getAudienceInbox(); $activitypubObject = new Move; $fractal = new Fractal\Manager; $fractal->setSerializer(new ArraySerializer); $resource = new Fractal\Resource\Item($migration, $activitypubObject); $activity = $fractal->createData($resource)->toArray(); $payload = json_encode($activity); $version = config('pixelfed.version'); $appUrl = config('app.url'); $userAgent = "(Pixelfed/{$version}; +{$appUrl})"; $timeout = config('federation.activitypub.delivery.timeout'); Http::pool(function (Pool $pool) use ($audience, $activity, $profile, $payload, $userAgent, $timeout) { foreach ($audience as $url) { $curlHeaders = HttpSignature::sign($profile, $url, $activity, [ 'Content-Type' => 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"', 'User-Agent' => $userAgent, ]); $headers = $this->parseCurlHeaders($curlHeaders); $pool->withHeaders($headers) ->timeout($timeout) ->withBody($payload, 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"') ->post($url); } }); } /** * Convert curl-format header array ("Header: value") to associative array. * * @param array $curlHeaders * @return array */ private function parseCurlHeaders(array $curlHeaders): array { $headers = []; foreach ($curlHeaders as $header) { $parts = explode(': ', $header, 2); if (count($parts) === 2) { $headers[$parts[0]] = $parts[1]; } } return $headers; } }