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

88 lines
2.5 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');
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')
};
// Load input resumes...
2015-12-31 08:34:41 +00:00
sources.forEach(function( src ) {
var result = ResumeFactory.loadOne( src, function(){}, null, false );
if( result.error ) {
_log( 'Validating '.info + src.infoBold + ' against '.info + 'AUTO'.infoBold + ' schema:'.info + ' BROKEN'.red.bold );
var ex = result.error; // alias
if ( ex instanceof SyntaxError) {
var info = new SyntaxErrorEx( ex, result.raw );
_log( ('--> '.warn.bold + src.toUpperCase() + ' contains invalid JSON on line ' +
info.line + ' column ' + info.col + '.').warn +
' Unable to validate.'.warn );
_log( (' INTERNAL: ' + ex).warn );
2015-12-21 07:56:02 +00:00
}
else {
2015-12-31 08:34:41 +00:00
_log(('ERROR: ' + ex.toString()).warn.bold);
2015-12-21 07:56:02 +00:00
}
return;
}
2015-12-31 08:34:41 +00:00
var json = result.json;
2015-12-21 07:56:02 +00:00
var isValid = false;
var style = 'useful';
var errors = [];
2015-12-31 08:34:41 +00:00
var fmt = json.meta && (json.meta.format==='FRESH@0.1.0') ? 'fresh':'jars';
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 = 'warn';
errors = validate.errors;
}
}
2015-12-31 08:34:41 +00:00
catch(exc) {
2015-12-21 07:56:02 +00:00
return;
}
2015-12-31 08:34:41 +00:00
_log( 'Validating '.info + result.file.infoBold + ' against '.info +
2015-12-21 07:56:02 +00:00
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 );
});
});
};
}());