2023-07-27 00:31:52 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 15:33:11 -05:00
|
|
|
import type { DriveFilesRepository } from '@/models/index.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { DriveService } from '@/core/DriveService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2019-05-15 06:41:01 -05:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2023-01-12 06:02:26 -06:00
|
|
|
requireAdmin: true,
|
2022-02-18 23:05:32 -06:00
|
|
|
} as const;
|
2019-05-15 06:41:01 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
required: ['userId'],
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2019-05-15 06:41:01 -05:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
@Injectable()
|
2023-08-17 07:20:58 -05:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 13:27:08 -05:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.driveFilesRepository)
|
|
|
|
private driveFilesRepository: DriveFilesRepository,
|
2019-05-15 06:41:01 -05:00
|
|
|
|
2022-09-17 13:27:08 -05: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 06:41:01 -05:00
|
|
|
}
|
2022-09-17 13:27:08 -05:00
|
|
|
}
|