2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { DriveFilesRepository } from '@/models/index.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { QueryService } from '@/core/QueryService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-24 00:45:44 +03:00
|
|
|
import { DriveFileEntityService } from '@/core/entities/DriveFileEntityService.js';
|
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' },
|
2022-06-24 15:43:28 +03:00
|
|
|
userId: { type: 'string', format: 'misskey:id', nullable: true },
|
2022-02-19 07:05:32 +02:00
|
|
|
type: { type: 'string', nullable: true, pattern: /^[a-zA-Z0-9\/\-*]+$/.toString().slice(1, -1) },
|
2022-06-24 15:43:28 +03:00
|
|
|
origin: { type: 'string', enum: ['combined', 'local', 'remote'], default: 'local' },
|
2022-04-03 07:57:26 +03:00
|
|
|
hostname: {
|
|
|
|
type: 'string',
|
|
|
|
nullable: true,
|
|
|
|
default: null,
|
|
|
|
description: 'The local host is represented with `null`.',
|
|
|
|
},
|
2022-02-19 07:05:32 +02:00
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.driveFilesRepository)
|
|
|
|
private driveFilesRepository: DriveFilesRepository,
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-09-24 00:45:44 +03:00
|
|
|
private driveFileEntityService: DriveFileEntityService,
|
2022-09-17 21:27:08 +03: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 17:09:04 +02:00
|
|
|
|
2022-09-17 21:27:08 +03: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 14:12:00 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.hostname) {
|
|
|
|
query.andWhere('file.userHost = :hostname', { hostname: ps.hostname });
|
|
|
|
}
|
|
|
|
}
|
2018-12-14 12:09:11 +02:00
|
|
|
|
2022-09-17 21:27:08 +03: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 12:09:11 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
const files = await query.take(ps.limit).getMany();
|
|
|
|
|
|
|
|
return await this.driveFileEntityService.packMany(files, { detail: true, withUser: true, self: true });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|