2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 22:33:11 +02:00
|
|
|
import type { UsersRepository } from '@/models/index.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-23 23:45:44 +02:00
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
|
2022-07-04 17:21:01 +02:00
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
requireModerator: true,
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
overrideMb: { type: 'number', nullable: true },
|
|
|
|
},
|
|
|
|
required: ['userId', 'overrideMb'],
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
2022-09-23 23:45:44 +02:00
|
|
|
private userEntityService: UserEntityService,
|
2022-09-17 20:27:08 +02:00
|
|
|
private moderationLogService: ModerationLogService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const user = await this.usersRepository.findOneBy({ id: ps.userId });
|
|
|
|
|
|
|
|
if (user == null) {
|
|
|
|
throw new Error('user not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.userEntityService.isLocalUser(user)) {
|
|
|
|
throw new Error('user is not local user');
|
|
|
|
}
|
|
|
|
|
|
|
|
/*if (user.isAdmin) {
|
2022-07-04 17:21:01 +02:00
|
|
|
throw new Error('cannot suspend admin');
|
|
|
|
}
|
|
|
|
if (user.isModerator) {
|
|
|
|
throw new Error('cannot suspend moderator');
|
|
|
|
}*/
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
await this.usersRepository.update(user.id, {
|
|
|
|
driveCapacityOverrideMb: ps.overrideMb,
|
|
|
|
});
|
2022-07-04 17:21:01 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
this.moderationLogService.insertModerationLog(me, 'change-drive-capacity-override', {
|
|
|
|
targetId: user.id,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|