1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-08 02:30:05 +01:00
HackMyResume/src/index.js

92 lines
2.4 KiB
JavaScript
Raw Normal View History

#! /usr/bin/env node
/**
2015-11-19 06:57:15 +00:00
Command-line interface (CLI) for FluentCV:CLI.
@license MIT. Copyright (c) 2015 James M. Devlin / FluentDesk.
*/
var ARGS = require( 'minimist' )
2015-10-07 14:29:41 +01:00
, FCMD = require( './fluentcmd')
2015-10-26 17:17:58 +00:00
, PKG = require('../package.json')
2015-11-21 12:59:30 +00:00
, opts = { }
, title = ('*** FluentCV v' + PKG.version + ' ***').white.bold;
2015-10-26 17:17:58 +00:00
try {
main();
}
catch( ex ) {
handleError( ex );
}
2015-10-26 17:17:58 +00:00
function main() {
2015-11-21 12:59:30 +00:00
if( process.argv.length <= 2 ) { throw { fluenterror: 4 }; }
var a = ARGS( process.argv.slice(2) );
opts = getOpts( a );
2015-10-26 17:17:58 +00:00
logMsg( title );
// Get the action to be performed
var verb = a._[0].toLowerCase().trim();
if( !FCMD.verbs[ verb ] ) {
2015-11-21 12:59:30 +00:00
logMsg('Invalid command: "'.yellow + verb.yellow.bold + '"'.yellow);
return;
}
// Preload our params array
var dst = (a.o && ((typeof a.o === 'string' && [ a.o ]) || a.o)) || [];
dst = (dst === true) ? [] : dst; // Handle -o with missing output file
var parms = [ a._.slice(1) || [], dst, opts, logMsg ];
// Invoke the action
FCMD.verbs[ verb ].apply( null, parms );
}
2015-10-07 14:29:41 +01:00
function logMsg( msg ) {
opts.silent || console.log( msg );
}
function getOpts( args ) {
var noPretty = args['nopretty'] || args.n;
noPretty = noPretty && (noPretty === true || noPretty === 'true');
return {
theme: args.t || 'modern',
prettify: !noPretty,
silent: args.s || args.silent
};
}
function handleError( ex ) {
2015-10-26 17:17:58 +00:00
var msg = '', exitCode;
2015-10-07 14:29:41 +01:00
if( ex.fluenterror ){
switch( ex.fluenterror ) { // TODO: Remove magic numbers
2015-10-07 14:29:41 +01:00
case 1: msg = "The specified theme couldn't be found: " + ex.data; break;
case 2: msg = "Couldn't copy CSS file to destination folder"; break;
2015-11-21 12:59:30 +00:00
case 3: msg = "Please specify a valid SOURCE resume in FRESH or JSON Resume format.".gray; break;
case 4: msg = title + "\nPlease specify a valid command (".gray +
Object.keys( FCMD.verbs ).map( function(v, idx, ar) {
return (idx === ar.length - 1 ? 'or '.gray : '')
+ v.toUpperCase().white.bold;
}).join(', ') + ")";
2015-10-07 14:29:41 +01:00
};
2015-10-26 17:17:58 +00:00
exitCode = ex.fluenterror;
2015-10-07 14:29:41 +01:00
}
else {
msg = ex.toString();
2015-10-26 17:17:58 +00:00
exitCode = 4;
2015-10-07 14:29:41 +01:00
}
var idx = msg.indexOf('Error: ');
var trimmed = idx === -1 ? msg : msg.substring( idx + 7 );
2015-11-21 12:59:30 +00:00
if( !ex.fluenterror || ex.fluenterror !== 4 && ex.fluenterror !== 3 )
console.log( ('ERROR: ' + trimmed.toString()).red.bold );
else
console.log( trimmed.toString() );
2015-10-26 17:17:58 +00:00
process.exit( exitCode );
}