yumechi-no-kuni/src/server/api/endpoints/drive/stream.ts

71 lines
1.3 KiB
TypeScript
Raw Normal View History

2019-02-04 20:48:08 -06:00
import $ from 'cafy';
import ID, { transform } from '../../../../misc/cafy-id';
import DriveFile, { packMany } from '../../../../models/drive-file';
2018-11-01 23:47:44 -05:00
import define from '../../define';
2016-12-28 16:49:51 -06:00
2018-07-16 14:36:44 -05:00
export const meta = {
requireCredential: true,
2018-11-01 13:32:24 -05:00
kind: 'drive-read',
2018-07-16 14:36:44 -05:00
2018-11-01 13:32:24 -05:00
params: {
limit: {
validator: $.num.optional.range(1, 100),
default: 10
},
sinceId: {
validator: $.type(ID).optional,
transform: transform,
},
untilId: {
validator: $.type(ID).optional,
transform: transform,
},
2016-12-28 16:49:51 -06:00
2018-11-01 13:32:24 -05:00
type: {
validator: $.str.optional.match(/^[a-zA-Z\/\-\*]+$/)
}
}
};
2016-12-28 16:49:51 -06:00
2018-11-01 23:47:44 -05:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2018-03-29 00:48:47 -05:00
// Check if both of sinceId and untilId is specified
2018-11-01 13:32:24 -05:00
if (ps.sinceId && ps.untilId) {
2018-03-29 00:48:47 -05:00
return rej('cannot set sinceId and untilId');
2016-12-28 16:49:51 -06:00
}
const sort = {
2017-01-22 03:13:12 -06:00
_id: -1
2016-12-28 16:49:51 -06:00
};
2018-08-21 19:33:59 -05:00
2016-12-28 16:49:51 -06:00
const query = {
2018-08-21 19:33:59 -05:00
'metadata.userId': user._id,
'metadata.deletedAt': { $exists: false }
2017-03-03 04:33:14 -06:00
} as any;
2018-08-21 19:33:59 -05:00
2018-11-01 13:32:24 -05:00
if (ps.sinceId) {
2017-01-22 03:13:12 -06:00
sort._id = 1;
2016-12-28 16:49:51 -06:00
query._id = {
2018-11-01 13:32:24 -05:00
$gt: ps.sinceId
2016-12-28 16:49:51 -06:00
};
2018-11-01 13:32:24 -05:00
} else if (ps.untilId) {
2016-12-28 16:49:51 -06:00
query._id = {
2018-11-01 13:32:24 -05:00
$lt: ps.untilId
2016-12-28 16:49:51 -06:00
};
}
2018-08-21 19:33:59 -05:00
2018-11-01 13:32:24 -05:00
if (ps.type) {
query.contentType = new RegExp(`^${ps.type.replace(/\*/g, '.+?')}$`);
2016-12-28 16:49:51 -06:00
}
const files = await DriveFile
.find(query, {
2018-11-01 13:32:24 -05:00
limit: ps.limit,
2016-12-28 16:49:51 -06:00
sort: sort
2017-01-16 20:11:22 -06:00
});
2016-12-28 16:49:51 -06:00
res(await packMany(files, { self: true }));
2018-11-01 23:47:44 -05:00
}));