cloudcmd/server/validate.js
2016-12-23 11:46:17 +02:00

40 lines
869 B
JavaScript

'use strict';
const exit = require('./exit');
module.exports.root = root;
module.exports.editor = editor;
module.exports.packer = packer;
function root(dir, fn) {
if (typeof dir !== 'string')
throw Error('dir should be a string');
if (dir === '/')
return;
const fs = require('fs');
fs.stat(dir, (error) => {
if (error)
return exit('cloudcmd --root: %s', error.message);
if (typeof fn === 'function')
fn('root:', dir);
});
}
function editor(name) {
const reg = /^(dword|edward|deepword)$/;
if (!reg.test(name))
exit('cloudcmd --editor: could be "dword", "edward" or "deepword" only');
}
function packer(name) {
const reg = /^(tar|zip)$/;
if (!reg.test(name))
exit('cloudcmd --packer: could be "tar" or "zip" only');
}