pixelfed/app/Jobs/StatusPipeline/StatusActivityPubDeliver.php

105 lines
2.8 KiB
PHP
Raw Normal View History

2018-06-01 03:14:46 +00:00
<?php
namespace App\Jobs\StatusPipeline;
2019-03-08 06:25:05 +00:00
use Cache, Log;
2018-08-28 03:07:36 +00:00
use App\Status;
2018-06-01 03:14:46 +00:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
2018-08-28 03:07:36 +00:00
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2018-11-14 02:45:48 +00:00
use League\Fractal;
use League\Fractal\Serializer\ArraySerializer;
use App\Transformer\ActivityPub\Verb\CreateNote;
use App\Util\ActivityPub\Helpers;
use GuzzleHttp\Pool;
use GuzzleHttp\Client;
use GuzzleHttp\Promise;
use App\Util\ActivityPub\HttpSignature;
2018-06-01 03:14:46 +00:00
class StatusActivityPubDeliver implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $status;
2019-01-12 22:19:57 +00:00
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
2018-06-01 03:14:46 +00:00
/**
* Create a new job instance.
*
* @return void
*/
public function __construct(Status $status)
{
$this->status = $status;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$status = $this->status;
2018-12-25 22:21:25 +00:00
if($status->local == false || $status->url || $status->uri) {
2018-12-25 05:21:57 +00:00
return;
}
2018-11-14 02:45:48 +00:00
$audience = $status->profile->getAudienceInbox();
2019-03-17 21:34:02 +00:00
if(empty($audience) || $status->visibility != 'public') {
// Return on profiles with no remote followers
return;
}
2018-11-14 02:45:48 +00:00
$profile = $status->profile;
$fractal = new Fractal\Manager();
$fractal->setSerializer(new ArraySerializer());
$resource = new Fractal\Resource\Item($status, new CreateNote());
$activity = $fractal->createData($resource)->toArray();
$payload = json_encode($activity);
$client = new Client([
'timeout' => config('pixelfed.ap_delivery_timeout')
]);
2019-03-08 06:39:18 +00:00
$requests = function($audience) use ($client, $activity, $profile, $payload) {
foreach($audience as $url) {
$headers = HttpSignature::sign($profile, $url, $activity);
2019-03-08 06:10:28 +00:00
yield function() use ($client, $url, $headers, $payload) {
return $client->postAsync($url, [
2019-03-08 05:56:18 +00:00
'curl' => [
CURLOPT_HTTPHEADER => $headers,
CURLOPT_POSTFIELDS => $payload,
CURLOPT_HEADER => true
]
2019-03-08 05:51:27 +00:00
]);
};
}
};
2019-03-08 06:39:18 +00:00
$pool = new Pool($client, $requests($audience), [
'concurrency' => config('pixelfed.ap_delivery_concurrency'),
'fulfilled' => function ($response, $index) {
},
'rejected' => function ($reason, $index) {
}
]);
2019-03-08 06:39:18 +00:00
$promise = $pool->promise();
$promise->wait();
2018-06-01 03:14:46 +00:00
}
}