sails-hook-validation
Version:
Custom validation error messages for sails model with i18n support
71 lines (64 loc) • 2.73 kB
JavaScript
;
//dependencies
//import sails waterline Deferred
var Deferred = require('waterline/lib/waterline/query/deferred');
var WLValidationError = require('./WLValidationError');
/**
* @deprecated See https://github.com/balderdashy/waterline/pull/843
* @description path sails `findOrCreateEach()` method to allow
* custom error message definitions
* @param {Object} model a valid sails model
* @param {Function} validateCustom a function to transform sails `invalidAttributes`
* to custome `Errors`
*/
module.exports = function(model, validateCustom) {
//remember sails defined findOrCreateEach
//method
//See https://github.com/balderdashy/waterline/blob/master/lib/waterline/query/aggregate.js#L84
var sailsFindOrCreateEach = model.findOrCreateEach;
//prepare new findOrCreateEach method
function findOrCreateEach(criterias, values, callback) {
// return Deferred
// if no callback passed
// See https://github.com/balderdashy/waterline/blob/master/lib/waterline/query/aggregate.js#L96
if (typeof callback !== 'function') {
//this refer to the
//model context
return new Deferred(model, model.findOrCreateEach, criterias, values);
}
//otherwise
//call sails findOrCreateEach
sailsFindOrCreateEach
.call(model, criterias, values, function(error, result) {
//any findOrCreateEach error
//found?
if (error) {
//process sails invalidAttributes and
//attach Errors key in error object
//as a place to lookup for our
//custom errors messages
if (error.invalidAttributes) {
var customError =
validateCustom(model, error.invalidAttributes);
// will return and override with empty object
// when using associations
if (Object.keys(customError).length !== 0) {
error.Errors = customError;
}
}
//hand over error
//to user callback
callback(WLValidationError.patch(error));
} else {
//no error
//
//hand over result
//to user callback
callback(null, result);
}
});
}
//bind our new findOrCreateEach
//to our models
model.findOrCreateEach = findOrCreateEach;
};