mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-05 14:13:16 +09:00
28 lines
815 B
TypeScript
28 lines
815 B
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { DriveFilesRepository } from '@/models/index.js';
|
|
import { DriveService } from '@/core/DriveService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<'admin/delete-all-files-of-a-user'> {
|
|
name = 'admin/delete-all-files-of-a-user' as const;
|
|
constructor(
|
|
@Inject(DI.driveFilesRepository)
|
|
private driveFilesRepository: DriveFilesRepository,
|
|
|
|
private driveService: DriveService,
|
|
) {
|
|
super(async (ps, me) => {
|
|
const files = await this.driveFilesRepository.findBy({
|
|
userId: ps.userId,
|
|
});
|
|
|
|
for (const file of files) {
|
|
this.driveService.deleteFile(file);
|
|
}
|
|
});
|
|
}
|
|
}
|