mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-30 18:46:01 +01:00
feat: have category actor send Announce(Note) activity on posts from that cid
re: #12434
This commit is contained in:
@@ -104,15 +104,26 @@ activitypubApi.create.post = enabledCheck(async (caller, { pid }) => {
|
||||
|
||||
const object = await activitypub.mocks.note(post);
|
||||
const { targets } = await buildRecipients(object, post.user.uid);
|
||||
const { cid } = post.category;
|
||||
const followers = await activitypub.notes.getCategoryFollowers(cid);
|
||||
|
||||
const payload = {
|
||||
type: 'Create',
|
||||
to: object.to,
|
||||
cc: object.cc,
|
||||
object,
|
||||
const payloads = {
|
||||
create: {
|
||||
type: 'Create',
|
||||
to: object.to,
|
||||
cc: object.cc,
|
||||
object,
|
||||
},
|
||||
announce: {
|
||||
type: 'Announce',
|
||||
to: [`${nconf.get('url')}/category/${cid}/followers`],
|
||||
cc: [activitypub._constants.publicAddress],
|
||||
object,
|
||||
},
|
||||
};
|
||||
|
||||
await activitypub.send('uid', caller.uid, Array.from(targets), payload);
|
||||
await activitypub.send('uid', caller.uid, Array.from(targets), payloads.create);
|
||||
await activitypub.send('cid', cid, followers, payloads.announce);
|
||||
});
|
||||
|
||||
activitypubApi.update = {};
|
||||
|
||||
Reference in New Issue
Block a user