Deliver posts to remote followers
This commit is contained in:
@ -1,6 +1,5 @@
|
||||
import { JSDOM } from 'jsdom';
|
||||
import config from '../../config';
|
||||
import { pack as packPost } from '../../models/post';
|
||||
import RemoteUserObject, { IRemoteUserObject } from '../../models/remote-user-object';
|
||||
import { IRemoteUser } from '../../models/user';
|
||||
import uploadFromUrl from '../../drive/upload-from-url';
|
||||
@ -69,7 +68,7 @@ class Creator {
|
||||
const promises = [];
|
||||
|
||||
if (this.distribute) {
|
||||
promises.push(distributePost(this.actor, inserted.mentions, packPost(inserted)));
|
||||
promises.push(distributePost(this.actor, inserted.mentions, inserted));
|
||||
}
|
||||
|
||||
// Register to search database
|
||||
|
35
src/remote/request.ts
Normal file
35
src/remote/request.ts
Normal file
@ -0,0 +1,35 @@
|
||||
import { request } from 'https';
|
||||
import { sign } from 'http-signature';
|
||||
import { URL } from 'url';
|
||||
import config from '../config';
|
||||
|
||||
export default ({ account, username }, url, object) => new Promise((resolve, reject) => {
|
||||
const { protocol, hostname, port, pathname, search } = new URL(url);
|
||||
|
||||
const req = request({
|
||||
protocol,
|
||||
hostname,
|
||||
port,
|
||||
method: 'POST',
|
||||
path: pathname + search,
|
||||
}, res => {
|
||||
res.on('end', () => {
|
||||
if (res.statusCode >= 200 && res.statusCode < 300) {
|
||||
resolve();
|
||||
} else {
|
||||
reject(res);
|
||||
}
|
||||
});
|
||||
|
||||
res.on('data', () => {});
|
||||
res.on('error', reject);
|
||||
});
|
||||
|
||||
sign(req, {
|
||||
authorizationHeaderName: 'Signature',
|
||||
key: account.keypair,
|
||||
keyId: `acct:${username}@${config.host}`
|
||||
});
|
||||
|
||||
req.end(JSON.stringify(object));
|
||||
});
|
Reference in New Issue
Block a user