Sharkey/src/server/api/endpoints/notes/replies.ts

89 lines
1.9 KiB
TypeScript
Raw Normal View History

2018-11-01 20:32:24 +02:00
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
import Note, { packMany } from '../../../../models/note';
2018-11-02 06:47:44 +02:00
import define from '../../define';
import { getFriends } from '../../common/get-friends';
2019-02-01 02:57:51 +02:00
import { getHideUserIds } from '../../common/get-hide-users';
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
export const meta = {
desc: {
'ja-JP': '指定した投稿への返信を取得します。',
'en-US': 'Get replies of a note.'
},
requireCredential: false,
params: {
noteId: {
validator: $.type(ID),
transform: transform,
2018-11-03 15:49:36 +02:00
desc: {
'ja-JP': '対象の投稿のID',
'en-US': 'Target note ID'
}
2018-11-01 20:32:24 +02:00
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
limit: {
validator: $.num.optional.range(1, 100),
default: 10
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
offset: {
validator: $.num.optional.min(0),
default: 0
},
}
};
2018-11-02 06:47:44 +02:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2019-02-01 02:57:51 +02:00
const [followings, hideUserIds] = await Promise.all([
// フォローを取得
// Fetch following
user ? getFriends(user._id) : [],
2019-02-01 02:57:51 +02:00
// 隠すユーザーを取得
getHideUserIds(user)
]);
const visibleQuery = user == null ? [{
visibility: { $in: [ 'public', 'home' ] }
}] : [{
visibility: { $in: [ 'public', 'home' ] }
}, {
// myself (for followers/specified/private)
userId: user._id
}, {
// to me (for specified)
visibleUserIds: { $in: [ user._id ] }
}, {
visibility: 'followers',
$or: [{
// フォロワーの投稿
userId: { $in: followings.map(f => f.id) },
}, {
// 自分の投稿へのリプライ
'_reply.userId': user._id,
}, {
// 自分へのメンションが含まれている
mentions: { $in: [ user._id ] }
}]
}];
2019-01-22 14:21:47 +02:00
const q = {
replyId: ps.noteId,
$or: visibleQuery
2019-01-22 14:21:47 +02:00
} as any;
2019-02-01 02:57:51 +02:00
if (hideUserIds && hideUserIds.length > 0) {
2019-01-22 14:21:47 +02:00
q['userId'] = {
2019-02-01 02:57:51 +02:00
$nin: hideUserIds
2019-01-22 14:21:47 +02:00
};
}
2016-12-29 00:49:51 +02:00
2019-01-22 14:21:47 +02:00
const notes = await Note.find(q, {
limit: ps.limit,
skip: ps.offset
});
2016-12-29 00:49:51 +02:00
2018-11-23 16:12:28 +02:00
res(await packMany(notes, user));
2018-11-02 06:47:44 +02:00
}));