rudeshark.net/src/remote/activitypub/renderer/note.ts
syuilo 6e34e77372 Implement announce
And bug fixes
2018-04-08 06:55:26 +09:00

52 lines
1.3 KiB
TypeScript

import renderDocument from './document';
import renderHashtag from './hashtag';
import config from '../../../config';
import DriveFile from '../../../models/drive-file';
import Note, { INote } from '../../../models/note';
import User from '../../../models/user';
export default async (note: INote) => {
const promisedFiles = note.mediaIds
? DriveFile.find({ _id: { $in: note.mediaIds } })
: Promise.resolve([]);
let inReplyTo;
if (note.replyId) {
const inReplyToNote = await Note.findOne({
_id: note.replyId,
});
if (inReplyToNote !== null) {
const inReplyToUser = await User.findOne({
_id: inReplyToNote.userId,
});
if (inReplyToUser !== null) {
inReplyTo = inReplyToNote.uri || `${config.url}/notes/${inReplyToNote._id}`;
}
}
} else {
inReplyTo = null;
}
const user = await User.findOne({
_id: note.userId
});
const attributedTo = `${config.url}/@${user.username}`;
return {
id: `${config.url}/notes/${note._id}`,
type: 'Note',
attributedTo,
content: note.textHtml,
published: note.createdAt.toISOString(),
to: 'https://www.w3.org/ns/activitystreams#Public',
cc: `${attributedTo}/followers`,
inReplyTo,
attachment: (await promisedFiles).map(renderDocument),
tag: (note.tags || []).map(renderHashtag)
};
};