HTMLify
validator.js
Views: 6 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | /*! * Module dependencies. */ 'use strict'; const MongooseError = require('./'); class ValidatorError extends MongooseError { /** * Schema validator error * * @param {Object} properties * @api private */ constructor(properties) { let msg = properties.message; if (!msg) { msg = MongooseError.messages.general.default; } const message = formatMessage(msg, properties); super(message); properties = Object.assign({}, properties, { message: message }); this.properties = properties; this.kind = properties.type; this.path = properties.path; this.value = properties.value; this.reason = properties.reason; } /*! * toString helper * TODO remove? This defaults to `${this.name}: ${this.message}` */ toString() { return this.message; } } Object.defineProperty(ValidatorError.prototype, 'name', { value: 'ValidatorError' }); /*! * The object used to define this validator. Not enumerable to hide * it from `require('util').inspect()` output re: gh-3925 */ Object.defineProperty(ValidatorError.prototype, 'properties', { enumerable: false, writable: true, value: null }); // Exposed for testing ValidatorError.prototype.formatMessage = formatMessage; /*! * Formats error messages */ function formatMessage(msg, properties) { if (typeof msg === 'function') { return msg(properties); } const propertyNames = Object.keys(properties); for (const propertyName of propertyNames) { if (propertyName === 'message') { continue; } msg = msg.replace('{' + propertyName.toUpperCase() + '}', properties[propertyName]); } return msg; } /*! * exports */ module.exports = ValidatorError; |