2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { IdService } from '@/core/IdService.js';
|
|
|
|
import { 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';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { ApiError } from '../../error.js';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['account'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
kind: 'write:account',
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchAnnouncement: {
|
|
|
|
message: 'No such announcement.',
|
|
|
|
code: 'NO_SUCH_ANNOUNCEMENT',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '184663db-df88-4bc2-8b52-fb85f0681939',
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
announcementId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['announcementId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.announcementsRepository)
|
|
|
|
private announcementsRepository: AnnouncementsRepository,
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
@Inject(DI.announcementReadsRepository)
|
|
|
|
private announcementReadsRepository: AnnouncementReadsRepository,
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
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 });
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
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;
|
|
|
|
}
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
// Create read
|
|
|
|
await this.announcementReadsRepository.insert({
|
|
|
|
id: this.idService.genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
announcementId: ps.announcementId,
|
|
|
|
userId: me.id,
|
|
|
|
});
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (!await this.userEntityService.getHasUnreadAnnouncement(me.id)) {
|
|
|
|
this.globalEventService.publishMainStream(me.id, 'readAllAnnouncements');
|
|
|
|
}
|
|
|
|
});
|
2020-01-29 21:37:25 +02:00
|
|
|
}
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|