2756f553c6
* wip
* wip
* wip
* Update attached_notes.ts
* wip
* Refactor
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* Update call.ts
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* ✌️
* Fix
66 lines
1.3 KiB
TypeScript
66 lines
1.3 KiB
TypeScript
import $ from 'cafy';
|
|
import File, { packMany } from '../../../../../models/drive-file';
|
|
import define from '../../../define';
|
|
import { fallback } from '../../../../../prelude/symbol';
|
|
|
|
export const meta = {
|
|
requireCredential: false,
|
|
requireModerator: true,
|
|
|
|
params: {
|
|
limit: {
|
|
validator: $.optional.num.range(1, 100),
|
|
default: 10
|
|
},
|
|
|
|
offset: {
|
|
validator: $.optional.num.min(0),
|
|
default: 0
|
|
},
|
|
|
|
sort: {
|
|
validator: $.optional.str.or([
|
|
'+createdAt',
|
|
'-createdAt',
|
|
'+size',
|
|
'-size',
|
|
]),
|
|
},
|
|
|
|
origin: {
|
|
validator: $.optional.str.or([
|
|
'combined',
|
|
'local',
|
|
'remote',
|
|
]),
|
|
default: 'local'
|
|
}
|
|
}
|
|
};
|
|
|
|
const sort: any = { // < https://github.com/Microsoft/TypeScript/issues/1863
|
|
'+createdAt': { uploadDate: -1 },
|
|
'-createdAt': { uploadDate: 1 },
|
|
'+size': { length: -1 },
|
|
'-size': { length: 1 },
|
|
[fallback]: { _id: -1 }
|
|
};
|
|
|
|
export default define(meta, async (ps, me) => {
|
|
const q = {
|
|
'metadata.deletedAt': { $exists: false },
|
|
} as any;
|
|
|
|
if (ps.origin == 'local') q['metadata._user.host'] = null;
|
|
if (ps.origin == 'remote') q['metadata._user.host'] = { $ne: null };
|
|
|
|
const files = await File
|
|
.find(q, {
|
|
limit: ps.limit,
|
|
sort: sort[ps.sort] || sort[fallback],
|
|
skip: ps.offset
|
|
});
|
|
|
|
return await packMany(files, { detail: true, withUser: true, self: true });
|
|
});
|