2017-01-17 01:12:33 +01:00
|
|
|
import db from '../../db/mongodb';
|
|
|
|
|
2017-02-01 01:29:44 +01:00
|
|
|
const collection = db.get('drive_files');
|
|
|
|
|
2017-08-27 09:53:15 +02:00
|
|
|
(collection as any).createIndex('hash'); // fuck type definition
|
2017-02-01 01:29:44 +01:00
|
|
|
|
|
|
|
export default collection as any; // fuck type definition
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
export function validateFileName(name: string): boolean {
|
|
|
|
return (
|
|
|
|
(name.trim().length > 0) &&
|
|
|
|
(name.length <= 200) &&
|
|
|
|
(name.indexOf('\\') === -1) &&
|
|
|
|
(name.indexOf('/') === -1) &&
|
|
|
|
(name.indexOf('..') === -1)
|
|
|
|
);
|
|
|
|
}
|