mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 20:43:09 +02:00
1c67c26bd8
* wip * wip * wip * Update following.ts * wip * wip * wip * Update resolve-user.ts * maxQueryExecutionTime * wip * wip
61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
import define from '../../define.js';
|
|
import { ApiError } from '../../error.js';
|
|
import { genId } from '@/misc/gen-id.js';
|
|
import { AnnouncementReads, Announcements, Users } from '@/models/index.js';
|
|
import { publishMainStream } from '@/services/stream.js';
|
|
|
|
export const meta = {
|
|
tags: ['account'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'write:account',
|
|
|
|
errors: {
|
|
noSuchAnnouncement: {
|
|
message: 'No such announcement.',
|
|
code: 'NO_SUCH_ANNOUNCEMENT',
|
|
id: '184663db-df88-4bc2-8b52-fb85f0681939',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
announcementId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['announcementId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
// Check if announcement exists
|
|
const announcement = await Announcements.findOneBy({ id: ps.announcementId });
|
|
|
|
if (announcement == null) {
|
|
throw new ApiError(meta.errors.noSuchAnnouncement);
|
|
}
|
|
|
|
// Check if already read
|
|
const read = await AnnouncementReads.findOneBy({
|
|
announcementId: ps.announcementId,
|
|
userId: user.id,
|
|
});
|
|
|
|
if (read != null) {
|
|
return;
|
|
}
|
|
|
|
// Create read
|
|
await AnnouncementReads.insert({
|
|
id: genId(),
|
|
createdAt: new Date(),
|
|
announcementId: ps.announcementId,
|
|
userId: user.id,
|
|
});
|
|
|
|
if (!await Users.getHasUnreadAnnouncement(user.id)) {
|
|
publishMainStream(user.id, 'readAllAnnouncements');
|
|
}
|
|
});
|