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