summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/request.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/remote/activitypub/request.ts')
-rw-r--r--src/remote/activitypub/request.ts28
1 files changed, 24 insertions, 4 deletions
diff --git a/src/remote/activitypub/request.ts b/src/remote/activitypub/request.ts
index 6238d3acb1..177b6f458e 100644
--- a/src/remote/activitypub/request.ts
+++ b/src/remote/activitypub/request.ts
@@ -2,6 +2,7 @@ import { request } from 'https';
const { sign } = require('http-signature');
import { URL } from 'url';
import * as debug from 'debug';
+const crypto = require('crypto');
import config from '../../config';
import { ILocalUser } from '../../models/user';
@@ -11,22 +12,33 @@ const log = debug('misskey:activitypub:deliver');
export default (user: ILocalUser, url: string, object: any) => new Promise((resolve, reject) => {
log(`--> ${url}`);
+ const timeout = 10 * 1000;
+
const { protocol, hostname, port, pathname, search } = new URL(url);
+ const data = JSON.stringify(object);
+
+ const sha256 = crypto.createHash('sha256');
+ sha256.update(data);
+ const hash = sha256.digest('base64');
+
const req = request({
protocol,
hostname,
port,
method: 'POST',
path: pathname + search,
+ timeout,
headers: {
- 'Content-Type': 'application/activity+json'
+ 'User-Agent': config.user_agent,
+ 'Content-Type': 'application/activity+json',
+ 'Digest': `SHA-256=${hash}`
}
}, res => {
log(`${url} --> ${res.statusCode}`);
if (res.statusCode >= 400) {
- reject();
+ reject(res);
} else {
resolve();
}
@@ -35,7 +47,8 @@ export default (user: ILocalUser, url: string, object: any) => new Promise((reso
sign(req, {
authorizationHeaderName: 'Signature',
key: user.keypair,
- keyId: `${config.url}/users/${user._id}/publickey`
+ keyId: `${config.url}/users/${user._id}/publickey`,
+ headers: ['date', 'host', 'digest']
});
// Signature: Signature ... => Signature: ...
@@ -43,5 +56,12 @@ export default (user: ILocalUser, url: string, object: any) => new Promise((reso
sig = sig.replace(/^Signature /, '');
req.setHeader('Signature', sig);
- req.end(JSON.stringify(object));
+ req.on('timeout', () => req.abort());
+
+ req.on('error', e => {
+ if (req.aborted) reject('timeout');
+ reject(e);
+ });
+
+ req.end(data);
});