2018-04-17 08:20:25 -05:00
|
|
|
|
import * as mongo from 'mongodb';
|
2018-04-08 14:08:56 -05:00
|
|
|
|
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 01:30:58 -05:00
|
|
|
|
import { resolvePerson, updatePerson } from './person';
|
2018-04-08 14:08:56 -05:00
|
|
|
|
import { resolveImage } from './image';
|
2018-06-18 00:28:43 -05:00
|
|
|
|
import { IRemoteUser, IUser } from '../../../models/user';
|
2018-06-20 11:21:57 -05:00
|
|
|
|
import htmlToMFM from '../../../mfm/html-to-mfm';
|
2018-11-01 18:59:40 -05:00
|
|
|
|
import Emoji from '../../../models/emoji';
|
|
|
|
|
import { ITag } from './tag';
|
|
|
|
|
import { toUnicode } from 'punycode';
|
2018-11-08 20:01:55 -06:00
|
|
|
|
import { unique, concat, setDifference } from '../../../prelude/array';
|
2018-04-08 14:08:56 -05:00
|
|
|
|
|
|
|
|
|
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 08:20:25 -05:00
|
|
|
|
const id = new mongo.ObjectID(uri.split('/').pop());
|
|
|
|
|
return await Note.findOne({ _id: id });
|
2018-04-08 14:08:56 -05: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-18 19:17:42 -05:00
|
|
|
|
log(`invalid note: ${object}`);
|
|
|
|
|
return null;
|
2018-04-08 14:08:56 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const note: INoteActivityStreamsObject = object;
|
|
|
|
|
|
|
|
|
|
log(`Creating the Note: ${note.id}`);
|
|
|
|
|
|
|
|
|
|
// 投稿者をフェッチ
|
2018-10-02 02:27:36 -05:00
|
|
|
|
const actor = await resolvePerson(note.attributedTo, null, resolver) as IRemoteUser;
|
2018-04-08 14:08:56 -05:00
|
|
|
|
|
2018-04-19 04:54:34 -05:00
|
|
|
|
// 投稿者が凍結されていたらスキップ
|
|
|
|
|
if (actor.isSuspended) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-08 14:08:56 -05:00
|
|
|
|
//#region Visibility
|
|
|
|
|
let visibility = 'public';
|
2018-06-18 00:28:43 -05:00
|
|
|
|
let visibleUsers: IUser[] = [];
|
2018-04-28 14:44:58 -05:00
|
|
|
|
if (!note.to.includes('https://www.w3.org/ns/activitystreams#Public')) {
|
|
|
|
|
if (note.cc.includes('https://www.w3.org/ns/activitystreams#Public')) {
|
|
|
|
|
visibility = 'home';
|
2018-08-12 04:56:29 -05:00
|
|
|
|
} else if (note.to.includes(`${actor.uri}/followers`)) { // TODO: person.followerと照合するべき?
|
|
|
|
|
visibility = 'followers';
|
2018-04-28 14:44:58 -05:00
|
|
|
|
} else {
|
|
|
|
|
visibility = 'specified';
|
2018-10-02 02:27:36 -05:00
|
|
|
|
visibleUsers = await Promise.all(note.to.map(uri => resolvePerson(uri, null, resolver)));
|
2018-04-28 14:44:58 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-08 14:08:56 -05:00
|
|
|
|
//#endergion
|
|
|
|
|
|
2018-11-08 17:44:19 -06:00
|
|
|
|
const apMentions = await extractMentionedUsers(actor, note.to, note.cc, resolver);
|
|
|
|
|
|
2018-09-05 05:32:46 -05:00
|
|
|
|
// 添付ファイル
|
2018-04-08 14:08:56 -05:00
|
|
|
|
// TODO: attachmentは必ずしもImageではない
|
|
|
|
|
// TODO: attachmentは必ずしも配列ではない
|
2018-08-19 04:08:29 -05:00
|
|
|
|
// Noteがsensitiveなら添付もsensitiveにする
|
2018-09-05 05:32:46 -05:00
|
|
|
|
const files = note.attachment
|
2018-08-19 04:08:29 -05:00
|
|
|
|
.map(attach => attach.sensitive = note.sensitive)
|
2018-04-08 14:08:56 -05:00
|
|
|
|
? await Promise.all(note.attachment.map(x => resolveImage(actor, x)))
|
|
|
|
|
: [];
|
|
|
|
|
|
|
|
|
|
// リプライ
|
|
|
|
|
const reply = note.inReplyTo ? await resolveNote(note.inReplyTo, resolver) : null;
|
|
|
|
|
|
2018-05-06 12:54:14 -05:00
|
|
|
|
// テキストのパース
|
2018-09-09 12:47:34 -05:00
|
|
|
|
const text = note._misskey_content ? note._misskey_content : htmlToMFM(note.content);
|
2018-04-08 14:08:56 -05:00
|
|
|
|
|
2018-11-01 18:59:40 -05:00
|
|
|
|
await extractEmojis(note.tag, actor.host).catch(e => {
|
|
|
|
|
console.log(`extractEmojis: ${e}`);
|
|
|
|
|
});
|
|
|
|
|
|
2018-04-17 01:30:58 -05:00
|
|
|
|
// ユーザーの情報が古かったらついでに更新しておく
|
2018-04-17 02:06:55 -05:00
|
|
|
|
if (actor.updatedAt == null || Date.now() - actor.updatedAt.getTime() > 1000 * 60 * 60 * 24) {
|
2018-04-17 01:30:58 -05:00
|
|
|
|
updatePerson(note.attributedTo);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-08 14:08:56 -05:00
|
|
|
|
return await post(actor, {
|
|
|
|
|
createdAt: new Date(note.published),
|
2018-09-05 05:32:46 -05:00
|
|
|
|
files: files,
|
2018-04-08 14:08:56 -05:00
|
|
|
|
reply,
|
|
|
|
|
renote: undefined,
|
2018-06-17 00:11:31 -05:00
|
|
|
|
cw: note.summary,
|
2018-05-07 03:15:20 -05:00
|
|
|
|
text: text,
|
2018-04-08 14:08:56 -05:00
|
|
|
|
viaMobile: false,
|
|
|
|
|
geo: undefined,
|
|
|
|
|
visibility,
|
2018-04-28 14:44:58 -05:00
|
|
|
|
visibleUsers,
|
2018-11-08 17:44:19 -06:00
|
|
|
|
apMentions,
|
2018-04-08 14:08:56 -05:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
// リモートサーバーからフェッチしてきて登録
|
2018-08-24 16:50:35 -05:00
|
|
|
|
// ここでuriの代わりに添付されてきたNote Objectが指定されていると、サーバーフェッチを経ずにノートが生成されるが
|
|
|
|
|
// 添付されてきたNote Objectは偽装されている可能性があるため、常にuriを指定してサーバーフェッチを行う。
|
|
|
|
|
return await createNote(uri, resolver);
|
2018-04-08 14:08:56 -05:00
|
|
|
|
}
|
2018-11-01 18:59:40 -05:00
|
|
|
|
|
|
|
|
|
async function extractEmojis(tags: ITag[], host_: string) {
|
|
|
|
|
const host = toUnicode(host_.toLowerCase());
|
|
|
|
|
|
|
|
|
|
if (!tags) return [];
|
|
|
|
|
|
|
|
|
|
const eomjiTags = tags.filter(tag => tag.type === 'Emoji' && tag.icon && tag.icon.url);
|
|
|
|
|
|
|
|
|
|
return await Promise.all(
|
|
|
|
|
eomjiTags.map(async tag => {
|
|
|
|
|
const name = tag.name.replace(/^:/, '').replace(/:$/, '');
|
|
|
|
|
|
|
|
|
|
const exists = await Emoji.findOne({
|
|
|
|
|
host,
|
|
|
|
|
name
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (exists) {
|
|
|
|
|
return exists;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log(`register emoji host=${host}, name=${name}`);
|
|
|
|
|
|
|
|
|
|
return await Emoji.insert({
|
|
|
|
|
host,
|
|
|
|
|
name,
|
|
|
|
|
url: tag.icon.url,
|
|
|
|
|
aliases: [],
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
}
|
2018-11-08 17:44:19 -06:00
|
|
|
|
|
2018-11-08 20:01:55 -06:00
|
|
|
|
async function extractMentionedUsers(actor: IRemoteUser, to: string[], cc: string[], resolver: Resolver) {
|
|
|
|
|
const ignoreUris = ['https://www.w3.org/ns/activitystreams#Public', `${actor.uri}/followers`];
|
|
|
|
|
const uris = setDifference(unique(concat([to || [], cc || []])), ignoreUris);
|
2018-11-08 17:44:19 -06:00
|
|
|
|
|
|
|
|
|
const users = await Promise.all(
|
|
|
|
|
uris.map(async uri => await resolvePerson(uri, null, resolver).catch(() => null))
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return users.filter(x => x != null);
|
|
|
|
|
}
|