2023-07-27 00:31:52 -05:00
|
|
|
/*
|
2024-02-13 09:59:27 -06:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 00:31:52 -05:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2023-09-15 00:28:29 -05:00
|
|
|
import type { DriveFilesRepository } from '@/models/_.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { QueryService } from '@/core/QueryService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-23 16:45:44 -05:00
|
|
|
import { DriveFileEntityService } from '@/core/entities/DriveFileEntityService.js';
|
2018-12-14 04:09:11 -06:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2023-01-05 17:05:02 -06:00
|
|
|
requireCredential: true,
|
2018-12-14 04:09:11 -06:00
|
|
|
requireModerator: true,
|
2023-12-27 00:08:59 -06:00
|
|
|
kind: 'read:admin:drive',
|
2018-12-14 04:09:11 -06:00
|
|
|
|
2021-03-06 07:34:11 -06:00
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 07:34:11 -06:00
|
|
|
items: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 08:58:30 -06:00
|
|
|
ref: 'DriveFile',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2018-12-14 04:09:11 -06:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
2022-06-24 07:43:28 -05:00
|
|
|
userId: { type: 'string', format: 'misskey:id', nullable: true },
|
2022-02-18 23:05:32 -06:00
|
|
|
type: { type: 'string', nullable: true, pattern: /^[a-zA-Z0-9\/\-*]+$/.toString().slice(1, -1) },
|
2022-06-24 07:43:28 -05:00
|
|
|
origin: { type: 'string', enum: ['combined', 'local', 'remote'], default: 'local' },
|
2022-04-02 23:57:26 -05:00
|
|
|
hostname: {
|
|
|
|
type: 'string',
|
|
|
|
nullable: true,
|
|
|
|
default: null,
|
|
|
|
description: 'The local host is represented with `null`.',
|
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
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,
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2022-09-23 16:45:44 -05:00
|
|
|
private driveFileEntityService: DriveFileEntityService,
|
2022-09-17 13:27:08 -05:00
|
|
|
private queryService: QueryService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const query = this.queryService.makePaginationQuery(this.driveFilesRepository.createQueryBuilder('file'), ps.sinceId, ps.untilId);
|
2018-12-14 09:09:04 -06:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
if (ps.userId) {
|
|
|
|
query.andWhere('file.userId = :userId', { userId: ps.userId });
|
|
|
|
} else {
|
|
|
|
if (ps.origin === 'local') {
|
|
|
|
query.andWhere('file.userHost IS NULL');
|
|
|
|
} else if (ps.origin === 'remote') {
|
|
|
|
query.andWhere('file.userHost IS NOT NULL');
|
|
|
|
}
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
if (ps.hostname) {
|
|
|
|
query.andWhere('file.userHost = :hostname', { hostname: ps.hostname });
|
|
|
|
}
|
|
|
|
}
|
2018-12-14 04:09:11 -06:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
if (ps.type) {
|
|
|
|
if (ps.type.endsWith('/*')) {
|
|
|
|
query.andWhere('file.type like :type', { type: ps.type.replace('/*', '/') + '%' });
|
|
|
|
} else {
|
|
|
|
query.andWhere('file.type = :type', { type: ps.type });
|
|
|
|
}
|
|
|
|
}
|
2018-12-14 04:09:11 -06:00
|
|
|
|
2023-07-08 02:53:07 -05:00
|
|
|
const files = await query.limit(ps.limit).getMany();
|
2022-09-17 13:27:08 -05:00
|
|
|
|
|
|
|
return await this.driveFileEntityService.packMany(files, { detail: true, withUser: true, self: true });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|