2019-07-28 00:49:02 +00:00
|
|
|
import * as https from 'https';
|
2019-02-01 10:59:12 +00:00
|
|
|
import { sign } from 'http-signature';
|
2019-01-30 02:51:29 +00:00
|
|
|
import * as crypto from 'crypto';
|
2019-07-28 00:49:02 +00:00
|
|
|
import * as cache from 'lookup-dns-cache';
|
2018-04-05 09:43:06 +00:00
|
|
|
|
2018-04-09 17:12:17 +00:00
|
|
|
import config from '../../config';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { ILocalUser } from '../../models/entities/user';
|
2019-11-06 15:02:18 +00:00
|
|
|
import { UserKeypairs } from '../../models';
|
2019-04-12 16:43:22 +00:00
|
|
|
import { ensure } from '../../prelude/ensure';
|
2020-03-14 02:33:19 +00:00
|
|
|
import { HttpsProxyAgent } from 'https-proxy-agent';
|
2018-04-02 11:16:13 +00:00
|
|
|
|
2019-07-28 00:49:02 +00:00
|
|
|
const agent = config.proxy
|
2020-03-14 02:33:19 +00:00
|
|
|
? new HttpsProxyAgent(config.proxy)
|
2019-07-28 00:49:02 +00:00
|
|
|
: new https.Agent({
|
|
|
|
lookup: cache.lookup,
|
|
|
|
});
|
|
|
|
|
2019-03-08 10:45:01 +00:00
|
|
|
export default async (user: ILocalUser, url: string, object: any) => {
|
2018-10-04 16:58:41 +00:00
|
|
|
const timeout = 10 * 1000;
|
|
|
|
|
2019-11-06 15:02:18 +00:00
|
|
|
const { protocol, hostname, port, pathname, search } = new URL(url);
|
2019-02-07 19:26:43 +00:00
|
|
|
|
2018-08-30 11:52:35 +00:00
|
|
|
const data = JSON.stringify(object);
|
|
|
|
|
|
|
|
const sha256 = crypto.createHash('sha256');
|
|
|
|
sha256.update(data);
|
|
|
|
const hash = sha256.digest('base64');
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
const keypair = await UserKeypairs.findOne({
|
|
|
|
userId: user.id
|
2019-04-12 16:43:22 +00:00
|
|
|
}).then(ensure);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2019-04-14 08:18:17 +00:00
|
|
|
await new Promise((resolve, reject) => {
|
2019-07-28 00:49:02 +00:00
|
|
|
const req = https.request({
|
|
|
|
agent,
|
2019-03-08 10:45:01 +00:00
|
|
|
protocol,
|
2019-07-28 00:49:02 +00:00
|
|
|
hostname,
|
2019-03-08 10:45:01 +00:00
|
|
|
port,
|
|
|
|
method: 'POST',
|
|
|
|
path: pathname + search,
|
|
|
|
timeout,
|
|
|
|
headers: {
|
|
|
|
'User-Agent': config.userAgent,
|
|
|
|
'Content-Type': 'application/activity+json',
|
|
|
|
'Digest': `SHA-256=${hash}`
|
|
|
|
}
|
|
|
|
}, res => {
|
2019-04-12 16:43:22 +00:00
|
|
|
if (res.statusCode! >= 400) {
|
2019-03-08 10:45:01 +00:00
|
|
|
reject(res);
|
|
|
|
} else {
|
|
|
|
resolve();
|
|
|
|
}
|
|
|
|
});
|
2018-04-02 11:16:13 +00:00
|
|
|
|
2019-03-08 10:45:01 +00:00
|
|
|
sign(req, {
|
|
|
|
authorizationHeaderName: 'Signature',
|
2019-04-07 18:35:02 +00:00
|
|
|
key: keypair.privateKey,
|
2020-01-19 19:51:44 +00:00
|
|
|
keyId: `${config.url}/users/${user.id}#main-key`,
|
2019-03-08 10:45:01 +00:00
|
|
|
headers: ['date', 'host', 'digest']
|
|
|
|
});
|
|
|
|
|
|
|
|
req.on('timeout', () => req.abort());
|
2018-04-21 15:41:07 +00:00
|
|
|
|
2019-03-08 10:45:01 +00:00
|
|
|
req.on('error', e => {
|
|
|
|
if (req.aborted) reject('timeout');
|
|
|
|
reject(e);
|
|
|
|
});
|
2018-10-04 16:58:41 +00:00
|
|
|
|
2019-03-08 10:45:01 +00:00
|
|
|
req.end(data);
|
2018-10-04 16:58:41 +00:00
|
|
|
});
|
2019-03-08 10:45:01 +00:00
|
|
|
};
|