mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-22 16:30:11 +00:00
Refactor verbs to separate files.
This commit is contained in:
parent
65b6359fd8
commit
c966f6766c
19
src/core/default-formats.js
Normal file
19
src/core/default-formats.js
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
(function(){
|
||||||
|
|
||||||
|
var FLUENT = require('../hackmyapi');
|
||||||
|
|
||||||
|
/**
|
||||||
|
Supported resume formats.
|
||||||
|
*/
|
||||||
|
module.exports = [
|
||||||
|
{ name: 'html', ext: 'html', gen: new FLUENT.HtmlGenerator() },
|
||||||
|
{ name: 'txt', ext: 'txt', gen: new FLUENT.TextGenerator() },
|
||||||
|
{ name: 'doc', ext: 'doc', fmt: 'xml', gen: new FLUENT.WordGenerator() },
|
||||||
|
{ name: 'pdf', ext: 'pdf', fmt: 'html', is: false, gen: new FLUENT.HtmlPdfGenerator() },
|
||||||
|
{ name: 'md', ext: 'md', fmt: 'txt', gen: new FLUENT.MarkdownGenerator() },
|
||||||
|
{ name: 'json', ext: 'json', gen: new FLUENT.JsonGenerator() },
|
||||||
|
{ name: 'yml', ext: 'yml', fmt: 'yml', gen: new FLUENT.JsonYamlGenerator() },
|
||||||
|
{ name: 'latex', ext: 'tex', fmt: 'latex', gen: new FLUENT.LaTeXGenerator() }
|
||||||
|
];
|
||||||
|
|
||||||
|
}());
|
13
src/core/default-options.js
Normal file
13
src/core/default-options.js
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
(function(){
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
theme: 'modern',
|
||||||
|
prettify: { // ← See https://github.com/beautify-web/js-beautify#options
|
||||||
|
indent_size: 2,
|
||||||
|
unformatted: ['em','strong'],
|
||||||
|
max_char: 80, // ← See lib/html.js in above-linked repo
|
||||||
|
//wrap_line_length: 120, ← Don't use this
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
}());
|
13
src/core/load-source-resumes.js
Normal file
13
src/core/load-source-resumes.js
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
(function(){
|
||||||
|
|
||||||
|
var FRESHResume = require('../core/fresh-resume');
|
||||||
|
|
||||||
|
module.exports = function loadSourceResumes( src, log, fn ) {
|
||||||
|
return src.map( function( res ) {
|
||||||
|
log( 'Reading '.info + 'SOURCE'.infoBold + ' resume: '.info +
|
||||||
|
res.cyan.bold );
|
||||||
|
return (fn && fn(res)) || (new FRESHResume()).open( res );
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
}());
|
323
src/hackmycmd.js
323
src/hackmycmd.js
@ -7,279 +7,9 @@ Internal resume generation logic for HackMyResume.
|
|||||||
(function() {
|
(function() {
|
||||||
module.exports = function () {
|
module.exports = function () {
|
||||||
|
|
||||||
var path = require( 'path' )
|
var unused = require('./utils/string')
|
||||||
, extend = require( './utils/extend' )
|
, PATH = require('path');
|
||||||
, unused = require('./utils/string')
|
|
||||||
, FS = require('fs')
|
|
||||||
, _ = require('underscore')
|
|
||||||
, FLUENT = require('./hackmyapi')
|
|
||||||
, PATH = require('path')
|
|
||||||
, MKDIRP = require('mkdirp')
|
|
||||||
//, COLORS = require('colors')
|
|
||||||
, rez, _log, _err;
|
|
||||||
|
|
||||||
/**
|
|
||||||
Given a source JSON resume, a destination resume path, and a theme file,
|
|
||||||
generate 0..N resumes in the desired formats.
|
|
||||||
@param src Path to the source JSON resume file: "rez/resume.json".
|
|
||||||
@param dst An array of paths to the target resume file(s).
|
|
||||||
@param theme Friendly name of the resume theme. Defaults to "modern".
|
|
||||||
@param logger Optional logging override.
|
|
||||||
*/
|
|
||||||
function generate( src, dst, opts, logger, errHandler ) {
|
|
||||||
|
|
||||||
_log = logger || console.log;
|
|
||||||
_err = errHandler || error;
|
|
||||||
|
|
||||||
//_opts = extend( true, _opts, opts );
|
|
||||||
_opts.theme = (opts.theme && opts.theme.toLowerCase().trim())|| 'modern';
|
|
||||||
_opts.prettify = opts.prettify === true ? _opts.prettify : false;
|
|
||||||
|
|
||||||
// Load input resumes...
|
|
||||||
if(!src || !src.length) { throw { fluenterror: 3 }; }
|
|
||||||
var sheets = loadSourceResumes( src );
|
|
||||||
|
|
||||||
// Merge input resumes...
|
|
||||||
var msg = '';
|
|
||||||
rez = _.reduceRight( sheets, function( a, b, idx ) {
|
|
||||||
msg += ((idx == sheets.length - 2) ?
|
|
||||||
'Merging '.gray+ a.imp.fileName : '') + ' onto '.gray + b.imp.fileName;
|
|
||||||
return extend( true, b, a );
|
|
||||||
});
|
|
||||||
msg && _log(msg);
|
|
||||||
|
|
||||||
// Verify the specified theme name/path
|
|
||||||
var relativeThemeFolder = '../node_modules/fluent-themes/themes';
|
|
||||||
var tFolder = PATH.resolve( __dirname, relativeThemeFolder, _opts.theme);
|
|
||||||
var exists = require('./utils/file-exists');
|
|
||||||
if (!exists( tFolder )) {
|
|
||||||
tFolder = PATH.resolve( _opts.theme );
|
|
||||||
if (!exists( tFolder )) {
|
|
||||||
throw { fluenterror: 1, data: _opts.theme };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Load the theme
|
|
||||||
var theTheme = new FLUENT.Theme().open( tFolder );
|
|
||||||
_opts.themeObj = theTheme;
|
|
||||||
_log( 'Applying '.info + theTheme.name.toUpperCase().infoBold +
|
|
||||||
(' theme (' +Object.keys(theTheme.formats).length + ' formats)').info);
|
|
||||||
|
|
||||||
// Expand output resumes... (can't use map() here)
|
|
||||||
var targets = [], that = this;
|
|
||||||
( (dst && dst.length && dst) || ['resume.all'] ).forEach( function(t) {
|
|
||||||
|
|
||||||
var to = path.resolve(t),
|
|
||||||
pa = path.parse(to),
|
|
||||||
fmat = pa.ext || '.all';
|
|
||||||
|
|
||||||
targets.push.apply(targets, fmat === '.all' ?
|
|
||||||
Object.keys( theTheme.formats ).map(function(k){
|
|
||||||
var z = theTheme.formats[k];
|
|
||||||
return { file: to.replace(/all$/g,z.outFormat), fmt: z };
|
|
||||||
}) : [{ file: to, fmt: theTheme.getFormat( fmat.slice(1) ) }]);
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
// Run the transformation!
|
|
||||||
var finished = targets.map( function(t) { return single(t, theTheme); });
|
|
||||||
|
|
||||||
// Don't send the client back empty-handed
|
|
||||||
return { sheet: rez, targets: targets, processed: finished };
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Generate a single resume of a specific format.
|
|
||||||
@param f Full path to the destination resume to generate, for example,
|
|
||||||
"/foo/bar/resume.pdf" or "c:\foo\bar\resume.txt".
|
|
||||||
*/
|
|
||||||
function single( targInfo, theme ) {
|
|
||||||
try {
|
|
||||||
var f = targInfo.file
|
|
||||||
, fType = targInfo.fmt.outFormat
|
|
||||||
, fName = path.basename(f, '.' + fType)
|
|
||||||
, theFormat;
|
|
||||||
|
|
||||||
// If targInfo.fmt.files exists, this theme has an explicit "files"
|
|
||||||
// section in its theme.json file.
|
|
||||||
if( targInfo.fmt.files && targInfo.fmt.files.length ) {
|
|
||||||
|
|
||||||
_log( 'Generating '.useful +
|
|
||||||
targInfo.fmt.outFormat.toUpperCase().useful.bold +
|
|
||||||
' resume: '.useful + path.relative(process.cwd(), f ).replace(/\\/g,'/').useful.bold);
|
|
||||||
|
|
||||||
theFormat = _fmts.filter(
|
|
||||||
function(fmt) { return fmt.name === targInfo.fmt.outFormat; })[0];
|
|
||||||
MKDIRP.sync( path.dirname( f ) ); // Ensure dest folder exists;
|
|
||||||
theFormat.gen.generate( rez, f, _opts );
|
|
||||||
|
|
||||||
// targInfo.fmt.files.forEach( function( form ) {
|
|
||||||
//
|
|
||||||
// if( form.action === 'transform' ) {
|
|
||||||
// var theFormat = _fmts.filter( function( fmt ) {
|
|
||||||
// return fmt.name === targInfo.fmt.outFormat;
|
|
||||||
// })[0];
|
|
||||||
// MKDIRP.sync( path.dirname( f ) ); // Ensure dest folder exists;
|
|
||||||
// theFormat.gen.generate( rez, f, _opts );
|
|
||||||
// }
|
|
||||||
// else if( form.action === null ) {
|
|
||||||
// // Copy the file
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// });
|
|
||||||
|
|
||||||
}
|
|
||||||
// Otherwise the theme has no files section
|
|
||||||
else {
|
|
||||||
_log( 'Generating '.useful +
|
|
||||||
targInfo.fmt.outFormat.toUpperCase().useful.bold +
|
|
||||||
' resume: '.useful + path.relative(process.cwd(), f ).replace(/\\/g,'/').useful.bold);
|
|
||||||
|
|
||||||
theFormat = _fmts.filter(
|
|
||||||
function(fmt) { return fmt.name === targInfo.fmt.outFormat; })[0];
|
|
||||||
MKDIRP.sync( path.dirname( f ) ); // Ensure dest folder exists;
|
|
||||||
theFormat.gen.generate( rez, f, _opts );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch( ex ) {
|
|
||||||
_err( ex );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Handle an exception.
|
|
||||||
*/
|
|
||||||
function error( ex ) {
|
|
||||||
throw ex;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Validate 1 to N resumes in either FRESH or JSON Resume format.
|
|
||||||
*/
|
|
||||||
function validate( src, unused, opts, logger ) {
|
|
||||||
_log = logger || console.log;
|
|
||||||
if( !src || !src.length ) { throw { fluenterror: 6 }; }
|
|
||||||
var isValid = true;
|
|
||||||
|
|
||||||
var validator = require('is-my-json-valid');
|
|
||||||
var schemas = {
|
|
||||||
fresh: require('FRESCA'),
|
|
||||||
jars: require('./core/resume.json')
|
|
||||||
};
|
|
||||||
|
|
||||||
// Load input resumes...
|
|
||||||
var sheets = loadSourceResumes(src, function( res ) {
|
|
||||||
try {
|
|
||||||
return {
|
|
||||||
file: res,
|
|
||||||
raw: FS.readFileSync( res, 'utf8' )
|
|
||||||
};
|
|
||||||
}
|
|
||||||
catch( ex ) {
|
|
||||||
throw ex;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
sheets.forEach( function( rep ) {
|
|
||||||
|
|
||||||
var rez;
|
|
||||||
try {
|
|
||||||
rez = JSON.parse( rep.raw );
|
|
||||||
}
|
|
||||||
catch( ex ) {
|
|
||||||
_log('Validating '.info + rep.file.infoBold +
|
|
||||||
' against FRESH/JRS schema: '.info + 'ERROR!'.error.bold);
|
|
||||||
|
|
||||||
if (ex instanceof SyntaxError) {
|
|
||||||
// Invalid JSON
|
|
||||||
_log( '--> '.bold.red + rep.file.toUpperCase().red +
|
|
||||||
' contains invalid JSON. Unable to validate.'.red );
|
|
||||||
_log( (' INTERNAL: ' + ex).red );
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
|
|
||||||
_log(('ERROR: ' + ex.toString()).red.bold);
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var isValid = false;
|
|
||||||
var style = 'useful';
|
|
||||||
var errors = [];
|
|
||||||
var fmt = rez.meta &&
|
|
||||||
(rez.meta.format === 'FRESH@0.1.0') ? 'fresh':'jars';
|
|
||||||
|
|
||||||
try {
|
|
||||||
|
|
||||||
var validate = validator( schemas[ fmt ], { // Note [1]
|
|
||||||
formats: {
|
|
||||||
date: /^\d{4}(?:-(?:0[0-9]{1}|1[0-2]{1})(?:-[0-9]{2})?)?$/
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
isValid = validate( rez );
|
|
||||||
if( !isValid ) {
|
|
||||||
style = 'warn';
|
|
||||||
errors = validate.errors;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
catch(ex) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
_log( 'Validating '.info + rep.file.infoBold + ' against '.info +
|
|
||||||
fmt.replace('jars','JSON Resume').toUpperCase().infoBold +
|
|
||||||
' schema: '.info + (isValid ? 'VALID!' : 'INVALID')[style].bold );
|
|
||||||
|
|
||||||
errors.forEach(function(err,idx) {
|
|
||||||
_log( '--> '.bold.yellow +
|
|
||||||
(err.field.replace('data.','resume.').toUpperCase() + ' ' +
|
|
||||||
err.message).yellow );
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Convert between FRESH and JRS formats.
|
|
||||||
*/
|
|
||||||
function convert( src, dst, opts, logger ) {
|
|
||||||
_log = logger || console.log;
|
|
||||||
if( !src || !src.length ) { throw { fluenterror: 6 }; }
|
|
||||||
if( !dst || !dst.length ) {
|
|
||||||
if( src.length === 1 ) { throw { fluenterror: 5 }; }
|
|
||||||
else if( src.length === 2 ) { dst = [ src[1] ]; src = [ src[0] ]; }
|
|
||||||
else { throw { fluenterror: 5 }; }
|
|
||||||
}
|
|
||||||
if( src && dst && src.length && dst.length && src.length !== dst.length ) {
|
|
||||||
throw { fluenterror: 7 };
|
|
||||||
}
|
|
||||||
var sheets = loadSourceResumes( src );
|
|
||||||
sheets.forEach(function(sheet, idx){
|
|
||||||
var sourceFormat = sheet.imp.orgFormat === 'JRS' ? 'JRS' : 'FRESH';
|
|
||||||
var targetFormat = sourceFormat === 'JRS' ? 'FRESH' : 'JRS';
|
|
||||||
_log( 'Converting '.useful + sheet.imp.fileName.useful.bold + (' (' +
|
|
||||||
sourceFormat + ') to ').useful + dst[0].useful.bold +
|
|
||||||
(' (' + targetFormat + ').').useful );
|
|
||||||
sheet.saveAs( dst[idx], targetFormat );
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Create a new empty resume in either FRESH or JRS format.
|
|
||||||
*/
|
|
||||||
function create( src, dst, opts, logger ) {
|
|
||||||
_log = logger || console.log;
|
|
||||||
dst = src || ['resume.json'];
|
|
||||||
dst.forEach( function( t ) {
|
|
||||||
var safeFormat = opts.format.toUpperCase();
|
|
||||||
_log('Creating new '.useful +safeFormat.useful.bold +
|
|
||||||
' resume: '.useful + t.useful.bold);
|
|
||||||
MKDIRP.sync( path.dirname( t ) ); // Ensure dest folder exists;
|
|
||||||
FLUENT[ safeFormat + 'Resume' ].default().save( t );
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Display help documentation.
|
Display help documentation.
|
||||||
@ -289,55 +19,22 @@ Internal resume generation logic for HackMyResume.
|
|||||||
.useful.bold );
|
.useful.bold );
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadSourceResumes( src, fn ) {
|
|
||||||
return src.map( function( res ) {
|
|
||||||
_log( 'Reading '.info + 'SOURCE'.infoBold + ' resume: '.info +
|
|
||||||
res.cyan.bold );
|
|
||||||
return (fn && fn(res)) || (new FLUENT.FRESHResume()).open( res );
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Supported resume formats.
|
|
||||||
*/
|
|
||||||
var _fmts = [
|
|
||||||
{ name: 'html', ext: 'html', gen: new FLUENT.HtmlGenerator() },
|
|
||||||
{ name: 'txt', ext: 'txt', gen: new FLUENT.TextGenerator() },
|
|
||||||
{ name: 'doc', ext: 'doc', fmt: 'xml', gen: new FLUENT.WordGenerator() },
|
|
||||||
{ name: 'pdf', ext: 'pdf', fmt: 'html', is: false, gen: new FLUENT.HtmlPdfGenerator() },
|
|
||||||
{ name: 'md', ext: 'md', fmt: 'txt', gen: new FLUENT.MarkdownGenerator() },
|
|
||||||
{ name: 'json', ext: 'json', gen: new FLUENT.JsonGenerator() },
|
|
||||||
{ name: 'yml', ext: 'yml', fmt: 'yml', gen: new FLUENT.JsonYamlGenerator() },
|
|
||||||
{ name: 'latex', ext: 'tex', fmt: 'latex', gen: new FLUENT.LaTeXGenerator() }
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
Default HackMyResume options.
|
|
||||||
*/
|
|
||||||
var _opts = {
|
|
||||||
theme: 'modern',
|
|
||||||
prettify: { // ← See https://github.com/beautify-web/js-beautify#options
|
|
||||||
indent_size: 2,
|
|
||||||
unformatted: ['em','strong'],
|
|
||||||
max_char: 80, // ← See lib/html.js in above-linked repo
|
|
||||||
//wrap_line_length: 120, ← Don't use this
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Internal module interface. Used by FCV Desktop and HMR.
|
Internal module interface. Used by FCV Desktop and HMR.
|
||||||
*/
|
*/
|
||||||
return {
|
return {
|
||||||
verbs: {
|
verbs: {
|
||||||
build: generate,
|
generate: require('./verbs/generate'),
|
||||||
validate: validate,
|
build: require('./verbs/generate'),
|
||||||
convert: convert,
|
validate: require('./verbs/validate'),
|
||||||
new: create,
|
convert: require('./verbs/convert'),
|
||||||
|
create: require('./verbs/create'),
|
||||||
|
new: require('./verbs/create'),
|
||||||
help: help
|
help: help
|
||||||
},
|
},
|
||||||
lib: require('./hackmyapi'),
|
lib: require('./hackmyapi'),
|
||||||
options: _opts,
|
options: require('./core/default-options'),
|
||||||
formats: _fmts
|
formats: require('./core/default-formats')
|
||||||
};
|
};
|
||||||
|
|
||||||
}();
|
}();
|
||||||
|
@ -68,7 +68,7 @@ function main() {
|
|||||||
// Massage inputs and outputs
|
// Massage inputs and outputs
|
||||||
var src = a._.slice(1, splitAt === -1 ? undefined : splitAt );
|
var src = a._.slice(1, splitAt === -1 ? undefined : splitAt );
|
||||||
var dst = splitAt === -1 ? [] : a._.slice( splitAt + 1 );
|
var dst = splitAt === -1 ? [] : a._.slice( splitAt + 1 );
|
||||||
( splitAt === -1 ) && dst.push( src.pop() ); // Allow omitting TO keyword
|
( splitAt === -1 ) && src.length > 1 && dst.push( src.pop() ); // Allow omitting TO keyword
|
||||||
var parms = [ src, dst, opts, logMsg ];
|
var parms = [ src, dst, opts, logMsg ];
|
||||||
|
|
||||||
// Invoke the action
|
// Invoke the action
|
||||||
@ -108,9 +108,10 @@ function handleError( ex ) {
|
|||||||
}).join(', '.guide) + ").\n\n".guide + FS.readFileSync( PATH.join(__dirname, 'use.txt'), 'utf8' ).info.bold;
|
}).join(', '.guide) + ").\n\n".guide + FS.readFileSync( PATH.join(__dirname, 'use.txt'), 'utf8' ).info.bold;
|
||||||
break;
|
break;
|
||||||
//case 4: msg = title + '\n' + ; break;
|
//case 4: msg = title + '\n' + ; break;
|
||||||
case 5: msg = 'Please '.guide + 'specify the output resume file'.guide.bold + ' that should be created in the new format.'.guide; break;
|
case 5: msg = 'Please '.guide + 'specify the output resume file'.guide.bold + ' that should be created.'.guide; break;
|
||||||
case 6: msg = 'Please '.guide + 'specify a valid input resume'.guide.bold + ' in either FRESH or JSON Resume format.'.guide; break;
|
case 6: msg = 'Please '.guide + 'specify a valid input resume'.guide.bold + ' in either FRESH or JSON Resume format.'.guide; break;
|
||||||
case 7: msg = 'Please '.guide + 'specify an output file name'.guide.bold + ' for every input file you wish to convert.'.guide; break;
|
case 7: msg = 'Please '.guide + 'specify an output file name'.guide.bold + ' for every input file you wish to convert.'.guide; break;
|
||||||
|
case 8: msg = 'Please '.guide + 'specify the filename of the resume'.guide.bold + ' to create.'.guide; break;
|
||||||
}
|
}
|
||||||
exitCode = ex.fluenterror;
|
exitCode = ex.fluenterror;
|
||||||
|
|
||||||
|
30
src/verbs/convert.js
Normal file
30
src/verbs/convert.js
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
(function(){
|
||||||
|
|
||||||
|
var loadSourceResumes = require('../core/load-source-resumes');
|
||||||
|
|
||||||
|
/**
|
||||||
|
Convert between FRESH and JRS formats.
|
||||||
|
*/
|
||||||
|
module.exports = function convert( src, dst, opts, logger ) {
|
||||||
|
var _log = logger || console.log;
|
||||||
|
if( !src || !src.length ) { throw { fluenterror: 6 }; }
|
||||||
|
if( !dst || !dst.length ) {
|
||||||
|
if( src.length === 1 ) { throw { fluenterror: 5 }; }
|
||||||
|
else if( src.length === 2 ) { dst = [ src[1] ]; src = [ src[0] ]; }
|
||||||
|
else { throw { fluenterror: 5 }; }
|
||||||
|
}
|
||||||
|
if( src && dst && src.length && dst.length && src.length !== dst.length ) {
|
||||||
|
throw { fluenterror: 7 };
|
||||||
|
}
|
||||||
|
var sheets = loadSourceResumes( src, _log );
|
||||||
|
sheets.forEach(function(sheet, idx){
|
||||||
|
var sourceFormat = sheet.imp.orgFormat === 'JRS' ? 'JRS' : 'FRESH';
|
||||||
|
var targetFormat = sourceFormat === 'JRS' ? 'FRESH' : 'JRS';
|
||||||
|
_log( 'Converting '.useful + sheet.imp.fileName.useful.bold + (' (' +
|
||||||
|
sourceFormat + ') to ').useful + dst[0].useful.bold +
|
||||||
|
(' (' + targetFormat + ').').useful );
|
||||||
|
sheet.saveAs( dst[idx], targetFormat );
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
}());
|
22
src/verbs/create.js
Normal file
22
src/verbs/create.js
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
(function(){
|
||||||
|
|
||||||
|
var FLUENT = require('../hackmyapi')
|
||||||
|
, MKDIRP = require('mkdirp')
|
||||||
|
, PATH = require('path');
|
||||||
|
|
||||||
|
/**
|
||||||
|
Create a new empty resume in either FRESH or JRS format.
|
||||||
|
*/
|
||||||
|
module.exports = function create( src, dst, opts, logger ) {
|
||||||
|
var _log = logger || console.log;
|
||||||
|
if( !src || !src.length ) throw { fluenterror: 8 };
|
||||||
|
src.forEach( function( t ) {
|
||||||
|
var safeFormat = opts.format.toUpperCase();
|
||||||
|
_log('Creating new '.useful +safeFormat.useful.bold +
|
||||||
|
' resume: '.useful + t.useful.bold);
|
||||||
|
MKDIRP.sync( PATH.dirname( t ) ); // Ensure dest folder exists;
|
||||||
|
FLUENT[ safeFormat + 'Resume' ].default().save( t );
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
}());
|
149
src/verbs/generate.js
Normal file
149
src/verbs/generate.js
Normal file
@ -0,0 +1,149 @@
|
|||||||
|
(function() {
|
||||||
|
|
||||||
|
var PATH = require('path')
|
||||||
|
, MKDIRP = require('mkdirp')
|
||||||
|
, _opts = require('../core/default-options')
|
||||||
|
, FluentTheme = require('../core/theme')
|
||||||
|
, loadSourceResumes = require('../core/load-source-resumes')
|
||||||
|
, _ = require('underscore')
|
||||||
|
, _fmts = require('../core/default-formats')
|
||||||
|
, _err, _log, rez;
|
||||||
|
|
||||||
|
/**
|
||||||
|
Handle an exception.
|
||||||
|
*/
|
||||||
|
function error( ex ) {
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports =
|
||||||
|
|
||||||
|
/**
|
||||||
|
Given a source JSON resume, a destination resume path, and a theme file,
|
||||||
|
generate 0..N resumes in the desired formats.
|
||||||
|
@param src Path to the source JSON resume file: "rez/resume.json".
|
||||||
|
@param dst An array of paths to the target resume file(s).
|
||||||
|
@param theme Friendly name of the resume theme. Defaults to "modern".
|
||||||
|
@param logger Optional logging override.
|
||||||
|
*/
|
||||||
|
function generate( src, dst, opts, logger, errHandler ) {
|
||||||
|
|
||||||
|
_log = logger || console.log;
|
||||||
|
_err = errHandler || error;
|
||||||
|
|
||||||
|
//_opts = extend( true, _opts, opts );
|
||||||
|
_opts.theme = (opts.theme && opts.theme.toLowerCase().trim())|| 'modern';
|
||||||
|
_opts.prettify = opts.prettify === true ? _opts.prettify : false;
|
||||||
|
|
||||||
|
// Load input resumes...
|
||||||
|
if( !src || !src.length ) { throw { fluenterror: 3 }; }
|
||||||
|
var sheets = loadSourceResumes( src, _log );
|
||||||
|
|
||||||
|
// Merge input resumes...
|
||||||
|
var msg = '';
|
||||||
|
rez = _.reduceRight( sheets, function( a, b, idx ) {
|
||||||
|
msg += ((idx == sheets.length - 2) ?
|
||||||
|
'Merging '.gray+ a.imp.fileName : '') + ' onto '.gray + b.imp.fileName;
|
||||||
|
return extend( true, b, a );
|
||||||
|
});
|
||||||
|
msg && _log(msg);
|
||||||
|
|
||||||
|
// Verify the specified theme name/path
|
||||||
|
var relativeThemeFolder = '../../node_modules/fluent-themes/themes';
|
||||||
|
var tFolder = PATH.resolve( __dirname, relativeThemeFolder, _opts.theme);
|
||||||
|
var exists = require('../utils/file-exists');
|
||||||
|
if (!exists( tFolder )) {
|
||||||
|
tFolder = PATH.resolve( _opts.theme );
|
||||||
|
if (!exists( tFolder )) {
|
||||||
|
throw { fluenterror: 1, data: _opts.theme };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load the theme
|
||||||
|
var theTheme = new FluentTheme().open( tFolder );
|
||||||
|
_opts.themeObj = theTheme;
|
||||||
|
_log( 'Applying '.info + theTheme.name.toUpperCase().infoBold +
|
||||||
|
(' theme (' + Object.keys(theTheme.formats).length + ' formats)').info);
|
||||||
|
|
||||||
|
// Expand output resumes... (can't use map() here)
|
||||||
|
var targets = [], that = this;
|
||||||
|
( (dst && dst.length && dst) || ['resume.all'] ).forEach( function(t) {
|
||||||
|
|
||||||
|
var to = PATH.resolve(t),
|
||||||
|
pa = PATH.parse(to),
|
||||||
|
fmat = pa.ext || '.all';
|
||||||
|
|
||||||
|
targets.push.apply(targets, fmat === '.all' ?
|
||||||
|
Object.keys( theTheme.formats ).map(function(k){
|
||||||
|
var z = theTheme.formats[k];
|
||||||
|
return { file: to.replace(/all$/g,z.outFormat), fmt: z };
|
||||||
|
}) : [{ file: to, fmt: theTheme.getFormat( fmat.slice(1) ) }]);
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
// Run the transformation!
|
||||||
|
var finished = targets.map( function(t) { return single(t, theTheme); });
|
||||||
|
|
||||||
|
// Don't send the client back empty-handed
|
||||||
|
return { sheet: rez, targets: targets, processed: finished };
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
Generate a single resume of a specific format.
|
||||||
|
@param f Full path to the destination resume to generate, for example,
|
||||||
|
"/foo/bar/resume.pdf" or "c:\foo\bar\resume.txt".
|
||||||
|
*/
|
||||||
|
function single( targInfo, theme ) {
|
||||||
|
try {
|
||||||
|
var f = targInfo.file
|
||||||
|
, fType = targInfo.fmt.outFormat
|
||||||
|
, fName = PATH.basename(f, '.' + fType)
|
||||||
|
, theFormat;
|
||||||
|
|
||||||
|
// If targInfo.fmt.files exists, this theme has an explicit "files"
|
||||||
|
// section in its theme.json file.
|
||||||
|
if( targInfo.fmt.files && targInfo.fmt.files.length ) {
|
||||||
|
|
||||||
|
_log( 'Generating '.useful +
|
||||||
|
targInfo.fmt.outFormat.toUpperCase().useful.bold +
|
||||||
|
' resume: '.useful + PATH.relative(process.cwd(), f ).replace(/\\/g,'/').useful.bold);
|
||||||
|
|
||||||
|
theFormat = _fmts.filter(
|
||||||
|
function(fmt) { return fmt.name === targInfo.fmt.outFormat; })[0];
|
||||||
|
MKDIRP.sync( PATH.dirname( f ) ); // Ensure dest folder exists;
|
||||||
|
theFormat.gen.generate( rez, f, _opts );
|
||||||
|
|
||||||
|
// targInfo.fmt.files.forEach( function( form ) {
|
||||||
|
//
|
||||||
|
// if( form.action === 'transform' ) {
|
||||||
|
// var theFormat = _fmts.filter( function( fmt ) {
|
||||||
|
// return fmt.name === targInfo.fmt.outFormat;
|
||||||
|
// })[0];
|
||||||
|
// MKDIRP.sync( PATH.dirname( f ) ); // Ensure dest folder exists;
|
||||||
|
// theFormat.gen.generate( rez, f, _opts );
|
||||||
|
// }
|
||||||
|
// else if( form.action === null ) {
|
||||||
|
// // Copy the file
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// });
|
||||||
|
|
||||||
|
}
|
||||||
|
// Otherwise the theme has no files section
|
||||||
|
else {
|
||||||
|
_log( 'Generating '.useful +
|
||||||
|
targInfo.fmt.outFormat.toUpperCase().useful.bold +
|
||||||
|
' resume: '.useful + PATH.relative(process.cwd(), f ).replace(/\\/g,'/').useful.bold);
|
||||||
|
|
||||||
|
theFormat = _fmts.filter(
|
||||||
|
function(fmt) { return fmt.name === targInfo.fmt.outFormat; })[0];
|
||||||
|
MKDIRP.sync( PATH.dirname( f ) ); // Ensure dest folder exists;
|
||||||
|
theFormat.gen.generate( rez, f, _opts );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch( ex ) {
|
||||||
|
_err( ex );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}());
|
97
src/verbs/validate.js
Normal file
97
src/verbs/validate.js
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
(function() {
|
||||||
|
|
||||||
|
var FS = require('fs');
|
||||||
|
var loadSourceResumes = require('../core/load-source-resumes');
|
||||||
|
|
||||||
|
module.exports =
|
||||||
|
|
||||||
|
/**
|
||||||
|
Validate 1 to N resumes in either FRESH or JSON Resume format.
|
||||||
|
*/
|
||||||
|
function validate( src, unused, opts, logger ) {
|
||||||
|
var _log = logger || console.log;
|
||||||
|
if( !src || !src.length ) { throw { fluenterror: 6 }; }
|
||||||
|
var isValid = true;
|
||||||
|
|
||||||
|
var validator = require('is-my-json-valid');
|
||||||
|
var schemas = {
|
||||||
|
fresh: require('FRESCA'),
|
||||||
|
jars: require('../core/resume.json')
|
||||||
|
};
|
||||||
|
|
||||||
|
// Load input resumes...
|
||||||
|
var sheets = loadSourceResumes(src, _log, function( res ) {
|
||||||
|
try {
|
||||||
|
return {
|
||||||
|
file: res,
|
||||||
|
raw: FS.readFileSync( res, 'utf8' )
|
||||||
|
};
|
||||||
|
}
|
||||||
|
catch( ex ) {
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
sheets.forEach( function( rep ) {
|
||||||
|
|
||||||
|
var rez;
|
||||||
|
try {
|
||||||
|
rez = JSON.parse( rep.raw );
|
||||||
|
}
|
||||||
|
catch( ex ) { // Note [1]
|
||||||
|
_log('Validating '.info + rep.file.infoBold +
|
||||||
|
' against FRESH/JRS schema: '.info + 'ERROR!'.error.bold);
|
||||||
|
|
||||||
|
if (ex instanceof SyntaxError) {
|
||||||
|
// Invalid JSON
|
||||||
|
_log( '--> '.bold.red + rep.file.toUpperCase().red +
|
||||||
|
' contains invalid JSON. Unable to validate.'.red );
|
||||||
|
_log( (' INTERNAL: ' + ex).red );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
_log(('ERROR: ' + ex.toString()).red.bold);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var isValid = false;
|
||||||
|
var style = 'useful';
|
||||||
|
var errors = [];
|
||||||
|
var fmt = rez.meta &&
|
||||||
|
(rez.meta.format === 'FRESH@0.1.0') ? 'fresh':'jars';
|
||||||
|
|
||||||
|
try {
|
||||||
|
|
||||||
|
var validate = validator( schemas[ fmt ], { // Note [1]
|
||||||
|
formats: {
|
||||||
|
date: /^\d{4}(?:-(?:0[0-9]{1}|1[0-2]{1})(?:-[0-9]{2})?)?$/
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
isValid = validate( rez );
|
||||||
|
if( !isValid ) {
|
||||||
|
style = 'warn';
|
||||||
|
errors = validate.errors;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
catch(ex) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_log( 'Validating '.info + rep.file.infoBold + ' against '.info +
|
||||||
|
fmt.replace('jars','JSON Resume').toUpperCase().infoBold +
|
||||||
|
' schema: '.info + (isValid ? 'VALID!' : 'INVALID')[style].bold );
|
||||||
|
|
||||||
|
errors.forEach(function(err,idx) {
|
||||||
|
_log( '--> '.bold.yellow +
|
||||||
|
(err.field.replace('data.','resume.').toUpperCase() + ' ' +
|
||||||
|
err.message).yellow );
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
}());
|
Loading…
Reference in New Issue
Block a user