egirlskey/src/remote/activitypub/request.ts

48 lines
1.1 KiB
TypeScript
Raw Normal View History

2018-04-02 11:16:13 +00:00
import { request } from 'https';
2018-06-18 00:54:53 +00:00
const { sign } = require('http-signature');
2018-04-02 11:16:13 +00:00
import { URL } from 'url';
2018-04-05 09:43:06 +00:00
import * as debug from 'debug';
2018-04-09 17:12:17 +00:00
import config from '../../config';
import { ILocalUser } from '../../models/user';
2018-04-02 11:16:13 +00:00
2018-04-05 09:43:06 +00:00
const log = debug('misskey:activitypub:deliver');
2018-06-18 00:54:53 +00:00
export default (user: ILocalUser, url: string, object: any) => new Promise((resolve, reject) => {
2018-04-05 09:43:06 +00:00
log(`--> ${url}`);
2018-04-02 11:16:13 +00:00
const { protocol, hostname, port, pathname, search } = new URL(url);
const req = request({
protocol,
hostname,
port,
method: 'POST',
path: pathname + search,
headers: {
'Content-Type': 'application/activity+json'
}
2018-04-02 11:16:13 +00:00
}, res => {
2018-08-02 06:35:22 +00:00
log(`${url} --> ${res.statusCode}`);
if (res.statusCode >= 400) {
reject();
} else {
resolve();
}
2018-04-02 11:16:13 +00:00
});
sign(req, {
authorizationHeaderName: 'Signature',
2018-04-07 18:58:11 +00:00
key: user.keypair,
2018-08-25 03:46:06 +00:00
keyId: `${config.url}/users/${user._id}/publickey`
2018-04-02 11:16:13 +00:00
});
// Signature: Signature ... => Signature: ...
let sig = req.getHeader('Signature').toString();
sig = sig.replace(/^Signature /, '');
req.setHeader('Signature', sig);
2018-04-02 11:16:13 +00:00
req.end(JSON.stringify(object));
});