Update InboxValidator

pull/2199/head
Daniel Supernault 5 years ago
parent 938e721e91
commit 011e2c964c
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

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

Loading…
Cancel
Save