2022-02-27 02:07:39 +00:00
|
|
|
import { readNotification } from '../../common/read-notification.js';
|
|
|
|
import define from '../../define.js';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query.js';
|
|
|
|
import { generateMutedInstanceNotificationQuery } from '../../common/generate-muted-instance-query.js';
|
|
|
|
import { Notifications, Followings, Mutings, Users } from '@/models/index.js';
|
|
|
|
import { notificationTypes } from '@/types.js';
|
|
|
|
import read from '@/services/note/read.js';
|
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'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
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
|
|
|
|
2019-02-24 09:13:11 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 09:13:11 +00:00
|
|
|
items: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'Notification',
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2019-02-24 09:13:11 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-11-01 18:32:24 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
following: { type: 'boolean', default: false },
|
|
|
|
unreadOnly: { type: 'boolean', default: false },
|
|
|
|
markAsRead: { type: 'boolean', default: true },
|
|
|
|
includeTypes: { type: 'array', items: {
|
|
|
|
type: 'string', enum: notificationTypes,
|
|
|
|
} },
|
|
|
|
excludeTypes: { type: 'array', items: {
|
|
|
|
type: 'string', enum: notificationTypes,
|
|
|
|
} },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, 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-12-09 12:38:56 +00:00
|
|
|
generateMutedInstanceNotificationQuery(query, user);
|
|
|
|
|
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`);
|
|
|
|
}
|
|
|
|
|
2022-02-19 05:05:32 +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
|
|
|
});
|