2019-02-05 02:48:08 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import { readNotification } from '../../common/read-notification';
|
|
|
|
import define from '../../define';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { Notifications, Followings, Mutings, Users } from '@/models/index';
|
2021-10-09 03:47:40 +00:00
|
|
|
import { notificationTypes } from '@/types';
|
2021-08-19 12:55:45 +00:00
|
|
|
import read from '@/services/note/read';
|
2021-10-19 11:25:47 +00:00
|
|
|
import { Brackets } from 'typeorm';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['account', 'notifications'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2018-11-01 18:32:24 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
kind: 'read:notifications',
|
2018-11-01 18:32:24 +00:00
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-11-01 18:32:24 +00:00
|
|
|
default: 10
|
|
|
|
},
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
sinceId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
untilId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
following: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-01 18:32:24 +00:00
|
|
|
default: false
|
|
|
|
},
|
2017-03-02 23:56:07 +00:00
|
|
|
|
2021-10-09 03:44:19 +00:00
|
|
|
unreadOnly: {
|
|
|
|
validator: $.optional.bool,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
markAsRead: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-01 18:32:24 +00:00
|
|
|
default: true
|
2019-01-08 04:32:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
includeTypes: {
|
2020-05-26 05:33:55 +00:00
|
|
|
validator: $.optional.arr($.str.or(notificationTypes as unknown as string[])),
|
2019-01-08 04:32:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
excludeTypes: {
|
2020-05-26 05:33:55 +00:00
|
|
|
validator: $.optional.arr($.str.or(notificationTypes as unknown as string[])),
|
2018-11-01 18:32:24 +00:00
|
|
|
}
|
2019-02-24 09:13:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-24 09:13:11 +00:00
|
|
|
items: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'Notification',
|
|
|
|
}
|
2019-02-24 09:13:11 +00:00
|
|
|
},
|
2018-11-01 18:32:24 +00:00
|
|
|
};
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps, user) => {
|
2020-08-22 01:06:17 +00:00
|
|
|
// includeTypes が空の場合はクエリしない
|
|
|
|
if (ps.includeTypes && ps.includeTypes.length === 0) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
// excludeTypes に全指定されている場合はクエリしない
|
|
|
|
if (notificationTypes.every(type => ps.excludeTypes?.includes(type))) {
|
|
|
|
return [];
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
const followingQuery = Followings.createQueryBuilder('following')
|
|
|
|
.select('following.followeeId')
|
|
|
|
.where('following.followerId = :followerId', { followerId: user.id });
|
2017-12-21 22:26:23 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
const mutingQuery = Mutings.createQueryBuilder('muting')
|
|
|
|
.select('muting.muteeId')
|
|
|
|
.where('muting.muterId = :muterId', { muterId: user.id });
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2020-01-01 17:47:20 +00:00
|
|
|
const suspendedQuery = Users.createQueryBuilder('users')
|
2021-01-11 11:38:34 +00:00
|
|
|
.select('users.id')
|
2020-01-01 17:47:20 +00:00
|
|
|
.where('users.isSuspended = TRUE');
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
const query = makePaginationQuery(Notifications.createQueryBuilder('notification'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`notification.notifieeId = :meId`, { meId: user.id })
|
2021-03-19 09:22:34 +00:00
|
|
|
.leftJoinAndSelect('notification.notifier', 'notifier')
|
|
|
|
.leftJoinAndSelect('notification.note', 'note')
|
2021-03-21 03:31:56 +00:00
|
|
|
.leftJoinAndSelect('note.user', 'user')
|
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser');
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2021-10-19 11:25:47 +00:00
|
|
|
query.andWhere(new Brackets(qb => { qb
|
|
|
|
.where(`notification.notifierId NOT IN (${ mutingQuery.getQuery() })`)
|
|
|
|
.orWhere('notification.notifierId IS NULL');
|
|
|
|
}));
|
2019-04-07 12:50:36 +00:00
|
|
|
query.setParameters(mutingQuery.getParameters());
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2021-10-19 11:25:47 +00:00
|
|
|
query.andWhere(new Brackets(qb => { qb
|
|
|
|
.where(`notification.notifierId NOT IN (${ suspendedQuery.getQuery() })`)
|
|
|
|
.orWhere('notification.notifierId IS NULL');
|
|
|
|
}));
|
2020-01-01 17:47:20 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (ps.following) {
|
|
|
|
query.andWhere(`((notification.notifierId IN (${ followingQuery.getQuery() })) OR (notification.notifierId = :meId))`, { meId: user.id });
|
|
|
|
query.setParameters(followingQuery.getParameters());
|
2016-12-28 22:49:51 +00:00
|
|
|
}
|
|
|
|
|
2021-05-28 13:52:30 +00:00
|
|
|
if (ps.includeTypes && ps.includeTypes.length > 0) {
|
2019-04-07 12:50:36 +00:00
|
|
|
query.andWhere(`notification.type IN (:...includeTypes)`, { includeTypes: ps.includeTypes });
|
2021-05-28 13:52:30 +00:00
|
|
|
} else if (ps.excludeTypes && ps.excludeTypes.length > 0) {
|
2019-04-07 12:50:36 +00:00
|
|
|
query.andWhere(`notification.type NOT IN (:...excludeTypes)`, { excludeTypes: ps.excludeTypes });
|
2019-01-08 04:32:28 +00:00
|
|
|
}
|
|
|
|
|
2021-10-09 03:44:19 +00:00
|
|
|
if (ps.unreadOnly) {
|
|
|
|
query.andWhere(`notification.isRead = false`);
|
|
|
|
}
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
const notifications = await query.take(ps.limit!).getMany();
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-07-20 05:16:02 +00:00
|
|
|
// Mark all as read
|
2018-11-01 18:32:24 +00:00
|
|
|
if (notifications.length > 0 && ps.markAsRead) {
|
2019-04-07 12:50:36 +00:00
|
|
|
readNotification(user.id, notifications.map(x => x.id));
|
2016-12-28 22:49:51 +00:00
|
|
|
}
|
2019-02-22 02:46:58 +00:00
|
|
|
|
2021-05-28 13:53:00 +00:00
|
|
|
const notes = notifications.filter(notification => ['mention', 'reply', 'quote'].includes(notification.type)).map(notification => notification.note!);
|
|
|
|
|
|
|
|
if (notes.length > 0) {
|
|
|
|
read(user.id, notes);
|
|
|
|
}
|
|
|
|
|
2021-03-20 02:05:33 +00:00
|
|
|
return await Notifications.packMany(notifications, user.id);
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|