1
0
Fork 0
pixelfed/app/Jobs/SharePipeline/SharePipeline.php

150 lines
4.3 KiB
PHP
Raw Normal View History

2018-11-04 03:24:06 +00:00
<?php
namespace App\Jobs\SharePipeline;
2019-12-11 06:04:03 +00:00
use Cache, Log;
use Illuminate\Support\Facades\Redis;
2019-06-24 05:50:42 +00:00
use App\{Status, Notification};
2018-11-04 03:24:06 +00:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2019-06-25 04:23:01 +00:00
use League\Fractal;
use League\Fractal\Serializer\ArraySerializer;
use App\Transformer\ActivityPub\Verb\Announce;
use GuzzleHttp\{Pool, Client, Promise};
use App\Util\ActivityPub\HttpSignature;
2018-11-04 03:24:06 +00:00
class SharePipeline implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2019-01-15 05:43:53 +00:00
protected $status;
2018-11-04 03:24:06 +00:00
2019-01-12 22:18:33 +00:00
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
2018-11-04 03:24:06 +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;
2019-01-15 05:43:53 +00:00
$actor = $status->profile;
$target = $status->parent()->profile;
2018-11-04 03:24:06 +00:00
2019-01-15 05:43:53 +00:00
if ($status->uri !== null) {
2018-11-04 03:24:06 +00:00
// Ignore notifications to remote statuses
return;
}
2019-01-12 22:18:33 +00:00
$exists = Notification::whereProfileId($target->id)
->whereActorId($status->profile_id)
->whereAction('share')
2019-01-15 05:43:53 +00:00
->whereItemId($status->reblog_of_id)
2018-11-04 03:24:06 +00:00
->whereItemType('App\Status')
->count();
if ($target->id === $status->profile_id) {
$this->remoteAnnounceDeliver();
return true;
}
if( $exists !== 0) {
2018-11-04 03:24:06 +00:00
return true;
}
2019-06-25 04:23:01 +00:00
$this->remoteAnnounceDeliver();
2018-11-04 03:24:06 +00:00
try {
2019-01-15 05:43:53 +00:00
$notification = new Notification;
$notification->profile_id = $target->id;
2018-11-04 03:24:06 +00:00
$notification->actor_id = $actor->id;
2019-01-12 22:18:33 +00:00
$notification->action = 'share';
2019-01-15 05:43:53 +00:00
$notification->message = $status->shareToText();
$notification->rendered = $status->shareToHtml();
$notification->item_id = $status->reblog_of_id ?? $status->id;
2018-11-04 03:24:06 +00:00
$notification->item_type = "App\Status";
$notification->save();
$redis = Redis::connection();
$key = config('cache.prefix').':user.'.$status->profile_id.'.notifications';
$redis->lpush($key, $notification->id);
} catch (Exception $e) {
Log::error($e);
}
}
2019-06-25 04:23:01 +00:00
public function remoteAnnounceDeliver()
{
if(config('federation.activitypub.enabled') == false) {
return true;
}
2019-06-25 04:23:01 +00:00
$status = $this->status;
$profile = $status->profile;
$fractal = new Fractal\Manager();
$fractal->setSerializer(new ArraySerializer());
$resource = new Fractal\Resource\Item($status, new Announce());
$activity = $fractal->createData($resource)->toArray();
$audience = $status->profile->getAudienceInbox();
if(empty($audience) || $status->scope != 'public') {
// Return on profiles with no remote followers
return;
}
$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) {
$headers = HttpSignature::sign($profile, $url, $activity);
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();
}
2018-11-04 03:24:06 +00:00
}