1
0
Fork 0
pixelfed/app/Jobs/InboxPipeline/InboxWorker.php

191 lines
5.7 KiB
PHP
Raw Normal View History

2018-07-23 17:31:51 +00:00
<?php
namespace App\Jobs\InboxPipeline;
use Cache;
2018-07-23 17:31:51 +00:00
use App\Profile;
2020-11-26 08:22:53 +00:00
use App\Util\ActivityPub\{
Helpers,
HttpSignature,
Inbox
};
2018-07-23 17:31:51 +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;
use App\Jobs\DeletePipeline\DeleteRemoteProfilePipeline;
2022-12-05 07:16:38 +00:00
use Illuminate\Support\Facades\Http;
use Illuminate\Http\Client\ConnectionException;
2018-07-23 17:31:51 +00:00
class InboxWorker implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2018-11-04 03:53:46 +00:00
protected $headers;
2018-07-23 17:31:51 +00:00
protected $payload;
public $timeout = 300;
2019-08-28 01:14:56 +00:00
public $tries = 1;
2022-12-05 07:16:38 +00:00
public $maxExceptions = 1;
2019-08-28 01:14:56 +00:00
2018-07-23 17:31:51 +00:00
/**
* Create a new job instance.
*
* @return void
*/
2020-11-26 07:39:01 +00:00
public function __construct($headers, $payload)
2018-07-23 17:31:51 +00:00
{
2018-11-04 03:53:46 +00:00
$this->headers = $headers;
2018-07-23 17:31:51 +00:00
$this->payload = $payload;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
2020-11-26 07:39:01 +00:00
$profile = null;
$headers = $this->headers;
2022-12-05 05:15:50 +00:00
if(empty($headers) || empty($this->payload) || !isset($headers['signature']) || !isset($headers['date'])) {
return;
}
2020-11-26 07:39:01 +00:00
$payload = json_decode($this->payload, true, 8);
2021-02-17 06:39:39 +00:00
if(isset($payload['id'])) {
2022-12-24 06:22:48 +00:00
$lockKey = 'pf:ap:user-inbox:activity:' . hash('sha256', $payload['id']);
2021-02-17 06:39:39 +00:00
if(Cache::get($lockKey) !== null) {
// Job processed already
return 1;
}
2022-03-17 03:02:23 +00:00
Cache::put($lockKey, 1, 3600);
2021-02-17 06:39:39 +00:00
}
2020-11-26 07:39:01 +00:00
if($this->verifySignature($headers, $payload) == true) {
2022-12-20 06:17:24 +00:00
ActivityHandler::dispatch($headers, $profile, $payload)->onQueue('shared');
2020-11-26 07:39:01 +00:00
return;
} else {
return;
}
}
protected function verifySignature($headers, $payload)
{
$body = $this->payload;
$bodyDecoded = $payload;
$signature = is_array($headers['signature']) ? $headers['signature'][0] : $headers['signature'];
$date = is_array($headers['date']) ? $headers['date'][0] : $headers['date'];
if(!$signature) {
2022-12-09 12:45:48 +00:00
return false;
2020-11-26 07:39:01 +00:00
}
if(!$date) {
2022-12-09 12:45:48 +00:00
return false;
2020-11-26 07:39:01 +00:00
}
if(!now()->parse($date)->gt(now()->subDays(1)) ||
!now()->parse($date)->lt(now()->addDays(1))
) {
2022-12-09 12:45:48 +00:00
return false;
2020-11-26 07:39:01 +00:00
}
2022-03-17 03:02:23 +00:00
if(!isset($bodyDecoded['id'])) {
2022-12-09 12:45:48 +00:00
return false;
2022-03-17 03:02:23 +00:00
}
2020-11-26 07:39:01 +00:00
$signatureData = HttpSignature::parseSignatureHeader($signature);
$keyId = Helpers::validateUrl($signatureData['keyId']);
$id = Helpers::validateUrl($bodyDecoded['id']);
$keyDomain = parse_url($keyId, PHP_URL_HOST);
$idDomain = parse_url($id, PHP_URL_HOST);
if(isset($bodyDecoded['object'])
&& is_array($bodyDecoded['object'])
&& isset($bodyDecoded['object']['attributedTo'])
) {
$attr = Helpers::pluckval($bodyDecoded['object']['attributedTo']);
if(is_array($attr)) {
if(isset($attr['id'])) {
$attr = $attr['id'];
} else {
$attr = "";
}
}
if(parse_url($attr, PHP_URL_HOST) !== $keyDomain) {
2022-12-09 12:45:48 +00:00
return false;
2020-11-26 07:39:01 +00:00
}
}
if(!$keyDomain || !$idDomain || $keyDomain !== $idDomain) {
2022-12-09 12:45:48 +00:00
return false;
2020-11-26 07:39:01 +00:00
}
$actor = Profile::whereKeyId($keyId)->first();
if(!$actor) {
2022-04-06 07:03:05 +00:00
$actorUrl = Helpers::pluckval($bodyDecoded['actor']);
2020-11-26 07:39:01 +00:00
$actor = Helpers::profileFirstOrNew($actorUrl);
}
if(!$actor) {
2022-12-09 12:45:48 +00:00
return false;
2020-11-26 07:39:01 +00:00
}
$pkey = openssl_pkey_get_public($actor->public_key);
if(!$pkey) {
2022-12-09 12:45:48 +00:00
return false;
}
2020-11-26 07:39:01 +00:00
$inboxPath = "/f/inbox";
list($verified, $headers) = HttpSignature::verify($pkey, $signatureData, $headers, $inboxPath, $body);
if($verified == 1) {
return true;
} else {
return false;
}
}
protected function blindKeyRotation($headers, $payload)
{
$signature = is_array($headers['signature']) ? $headers['signature'][0] : $headers['signature'];
$date = is_array($headers['date']) ? $headers['date'][0] : $headers['date'];
if(!$signature) {
return;
}
if(!$date) {
return;
}
if(!now()->parse($date)->gt(now()->subDays(1)) ||
!now()->parse($date)->lt(now()->addDays(1))
) {
return;
}
$signatureData = HttpSignature::parseSignatureHeader($signature);
$keyId = Helpers::validateUrl($signatureData['keyId']);
$actor = Profile::whereKeyId($keyId)->whereNotNull('remote_url')->first();
if(!$actor) {
return;
}
if(Helpers::validateUrl($actor->remote_url) == false) {
return;
}
2022-12-05 07:16:38 +00:00
try {
$res = Http::timeout(20)->withHeaders([
'Accept' => 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
'User-Agent' => 'PixelfedBot v0.1 - https://pixelfed.org',
])->get($actor->remote_url);
} catch (ConnectionException $e) {
return false;
}
if(!$res->ok()) {
return false;
}
2020-11-26 07:39:01 +00:00
$res = json_decode($res->body(), true, 8);
2022-03-13 06:49:11 +00:00
if(!$res || empty($res) || !isset($res['publicKey']) || !isset($res['publicKey']['id'])) {
return;
}
2020-11-26 07:39:01 +00:00
if($res['publicKey']['id'] !== $actor->key_id) {
return;
}
$actor->public_key = $res['publicKey']['publicKeyPem'];
$actor->save();
return $this->verifySignature($headers, $payload);
2018-07-23 17:31:51 +00:00
}
}