2022-02-27 02:07:39 +00:00
|
|
|
import { DriveFiles } from '@/models/index.js';
|
2022-08-03 11:18:33 +00:00
|
|
|
import define from '../../define.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query.js';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-07-16 19:36:44 +00:00
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['drive'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2018-07-16 19:36:44 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
kind: 'read:drive',
|
2018-07-16 19:36:44 +00:00
|
|
|
|
2019-02-23 02:20:58 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-23 02:20:58 +00:00
|
|
|
items: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'DriveFile',
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2019-02-23 02:20:58 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00: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' },
|
|
|
|
folderId: { type: 'string', format: 'misskey:id', nullable: true, default: null },
|
|
|
|
type: { type: 'string', nullable: true, pattern: /^[a-zA-Z\/\-*]+$/.toString().slice(1, -1) },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2019-04-07 12:50:36 +00:00
|
|
|
const query = makePaginationQuery(DriveFiles.createQueryBuilder('file'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere('file.userId = :userId', { userId: user.id });
|
2018-06-15 00:53:30 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (ps.folderId) {
|
|
|
|
query.andWhere('file.folderId = :folderId', { folderId: ps.folderId });
|
|
|
|
} else {
|
|
|
|
query.andWhere('file.folderId IS NULL');
|
2016-12-28 22:49:51 +00:00
|
|
|
}
|
2018-06-15 00:53:30 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
if (ps.type) {
|
2019-04-07 12:50:36 +00:00
|
|
|
if (ps.type.endsWith('/*')) {
|
|
|
|
query.andWhere('file.type like :type', { type: ps.type.replace('/*', '/') + '%' });
|
|
|
|
} else {
|
|
|
|
query.andWhere('file.type = :type', { type: ps.type });
|
|
|
|
}
|
2017-11-08 17:55:03 +00:00
|
|
|
}
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2022-02-19 05:05:32 +00:00
|
|
|
const files = await query.take(ps.limit).getMany();
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
return await DriveFiles.packMany(files, { detail: false, self: true });
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|