Sharkey/src/remote/activitypub/renderer/note.ts

96 lines
2.4 KiB
TypeScript
Raw Normal View History

2018-04-01 13:18:36 +03:00
import renderDocument from './document';
import renderHashtag from './hashtag';
2018-06-12 23:11:55 +03:00
import renderMention from './mention';
2018-04-02 07:15:53 +03:00
import config from '../../../config';
2018-06-18 08:28:43 +03:00
import DriveFile, { IDriveFile } from '../../../models/drive-file';
2018-04-07 20:30:37 +03:00
import Note, { INote } from '../../../models/note';
2018-04-08 00:55:26 +03:00
import User from '../../../models/user';
2018-04-22 04:44:17 +03:00
import toHtml from '../misc/get-note-html';
2018-04-05 13:19:00 +03:00
2018-06-18 08:28:43 +03:00
export default async function renderNote(note: INote, dive = true): Promise<any> {
const promisedFiles: Promise<IDriveFile[]> = note.mediaIds
2018-04-07 20:30:37 +03:00
? DriveFile.find({ _id: { $in: note.mediaIds } })
2018-04-05 13:19:00 +03:00
: Promise.resolve([]);
2018-04-01 13:18:36 +03:00
let inReplyTo;
2018-04-07 20:30:37 +03:00
if (note.replyId) {
const inReplyToNote = await Note.findOne({
_id: note.replyId,
2018-04-01 13:18:36 +03:00
});
2018-04-07 20:30:37 +03:00
if (inReplyToNote !== null) {
2018-04-01 13:18:36 +03:00
const inReplyToUser = await User.findOne({
2018-04-07 20:30:37 +03:00
_id: inReplyToNote.userId,
2018-04-01 13:18:36 +03:00
});
if (inReplyToUser !== null) {
if (inReplyToNote.uri) {
inReplyTo = inReplyToNote.uri;
} else {
if (dive) {
inReplyTo = await renderNote(inReplyToNote, false);
} else {
inReplyTo = `${config.url}/notes/${inReplyToNote._id}`;
}
}
2018-04-01 13:18:36 +03:00
}
}
} else {
inReplyTo = null;
}
2018-04-08 00:55:26 +03:00
const user = await User.findOne({
_id: note.userId
});
2018-04-08 09:15:22 +03:00
const attributedTo = `${config.url}/users/${user._id}`;
2018-04-01 13:18:36 +03:00
2018-06-12 23:11:55 +03:00
const mentions = note.mentionedRemoteUsers && note.mentionedRemoteUsers.length > 0
? note.mentionedRemoteUsers.map(x => x.uri)
: [];
2018-08-12 21:49:17 +03:00
let to: string[] = [];
let cc: string[] = [];
if (note.visibility == 'public') {
to = ['https://www.w3.org/ns/activitystreams#Public'];
cc = [`${attributedTo}/followers`].concat(mentions);
} else if (note.visibility == 'home') {
to = [`${attributedTo}/followers`];
cc = ['https://www.w3.org/ns/activitystreams#Public'].concat(mentions);
} else if (note.visibility == 'followers') {
to = [`${attributedTo}/followers`];
cc = mentions;
} else {
to = mentions;
}
2018-06-12 23:11:55 +03:00
2018-06-19 02:03:00 +03:00
const mentionedUsers = note.mentions ? await User.find({
2018-06-17 10:45:01 +03:00
_id: {
$in: note.mentions
}
2018-06-19 02:03:00 +03:00
}) : [];
2018-06-17 10:45:01 +03:00
2018-06-17 11:15:03 +03:00
const hashtagTags = (note.tags || []).map(tag => renderHashtag(tag));
const mentionTags = mentionedUsers.map(u => renderMention(u));
2018-06-17 10:45:01 +03:00
const tag = [
...hashtagTags,
...mentionTags,
];
2018-06-12 23:11:55 +03:00
2018-04-01 13:18:36 +03:00
return {
2018-04-07 20:30:37 +03:00
id: `${config.url}/notes/${note._id}`,
2018-04-01 13:18:36 +03:00
type: 'Note',
attributedTo,
2018-06-17 08:11:31 +03:00
summary: note.cw,
2018-04-22 04:44:17 +03:00
content: toHtml(note),
2018-04-07 20:30:37 +03:00
published: note.createdAt.toISOString(),
2018-08-12 21:49:17 +03:00
to,
2018-06-12 23:11:55 +03:00
cc,
2018-04-01 13:18:36 +03:00
inReplyTo,
attachment: (await promisedFiles).map(renderDocument),
2018-06-12 23:11:55 +03:00
tag
2018-04-01 13:18:36 +03:00
};
}