mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 16:57:14 +01:00
28 lines
724 B
TypeScript
28 lines
724 B
TypeScript
import * as mongodb from 'mongodb';
|
|
import monkDb, { nativeDbConn } from '../../db/mongodb';
|
|
|
|
const collection = monkDb.get('drive_files.files');
|
|
|
|
(collection as any).createIndex('hash'); // fuck type definition
|
|
|
|
export default collection as any; // fuck type definition
|
|
|
|
const getGridFSBucket = async (): Promise<mongodb.GridFSBucket> => {
|
|
const db = await nativeDbConn()
|
|
const bucket = new mongodb.GridFSBucket(db, {
|
|
bucketName: 'drive_files'
|
|
})
|
|
return bucket
|
|
}
|
|
|
|
export { getGridFSBucket }
|
|
|
|
export function validateFileName(name: string): boolean {
|
|
return (
|
|
(name.trim().length > 0) &&
|
|
(name.length <= 200) &&
|
|
(name.indexOf('\\') === -1) &&
|
|
(name.indexOf('/') === -1) &&
|
|
(name.indexOf('..') === -1)
|
|
);
|
|
}
|