rudeshark.net/src/server/api/endpoints/i/notifications.ts

109 lines
2.1 KiB
TypeScript
Raw Normal View History

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';
import Mute from '../../../../models/mute';
import { packMany } from '../../../../models/notification';
2018-04-19 05:43:25 +02:00
import { getFriendIds } from '../../common/get-friends';
import read from '../../common/read-notification';
2018-06-18 02:54:53 +02:00
import { ILocalUser } from '../../../../models/user';
2018-11-01 19:32:24 +01:00
import getParams from '../../get-params';
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
}
}
};
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
2016-12-28 23:49:51 +01:00
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
}
2017-12-21 23:26:23 +01:00
const mute = await Mute.find({
2018-08-02 02:27:30 +02:00
muterId: user._id
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: {
$nin: mute.map(m => m.muteeId)
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
};
}
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
res(await packMany(notifications));
2016-12-28 23:49:51 +01:00
// Mark all as read
2018-11-01 19:32:24 +01:00
if (notifications.length > 0 && ps.markAsRead) {
read(user._id, notifications);
2016-12-28 23:49:51 +01:00
}
});