2018-08-16 16:40:08 -05:00
|
|
|
import config from '../../../config';
|
|
|
|
import { INote } from '../../../models/note';
|
|
|
|
|
|
|
|
export default (object: any, note: INote) => {
|
|
|
|
const attributedTo = `${config.url}/users/${note.userId}`;
|
|
|
|
|
2018-11-16 12:25:48 -06:00
|
|
|
let to: string[] = [];
|
|
|
|
let cc: string[] = [];
|
|
|
|
|
|
|
|
if (note.visibility == 'public') {
|
|
|
|
to = ['https://www.w3.org/ns/activitystreams#Public'];
|
|
|
|
cc = [`${attributedTo}/followers`];
|
|
|
|
} else if (note.visibility == 'home') {
|
|
|
|
to = [`${attributedTo}/followers`];
|
|
|
|
cc = ['https://www.w3.org/ns/activitystreams#Public'];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-08-16 16:40:08 -05:00
|
|
|
return {
|
2018-09-07 15:24:55 -05:00
|
|
|
id: `${config.url}/notes/${note._id}/activity`,
|
2018-08-25 00:12:44 -05:00
|
|
|
actor: `${config.url}/users/${note.userId}`,
|
2018-08-16 16:40:08 -05:00
|
|
|
type: 'Announce',
|
|
|
|
published: note.createdAt.toISOString(),
|
2018-11-16 12:25:48 -06:00
|
|
|
to,
|
|
|
|
cc,
|
2018-08-16 16:40:08 -05:00
|
|
|
object
|
|
|
|
};
|
|
|
|
};
|