mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 20:43:09 +02:00
80 lines
2.2 KiB
TypeScript
80 lines
2.2 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { IdService } from '@/core/IdService.js';
|
|
import type { AnnouncementReadsRepository, AnnouncementsRepository } from '@/models/index.js';
|
|
import type { UsersRepository } from '@/models/index.js';
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { ApiError } from '../../error.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
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject(DI.announcementsRepository)
|
|
private announcementsRepository: AnnouncementsRepository,
|
|
|
|
@Inject(DI.announcementReadsRepository)
|
|
private announcementReadsRepository: AnnouncementReadsRepository,
|
|
|
|
private userEntityService: UserEntityService,
|
|
private idService: IdService,
|
|
private globalEventService: GlobalEventService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
// Check if announcement exists
|
|
const announcement = await this.announcementsRepository.findOneBy({ id: ps.announcementId });
|
|
|
|
if (announcement == null) {
|
|
throw new ApiError(meta.errors.noSuchAnnouncement);
|
|
}
|
|
|
|
// Check if already read
|
|
const read = await this.announcementReadsRepository.findOneBy({
|
|
announcementId: ps.announcementId,
|
|
userId: me.id,
|
|
});
|
|
|
|
if (read != null) {
|
|
return;
|
|
}
|
|
|
|
// Create read
|
|
await this.announcementReadsRepository.insert({
|
|
id: this.idService.genId(),
|
|
createdAt: new Date(),
|
|
announcementId: ps.announcementId,
|
|
userId: me.id,
|
|
});
|
|
|
|
if (!await this.userEntityService.getHasUnreadAnnouncement(me.id)) {
|
|
this.globalEventService.publishMainStream(me.id, 'readAllAnnouncements');
|
|
}
|
|
});
|
|
}
|
|
}
|