1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-26 01:36:43 +00:00

Update InboxValidator

This commit is contained in:
Daniel Supernault 2020-05-21 20:44:13 -06:00
parent 938e721e91
commit 011e2c964c
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -23,6 +23,9 @@ class InboxValidator implements ShouldQueue
protected $headers; protected $headers;
protected $payload; protected $payload;
public $timeout = 5;
public $tries = 1;
/** /**
* Create a new job instance. * Create a new job instance.
* *
@ -61,11 +64,9 @@ class InboxValidator implements ShouldQueue
} }
if($this->verifySignature($headers, $profile, $payload) == true) { if($this->verifySignature($headers, $profile, $payload) == true) {
dispatch(new \App\Jobs\InboxPipeline\InboxWorker($headers, $profile, $payload)); (new Inbox($headers, $profile, $payload))->handle()
return;
} else if($this->blindKeyRotation($headers, $profile, $payload) == true) { } else if($this->blindKeyRotation($headers, $profile, $payload) == true) {
dispatch(new \App\Jobs\InboxPipeline\InboxWorker($headers, $profile, $payload)); (new Inbox($headers, $profile, $payload))->handle()
return;
} else { } else {
return; return;
} }