iceshrimp/src/remote/activitypub/models/note.ts

121 lines
3.6 KiB
TypeScript
Raw Normal View History

2018-04-17 15:20:25 +02:00
import * as mongo from 'mongodb';
2018-04-08 21:08:56 +02:00
import { JSDOM } from 'jsdom';
import * as debug from 'debug';
import config from '../../../config';
import Resolver from '../resolver';
import Note, { INote } from '../../../models/note';
import post from '../../../services/note/create';
import { INote as INoteActivityStreamsObject, IObject } from '../type';
2018-04-17 08:30:58 +02:00
import { resolvePerson, updatePerson } from './person';
2018-04-08 21:08:56 +02:00
import { resolveImage } from './image';
import { IRemoteUser } from '../../../models/user';
const log = debug('misskey:activitypub');
/**
* Noteをフェッチします
*
* Misskeyに対象のNoteが登録されていればそれを返します
*/
export async function fetchNote(value: string | IObject, resolver?: Resolver): Promise<INote> {
const uri = typeof value == 'string' ? value : value.id;
// URIがこのサーバーを指しているならデータベースからフェッチ
if (uri.startsWith(config.url + '/')) {
2018-04-17 15:20:25 +02:00
const id = new mongo.ObjectID(uri.split('/').pop());
return await Note.findOne({ _id: id });
2018-04-08 21:08:56 +02:00
}
//#region このサーバーに既に登録されていたらそれを返す
const exist = await Note.findOne({ uri });
if (exist) {
return exist;
}
//#endregion
return null;
}
/**
* Noteを作成します
*/
export async function createNote(value: any, resolver?: Resolver, silent = false): Promise<INote> {
if (resolver == null) resolver = new Resolver();
const object = await resolver.resolve(value) as any;
if (object == null || object.type !== 'Note') {
2018-04-19 02:17:42 +02:00
log(`invalid note: ${object}`);
return null;
2018-04-08 21:08:56 +02:00
}
const note: INoteActivityStreamsObject = object;
log(`Creating the Note: ${note.id}`);
// 投稿者をフェッチ
const actor = await resolvePerson(note.attributedTo) as IRemoteUser;
//#region Visibility
let visibility = 'public';
if (!note.to.includes('https://www.w3.org/ns/activitystreams#Public')) visibility = 'unlisted';
if (note.cc.length == 0) visibility = 'private';
// TODO
2018-04-19 02:17:42 +02:00
if (visibility != 'public') return null;
2018-04-08 21:08:56 +02:00
//#endergion
// 添付メディア
// TODO: attachmentは必ずしもImageではない
// TODO: attachmentは必ずしも配列ではない
const media = note.attachment
? await Promise.all(note.attachment.map(x => resolveImage(actor, x)))
: [];
// リプライ
const reply = note.inReplyTo ? await resolveNote(note.inReplyTo, resolver) : null;
2018-04-18 07:48:40 +02:00
// MastodonはHTMLを送り付けてくる
// そして改行は<br />で表現されている
const { window } = new JSDOM(note.content.replace(/<br \/>/g, '\n'));
2018-04-08 21:08:56 +02:00
2018-04-17 08:30:58 +02:00
// ユーザーの情報が古かったらついでに更新しておく
2018-04-17 09:06:55 +02:00
if (actor.updatedAt == null || Date.now() - actor.updatedAt.getTime() > 1000 * 60 * 60 * 24) {
2018-04-17 08:30:58 +02:00
updatePerson(note.attributedTo);
}
2018-04-08 21:08:56 +02:00
return await post(actor, {
createdAt: new Date(note.published),
media,
reply,
renote: undefined,
text: window.document.body.textContent,
viaMobile: false,
geo: undefined,
visibility,
uri: note.id
}, silent);
}
/**
* Noteを解決します
*
* Misskeyに対象のNoteが登録されていればそれを返し
* Misskeyに登録しそれを返します
*/
export async function resolveNote(value: string | IObject, resolver?: Resolver): Promise<INote> {
const uri = typeof value == 'string' ? value : value.id;
//#region このサーバーに既に登録されていたらそれを返す
const exist = await fetchNote(uri);
if (exist) {
return exist;
}
//#endregion
// リモートサーバーからフェッチしてきて登録
return await createNote(value, resolver);
}