fh-fhc
Version:
A Command Line Interface for FeedHenry
32 lines (28 loc) • 971 B
JavaScript
/* globals i18n */
var fs = require('fs');
module.exports = {
'desc' : i18n._('Creates A New Theme.'),
'examples' : [{ cmd : 'fhc appforms themes create --themefile=<path to theme json file>', desc : i18n._('Create A New Theme')}],
'demand' : ['themefile'],
'alias' : {},
'describe' : {
'themefile' : i18n._('A Path To A File Containing A Valid JSON Definition Of A Theme')
},
'url' : '/api/v2/appforms/themes',
'method' : 'post',
'preCmd' : function(params, cb) {
var themeFilePath = params.themefile;
//Reading The File Passed For Theme Content
fs.readFile(themeFilePath, function(err, themeFileContent) {
themeFileContent = themeFileContent || "";
var themeJSON;
try {
themeJSON = JSON.parse(themeFileContent);
} catch (e) {
return cb(i18n._("Invalid Theme JSON Object"));
}
//The POST Request Should Contain The Theme JSON Object
return cb(err, themeJSON);
});
}
};