2019-02-09 04:01:21 +00:00
|
|
|
|
import * as promiseLimit from 'promise-limit';
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
|
|
import config from '../../../config';
|
|
|
|
|
import Resolver from '../resolver';
|
|
|
|
|
import post from '../../../services/note/create';
|
2018-04-17 06:30:58 +00:00
|
|
|
|
import { resolvePerson, updatePerson } from './person';
|
2018-04-08 19:08:56 +00:00
|
|
|
|
import { resolveImage } from './image';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
import { IRemoteUser, User } from '../../../models/entities/user';
|
2019-01-30 07:56:27 +00:00
|
|
|
|
import { fromHtml } from '../../../mfm/fromHtml';
|
2019-01-31 11:42:45 +00:00
|
|
|
|
import { ITag, extractHashtags } from './tag';
|
2018-11-09 05:14:53 +00:00
|
|
|
|
import { unique, concat, difference } from '../../../prelude/array';
|
2019-01-21 04:27:19 +00:00
|
|
|
|
import { extractPollFromQuestion } from './question';
|
|
|
|
|
import vote from '../../../services/note/polls/vote';
|
2019-02-03 07:45:13 +00:00
|
|
|
|
import { apLogger } from '../logger';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
import { DriveFile } from '../../../models/entities/drive-file';
|
2019-03-07 12:19:32 +00:00
|
|
|
|
import { deliverQuestionUpdate } from '../../../services/note/polls/update';
|
2019-04-09 15:59:41 +00:00
|
|
|
|
import { extractDbHost, toPuny } from '../../../misc/convert-host';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
import { Notes, Emojis, Polls } from '../../../models';
|
|
|
|
|
import { Note } from '../../../models/entities/note';
|
|
|
|
|
import { IObject, INote } from '../type';
|
|
|
|
|
import { Emoji } from '../../../models/entities/emoji';
|
|
|
|
|
import { genId } from '../../../misc/gen-id';
|
|
|
|
|
import fetchMeta from '../../../misc/fetch-meta';
|
2019-04-12 16:43:22 +00:00
|
|
|
|
import { ensure } from '../../../prelude/ensure';
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
2019-02-03 07:45:13 +00:00
|
|
|
|
const logger = apLogger;
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Noteをフェッチします。
|
|
|
|
|
*
|
|
|
|
|
* Misskeyに対象のNoteが登録されていればそれを返します。
|
|
|
|
|
*/
|
2019-04-12 16:43:22 +00:00
|
|
|
|
export async function fetchNote(value: string | IObject, resolver?: Resolver): Promise<Note | null> {
|
2018-04-08 19:08:56 +00:00
|
|
|
|
const uri = typeof value == 'string' ? value : value.id;
|
2019-04-12 16:43:22 +00:00
|
|
|
|
if (uri == null) throw 'missing uri';
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
|
|
// URIがこのサーバーを指しているならデータベースからフェッチ
|
|
|
|
|
if (uri.startsWith(config.url + '/')) {
|
2019-04-07 12:50:36 +00:00
|
|
|
|
const id = uri.split('/').pop();
|
2019-04-12 16:43:22 +00:00
|
|
|
|
return await Notes.findOne(id).then(x => x || null);
|
2018-04-08 19:08:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//#region このサーバーに既に登録されていたらそれを返す
|
2019-04-07 12:50:36 +00:00
|
|
|
|
const exist = await Notes.findOne({ uri });
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
|
|
if (exist) {
|
|
|
|
|
return exist;
|
|
|
|
|
}
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Noteを作成します。
|
|
|
|
|
*/
|
2019-04-12 16:43:22 +00:00
|
|
|
|
export async function createNote(value: any, resolver?: Resolver, silent = false): Promise<Note | null> {
|
2018-04-08 19:08:56 +00:00
|
|
|
|
if (resolver == null) resolver = new Resolver();
|
|
|
|
|
|
2019-03-06 13:55:47 +00:00
|
|
|
|
const object: any = await resolver.resolve(value);
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
2019-03-14 15:23:24 +00:00
|
|
|
|
if (!object || !['Note', 'Question', 'Article'].includes(object.type)) {
|
2019-03-04 05:02:42 +00:00
|
|
|
|
logger.error(`invalid note: ${value}`, {
|
|
|
|
|
resolver: {
|
|
|
|
|
history: resolver.getHistory()
|
|
|
|
|
},
|
|
|
|
|
value: value,
|
|
|
|
|
object: object
|
|
|
|
|
});
|
2019-04-12 16:43:22 +00:00
|
|
|
|
throw 'invalid note';
|
2018-04-08 19:08:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
|
const note: INote = object;
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
2019-03-06 13:55:47 +00:00
|
|
|
|
logger.debug(`Note fetched: ${JSON.stringify(note, null, 2)}`);
|
|
|
|
|
|
2019-02-03 07:45:13 +00:00
|
|
|
|
logger.info(`Creating the Note: ${note.id}`);
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
|
|
// 投稿者をフェッチ
|
2019-04-12 16:43:22 +00:00
|
|
|
|
const actor = await resolvePerson(note.attributedTo, resolver) as IRemoteUser;
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
2018-04-19 09:54:34 +00:00
|
|
|
|
// 投稿者が凍結されていたらスキップ
|
|
|
|
|
if (actor.isSuspended) {
|
2019-04-12 16:43:22 +00:00
|
|
|
|
throw 'actor has been suspended';
|
2018-04-19 09:54:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-08 19:08:56 +00:00
|
|
|
|
//#region Visibility
|
2019-03-06 13:55:47 +00: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 19:08:56 +00:00
|
|
|
|
let visibility = 'public';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
let visibleUsers: User[] = [];
|
2018-04-28 19:44:58 +00: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 09:56:29 +00:00
|
|
|
|
} else if (note.to.includes(`${actor.uri}/followers`)) { // TODO: person.followerと照合するべき?
|
|
|
|
|
visibility = 'followers';
|
2018-04-28 19:44:58 +00:00
|
|
|
|
} else {
|
|
|
|
|
visibility = 'specified';
|
2019-04-12 16:43:22 +00:00
|
|
|
|
visibleUsers = await Promise.all(note.to.map(uri => resolvePerson(uri, resolver)));
|
2018-04-28 19:44:58 +00:00
|
|
|
|
}
|
2019-04-12 16:43:22 +00:00
|
|
|
|
}
|
2018-04-08 19:08:56 +00:00
|
|
|
|
//#endergion
|
|
|
|
|
|
2018-11-08 23:44:19 +00:00
|
|
|
|
const apMentions = await extractMentionedUsers(actor, note.to, note.cc, resolver);
|
|
|
|
|
|
2018-12-02 09:05:33 +00:00
|
|
|
|
const apHashtags = await extractHashtags(note.tag);
|
|
|
|
|
|
2018-09-05 10:32:46 +00:00
|
|
|
|
// 添付ファイル
|
2018-04-08 19:08:56 +00:00
|
|
|
|
// TODO: attachmentは必ずしもImageではない
|
|
|
|
|
// TODO: attachmentは必ずしも配列ではない
|
2018-08-19 09:08:29 +00:00
|
|
|
|
// Noteがsensitiveなら添付もsensitiveにする
|
2019-02-09 04:01:21 +00:00
|
|
|
|
const limit = promiseLimit(2);
|
2019-03-06 13:55:47 +00:00
|
|
|
|
|
|
|
|
|
note.attachment = Array.isArray(note.attachment) ? note.attachment : note.attachment ? [note.attachment] : [];
|
2018-09-05 10:32:46 +00:00
|
|
|
|
const files = note.attachment
|
2018-08-19 09:08:29 +00:00
|
|
|
|
.map(attach => attach.sensitive = note.sensitive)
|
2019-04-07 12:50:36 +00:00
|
|
|
|
? (await Promise.all(note.attachment.map(x => limit(() => resolveImage(actor, x)) as Promise<DriveFile>)))
|
2019-03-10 13:27:25 +00:00
|
|
|
|
.filter(image => image != null)
|
2018-04-08 19:08:56 +00:00
|
|
|
|
: [];
|
|
|
|
|
|
|
|
|
|
// リプライ
|
2019-04-12 16:43:22 +00:00
|
|
|
|
const reply: Note | undefined | null = note.inReplyTo
|
2019-03-10 13:27:25 +00:00
|
|
|
|
? await resolveNote(note.inReplyTo, resolver).catch(e => {
|
|
|
|
|
// 4xxの場合はリプライしてないことにする
|
|
|
|
|
if (e.statusCode >= 400 && e.statusCode < 500) {
|
|
|
|
|
logger.warn(`Ignored inReplyTo ${note.inReplyTo} - ${e.statusCode} `);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
logger.warn(`Error in inReplyTo ${note.inReplyTo} - ${e.statusCode || e}`);
|
|
|
|
|
throw e;
|
|
|
|
|
})
|
|
|
|
|
: null;
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
2018-11-22 17:10:07 +00:00
|
|
|
|
// 引用
|
2019-04-12 16:43:22 +00:00
|
|
|
|
let quote: Note | undefined | null;
|
2018-11-22 17:10:07 +00:00
|
|
|
|
|
|
|
|
|
if (note._misskey_quote && typeof note._misskey_quote == 'string') {
|
2019-03-13 02:21:16 +00:00
|
|
|
|
quote = await resolveNote(note._misskey_quote).catch(e => {
|
|
|
|
|
// 4xxの場合は引用してないことにする
|
|
|
|
|
if (e.statusCode >= 400 && e.statusCode < 500) {
|
|
|
|
|
logger.warn(`Ignored quote target ${note.inReplyTo} - ${e.statusCode} `);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
logger.warn(`Error in quote target ${note.inReplyTo} - ${e.statusCode || e}`);
|
|
|
|
|
throw e;
|
|
|
|
|
});
|
2018-11-22 17:10:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-30 22:15:10 +00:00
|
|
|
|
const cw = note.summary === '' ? null : note.summary;
|
|
|
|
|
|
2018-05-06 17:54:14 +00:00
|
|
|
|
// テキストのパース
|
2019-03-06 13:55:47 +00:00
|
|
|
|
const text = note._misskey_content || fromHtml(note.content);
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
2019-01-21 04:27:19 +00:00
|
|
|
|
// vote
|
2019-04-07 12:50:36 +00:00
|
|
|
|
if (reply && reply.hasPoll) {
|
2019-04-12 16:43:22 +00:00
|
|
|
|
const poll = await Polls.findOne({ noteId: reply.id }).then(ensure);
|
|
|
|
|
|
2019-03-06 13:55:47 +00:00
|
|
|
|
const tryCreateVote = async (name: string, index: number): Promise<null> => {
|
2019-04-07 12:50:36 +00:00
|
|
|
|
if (poll.expiresAt && Date.now() > new Date(poll.expiresAt).getTime()) {
|
2019-03-06 13:55:47 +00:00
|
|
|
|
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-03-07 12:19:32 +00:00
|
|
|
|
|
|
|
|
|
// リモートフォロワーにUpdate配信
|
2019-04-07 12:50:36 +00:00
|
|
|
|
deliverQuestionUpdate(reply.id);
|
2019-03-06 13:55:47 +00:00
|
|
|
|
}
|
2019-01-21 04:27:19 +00:00
|
|
|
|
return null;
|
2019-03-06 13:55:47 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (note.name) {
|
2019-04-07 12:50:36 +00:00
|
|
|
|
return await tryCreateVote(note.name, poll.choices.findIndex(x => x === note.name));
|
2019-03-06 13:55:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 後方互換性のため
|
|
|
|
|
if (text) {
|
|
|
|
|
const m = text.match(/(\d+)$/);
|
|
|
|
|
|
|
|
|
|
if (m) {
|
|
|
|
|
return await tryCreateVote(m[0], Number(m[1]));
|
|
|
|
|
}
|
2019-01-21 04:27:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
|
const emojis = await extractEmojis(note.tag || [], actor.host).catch(e => {
|
2019-02-03 07:45:13 +00:00
|
|
|
|
logger.info(`extractEmojis: ${e}`);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
return [] as Emoji[];
|
2018-11-01 23:59:40 +00:00
|
|
|
|
});
|
|
|
|
|
|
2018-12-02 09:05:33 +00:00
|
|
|
|
const apEmojis = emojis.map(emoji => emoji.name);
|
|
|
|
|
|
2019-01-21 04:27:19 +00:00
|
|
|
|
const questionUri = note._misskey_question;
|
2019-03-06 13:55:47 +00:00
|
|
|
|
const poll = await extractPollFromQuestion(note._misskey_question || note).catch(() => undefined);
|
2019-01-21 04:27:19 +00:00
|
|
|
|
|
2018-04-17 06:30:58 +00:00
|
|
|
|
// ユーザーの情報が古かったらついでに更新しておく
|
2018-11-22 23:01:14 +00:00
|
|
|
|
if (actor.lastFetchedAt == null || Date.now() - actor.lastFetchedAt.getTime() > 1000 * 60 * 60 * 24) {
|
2018-04-17 06:30:58 +00:00
|
|
|
|
updatePerson(note.attributedTo);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-08 19:08:56 +00:00
|
|
|
|
return await post(actor, {
|
2019-04-12 16:43:22 +00:00
|
|
|
|
createdAt: note.published ? new Date(note.published) : null,
|
2019-03-06 13:55:47 +00:00
|
|
|
|
files,
|
2018-04-08 19:08:56 +00:00
|
|
|
|
reply,
|
2018-11-22 17:10:07 +00:00
|
|
|
|
renote: quote,
|
2019-03-14 15:23:24 +00:00
|
|
|
|
name: note.name,
|
2019-03-06 13:55:47 +00:00
|
|
|
|
cw,
|
|
|
|
|
text,
|
2018-04-08 19:08:56 +00:00
|
|
|
|
viaMobile: false,
|
2018-11-15 20:47:29 +00:00
|
|
|
|
localOnly: false,
|
2018-04-08 19:08:56 +00:00
|
|
|
|
geo: undefined,
|
|
|
|
|
visibility,
|
2018-04-28 19:44:58 +00:00
|
|
|
|
visibleUsers,
|
2018-11-08 23:44:19 +00:00
|
|
|
|
apMentions,
|
2018-12-02 09:05:33 +00:00
|
|
|
|
apHashtags,
|
|
|
|
|
apEmojis,
|
2019-01-21 04:27:19 +00:00
|
|
|
|
questionUri,
|
|
|
|
|
poll,
|
2018-04-08 19:08:56 +00:00
|
|
|
|
uri: note.id
|
|
|
|
|
}, silent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Noteを解決します。
|
|
|
|
|
*
|
|
|
|
|
* Misskeyに対象のNoteが登録されていればそれを返し、そうでなければ
|
|
|
|
|
* リモートサーバーからフェッチしてMisskeyに登録しそれを返します。
|
|
|
|
|
*/
|
2019-04-12 16:43:22 +00:00
|
|
|
|
export async function resolveNote(value: string | IObject, resolver?: Resolver): Promise<Note | null> {
|
2018-04-08 19:08:56 +00:00
|
|
|
|
const uri = typeof value == 'string' ? value : value.id;
|
2019-04-12 16:43:22 +00:00
|
|
|
|
if (uri == null) throw 'missing uri';
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
2019-03-13 02:21:16 +00:00
|
|
|
|
// ブロックしてたら中断
|
|
|
|
|
// TODO: いちいちデータベースにアクセスするのはコスト高そうなのでどっかにキャッシュしておく
|
2019-04-07 12:50:36 +00:00
|
|
|
|
const meta = await fetchMeta();
|
|
|
|
|
if (meta.blockedHosts.includes(extractDbHost(uri))) throw { statusCode: 451 };
|
2019-03-13 02:21:16 +00:00
|
|
|
|
|
2018-04-08 19:08:56 +00:00
|
|
|
|
//#region このサーバーに既に登録されていたらそれを返す
|
|
|
|
|
const exist = await fetchNote(uri);
|
|
|
|
|
|
|
|
|
|
if (exist) {
|
|
|
|
|
return exist;
|
|
|
|
|
}
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
// リモートサーバーからフェッチしてきて登録
|
2018-08-24 21:50:35 +00:00
|
|
|
|
// ここでuriの代わりに添付されてきたNote Objectが指定されていると、サーバーフェッチを経ずにノートが生成されるが
|
|
|
|
|
// 添付されてきたNote Objectは偽装されている可能性があるため、常にuriを指定してサーバーフェッチを行う。
|
2019-04-12 04:07:56 +00:00
|
|
|
|
return await createNote(uri, resolver).catch(e => {
|
|
|
|
|
if (e.name === 'duplicated') {
|
2019-04-12 16:43:22 +00:00
|
|
|
|
return fetchNote(uri).then(note => {
|
|
|
|
|
if (note == null) {
|
|
|
|
|
throw 'something happened';
|
|
|
|
|
} else {
|
|
|
|
|
return note;
|
|
|
|
|
}
|
|
|
|
|
});
|
2019-04-12 04:07:56 +00:00
|
|
|
|
} else {
|
|
|
|
|
throw e;
|
|
|
|
|
}
|
|
|
|
|
});
|
2018-04-08 19:08:56 +00:00
|
|
|
|
}
|
2018-11-01 23:59:40 +00:00
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
|
export async function extractEmojis(tags: ITag[], host: string): Promise<Emoji[]> {
|
2019-04-09 15:59:41 +00:00
|
|
|
|
host = toPuny(host);
|
2018-11-01 23:59:40 +00:00
|
|
|
|
|
|
|
|
|
if (!tags) return [];
|
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
|
const eomjiTags = tags.filter(tag => tag.type === 'Emoji' && tag.icon && tag.icon.url && tag.name);
|
2018-11-01 23:59:40 +00:00
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
|
return await Promise.all(eomjiTags.map(async tag => {
|
|
|
|
|
const name = tag.name!.replace(/^:/, '').replace(/:$/, '');
|
2018-11-01 23:59:40 +00:00
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
|
const exists = await Emojis.findOne({
|
|
|
|
|
host,
|
|
|
|
|
name
|
|
|
|
|
});
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
|
if (exists) {
|
|
|
|
|
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)
|
|
|
|
|
) {
|
|
|
|
|
await Emojis.update({
|
|
|
|
|
host,
|
|
|
|
|
name,
|
|
|
|
|
}, {
|
|
|
|
|
uri: tag.id,
|
|
|
|
|
url: tag.icon!.url,
|
|
|
|
|
updatedAt: new Date(tag.updated!),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return await Emojis.findOne({
|
|
|
|
|
host,
|
|
|
|
|
name
|
|
|
|
|
}) as Emoji;
|
2018-11-01 23:59:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
|
return exists;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logger.info(`register emoji host=${host}, name=${name}`);
|
|
|
|
|
|
|
|
|
|
return await Emojis.save({
|
|
|
|
|
id: genId(),
|
|
|
|
|
host,
|
|
|
|
|
name,
|
|
|
|
|
uri: tag.id,
|
|
|
|
|
url: tag.icon!.url,
|
|
|
|
|
updatedAt: tag.updated ? new Date(tag.updated) : undefined,
|
|
|
|
|
aliases: []
|
|
|
|
|
} as Partial<Emoji>);
|
|
|
|
|
}));
|
2018-11-01 23:59:40 +00:00
|
|
|
|
}
|
2018-11-08 23:44:19 +00:00
|
|
|
|
|
2018-11-09 02:01:55 +00: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 05:14:53 +00:00
|
|
|
|
const uris = difference(unique(concat([to || [], cc || []])), ignoreUris);
|
2018-11-08 23:44:19 +00:00
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
|
const limit = promiseLimit<User | null>(2);
|
2018-11-08 23:44:19 +00:00
|
|
|
|
const users = await Promise.all(
|
2019-04-12 16:43:22 +00:00
|
|
|
|
uris.map(uri => limit(() => resolvePerson(uri, resolver).catch(() => null)) as Promise<User | null>)
|
2018-11-08 23:44:19 +00:00
|
|
|
|
);
|
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
|
return users.filter(x => x != null) as User[];
|
2018-11-08 23:44:19 +00:00
|
|
|
|
}
|