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

167 lines
4.4 KiB
JavaScript
Raw Normal View History

#! /usr/bin/env node
/**
2015-12-19 17:37:42 +00:00
Command-line interface (CLI) for HackMyResume.
2015-11-19 06:57:15 +00:00
@license MIT. Copyright (c) 2015 James M. Devlin / FluentDesk.
2015-12-17 15:15:59 +00:00
@module index.js
*/
var ARGS = require( 'minimist' )
2015-12-19 17:37:42 +00:00
, FCMD = require( './hackmycmd')
2015-10-26 17:17:58 +00:00
, PKG = require('../package.json')
, COLORS = require('colors')
, FS = require('fs')
, PATH = require('path')
2015-12-29 10:09:05 +00:00
, HACKMYSTATUS = require('./core/status-codes')
2015-11-21 12:59:30 +00:00
, opts = { }
2015-12-19 17:37:42 +00:00
, title = ('\n*** HackMyResume v' + PKG.version + ' ***').bold.white
2015-11-21 15:33:16 +00:00
, _ = require('underscore');
2015-10-26 17:17:58 +00:00
try {
main();
}
catch( ex ) {
handleError( ex );
}
2015-10-26 17:17:58 +00:00
function main() {
// Colorize
COLORS.setTheme({
title: ['white','bold'],
info: process.platform === 'win32' ? 'gray' : ['white','dim'],
infoBold: ['white','dim'],
warn: 'yellow',
error: 'red',
guide: 'yellow',
status: 'gray',//['white','dim'],
useful: 'green',
});
// Setup
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
2015-11-21 15:33:16 +00:00
var params = a._.map( function(p){ return p.toLowerCase().trim(); });
var verb = params[0];
if( !FCMD.verbs[ verb ] ) {
logMsg('Invalid command: "'.warn + verb.warn.bold + '"'.warn);
2015-11-21 12:59:30 +00:00
return;
}
// Find the TO keyword, if any
2015-11-21 15:33:16 +00:00
var splitAt = _.indexOf( params, 'to' );
if( splitAt === a._.length - 1 ) {
// 'TO' cannot be the last argument
2015-12-02 19:56:36 +00:00
logMsg('Please '.warn + 'specify an output file'.warn.bold +
' for this operation or '.warn + 'omit the TO keyword'.warn.bold +
'.'.warn );
2015-11-21 15:33:16 +00:00
return;
}
// Massage inputs and outputs
2015-11-21 15:33:16 +00:00
var src = a._.slice(1, splitAt === -1 ? undefined : splitAt );
var dst = splitAt === -1 ? [] : a._.slice( splitAt + 1 );
2015-12-21 07:56:02 +00:00
( splitAt === -1 ) && src.length > 1 && dst.push( src.pop() ); // Allow omitting TO keyword
2015-11-21 15:33:16 +00:00
var parms = [ src, 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 ) {
2015-12-10 02:44:35 +00:00
var noPretty = args.nopretty || args.n;
noPretty = noPretty && (noPretty === true || noPretty === 'true');
return {
theme: args.t || 'modern',
2015-12-02 19:56:36 +00:00
format: args.f || 'FRESH',
prettify: !noPretty,
silent: args.s || args.silent
};
}
// TODO: refactor
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-12-29 10:09:05 +00:00
case HACKMYSTATUS.themeNotFound:
msg = "The specified theme couldn't be found: " + ex.data;
break;
case HACKMYSTATUS.copyCSS:
msg = "Couldn't copy CSS file to destination folder";
break;
case HACKMYSTATUS.resumeNotFound:
msg = 'Please '.guide + 'specify a valid input resume'.guide.bold +
' in FRESH or JSON Resume format.'.guide;
break;
case HACKMYSTATUS.missingCommand:
msg = title + "\nPlease ".guide + "specify a command".guide.bold + " (".guide +
2015-11-21 12:59:30 +00:00
Object.keys( FCMD.verbs ).map( function(v, idx, ar) {
2015-12-10 02:44:35 +00:00
return (idx === ar.length - 1 ? 'or '.guide : '') +
v.toUpperCase().guide;
2015-12-29 10:09:05 +00:00
}).join(', '.guide) + ").\n\n".guide +
FS.readFileSync( PATH.join(__dirname, 'use.txt'), 'utf8' ).info.bold;
break;
case HACKMYSTATUS.invalidCommand:
msg = 'Please '.guide + 'specify the output resume file'.guide.bold +
' that should be created.'.guide;
break;
case HACKMYSTATUS.resumeNotFoundAlt:
msg = 'Please '.guide + 'specify a valid input resume'.guide.bold +
' in either FRESH or JSON Resume format.'.guide;
break;
case HACKMYSTATUS.inputOutputParity:
msg = 'Please '.guide + 'specify an output file name'.guide.bold +
' for every input file you wish to convert.'.guide;
break;
case HACKMYSTATUS.createNameMissing:
msg = 'Please '.guide + 'specify the filename of the resume'.guide.bold +
' to create.'.guide;
2015-11-21 15:33:16 +00:00
break;
2015-12-29 10:09:05 +00:00
2015-12-10 02:44:35 +00: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 );
if( !ex.fluenterror || ex.fluenterror < 3 ) { // TODO: magic #s
2015-11-21 12:59:30 +00:00
console.log( ('ERROR: ' + trimmed.toString()).red.bold );
console.log( ex.stack.gray);
}
2015-11-21 12:59:30 +00:00
else
console.log( trimmed.toString() );
2015-10-26 17:17:58 +00:00
process.exit( exitCode );
}