mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
Merge pull request #1358 from akihikodaki/inbox
Make inbox signature verification compatible with Mastodon
This commit is contained in:
commit
d166dbd01e
@ -11,16 +11,32 @@ app.use(bodyParser.json());
|
||||
app.post('/@:user/inbox', async (req, res) => {
|
||||
let parsed;
|
||||
|
||||
req.headers.authorization = 'Signature ' + req.headers.signature;
|
||||
|
||||
try {
|
||||
parsed = parseRequest(req);
|
||||
} catch (exception) {
|
||||
return res.sendStatus(401);
|
||||
}
|
||||
|
||||
const user = await User.findOne({
|
||||
const keyIdLower = parsed.keyId.toLowerCase();
|
||||
let query;
|
||||
|
||||
if (keyIdLower.startsWith('acct:')) {
|
||||
const { username, host } = parseAcct(keyIdLower.slice('acct:'.length));
|
||||
if (host === null) {
|
||||
return res.sendStatus(401);
|
||||
}
|
||||
|
||||
query = { usernameLower: username, hostLower: host };
|
||||
} else {
|
||||
query = {
|
||||
host: { $ne: null },
|
||||
'account.publicKey.id': parsed.keyId
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
const user = await User.findOne(query);
|
||||
|
||||
if (user === null) {
|
||||
return res.sendStatus(401);
|
||||
|
Loading…
Reference in New Issue
Block a user