mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
2758038858
Remove file-based open methods from resume classes; force clients to use clean string-based or JSON overloads; fix processing glitch in validate(); tweak outputs; adjust tests; update CHANGELOG; etc.
132 lines
3.4 KiB
JavaScript
132 lines
3.4 KiB
JavaScript
|
|
/**
|
|
Implementation of the 'validate' verb for HackMyResume.
|
|
@module verbs/validate
|
|
@license MIT. See LICENSE.md for details.
|
|
*/
|
|
|
|
(function() {
|
|
var FS, HMEVENT, HMSTATUS, ResumeFactory, SyntaxErrorEx, ValidateVerb, Verb, _, _validate, _validateOne, chalk, safeLoadJSON,
|
|
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
|
|
hasProp = {}.hasOwnProperty;
|
|
|
|
FS = require('fs');
|
|
|
|
ResumeFactory = require('../core/resume-factory');
|
|
|
|
SyntaxErrorEx = require('../utils/syntax-error-ex');
|
|
|
|
chalk = require('chalk');
|
|
|
|
Verb = require('../verbs/verb');
|
|
|
|
HMSTATUS = require('../core/status-codes');
|
|
|
|
HMEVENT = require('../core/event-codes');
|
|
|
|
_ = require('underscore');
|
|
|
|
safeLoadJSON = require('../utils/safe-json-loader');
|
|
|
|
|
|
/** An invokable resume validation command. */
|
|
|
|
module.exports = ValidateVerb = (function(superClass) {
|
|
extend(ValidateVerb, superClass);
|
|
|
|
function ValidateVerb() {
|
|
ValidateVerb.__super__.constructor.call(this, 'validate', _validate);
|
|
}
|
|
|
|
return ValidateVerb;
|
|
|
|
})(Verb);
|
|
|
|
|
|
/** Validate 1 to N resumes in FRESH or JSON Resume format. */
|
|
|
|
_validate = function(sources, unused, opts) {
|
|
var results, schemas, validator;
|
|
if (!sources || !sources.length) {
|
|
this.err(HMSTATUS.resumeNotFoundAlt, {
|
|
quit: true
|
|
});
|
|
return null;
|
|
}
|
|
validator = require('is-my-json-valid');
|
|
schemas = {
|
|
fresh: require('fresca'),
|
|
jars: require('../core/resume.json')
|
|
};
|
|
results = _.map(sources, function(t) {
|
|
var r;
|
|
if (this.hasError() && opts.assert) {
|
|
return {};
|
|
}
|
|
r = _validateOne.call(this, t, validator, schemas);
|
|
if (r.fluenterror) {
|
|
r.quit = opts.assert;
|
|
this.err(r.fluenterror, r);
|
|
}
|
|
return r;
|
|
}, this);
|
|
if (this.hasError() && !opts.assert) {
|
|
this.reject(this.errorCode);
|
|
} else if (!this.hasError()) {
|
|
this.resolve(results);
|
|
}
|
|
return results;
|
|
};
|
|
|
|
_validateOne = function(t, validator, schemas) {
|
|
var errCode, errors, fmt, json, obj, ret, validate;
|
|
ret = {
|
|
file: t,
|
|
isValid: false
|
|
};
|
|
obj = safeLoadJSON(t);
|
|
if (obj.ex) {
|
|
errCode = obj.ex.operation === 'parse' ? HMSTATUS.parseError : HMSTATUS.readError;
|
|
if (errCode === HMSTATUS.readError) {
|
|
obj.ex.quiet = true;
|
|
}
|
|
return {
|
|
fluenterror: errCode,
|
|
inner: obj.ex
|
|
};
|
|
}
|
|
json = obj.json;
|
|
fmt = json.basics ? 'jars' : 'fresh';
|
|
errors = [];
|
|
try {
|
|
validate = validator(schemas[fmt], {
|
|
formats: {
|
|
date: /^\d{4}(?:-(?:0[0-9]{1}|1[0-2]{1})(?:-[0-9]{2})?)?$/
|
|
}
|
|
});
|
|
ret.isValid = validate(json);
|
|
if (!ret.isValid) {
|
|
errors = validate.errors;
|
|
}
|
|
} catch (_error) {
|
|
ret.ex = _error;
|
|
}
|
|
this.stat(HMEVENT.afterValidate, {
|
|
file: t,
|
|
isValid: ret.isValid,
|
|
fmt: fmt != null ? fmt.replace('jars', 'JSON Resume') : void 0,
|
|
errors: errors
|
|
});
|
|
if (opts.assert && !ret.isValid) {
|
|
return {
|
|
fluenterror: HMSTATUS.invalid,
|
|
errors: errors
|
|
};
|
|
}
|
|
return ret;
|
|
};
|
|
|
|
}).call(this);
|
|
|
|
//# sourceMappingURL=validate.js.map
|