2018-07-07 12:19:00 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Mute from '../../../../models/mute';
|
2018-06-18 02:54:53 +02:00
|
|
|
import { pack, ILocalUser } from '../../../../models/user';
|
2018-04-19 05:43:25 +02:00
|
|
|
import { getFriendIds } from '../../common/get-friends';
|
2017-12-21 22:03:54 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
ja: 'ミュートしているユーザー一覧を取得します。',
|
|
|
|
en: 'Get muted users.'
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
kind: 'account/read'
|
|
|
|
};
|
|
|
|
|
2018-07-05 19:58:29 +02:00
|
|
|
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
2017-12-21 22:03:54 +01:00
|
|
|
// Get 'iknow' parameter
|
2018-07-05 16:36:07 +02:00
|
|
|
const [iknow = false, iknowErr] = $.bool.optional.get(params.iknow);
|
2017-12-21 22:03:54 +01:00
|
|
|
if (iknowErr) return rej('invalid iknow param');
|
|
|
|
|
|
|
|
// Get 'limit' parameter
|
2018-07-05 16:36:07 +02:00
|
|
|
const [limit = 30, limitErr] = $.num.optional.range(1, 100).get(params.limit);
|
2017-12-21 22:03:54 +01:00
|
|
|
if (limitErr) return rej('invalid limit param');
|
|
|
|
|
|
|
|
// Get 'cursor' parameter
|
2018-07-05 16:36:07 +02:00
|
|
|
const [cursor = null, cursorErr] = $.type(ID).optional.get(params.cursor);
|
2017-12-21 22:03:54 +01:00
|
|
|
if (cursorErr) return rej('invalid cursor param');
|
|
|
|
|
|
|
|
// Construct query
|
|
|
|
const query = {
|
2018-03-29 07:48:47 +02:00
|
|
|
muterId: me._id,
|
|
|
|
deletedAt: { $exists: false }
|
2017-12-21 22:03:54 +01:00
|
|
|
} as any;
|
|
|
|
|
|
|
|
if (iknow) {
|
|
|
|
// Get my friends
|
2018-04-19 05:43:25 +02:00
|
|
|
const myFriends = await getFriendIds(me._id);
|
2017-12-21 22:03:54 +01:00
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
query.muteeId = {
|
2017-12-21 22:03:54 +01:00
|
|
|
$in: myFriends
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// カーソルが指定されている場合
|
|
|
|
if (cursor) {
|
|
|
|
query._id = {
|
|
|
|
$lt: cursor
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get mutes
|
|
|
|
const mutes = await Mute
|
|
|
|
.find(query, {
|
|
|
|
limit: limit + 1,
|
|
|
|
sort: { _id: -1 }
|
|
|
|
});
|
|
|
|
|
|
|
|
// 「次のページ」があるかどうか
|
|
|
|
const inStock = mutes.length === limit + 1;
|
|
|
|
if (inStock) {
|
|
|
|
mutes.pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Serialize
|
|
|
|
const users = await Promise.all(mutes.map(async m =>
|
2018-03-29 07:48:47 +02:00
|
|
|
await pack(m.muteeId, me, { detail: true })));
|
2017-12-21 22:03:54 +01:00
|
|
|
|
|
|
|
// Response
|
|
|
|
res({
|
|
|
|
users: users,
|
|
|
|
next: inStock ? mutes[mutes.length - 1]._id : null,
|
|
|
|
});
|
|
|
|
});
|