123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <?php
- namespace App\Jobs\SharePipeline;
- use Cache, Log;
- use Illuminate\Support\Facades\Redis;
- use App\{Status, Notification};
- use Illuminate\Bus\Queueable;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Foundation\Bus\Dispatchable;
- use Illuminate\Queue\InteractsWithQueue;
- use Illuminate\Queue\SerializesModels;
- use League\Fractal;
- use League\Fractal\Serializer\ArraySerializer;
- use App\Transformer\ActivityPub\Verb\UndoAnnounce;
- use GuzzleHttp\{Pool, Client, Promise};
- use App\Util\ActivityPub\HttpSignature;
- use App\Services\ReblogService;
- use App\Services\StatusService;
- use App\Jobs\HomeFeedPipeline\FeedRemovePipeline;
- class UndoSharePipeline implements ShouldQueue
- {
- use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
- protected $status;
- public $deleteWhenMissingModels = true;
- public function __construct(Status $status)
- {
- $this->status = $status;
- }
- public function handle()
- {
- $status = $this->status;
- $actor = $status->profile;
- $parent = Status::find($status->reblog_of_id);
- FeedRemovePipeline::dispatch($status->id, $status->profile_id)->onQueue('feed');
- if($parent) {
- $target = $parent->profile_id;
- ReblogService::removePostReblog($parent->profile_id, $status->id);
- if($parent->reblogs_count > 0) {
- $parent->reblogs_count = $parent->reblogs_count - 1;
- $parent->save();
- StatusService::del($parent->id);
- }
- $notification = Notification::whereProfileId($target)
- ->whereActorId($status->profile_id)
- ->whereAction('share')
- ->whereItemId($status->reblog_of_id)
- ->whereItemType('App\Status')
- ->first();
- if($notification) {
- $notification->forceDelete();
- }
- }
- if ($status->uri != null) {
- return;
- }
- if(config('app.env') !== 'production' || config_cache('federation.activitypub.enabled') == false) {
- return $status->delete();
- } else {
- return $this->remoteAnnounceDeliver();
- }
- }
- public function remoteAnnounceDeliver()
- {
- if(config('app.env') !== 'production' || config_cache('federation.activitypub.enabled') == false) {
- $status->delete();
- return 1;
- }
- $status = $this->status;
- $profile = $status->profile;
- $fractal = new Fractal\Manager();
- $fractal->setSerializer(new ArraySerializer());
- $resource = new Fractal\Resource\Item($status, new UndoAnnounce());
- $activity = $fractal->createData($resource)->toArray();
- $audience = $status->profile->getAudienceInbox();
- if(empty($audience) || $status->scope != 'public') {
- return 1;
- }
- $payload = json_encode($activity);
- $client = new Client([
- 'timeout' => config('federation.activitypub.delivery.timeout')
- ]);
- $version = config('pixelfed.version');
- $appUrl = config('app.url');
- $userAgent = "(Pixelfed/{$version}; +{$appUrl})";
- $requests = function($audience) use ($client, $activity, $profile, $payload, $userAgent) {
- foreach($audience as $url) {
- $headers = HttpSignature::sign($profile, $url, $activity, [
- 'Content-Type' => 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
- 'User-Agent' => $userAgent,
- ]);
- 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();
- $status->delete();
- return 1;
- }
- }
|