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