2018-04-01 05:18:36 -05:00
|
|
|
import renderDocument from './document';
|
|
|
|
import renderHashtag from './hashtag';
|
2018-04-01 23:15:53 -05:00
|
|
|
import config from '../../../config';
|
2018-04-01 14:15:27 -05:00
|
|
|
import DriveFile from '../../../models/drive-file';
|
2018-04-07 12:30:37 -05:00
|
|
|
import Note, { INote } from '../../../models/note';
|
2018-04-07 16:55:26 -05:00
|
|
|
import User from '../../../models/user';
|
2018-04-21 20:44:17 -05:00
|
|
|
import toHtml from '../misc/get-note-html';
|
2018-04-05 05:19:00 -05:00
|
|
|
|
2018-04-09 14:38:02 -05:00
|
|
|
export default async function renderNote(note: INote, dive = true) {
|
2018-04-07 12:30:37 -05:00
|
|
|
const promisedFiles = note.mediaIds
|
|
|
|
? DriveFile.find({ _id: { $in: note.mediaIds } })
|
2018-04-05 05:19:00 -05:00
|
|
|
: Promise.resolve([]);
|
2018-04-01 05:18:36 -05:00
|
|
|
|
|
|
|
let inReplyTo;
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
if (note.replyId) {
|
|
|
|
const inReplyToNote = await Note.findOne({
|
|
|
|
_id: note.replyId,
|
2018-04-01 05:18:36 -05:00
|
|
|
});
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
if (inReplyToNote !== null) {
|
2018-04-01 05:18:36 -05:00
|
|
|
const inReplyToUser = await User.findOne({
|
2018-04-07 12:30:37 -05:00
|
|
|
_id: inReplyToNote.userId,
|
2018-04-01 05:18:36 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
if (inReplyToUser !== null) {
|
2018-04-09 14:38:02 -05:00
|
|
|
if (inReplyToNote.uri) {
|
|
|
|
inReplyTo = inReplyToNote.uri;
|
|
|
|
} else {
|
|
|
|
if (dive) {
|
|
|
|
inReplyTo = await renderNote(inReplyToNote, false);
|
|
|
|
} else {
|
|
|
|
inReplyTo = `${config.url}/notes/${inReplyToNote._id}`;
|
|
|
|
}
|
|
|
|
}
|
2018-04-01 05:18:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
inReplyTo = null;
|
|
|
|
}
|
|
|
|
|
2018-04-07 16:55:26 -05:00
|
|
|
const user = await User.findOne({
|
|
|
|
_id: note.userId
|
|
|
|
});
|
|
|
|
|
2018-04-08 01:15:22 -05:00
|
|
|
const attributedTo = `${config.url}/users/${user._id}`;
|
2018-04-01 05:18:36 -05:00
|
|
|
|
|
|
|
return {
|
2018-04-07 12:30:37 -05:00
|
|
|
id: `${config.url}/notes/${note._id}`,
|
2018-04-01 05:18:36 -05:00
|
|
|
type: 'Note',
|
|
|
|
attributedTo,
|
2018-04-21 20:44:17 -05:00
|
|
|
content: toHtml(note),
|
2018-04-07 12:30:37 -05:00
|
|
|
published: note.createdAt.toISOString(),
|
2018-04-01 05:18:36 -05:00
|
|
|
to: 'https://www.w3.org/ns/activitystreams#Public',
|
|
|
|
cc: `${attributedTo}/followers`,
|
|
|
|
inReplyTo,
|
|
|
|
attachment: (await promisedFiles).map(renderDocument),
|
2018-04-07 12:30:37 -05:00
|
|
|
tag: (note.tags || []).map(renderHashtag)
|
2018-04-01 05:18:36 -05:00
|
|
|
};
|
2018-04-09 14:38:02 -05:00
|
|
|
}
|