2018-04-17 15:20:25 +02:00
|
|
|
|
import * as mongo from 'mongodb';
|
2019-02-09 05:01:21 +01:00
|
|
|
|
import * as promiseLimit from 'promise-limit';
|
2018-04-08 21:08:56 +02:00
|
|
|
|
|
|
|
|
|
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';
|
2018-06-18 07:28:43 +02:00
|
|
|
|
import { IRemoteUser, IUser } from '../../../models/user';
|
2019-01-30 08:56:27 +01:00
|
|
|
|
import { fromHtml } from '../../../mfm/fromHtml';
|
2018-12-02 10:05:33 +01:00
|
|
|
|
import Emoji, { IEmoji } from '../../../models/emoji';
|
2019-01-31 12:42:45 +01:00
|
|
|
|
import { ITag, extractHashtags } from './tag';
|
2018-11-02 00:59:40 +01:00
|
|
|
|
import { toUnicode } from 'punycode';
|
2018-11-09 06:14:53 +01:00
|
|
|
|
import { unique, concat, difference } from '../../../prelude/array';
|
2019-01-21 05:27:19 +01:00
|
|
|
|
import { extractPollFromQuestion } from './question';
|
|
|
|
|
import vote from '../../../services/note/polls/vote';
|
2019-02-03 08:45:13 +01:00
|
|
|
|
import { apLogger } from '../logger';
|
2019-02-09 05:01:21 +01:00
|
|
|
|
import { IDriveFile } from '../../../models/drive-file';
|
2018-04-08 21:08:56 +02:00
|
|
|
|
|
2019-02-03 08:45:13 +01:00
|
|
|
|
const logger = apLogger;
|
2018-04-08 21:08:56 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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();
|
|
|
|
|
|
2019-03-06 14:55:47 +01:00
|
|
|
|
const object: any = await resolver.resolve(value);
|
2018-04-08 21:08:56 +02:00
|
|
|
|
|
2019-03-06 14:55:47 +01:00
|
|
|
|
if (!object || !['Note', 'Question'].includes(object.type)) {
|
2019-03-04 06:02:42 +01:00
|
|
|
|
logger.error(`invalid note: ${value}`, {
|
|
|
|
|
resolver: {
|
|
|
|
|
history: resolver.getHistory()
|
|
|
|
|
},
|
|
|
|
|
value: value,
|
|
|
|
|
object: object
|
|
|
|
|
});
|
2018-04-19 02:17:42 +02:00
|
|
|
|
return null;
|
2018-04-08 21:08:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const note: INoteActivityStreamsObject = object;
|
|
|
|
|
|
2019-03-06 14:55:47 +01:00
|
|
|
|
logger.debug(`Note fetched: ${JSON.stringify(note, null, 2)}`);
|
|
|
|
|
|
2019-02-03 08:45:13 +01:00
|
|
|
|
logger.info(`Creating the Note: ${note.id}`);
|
2018-04-08 21:08:56 +02:00
|
|
|
|
|
|
|
|
|
// 投稿者をフェッチ
|
2018-10-02 09:27:36 +02:00
|
|
|
|
const actor = await resolvePerson(note.attributedTo, null, resolver) as IRemoteUser;
|
2018-04-08 21:08:56 +02:00
|
|
|
|
|
2018-04-19 11:54:34 +02:00
|
|
|
|
// 投稿者が凍結されていたらスキップ
|
|
|
|
|
if (actor.isSuspended) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-08 21:08:56 +02:00
|
|
|
|
//#region Visibility
|
2019-03-06 14:55:47 +01:00
|
|
|
|
note.to = note.to == null ? [] : typeof note.to == 'string' ? [note.to] : note.to;
|
|
|
|
|
note.cc = note.cc == null ? [] : typeof note.cc == 'string' ? [note.cc] : note.cc;
|
|
|
|
|
|
2018-04-08 21:08:56 +02:00
|
|
|
|
let visibility = 'public';
|
2018-06-18 07:28:43 +02:00
|
|
|
|
let visibleUsers: IUser[] = [];
|
2018-04-28 21:44:58 +02: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 11:56:29 +02:00
|
|
|
|
} else if (note.to.includes(`${actor.uri}/followers`)) { // TODO: person.followerと照合するべき?
|
|
|
|
|
visibility = 'followers';
|
2018-04-28 21:44:58 +02:00
|
|
|
|
} else {
|
|
|
|
|
visibility = 'specified';
|
2018-10-02 09:27:36 +02:00
|
|
|
|
visibleUsers = await Promise.all(note.to.map(uri => resolvePerson(uri, null, resolver)));
|
2018-04-28 21:44:58 +02:00
|
|
|
|
}
|
2019-03-06 14:55:47 +01:00
|
|
|
|
}
|
2018-04-08 21:08:56 +02:00
|
|
|
|
//#endergion
|
|
|
|
|
|
2018-11-09 00:44:19 +01:00
|
|
|
|
const apMentions = await extractMentionedUsers(actor, note.to, note.cc, resolver);
|
|
|
|
|
|
2018-12-02 10:05:33 +01:00
|
|
|
|
const apHashtags = await extractHashtags(note.tag);
|
|
|
|
|
|
2018-09-05 12:32:46 +02:00
|
|
|
|
// 添付ファイル
|
2018-04-08 21:08:56 +02:00
|
|
|
|
// TODO: attachmentは必ずしもImageではない
|
|
|
|
|
// TODO: attachmentは必ずしも配列ではない
|
2018-08-19 11:08:29 +02:00
|
|
|
|
// Noteがsensitiveなら添付もsensitiveにする
|
2019-02-09 05:01:21 +01:00
|
|
|
|
const limit = promiseLimit(2);
|
2019-03-06 14:55:47 +01:00
|
|
|
|
|
|
|
|
|
note.attachment = Array.isArray(note.attachment) ? note.attachment : note.attachment ? [note.attachment] : [];
|
2018-09-05 12:32:46 +02:00
|
|
|
|
const files = note.attachment
|
2018-08-19 11:08:29 +02:00
|
|
|
|
.map(attach => attach.sensitive = note.sensitive)
|
2019-02-09 05:01:21 +01:00
|
|
|
|
? await Promise.all(note.attachment.map(x => limit(() => resolveImage(actor, x)) as Promise<IDriveFile>))
|
2018-04-08 21:08:56 +02:00
|
|
|
|
: [];
|
|
|
|
|
|
|
|
|
|
// リプライ
|
|
|
|
|
const reply = note.inReplyTo ? await resolveNote(note.inReplyTo, resolver) : null;
|
|
|
|
|
|
2018-11-22 18:10:07 +01:00
|
|
|
|
// 引用
|
|
|
|
|
let quote: INote;
|
|
|
|
|
|
|
|
|
|
if (note._misskey_quote && typeof note._misskey_quote == 'string') {
|
|
|
|
|
quote = await resolveNote(note._misskey_quote).catch(() => null);
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-30 23:15:10 +01:00
|
|
|
|
const cw = note.summary === '' ? null : note.summary;
|
|
|
|
|
|
2018-05-06 19:54:14 +02:00
|
|
|
|
// テキストのパース
|
2019-03-06 14:55:47 +01:00
|
|
|
|
const text = note._misskey_content || fromHtml(note.content);
|
2018-04-08 21:08:56 +02:00
|
|
|
|
|
2019-01-21 05:27:19 +01:00
|
|
|
|
// vote
|
2019-03-06 14:55:47 +01:00
|
|
|
|
if (reply && reply.poll) {
|
|
|
|
|
const tryCreateVote = async (name: string, index: number): Promise<null> => {
|
|
|
|
|
if (reply.poll.expiresAt && Date.now() > new Date(reply.poll.expiresAt).getTime()) {
|
|
|
|
|
logger.warn(`vote to expired poll from AP: actor=${actor.username}@${actor.host}, note=${note.id}, choice=${name}`);
|
|
|
|
|
} else if (index >= 0) {
|
|
|
|
|
logger.info(`vote from AP: actor=${actor.username}@${actor.host}, note=${note.id}, choice=${name}`);
|
|
|
|
|
await vote(actor, reply, index);
|
|
|
|
|
}
|
2019-01-21 05:27:19 +01:00
|
|
|
|
return null;
|
2019-03-06 14:55:47 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (note.name) {
|
|
|
|
|
return await tryCreateVote(note.name, reply.poll.choices.findIndex(x => x.text === note.name));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 後方互換性のため
|
|
|
|
|
if (text) {
|
|
|
|
|
const m = text.match(/(\d+)$/);
|
|
|
|
|
|
|
|
|
|
if (m) {
|
|
|
|
|
return await tryCreateVote(m[0], Number(m[1]));
|
|
|
|
|
}
|
2019-01-21 05:27:19 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-02 10:05:33 +01:00
|
|
|
|
const emojis = await extractEmojis(note.tag, actor.host).catch(e => {
|
2019-02-03 08:45:13 +01:00
|
|
|
|
logger.info(`extractEmojis: ${e}`);
|
2018-12-02 10:05:33 +01:00
|
|
|
|
return [] as IEmoji[];
|
2018-11-02 00:59:40 +01:00
|
|
|
|
});
|
|
|
|
|
|
2018-12-02 10:05:33 +01:00
|
|
|
|
const apEmojis = emojis.map(emoji => emoji.name);
|
|
|
|
|
|
2019-01-21 05:27:19 +01:00
|
|
|
|
const questionUri = note._misskey_question;
|
2019-03-06 14:55:47 +01:00
|
|
|
|
const poll = await extractPollFromQuestion(note._misskey_question || note).catch(() => undefined);
|
2019-01-21 05:27:19 +01:00
|
|
|
|
|
2018-04-17 08:30:58 +02:00
|
|
|
|
// ユーザーの情報が古かったらついでに更新しておく
|
2018-11-23 00:01:14 +01:00
|
|
|
|
if (actor.lastFetchedAt == null || Date.now() - actor.lastFetchedAt.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),
|
2019-03-06 14:55:47 +01:00
|
|
|
|
files,
|
2018-04-08 21:08:56 +02:00
|
|
|
|
reply,
|
2018-11-22 18:10:07 +01:00
|
|
|
|
renote: quote,
|
2019-03-06 14:55:47 +01:00
|
|
|
|
cw,
|
|
|
|
|
text,
|
2018-04-08 21:08:56 +02:00
|
|
|
|
viaMobile: false,
|
2018-11-15 21:47:29 +01:00
|
|
|
|
localOnly: false,
|
2018-04-08 21:08:56 +02:00
|
|
|
|
geo: undefined,
|
|
|
|
|
visibility,
|
2018-04-28 21:44:58 +02:00
|
|
|
|
visibleUsers,
|
2018-11-09 00:44:19 +01:00
|
|
|
|
apMentions,
|
2018-12-02 10:05:33 +01:00
|
|
|
|
apHashtags,
|
|
|
|
|
apEmojis,
|
2019-01-21 05:27:19 +01:00
|
|
|
|
questionUri,
|
|
|
|
|
poll,
|
2018-04-08 21:08:56 +02: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 23:50:35 +02:00
|
|
|
|
// ここでuriの代わりに添付されてきたNote Objectが指定されていると、サーバーフェッチを経ずにノートが生成されるが
|
|
|
|
|
// 添付されてきたNote Objectは偽装されている可能性があるため、常にuriを指定してサーバーフェッチを行う。
|
|
|
|
|
return await createNote(uri, resolver);
|
2018-04-08 21:08:56 +02:00
|
|
|
|
}
|
2018-11-02 00:59:40 +01:00
|
|
|
|
|
2018-12-06 02:02:04 +01:00
|
|
|
|
export async function extractEmojis(tags: ITag[], host_: string) {
|
2018-11-02 00:59:40 +01:00
|
|
|
|
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) {
|
2018-12-19 13:19:43 +01:00
|
|
|
|
if ((tag.updated != null && exists.updatedAt == null)
|
|
|
|
|
|| (tag.id != null && exists.uri == null)
|
|
|
|
|
|| (tag.updated != null && exists.updatedAt != null && new Date(tag.updated) > exists.updatedAt)) {
|
|
|
|
|
return await Emoji.findOneAndUpdate({
|
|
|
|
|
host,
|
|
|
|
|
name,
|
|
|
|
|
}, {
|
|
|
|
|
$set: {
|
|
|
|
|
uri: tag.id,
|
|
|
|
|
url: tag.icon.url,
|
|
|
|
|
updatedAt: new Date(tag.updated),
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2018-11-02 00:59:40 +01:00
|
|
|
|
return exists;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-03 08:45:13 +01:00
|
|
|
|
logger.info(`register emoji host=${host}, name=${name}`);
|
2018-11-02 00:59:40 +01:00
|
|
|
|
|
|
|
|
|
return await Emoji.insert({
|
|
|
|
|
host,
|
|
|
|
|
name,
|
2018-12-19 13:19:43 +01:00
|
|
|
|
uri: tag.id,
|
2018-11-02 00:59:40 +01:00
|
|
|
|
url: tag.icon.url,
|
2018-12-19 13:19:43 +01:00
|
|
|
|
updatedAt: tag.updated ? new Date(tag.updated) : undefined,
|
|
|
|
|
aliases: []
|
2018-11-02 00:59:40 +01:00
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
}
|
2018-11-09 00:44:19 +01:00
|
|
|
|
|
2018-11-09 03:01:55 +01:00
|
|
|
|
async function extractMentionedUsers(actor: IRemoteUser, to: string[], cc: string[], resolver: Resolver) {
|
|
|
|
|
const ignoreUris = ['https://www.w3.org/ns/activitystreams#Public', `${actor.uri}/followers`];
|
2018-11-09 06:14:53 +01:00
|
|
|
|
const uris = difference(unique(concat([to || [], cc || []])), ignoreUris);
|
2018-11-09 00:44:19 +01:00
|
|
|
|
|
2019-02-09 05:01:21 +01:00
|
|
|
|
const limit = promiseLimit(2);
|
2018-11-09 00:44:19 +01:00
|
|
|
|
const users = await Promise.all(
|
2019-02-09 05:01:21 +01:00
|
|
|
|
uris.map(uri => limit(() => resolvePerson(uri, null, resolver).catch(() => null)) as Promise<IUser>)
|
2018-11-09 00:44:19 +01:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return users.filter(x => x != null);
|
|
|
|
|
}
|