2023-07-27 05:31:52 +00:00
|
|
|
/*
|
2024-02-13 15:59:27 +00:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2023-09-15 05:28:29 +00:00
|
|
|
import type { UserProfilesRepository, UsersRepository } from '@/models/_.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-09-23 09:28:16 +00:00
|
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
2022-07-02 15:15:03 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
requireModerator: true,
|
2023-12-27 06:08:59 +00:00
|
|
|
kind: 'write:admin:user-note',
|
2022-07-02 15:15:03 +00:00
|
|
|
} as const;
|
|
|
|
|
|
|
|
export const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
text: { type: 'string' },
|
|
|
|
},
|
|
|
|
required: ['userId', 'text'],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
2023-08-17 12:20:58 +00:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
2022-07-02 15:15:03 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
2023-09-23 09:28:16 +00:00
|
|
|
|
|
|
|
private moderationLogService: ModerationLogService,
|
2022-09-17 18:27:08 +00:00
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const user = await this.usersRepository.findOneBy({ id: ps.userId });
|
|
|
|
|
|
|
|
if (user == null) {
|
|
|
|
throw new Error('user not found');
|
|
|
|
}
|
2022-07-02 15:15:03 +00:00
|
|
|
|
2023-09-23 09:28:16 +00:00
|
|
|
const currentProfile = await this.userProfilesRepository.findOneByOrFail({ userId: user.id });
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
await this.userProfilesRepository.update({ userId: user.id }, {
|
|
|
|
moderationNote: ps.text,
|
|
|
|
});
|
2023-09-23 09:28:16 +00:00
|
|
|
|
|
|
|
this.moderationLogService.log(me, 'updateUserNote', {
|
|
|
|
userId: user.id,
|
2023-09-25 01:29:12 +00:00
|
|
|
userUsername: user.username,
|
|
|
|
userHost: user.host,
|
2023-09-23 09:28:16 +00:00
|
|
|
before: currentProfile.moderationNote,
|
|
|
|
after: ps.text,
|
|
|
|
});
|
2022-09-17 18:27:08 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|