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 { DriveFilesRepository } from '@/models/index.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { DriveService } from '@/core/DriveService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2019-05-15 13:41:01 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2023-01-12 13:02:26 +01:00
|
|
|
requireAdmin: true,
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
2019-05-15 13:41:01 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-02-19 06:05:32 +01:00
|
|
|
required: ['userId'],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2019-05-15 13:41:01 +02:00
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// 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.driveFilesRepository)
|
|
|
|
private driveFilesRepository: DriveFilesRepository,
|
2019-05-15 13:41:01 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
private driveService: DriveService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const files = await this.driveFilesRepository.findBy({
|
|
|
|
userId: ps.userId,
|
|
|
|
});
|
|
|
|
|
|
|
|
for (const file of files) {
|
|
|
|
this.driveService.deleteFile(file);
|
|
|
|
}
|
|
|
|
});
|
2019-05-15 13:41:01 +02:00
|
|
|
}
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|