Sharkey/src/server/api/endpoints/i/notifications.ts

109 lines
2.1 KiB
TypeScript
Raw Normal View History

2018-11-01 20:32:24 +02:00
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
2018-03-29 14:32:18 +03:00
import Notification from '../../../../models/notification';
import Mute from '../../../../models/mute';
import { packMany } from '../../../../models/notification';
2018-04-19 06:43:25 +03:00
import { getFriendIds } from '../../common/get-friends';
import read from '../../common/read-notification';
2018-06-18 03:54:53 +03:00
import { ILocalUser } from '../../../../models/user';
2018-11-01 20:32:24 +02:00
import getParams from '../../get-params';
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 notifications.'
},
requireCredential: true,
kind: 'account-read',
params: {
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
sinceId: {
validator: $.type(ID).optional,
transform: transform,
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
untilId: {
validator: $.type(ID).optional,
transform: transform,
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
following: {
validator: $.bool.optional,
default: false
},
2017-03-03 01:56:07 +02:00
2018-11-01 20:32:24 +02: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-29 00:49:51 +02:00
2018-03-29 08:48:47 +03:00
// Check if both of sinceId and untilId is specified
2018-11-01 20:32:24 +02:00
if (ps.sinceId && ps.untilId) {
2018-03-29 08:48:47 +03:00
return rej('cannot set sinceId and untilId');
2016-12-29 00:49:51 +02:00
}
2017-12-22 00:26:23 +02:00
const mute = await Mute.find({
2018-08-02 03:27:30 +03:00
muterId: user._id
2017-12-22 00:26:23 +02:00
});
2016-12-29 00:49:51 +02:00
const query = {
2018-03-29 08:48:47 +03:00
notifieeId: user._id,
2017-12-22 00:26:23 +02:00
$and: [{
2018-03-29 08:48:47 +03:00
notifierId: {
$nin: mute.map(m => m.muteeId)
2017-12-22 00:26:23 +02:00
}
}]
2017-03-03 01:56:07 +02:00
} as any;
2016-12-29 00:49:51 +02:00
const sort = {
_id: -1
};
2018-11-01 20:32:24 +02:00
if (ps.following) {
2017-12-22 00:26:23 +02:00
// ID list of the user itself and other users who the user follows
2018-04-19 06:43:25 +03:00
const followingIds = await getFriendIds(user._id);
2016-12-29 00:49:51 +02:00
2017-12-22 00:26:23 +02:00
query.$and.push({
2018-03-29 08:48:47 +03:00
notifierId: {
2017-12-22 00:26:23 +02:00
$in: followingIds
}
});
2016-12-29 00:49:51 +02:00
}
2018-11-01 20:32:24 +02:00
if (ps.sinceId) {
2016-12-29 00:49:51 +02:00
sort._id = 1;
query._id = {
2018-11-01 20:32:24 +02:00
$gt: ps.sinceId
2016-12-29 00:49:51 +02:00
};
2018-11-01 20:32:24 +02:00
} else if (ps.untilId) {
2016-12-29 00:49:51 +02:00
query._id = {
2018-11-01 20:32:24 +02:00
$lt: ps.untilId
2016-12-29 00:49:51 +02:00
};
}
const notifications = await Notification
2017-01-17 04:11:22 +02:00
.find(query, {
2018-11-01 20:32:24 +02:00
limit: ps.limit,
2016-12-29 00:49:51 +02:00
sort: sort
2017-01-17 04:11:22 +02:00
});
2016-12-29 00:49:51 +02:00
res(await packMany(notifications));
2016-12-29 00:49:51 +02:00
// Mark all as read
2018-11-01 20:32:24 +02:00
if (notifications.length > 0 && ps.markAsRead) {
read(user._id, notifications);
2016-12-29 00:49:51 +02:00
}
});