egirlskey/src/remote/activitypub/request.ts

45 lines
969 B
TypeScript
Raw Normal View History

2018-04-02 11:16:13 +00:00
import { request } from 'https';
import { sign } from 'http-signature';
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-04-07 20:02:50 +00:00
export default (user: ILocalUser, url: string, object) => 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,
}, res => {
res.on('end', () => {
2018-04-05 09:43:06 +00:00
log(`${url} --> ${res.statusCode}`);
2018-04-02 11:16:13 +00:00
if (res.statusCode >= 200 && res.statusCode < 300) {
resolve();
} else {
reject(res);
}
});
res.on('data', () => {});
res.on('error', reject);
});
sign(req, {
authorizationHeaderName: 'Signature',
2018-04-07 18:58:11 +00:00
key: user.keypair,
keyId: `acct:${user.username}@${config.host}`
2018-04-02 11:16:13 +00:00
});
req.end(JSON.stringify(object));
});