2021-08-19 15:55:45 +03:00
|
|
|
import define from '../../../define';
|
|
|
|
import { DriveFiles } from '@/models/index';
|
|
|
|
import { makePaginationQuery } from '../../../common/make-pagination-query';
|
2018-12-14 12:09:11 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
2018-12-14 12:09:11 +02:00
|
|
|
requireModerator: true,
|
|
|
|
|
2021-03-06 15:34:11 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
ref: 'DriveFile',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-12-14 12:09:11 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02: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' },
|
|
|
|
type: { type: 'string', nullable: true, pattern: /^[a-zA-Z0-9\/\-*]+$/.toString().slice(1, -1) },
|
|
|
|
origin: { type: 'string', enum: ['combined', 'local', 'remote'], default: "local" },
|
|
|
|
hostname: { type: 'string', nullable: true, default: null },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2020-10-17 14:12:00 +03:00
|
|
|
const query = makePaginationQuery(DriveFiles.createQueryBuilder('file'), ps.sinceId, ps.untilId);
|
|
|
|
|
|
|
|
if (ps.origin === 'local') {
|
|
|
|
query.andWhere('file.userHost IS NULL');
|
|
|
|
} else if (ps.origin === 'remote') {
|
|
|
|
query.andWhere('file.userHost IS NOT NULL');
|
|
|
|
}
|
2018-12-14 17:09:04 +02:00
|
|
|
|
2020-10-17 14:12:00 +03:00
|
|
|
if (ps.hostname) {
|
|
|
|
query.andWhere('file.userHost = :hostname', { hostname: ps.hostname });
|
|
|
|
}
|
|
|
|
|
|
|
|
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 12:09:11 +02:00
|
|
|
|
2022-02-19 07:05:32 +02:00
|
|
|
const files = await query.take(ps.limit).getMany();
|
2018-12-14 12:09:11 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await DriveFiles.packMany(files, { detail: true, withUser: true, self: true });
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|