1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-10-06 15:35:11 +01:00
HackMyResume/src/verbs/validate.js

99 lines
2.7 KiB
JavaScript
Raw Normal View History

2015-12-31 08:34:41 +00:00
/**
Implementation of the 'validate' verb for HackMyResume.
@module validate.js
@license MIT. See LICENSE.md for details.
*/
2015-12-21 07:56:02 +00:00
(function() {
var FS = require('fs');
var ResumeFactory = require('../core/resume-factory');
2015-12-31 08:34:41 +00:00
var SyntaxErrorEx = require('../utils/syntax-error-ex');
var chalk = require('chalk');
2015-12-21 07:56:02 +00:00
module.exports =
/**
Validate 1 to N resumes in either FRESH or JSON Resume format.
*/
2015-12-31 08:34:41 +00:00
function validate( sources, unused, opts, logger ) {
2015-12-21 07:56:02 +00:00
var _log = logger || console.log;
2015-12-31 08:34:41 +00:00
if( !sources || !sources.length ) { throw { fluenterror: 6 }; }
2015-12-21 07:56:02 +00:00
var isValid = true;
var validator = require('is-my-json-valid');
var schemas = {
fresh: require('fresca'),
2015-12-21 07:56:02 +00:00
jars: require('../core/resume.json')
};
2016-01-02 05:15:46 +00:00
var resumes = ResumeFactory.load( sources, {
log: _log,
format: null,
objectify: false,
throw: false,
muffle: true
});
2015-12-31 08:34:41 +00:00
2016-01-02 05:15:46 +00:00
// Load input resumes...
resumes.forEach(function( src ) {
2016-01-02 05:15:46 +00:00
if( src.error ) {
// TODO: Core should not log
2016-01-02 05:15:46 +00:00
_log( chalk.white('Validating ') + chalk.gray.bold(src.file) +
chalk.white(' against ') + chalk.gray.bold('AUTO') +
chalk.white(' schema:') + chalk.red.bold(' BROKEN') );
2015-12-31 08:34:41 +00:00
2016-01-02 05:15:46 +00:00
var ex = src.error; // alias
2015-12-31 08:34:41 +00:00
if ( ex instanceof SyntaxError) {
2016-01-02 05:15:46 +00:00
var info = new SyntaxErrorEx( ex, src.raw );
_log( chalk.red.bold('--> ' + src.file.toUpperCase() + ' contains invalid JSON on line ' +
info.line + ' column ' + info.col + '.' +
chalk.red(' Unable to validate.') ) );
_log( chalk.red.bold(' INTERNAL: ' + ex) );
2015-12-21 07:56:02 +00:00
}
else {
_log(chalk.red.bold('ERROR: ' + ex.toString()));
2015-12-21 07:56:02 +00:00
}
return;
}
2016-01-02 05:15:46 +00:00
var json = src.json;
2015-12-21 07:56:02 +00:00
var isValid = false;
var style = 'green';
2015-12-21 07:56:02 +00:00
var errors = [];
var fmt = json.basics ? 'jrs' : 'fresh';
2015-12-21 07:56:02 +00:00
try {
var validate = validator( schemas[ fmt ], { // Note [1]
formats: {
date: /^\d{4}(?:-(?:0[0-9]{1}|1[0-2]{1})(?:-[0-9]{2})?)?$/
}
});
2015-12-31 08:34:41 +00:00
isValid = validate( json );
2015-12-21 07:56:02 +00:00
if( !isValid ) {
style = 'yellow';
2015-12-21 07:56:02 +00:00
errors = validate.errors;
}
}
2015-12-31 08:34:41 +00:00
catch(exc) {
2015-12-21 07:56:02 +00:00
return;
}
2016-01-02 05:15:46 +00:00
_log( chalk.white('Validating ') + chalk.white.bold(src.file) + chalk.white(' against ') +
chalk.white.bold(fmt.replace('jars','JSON Resume').toUpperCase()) +
chalk.white(' schema: ') + chalk[style].bold(isValid ? 'VALID!' : 'INVALID') );
2015-12-21 07:56:02 +00:00
errors.forEach(function(err,idx) {
_log( chalk.yellow.bold('--> ') +
chalk.yellow(err.field.replace('data.','resume.').toUpperCase() + ' ' +
err.message) );
2015-12-21 07:56:02 +00:00
});
});
};
}());