mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-30 08:20:46 +00:00
Update FederationController
This commit is contained in:
parent
cdb4a9b38e
commit
da28b13545
1 changed files with 7 additions and 0 deletions
|
@ -199,9 +199,16 @@ XML;
|
|||
$body = $request->getContent();
|
||||
$bodyDecoded = json_decode($body, true, 8);
|
||||
$signature = $request->header('signature');
|
||||
$date = $request->header('date');
|
||||
if(!$signature) {
|
||||
abort(400, 'Missing signature header');
|
||||
}
|
||||
if(!$date) {
|
||||
abort(400, 'Missing date header');
|
||||
}
|
||||
if(!now()->parse($date)->gt(now()->subDays(1)) || !now()->parse($date)->lt(now()->addDays(1))) {
|
||||
abort(400, 'Invalid date');
|
||||
}
|
||||
$signatureData = HttpSignature::parseSignatureHeader($signature);
|
||||
$keyId = Helpers::validateUrl($signatureData['keyId']);
|
||||
$id = Helpers::validateUrl($bodyDecoded['id']);
|
||||
|
|
Loading…
Reference in a new issue