2021-04-18 16:51:35 +03:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import { publishMainStream } from '@/services/stream';
|
|
|
|
import define from '../../define';
|
|
|
|
import { Notifications } from '@/models/index';
|
|
|
|
import { readNotification } from '../../common/read-notification';
|
|
|
|
import { ApiError } from '../../error';
|
2021-04-18 16:51:35 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['notifications', 'account'],
|
|
|
|
|
|
|
|
requireCredential: true as const,
|
|
|
|
|
|
|
|
kind: 'write:notifications',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
notificationId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNotification: {
|
|
|
|
message: 'No such notification.',
|
|
|
|
code: 'NO_SUCH_NOTIFICATION',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'efa929d5-05b5-47d1-beec-e6a4dbed011e',
|
2021-04-18 16:51:35 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2021-04-18 16:51:35 +03:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const notification = await Notifications.findOne({
|
|
|
|
notifieeId: user.id,
|
|
|
|
id: ps.notificationId,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (notification == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchNotification);
|
|
|
|
}
|
|
|
|
|
|
|
|
readNotification(user.id, [notification.id]);
|
|
|
|
});
|