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