48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { UsersRepository } from '@/models/index.js';
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
|
import { UserSuspendService } from '@/core/UserSuspendService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<'admin/unsuspend-user'> {
|
|
name = 'admin/unsuspend-user' as const;
|
|
constructor(
|
|
@Inject(DI.usersRepository)
|
|
private usersRepository: UsersRepository,
|
|
|
|
private userSuspendService: UserSuspendService,
|
|
private moderationLogService: ModerationLogService,
|
|
) {
|
|
super(async (ps, me) => {
|
|
const user = await this.usersRepository.findOneBy({ id: ps.userId });
|
|
|
|
if (user == null) {
|
|
throw new Error('user not found');
|
|
}
|
|
|
|
await this.usersRepository.update(user.id, {
|
|
isSuspended: false,
|
|
});
|
|
|
|
this.moderationLogService.insertModerationLog(me, 'unsuspend', {
|
|
targetId: user.id,
|
|
});
|
|
|
|
this.userSuspendService.doPostUnsuspend(user);
|
|
});
|
|
}
|
|
}
|