2018-11-01 19:32:24 +01:00
|
|
|
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Notification from '../../../../models/notification';
|
2018-10-04 06:53:48 +02:00
|
|
|
import { packMany } from '../../../../models/notification';
|
2018-04-19 05:43:25 +02:00
|
|
|
import { getFriendIds } from '../../common/get-friends';
|
2017-10-30 14:12:10 +01:00
|
|
|
import read from '../../common/read-notification';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
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 notifications.'
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
kind: 'account-read',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
|
|
|
validator: $.num.optional.range(1, 100),
|
|
|
|
default: 10
|
|
|
|
},
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
sinceId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
|
|
|
},
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
|
|
|
},
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
following: {
|
|
|
|
validator: $.bool.optional,
|
|
|
|
default: false
|
|
|
|
},
|
2017-03-03 00:56:07 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
markAsRead: {
|
|
|
|
validator: $.bool.optional,
|
|
|
|
default: true
|
2019-01-08 05:32:28 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
includeTypes: {
|
|
|
|
validator: $.arr($.str.or(['follow', 'mention', 'reply', 'renote', 'quote', 'reaction', 'poll_vote', 'receiveFollowRequest'])).optional,
|
|
|
|
default: [] as string[]
|
|
|
|
},
|
|
|
|
|
|
|
|
excludeTypes: {
|
|
|
|
validator: $.arr($.str.or(['follow', 'mention', 'reply', 'renote', 'quote', 'reaction', 'poll_vote', 'receiveFollowRequest'])).optional,
|
|
|
|
default: [] as string[]
|
2018-11-01 19:32:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2018-03-29 07:48:47 +02:00
|
|
|
// Check if both of sinceId and untilId is specified
|
2018-11-01 19:32:24 +01:00
|
|
|
if (ps.sinceId && ps.untilId) {
|
2018-03-29 07:48:47 +02:00
|
|
|
return rej('cannot set sinceId and untilId');
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2019-02-01 01:57:51 +01:00
|
|
|
const hideUserIds = await getHideUserIds(user);
|
2017-12-21 23:26:23 +01:00
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
const query = {
|
2018-03-29 07:48:47 +02:00
|
|
|
notifieeId: user._id,
|
2017-12-21 23:26:23 +01:00
|
|
|
$and: [{
|
2018-03-29 07:48:47 +02:00
|
|
|
notifierId: {
|
2019-02-01 01:57:51 +01:00
|
|
|
$nin: hideUserIds
|
2017-12-21 23:26:23 +01:00
|
|
|
}
|
|
|
|
}]
|
2017-03-03 00:56:07 +01:00
|
|
|
} as any;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
if (ps.following) {
|
2017-12-21 23:26:23 +01:00
|
|
|
// ID list of the user itself and other users who the user follows
|
2018-04-19 05:43:25 +02:00
|
|
|
const followingIds = await getFriendIds(user._id);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-12-21 23:26:23 +01:00
|
|
|
query.$and.push({
|
2018-03-29 07:48:47 +02:00
|
|
|
notifierId: {
|
2017-12-21 23:26:23 +01:00
|
|
|
$in: followingIds
|
|
|
|
}
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
if (ps.sinceId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
2018-11-01 19:32:24 +01:00
|
|
|
$gt: ps.sinceId
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
2018-11-01 19:32:24 +01:00
|
|
|
} else if (ps.untilId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
query._id = {
|
2018-11-01 19:32:24 +01:00
|
|
|
$lt: ps.untilId
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-01-08 05:32:28 +01:00
|
|
|
if (ps.includeTypes.length > 0) {
|
|
|
|
query.type = {
|
|
|
|
$in: ps.includeTypes
|
|
|
|
};
|
|
|
|
} else if (ps.excludeTypes.length > 0) {
|
|
|
|
query.type = {
|
|
|
|
$nin: ps.excludeTypes
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
const notifications = await Notification
|
2017-01-17 03:11:22 +01:00
|
|
|
.find(query, {
|
2018-11-01 19:32:24 +01:00
|
|
|
limit: ps.limit,
|
2016-12-28 23:49:51 +01:00
|
|
|
sort: sort
|
2017-01-17 03:11:22 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-10-04 06:53:48 +02:00
|
|
|
res(await packMany(notifications));
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-20 07:16:02 +02:00
|
|
|
// Mark all as read
|
2018-11-01 19:32:24 +01:00
|
|
|
if (notifications.length > 0 && ps.markAsRead) {
|
2017-10-30 14:12:10 +01:00
|
|
|
read(user._id, notifications);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
2018-11-02 05:47:44 +01:00
|
|
|
}));
|