Sharkey/packages/backend/src/server/api/endpoints/drive/files/find-by-hash.ts

38 lines
716 B
TypeScript
Raw Normal View History

2019-04-24 14:54:19 +09:00
import $ from 'cafy';
import define from '../../../define';
import { DriveFiles } from '@/models/index';
2019-04-24 14:54:19 +09:00
export const meta = {
tags: ['drive'],
2020-02-15 21:33:32 +09:00
requireCredential: true as const,
2019-04-24 14:54:19 +09:00
kind: 'read:drive',
params: {
md5: {
validator: $.str,
2021-12-09 23:58:30 +09:00
},
2019-04-24 14:54:19 +09:00
},
res: {
2019-06-27 18:04:09 +09:00
type: 'array' as const,
optional: false as const, nullable: false as const,
2019-04-24 14:54:19 +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-24 14:54:19 +09:00
ref: 'DriveFile',
2021-12-09 23:58:30 +09:00
},
2019-04-24 14:54:19 +09:00
},
};
2022-01-03 02:12:50 +09:00
// eslint-disable-next-line import/no-default-export
2019-04-24 14:54:19 +09:00
export default define(meta, async (ps, user) => {
const files = await DriveFiles.find({
md5: ps.md5,
userId: user.id,
});
return await DriveFiles.packMany(files, { self: true });
});