feat: added type checkers

pull/243/head
Josh Moore 2 years ago
parent fce1b30e3f
commit cb41aeaa3c

@ -1,7 +1,47 @@
import fs from 'fs-extra';
import { UserConfiguration, UserConfigTypeChecker } from 'ass';
/**
* Returns a boolean if the provided value is a number
*/
const numChecker = (val: string) => {
try { parseInt(val); return true; }
catch (err) { return false; }
}
/**
* User-config property type checker functions
*/
const Checkers: UserConfigTypeChecker = {
uploadsDir: (val) => {
try { fs.accessSync(val); return true; }
catch (err) { return false; }
},
idType: (val) => {
const options = ['random', 'original', 'gfycat', 'timestamp', 'zws'];
return options.includes(val);
},
idSize: numChecker,
gfySize: numChecker,
maximumFileSize: numChecker,
}
export class UserConfig {
private config: UserConfiguration;
public getConfig = () => this.config;
constructor(config?: UserConfiguration) {
if (config != null) this.config = this.parseConfig(config);
}
private parseConfig(config: UserConfiguration) {
if (!Checkers.uploadsDir(config.uploadsDir)) throw new Error(`Unable to access uploads directory: ${config.uploadsDir}`);
if (!Checkers.idType(config.idType)) throw new Error(`Invalid ID type: ${config.idType}`);
if (!Checkers.idSize(config.idSize)) throw new Error(`Invalid ID size: ${config.idSize}`);
if (!Checkers.gfySize(config.gfySize)) throw new Error(`Invalid Gfy size: ${config.gfySize}`);
if (!Checkers.maximumFileSize(config.maximumFileSize)) throw new Error(`Invalid maximum file size: ${config.maximumFileSize}`);
// All is fine, carry on!
return config;
}
}

@ -5,7 +5,8 @@
"lib": [
"ES2022",
],
"moduleResolution": "Node"
"moduleResolution": "Node",
"strictPropertyInitialization": false
},
"include": [
"./**/*.ts",

8
common/types.d.ts vendored

@ -19,6 +19,14 @@ declare module 'ass' {
gfySize: number;
maximumFileSize: number;
}
interface UserConfigTypeChecker {
uploadsDir: (val: any) => boolean;
idType: (val: any) => boolean;
idSize: (val: any) => boolean;
gfySize: (val: any) => boolean;
maximumFileSize: (val: any) => boolean;
}
}
//#region Dummy modules

Loading…
Cancel
Save