mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.5 KiB
PHP
94 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\FollowPipeline;
|
|
|
|
use App\FollowRequest;
|
|
use App\Transformer\ActivityPub\Verb\RejectFollow;
|
|
use App\Util\ActivityPub\Helpers;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Log;
|
|
use League\Fractal;
|
|
use League\Fractal\Serializer\ArraySerializer;
|
|
|
|
class FollowRejectPipeline implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected $followRequest;
|
|
|
|
/**
|
|
* Delete the job if its models no longer exist.
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $deleteWhenMissingModels = true;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(FollowRequest $followRequest)
|
|
{
|
|
$this->followRequest = $followRequest;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
$follow = $this->followRequest;
|
|
|
|
// Verify follow request exists
|
|
if (! $follow) {
|
|
Log::info('FollowRejectPipeline: Follow request no longer exists, skipping job');
|
|
|
|
return;
|
|
}
|
|
|
|
$actor = $follow->actor;
|
|
$target = $follow->target;
|
|
|
|
// Verify actor and target exist
|
|
if (! $actor) {
|
|
Log::info("FollowRejectPipeline: Actor no longer exists for follow request {$follow->id}, skipping job");
|
|
|
|
return;
|
|
}
|
|
if (! $target) {
|
|
Log::info("FollowRejectPipeline: Target no longer exists for follow request {$follow->id}, skipping job");
|
|
|
|
return;
|
|
}
|
|
|
|
if ($actor->domain == null || $actor->inbox_url == null || ! $target->private_key) {
|
|
Log::info("FollowRejectPipeline: Missing required fields for follow request {$follow->id}, skipping job");
|
|
|
|
return;
|
|
}
|
|
|
|
try {
|
|
$fractal = new Fractal\Manager;
|
|
$fractal->setSerializer(new ArraySerializer);
|
|
$resource = new Fractal\Resource\Item($follow, new RejectFollow);
|
|
$activity = $fractal->createData($resource)->toArray();
|
|
$url = $actor->sharedInbox ?? $actor->inbox_url;
|
|
|
|
Helpers::sendSignedObject($target, $url, $activity);
|
|
|
|
$follow->delete();
|
|
} catch (\Exception $e) {
|
|
Log::warning("FollowRejectPipeline: Failed to process follow request {$follow->id}: ".$e->getMessage());
|
|
throw $e;
|
|
}
|
|
|
|
}
|
|
}
|