2019-02-05 11:48:08 +09:00
|
|
|
import $ from 'cafy';
|
2021-08-19 21:55:45 +09:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { DriveFiles } from '@/models/index';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['drive'],
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: true as const,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'read:drive',
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-11-02 03:32:24 +09:00
|
|
|
default: 10
|
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
untilId: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
type: {
|
2019-05-05 09:27:55 +09:00
|
|
|
validator: $.optional.str.match(/^[a-zA-Z\/\-*]+$/)
|
2018-11-02 03:32:24 +09:00
|
|
|
}
|
2019-02-24 18:13:11 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-24 18:13:11 +09:00
|
|
|
items: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 22:35:26 +09:00
|
|
|
ref: 'DriveFile',
|
|
|
|
}
|
2019-02-24 18:13:11 +09:00
|
|
|
},
|
2018-11-02 03:32:24 +09:00
|
|
|
};
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 21:50:36 +09:00
|
|
|
const query = makePaginationQuery(DriveFiles.createQueryBuilder('file'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere('file.userId = :userId', { userId: user.id });
|
2018-08-22 09:33:59 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
if (ps.type) {
|
2019-04-07 21:50:36 +09:00
|
|
|
if (ps.type.endsWith('/*')) {
|
|
|
|
query.andWhere('file.type like :type', { type: ps.type.replace('/*', '/') + '%' });
|
|
|
|
} else {
|
|
|
|
query.andWhere('file.type = :type', { type: ps.type });
|
|
|
|
}
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
2019-04-13 01:43:22 +09:00
|
|
|
const files = await query.take(ps.limit!).getMany();
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
return await DriveFiles.packMany(files, { detail: false, self: true });
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|