Sharkey/src/server/api/endpoints/drive/files.ts

86 lines
1.6 KiB
TypeScript
Raw Normal View History

2018-11-01 20:32:24 +02:00
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
import DriveFile, { packMany } from '../../../../models/drive-file';
2018-06-18 03:54:53 +03:00
import { ILocalUser } from '../../../../models/user';
2018-11-01 20:32:24 +02:00
import getParams from '../../get-params';
2016-12-29 00:49:51 +02:00
2018-07-16 22:36:44 +03:00
export const meta = {
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'ドライブのファイル一覧を取得します。',
'en-US': 'Get files of drive.'
2018-07-16 22:36:44 +03:00
},
requireCredential: true,
2018-11-01 20:32:24 +02:00
kind: 'drive-read',
2018-07-16 22:36:44 +03:00
2018-11-01 20:32:24 +02:00
params: {
limit: {
validator: $.num.optional.range(1, 100),
default: 10
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
sinceId: {
validator: $.type(ID).optional,
transform: transform,
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
untilId: {
validator: $.type(ID).optional,
transform: transform,
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
folderId: {
validator: $.type(ID).optional.nullable,
default: null as any,
transform: transform,
},
type: {
validator: $.str.optional.match(/^[a-zA-Z\/\-\*]+$/)
}
2016-12-29 00:49:51 +02:00
}
2018-11-01 20:32:24 +02:00
};
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
export default async (params: any, user: ILocalUser) => {
const [ps, psErr] = getParams(meta, params);
if (psErr) throw psErr;
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
// Check if both of sinceId and untilId is specified
if (ps.sinceId && ps.untilId) {
throw 'cannot set sinceId and untilId';
}
2017-11-08 19:55:03 +02:00
2016-12-29 00:49:51 +02:00
const sort = {
_id: -1
};
2016-12-29 00:49:51 +02:00
const query = {
2018-03-29 08:48:47 +03:00
'metadata.userId': user._id,
2018-11-01 20:32:24 +02:00
'metadata.folderId': ps.folderId,
'metadata.deletedAt': { $exists: false }
2017-03-03 12:33:14 +02:00
} as any;
2018-11-01 20:32:24 +02:00
if (ps.sinceId) {
2016-12-29 00:49:51 +02:00
sort._id = 1;
query._id = {
2018-11-01 20:32:24 +02:00
$gt: ps.sinceId
2016-12-29 00:49:51 +02:00
};
2018-11-01 20:32:24 +02:00
} else if (ps.untilId) {
2016-12-29 00:49:51 +02:00
query._id = {
2018-11-01 20:32:24 +02:00
$lt: ps.untilId
2016-12-29 00:49:51 +02:00
};
}
2018-11-01 20:32:24 +02:00
if (ps.type) {
query.contentType = new RegExp(`^${ps.type.replace(/\*/g, '.+?')}$`);
2017-11-08 19:55:03 +02:00
}
2016-12-29 00:49:51 +02:00
const files = await DriveFile
.find(query, {
2018-11-01 20:32:24 +02:00
limit: ps.limit,
2016-12-29 00:49:51 +02:00
sort: sort
2017-01-17 04:11:22 +02:00
});
2016-12-29 00:49:51 +02:00
return await packMany(files);
2017-11-06 09:09:51 +02:00
};