2b8056a852
* fix(backend): use insertOne insteadof insert/findOneOrFail combination * fix: typo * fix(backend): inherit mainAlias? * refactor(backend): use extend * fix(backend): invalid entityTarget * fix(backend): fake where * chore: debug * chore: debug * test: log * fix(backend): column names * fix(backend): remove dummy from * revert: log * fix(backend): position * fix(backend): automatic aliasing * chore(backend): alias * chore(backend): remove from * fix(backend): type * fix(backend): avoid pure name * test(backend): fix type * chore(backend): use cte * fix(backend): avoid useless alias * fix(backend): fix typo * fix(backend): __disambiguation__ * fix(backend): quote * chore(backend): t * chore(backend): accessible * chore(backend): concrete returning * fix(backend): quote * chore: log more * chore: log metadata * chore(backend): use raw * fix(backend): returning column name * fix(backend): transform * build(backend): wanna logging * build(backend): transform empty * build(backend): build alias * build(backend): restore name * chore: return entity * fix: test case * test(backend): 204 * chore(backend): log sql * chore(backend): assert user joined * fix(backend): typo * chore(backend): log long sql * chore(backend): log join * chore(backend): log join depth null * chore(backend): joinAttributes * chore(backend): override createJoinExpression * chore: join log * fix(backend): escape * test(backend): log log * chore(backend): join gonna success? * chore(backend): relations * chore(backend): undefined * chore(backend): target * chore(backend): remove log * chore(backend): log chart update * chore(backend): log columns * chore(backend): check hasMetadata * chore(backend): unshift id when not included * chore(backend): missing select * chore(backend): remove debug code
216 lines
7 KiB
TypeScript
216 lines
7 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Brackets, EntityNotFoundError } from 'typeorm';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { MiUser } from '@/models/User.js';
|
|
import type { AnnouncementReadsRepository, AnnouncementsRepository, MiAnnouncement, MiAnnouncementRead, UsersRepository } from '@/models/_.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import { Packed } from '@/misc/json-schema.js';
|
|
import { IdService } from '@/core/IdService.js';
|
|
import { AnnouncementEntityService } from '@/core/entities/AnnouncementEntityService.js';
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
|
|
|
@Injectable()
|
|
export class AnnouncementService {
|
|
constructor(
|
|
@Inject(DI.announcementsRepository)
|
|
private announcementsRepository: AnnouncementsRepository,
|
|
|
|
@Inject(DI.announcementReadsRepository)
|
|
private announcementReadsRepository: AnnouncementReadsRepository,
|
|
|
|
@Inject(DI.usersRepository)
|
|
private usersRepository: UsersRepository,
|
|
|
|
private idService: IdService,
|
|
private globalEventService: GlobalEventService,
|
|
private moderationLogService: ModerationLogService,
|
|
private announcementEntityService: AnnouncementEntityService,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public async getReads(userId: MiUser['id']): Promise<MiAnnouncementRead[]> {
|
|
return this.announcementReadsRepository.findBy({
|
|
userId: userId,
|
|
});
|
|
}
|
|
|
|
@bindThis
|
|
public async getUnreadAnnouncements(user: MiUser): Promise<MiAnnouncement[]> {
|
|
const readsQuery = this.announcementReadsRepository.createQueryBuilder('read')
|
|
.select('read.announcementId')
|
|
.where('read.userId = :userId', { userId: user.id });
|
|
|
|
const q = this.announcementsRepository.createQueryBuilder('announcement')
|
|
.where('announcement.isActive = true')
|
|
.andWhere('announcement.silence = false')
|
|
.andWhere(new Brackets(qb => {
|
|
qb.orWhere('announcement.userId = :userId', { userId: user.id });
|
|
qb.orWhere('announcement.userId IS NULL');
|
|
}))
|
|
.andWhere(new Brackets(qb => {
|
|
qb.orWhere('announcement.forExistingUsers = false');
|
|
qb.orWhere('announcement.id > :userId', { userId: user.id });
|
|
}))
|
|
.andWhere(`announcement.id NOT IN (${ readsQuery.getQuery() })`);
|
|
|
|
q.setParameters(readsQuery.getParameters());
|
|
|
|
return q.getMany();
|
|
}
|
|
|
|
@bindThis
|
|
public async create(values: Partial<MiAnnouncement>, moderator?: MiUser): Promise<{ raw: MiAnnouncement; packed: Packed<'Announcement'> }> {
|
|
const announcement = await this.announcementsRepository.insertOne({
|
|
id: this.idService.gen(),
|
|
updatedAt: null,
|
|
title: values.title,
|
|
text: values.text,
|
|
imageUrl: values.imageUrl,
|
|
icon: values.icon,
|
|
display: values.display,
|
|
forExistingUsers: values.forExistingUsers,
|
|
silence: values.silence,
|
|
needConfirmationToRead: values.needConfirmationToRead,
|
|
userId: values.userId,
|
|
});
|
|
|
|
const packed = await this.announcementEntityService.pack(announcement);
|
|
|
|
if (values.userId) {
|
|
this.globalEventService.publishMainStream(values.userId, 'announcementCreated', {
|
|
announcement: packed,
|
|
});
|
|
|
|
if (moderator) {
|
|
const user = await this.usersRepository.findOneByOrFail({ id: values.userId });
|
|
this.moderationLogService.log(moderator, 'createUserAnnouncement', {
|
|
announcementId: announcement.id,
|
|
announcement: announcement,
|
|
userId: values.userId,
|
|
userUsername: user.username,
|
|
userHost: user.host,
|
|
});
|
|
}
|
|
} else {
|
|
this.globalEventService.publishBroadcastStream('announcementCreated', {
|
|
announcement: packed,
|
|
});
|
|
|
|
if (moderator) {
|
|
this.moderationLogService.log(moderator, 'createGlobalAnnouncement', {
|
|
announcementId: announcement.id,
|
|
announcement: announcement,
|
|
});
|
|
}
|
|
}
|
|
|
|
return {
|
|
raw: announcement,
|
|
packed: packed,
|
|
};
|
|
}
|
|
|
|
@bindThis
|
|
public async update(announcement: MiAnnouncement, values: Partial<MiAnnouncement>, moderator?: MiUser): Promise<void> {
|
|
await this.announcementsRepository.update(announcement.id, {
|
|
updatedAt: new Date(),
|
|
title: values.title,
|
|
text: values.text,
|
|
/* eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing -- 空の文字列の場合、nullを渡すようにするため */
|
|
imageUrl: values.imageUrl || null,
|
|
display: values.display,
|
|
icon: values.icon,
|
|
forExistingUsers: values.forExistingUsers,
|
|
silence: values.silence,
|
|
needConfirmationToRead: values.needConfirmationToRead,
|
|
isActive: values.isActive,
|
|
});
|
|
|
|
const after = await this.announcementsRepository.findOneByOrFail({ id: announcement.id });
|
|
|
|
if (moderator) {
|
|
if (announcement.userId) {
|
|
const user = await this.usersRepository.findOneByOrFail({ id: announcement.userId });
|
|
this.moderationLogService.log(moderator, 'updateUserAnnouncement', {
|
|
announcementId: announcement.id,
|
|
before: announcement,
|
|
after: after,
|
|
userId: announcement.userId,
|
|
userUsername: user.username,
|
|
userHost: user.host,
|
|
});
|
|
} else {
|
|
this.moderationLogService.log(moderator, 'updateGlobalAnnouncement', {
|
|
announcementId: announcement.id,
|
|
before: announcement,
|
|
after: after,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
@bindThis
|
|
public async delete(announcement: MiAnnouncement, moderator?: MiUser): Promise<void> {
|
|
await this.announcementsRepository.delete(announcement.id);
|
|
|
|
if (moderator) {
|
|
if (announcement.userId) {
|
|
const user = await this.usersRepository.findOneByOrFail({ id: announcement.userId });
|
|
this.moderationLogService.log(moderator, 'deleteUserAnnouncement', {
|
|
announcementId: announcement.id,
|
|
announcement: announcement,
|
|
userId: announcement.userId,
|
|
userUsername: user.username,
|
|
userHost: user.host,
|
|
});
|
|
} else {
|
|
this.moderationLogService.log(moderator, 'deleteGlobalAnnouncement', {
|
|
announcementId: announcement.id,
|
|
announcement: announcement,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
@bindThis
|
|
public async getAnnouncement(announcementId: MiAnnouncement['id'], me: MiUser | null): Promise<Packed<'Announcement'>> {
|
|
const announcement = await this.announcementsRepository.findOneByOrFail({ id: announcementId });
|
|
if (me) {
|
|
if (announcement.userId && announcement.userId !== me.id) {
|
|
throw new EntityNotFoundError(this.announcementsRepository.metadata.target, { id: announcementId });
|
|
}
|
|
|
|
const read = await this.announcementReadsRepository.findOneBy({
|
|
announcementId: announcement.id,
|
|
userId: me.id,
|
|
});
|
|
return this.announcementEntityService.pack({ ...announcement, isRead: read !== null }, me);
|
|
} else {
|
|
return this.announcementEntityService.pack(announcement, null);
|
|
}
|
|
}
|
|
|
|
@bindThis
|
|
public async read(user: MiUser, announcementId: MiAnnouncement['id']): Promise<void> {
|
|
try {
|
|
await this.announcementReadsRepository.insert({
|
|
id: this.idService.gen(),
|
|
announcementId: announcementId,
|
|
userId: user.id,
|
|
});
|
|
} catch (e) {
|
|
return;
|
|
}
|
|
|
|
if ((await this.getUnreadAnnouncements(user)).length === 0) {
|
|
this.globalEventService.publishMainStream(user.id, 'readAllAnnouncements');
|
|
}
|
|
}
|
|
}
|