2014-02-19 21:32:23 +04:00
|
|
|
|
var schema = require('../schema').tables,
|
|
|
|
|
_ = require('lodash'),
|
|
|
|
|
validator = require('validator'),
|
2016-10-31 16:44:24 +03:00
|
|
|
|
moment = require('moment-timezone'),
|
2016-03-27 13:19:32 +03:00
|
|
|
|
assert = require('assert'),
|
2014-08-17 10:17:23 +04:00
|
|
|
|
Promise = require('bluebird'),
|
2014-05-09 14:11:29 +04:00
|
|
|
|
errors = require('../../errors'),
|
2014-07-10 02:11:04 +04:00
|
|
|
|
config = require('../../config'),
|
2015-11-12 15:29:45 +03:00
|
|
|
|
i18n = require('../../i18n'),
|
2014-02-19 21:32:23 +04:00
|
|
|
|
|
|
|
|
|
validateSchema,
|
|
|
|
|
validateSettings,
|
2014-07-10 02:11:04 +04:00
|
|
|
|
validateActiveTheme,
|
2017-02-22 02:26:19 +03:00
|
|
|
|
validate;
|
2014-02-19 21:32:23 +04:00
|
|
|
|
|
2016-03-27 13:19:32 +03:00
|
|
|
|
function assertString(input) {
|
|
|
|
|
assert(typeof input === 'string', 'Validator js validates strings only');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// extends has been removed in validator >= 5.0.0, need to monkey-patch it back in
|
|
|
|
|
validator.extend = function (name, fn) {
|
|
|
|
|
validator[name] = function () {
|
|
|
|
|
var args = Array.prototype.slice.call(arguments);
|
|
|
|
|
assertString(args[0]);
|
|
|
|
|
return fn.apply(validator, args);
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2014-02-28 10:51:52 +04:00
|
|
|
|
// Provide a few custom validators
|
2015-06-02 11:52:39 +03:00
|
|
|
|
validator.extend('empty', function empty(str) {
|
2014-02-28 10:51:52 +04:00
|
|
|
|
return _.isEmpty(str);
|
|
|
|
|
});
|
|
|
|
|
|
2015-06-02 11:52:39 +03:00
|
|
|
|
validator.extend('notContains', function notContains(str, badString) {
|
2016-06-11 21:23:27 +03:00
|
|
|
|
return !_.includes(str, badString);
|
2014-02-28 10:51:52 +04:00
|
|
|
|
});
|
|
|
|
|
|
2016-07-26 12:23:20 +03:00
|
|
|
|
validator.extend('isTimezone', function isTimezone(str) {
|
|
|
|
|
return moment.tz.zone(str) ? true : false;
|
|
|
|
|
});
|
|
|
|
|
|
2015-06-02 11:52:39 +03:00
|
|
|
|
validator.extend('isEmptyOrURL', function isEmptyOrURL(str) {
|
2014-09-10 08:06:24 +04:00
|
|
|
|
return (_.isEmpty(str) || validator.isURL(str, {require_protocol: false}));
|
2014-07-14 20:32:55 +04:00
|
|
|
|
});
|
|
|
|
|
|
2015-09-22 19:38:30 +03:00
|
|
|
|
validator.extend('isSlug', function isSlug(str) {
|
|
|
|
|
return validator.matches(str, /^[a-z0-9\-_]+$/);
|
|
|
|
|
});
|
|
|
|
|
|
2014-12-11 18:50:10 +03:00
|
|
|
|
// Validation against schema attributes
|
|
|
|
|
// values are checked against the validation objects from schema.js
|
2015-06-02 11:52:39 +03:00
|
|
|
|
validateSchema = function validateSchema(tableName, model) {
|
2014-05-05 17:51:21 +04:00
|
|
|
|
var columns = _.keys(schema[tableName]),
|
2014-05-09 14:11:29 +04:00
|
|
|
|
validationErrors = [];
|
2014-02-19 21:32:23 +04:00
|
|
|
|
|
2015-06-02 11:52:39 +03:00
|
|
|
|
_.each(columns, function each(columnKey) {
|
2016-03-27 13:19:32 +03:00
|
|
|
|
var message = '',
|
2016-06-03 11:06:18 +03:00
|
|
|
|
strVal = _.toString(model[columnKey]);
|
2014-06-26 08:52:04 +04:00
|
|
|
|
|
2014-02-19 21:32:23 +04:00
|
|
|
|
// check nullable
|
|
|
|
|
if (model.hasOwnProperty(columnKey) && schema[tableName][columnKey].hasOwnProperty('nullable')
|
|
|
|
|
&& schema[tableName][columnKey].nullable !== true) {
|
2016-03-27 13:19:32 +03:00
|
|
|
|
if (validator.empty(strVal)) {
|
2015-11-12 15:29:45 +03:00
|
|
|
|
message = i18n.t('notices.data.validation.index.valueCannotBeBlank', {tableName: tableName, columnKey: columnKey});
|
2016-10-06 15:27:35 +03:00
|
|
|
|
validationErrors.push(new errors.ValidationError({message: message, context: tableName + '.' + columnKey}));
|
2014-02-28 10:51:52 +04:00
|
|
|
|
}
|
2014-02-19 21:32:23 +04:00
|
|
|
|
}
|
2014-06-26 08:52:04 +04:00
|
|
|
|
|
2016-03-27 13:19:32 +03:00
|
|
|
|
// validate boolean columns
|
|
|
|
|
if (model.hasOwnProperty(columnKey) && schema[tableName][columnKey].hasOwnProperty('type')
|
|
|
|
|
&& schema[tableName][columnKey].type === 'bool') {
|
|
|
|
|
if (!(validator.isBoolean(strVal) || validator.empty(strVal))) {
|
|
|
|
|
message = i18n.t('notices.data.validation.index.valueMustBeBoolean', {tableName: tableName, columnKey: columnKey});
|
2016-10-06 15:27:35 +03:00
|
|
|
|
validationErrors.push(new errors.ValidationError({message: message, context: tableName + '.' + columnKey}));
|
2016-03-27 13:19:32 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-19 21:32:23 +04:00
|
|
|
|
// TODO: check if mandatory values should be enforced
|
2014-06-26 08:52:04 +04:00
|
|
|
|
if (model[columnKey] !== null && model[columnKey] !== undefined) {
|
2014-02-19 21:32:23 +04:00
|
|
|
|
// check length
|
2015-06-02 11:52:39 +03:00
|
|
|
|
if (schema[tableName][columnKey].hasOwnProperty('maxlength')) {
|
2016-03-27 13:19:32 +03:00
|
|
|
|
if (!validator.isLength(strVal, 0, schema[tableName][columnKey].maxlength)) {
|
2015-11-12 15:29:45 +03:00
|
|
|
|
message = i18n.t('notices.data.validation.index.valueExceedsMaxLength',
|
|
|
|
|
{tableName: tableName, columnKey: columnKey, maxlength: schema[tableName][columnKey].maxlength});
|
2016-10-06 15:27:35 +03:00
|
|
|
|
validationErrors.push(new errors.ValidationError({message: message, context: tableName + '.' + columnKey}));
|
2014-02-28 10:51:52 +04:00
|
|
|
|
}
|
2014-02-19 21:32:23 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-10 08:06:24 +04:00
|
|
|
|
// check validations objects
|
2014-02-19 21:32:23 +04:00
|
|
|
|
if (schema[tableName][columnKey].hasOwnProperty('validations')) {
|
2016-03-27 13:19:32 +03:00
|
|
|
|
validationErrors = validationErrors.concat(validate(strVal, columnKey, schema[tableName][columnKey].validations));
|
2014-02-19 21:32:23 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-10 08:06:24 +04:00
|
|
|
|
// check type
|
2014-02-19 21:32:23 +04:00
|
|
|
|
if (schema[tableName][columnKey].hasOwnProperty('type')) {
|
2016-03-27 13:19:32 +03:00
|
|
|
|
if (schema[tableName][columnKey].type === 'integer' && !validator.isInt(strVal)) {
|
2015-11-12 15:29:45 +03:00
|
|
|
|
message = i18n.t('notices.data.validation.index.valueIsNotInteger', {tableName: tableName, columnKey: columnKey});
|
2016-10-06 15:27:35 +03:00
|
|
|
|
validationErrors.push(new errors.ValidationError({message: message, context: tableName + '.' + columnKey}));
|
2014-02-19 21:32:23 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
2014-05-05 17:51:21 +04:00
|
|
|
|
|
2014-05-09 14:11:29 +04:00
|
|
|
|
if (validationErrors.length !== 0) {
|
2014-08-17 10:17:23 +04:00
|
|
|
|
return Promise.reject(validationErrors);
|
2014-05-05 17:51:21 +04:00
|
|
|
|
}
|
2014-06-26 08:52:04 +04:00
|
|
|
|
|
2014-08-17 10:17:23 +04:00
|
|
|
|
return Promise.resolve();
|
2014-02-19 21:32:23 +04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Validation for settings
|
|
|
|
|
// settings are checked against the validation objects
|
|
|
|
|
// form default-settings.json
|
2015-06-02 11:52:39 +03:00
|
|
|
|
validateSettings = function validateSettings(defaultSettings, model) {
|
2014-02-19 21:32:23 +04:00
|
|
|
|
var values = model.toJSON(),
|
2014-05-14 17:30:46 +04:00
|
|
|
|
validationErrors = [],
|
2014-02-19 21:32:23 +04:00
|
|
|
|
matchingDefault = defaultSettings[values.key];
|
|
|
|
|
|
|
|
|
|
if (matchingDefault && matchingDefault.validations) {
|
2014-05-14 17:30:46 +04:00
|
|
|
|
validationErrors = validationErrors.concat(validate(values.value, values.key, matchingDefault.validations));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (validationErrors.length !== 0) {
|
2014-08-17 10:17:23 +04:00
|
|
|
|
return Promise.reject(validationErrors);
|
2014-02-19 21:32:23 +04:00
|
|
|
|
}
|
2014-06-26 08:52:04 +04:00
|
|
|
|
|
2014-08-17 10:17:23 +04:00
|
|
|
|
return Promise.resolve();
|
2014-02-19 21:32:23 +04:00
|
|
|
|
};
|
|
|
|
|
|
2015-06-02 11:52:39 +03:00
|
|
|
|
validateActiveTheme = function validateActiveTheme(themeName) {
|
2017-02-22 02:26:19 +03:00
|
|
|
|
// @TODO come up with something way better here - we should probably attempt to read the theme from the
|
|
|
|
|
// File system at this point and validate the theme using gscan rather than just checking if it's in a cache object
|
|
|
|
|
if (!config.get('paths').availableThemes || Object.keys(config.get('paths').availableThemes).length === 0) {
|
|
|
|
|
// We haven't yet loaded all themes, this is probably being called early?
|
|
|
|
|
return Promise.resolve();
|
2014-07-10 02:11:04 +04:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-22 02:26:19 +03:00
|
|
|
|
// Else, if we have a list, check if the theme is in it
|
|
|
|
|
if (!config.get('paths').availableThemes.hasOwnProperty(themeName)) {
|
|
|
|
|
return Promise.reject(new errors.ValidationError({message: i18n.t('notices.data.validation.index.themeCannotBeActivated', {themeName: themeName}), context: 'activeTheme'}));
|
2014-10-02 03:19:46 +04:00
|
|
|
|
}
|
2014-07-10 02:11:04 +04:00
|
|
|
|
};
|
|
|
|
|
|
2014-02-28 10:51:52 +04:00
|
|
|
|
// Validate default settings using the validator module.
|
|
|
|
|
// Each validation's key is a method name and its value is an array of options
|
|
|
|
|
//
|
|
|
|
|
// eg:
|
2014-07-14 20:32:55 +04:00
|
|
|
|
// validations: { isURL: true, isLength: [20, 40] }
|
2014-02-28 10:51:52 +04:00
|
|
|
|
//
|
|
|
|
|
// will validate that a setting's length is a URL between 20 and 40 chars.
|
|
|
|
|
//
|
|
|
|
|
// If you pass a boolean as the value, it will specify the "good" result. By default
|
|
|
|
|
// the "good" result is assumed to be true.
|
2014-02-19 21:32:23 +04:00
|
|
|
|
//
|
|
|
|
|
// eg:
|
2014-02-28 10:51:52 +04:00
|
|
|
|
// validations: { isNull: false } // means the "good" result would
|
|
|
|
|
// // fail the `isNull` check, so
|
|
|
|
|
// // not null.
|
2014-02-19 21:32:23 +04:00
|
|
|
|
//
|
2014-02-28 10:51:52 +04:00
|
|
|
|
// available validators: https://github.com/chriso/validator.js#validators
|
2015-06-02 11:52:39 +03:00
|
|
|
|
validate = function validate(value, key, validations) {
|
2014-05-09 14:11:29 +04:00
|
|
|
|
var validationErrors = [];
|
2016-06-03 11:06:18 +03:00
|
|
|
|
value = _.toString(value);
|
2014-06-26 08:52:04 +04:00
|
|
|
|
|
2015-06-02 11:52:39 +03:00
|
|
|
|
_.each(validations, function each(validationOptions, validationName) {
|
2014-02-28 10:51:52 +04:00
|
|
|
|
var goodResult = true;
|
2014-02-19 21:32:23 +04:00
|
|
|
|
|
2014-02-28 10:51:52 +04:00
|
|
|
|
if (_.isBoolean(validationOptions)) {
|
|
|
|
|
goodResult = validationOptions;
|
|
|
|
|
validationOptions = [];
|
|
|
|
|
} else if (!_.isArray(validationOptions)) {
|
2014-02-19 21:32:23 +04:00
|
|
|
|
validationOptions = [validationOptions];
|
|
|
|
|
}
|
2014-02-28 10:51:52 +04:00
|
|
|
|
|
|
|
|
|
validationOptions.unshift(value);
|
|
|
|
|
|
|
|
|
|
// equivalent of validator.isSomething(option1, option2)
|
|
|
|
|
if (validator[validationName].apply(validator, validationOptions) !== goodResult) {
|
2016-10-06 15:27:35 +03:00
|
|
|
|
validationErrors.push(new errors.ValidationError({
|
|
|
|
|
message: i18n.t('notices.data.validation.index.validationFailed', {validationName: validationName, key: key})
|
|
|
|
|
}));
|
2014-02-28 10:51:52 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
validationOptions.shift();
|
2014-02-19 21:32:23 +04:00
|
|
|
|
}, this);
|
2014-05-05 17:51:21 +04:00
|
|
|
|
|
2014-05-14 17:30:46 +04:00
|
|
|
|
return validationErrors;
|
2014-02-19 21:32:23 +04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
2015-07-01 21:17:56 +03:00
|
|
|
|
validate: validate,
|
2014-12-11 18:50:10 +03:00
|
|
|
|
validator: validator,
|
2014-02-19 21:32:23 +04:00
|
|
|
|
validateSchema: validateSchema,
|
2014-07-10 02:11:04 +04:00
|
|
|
|
validateSettings: validateSettings,
|
|
|
|
|
validateActiveTheme: validateActiveTheme
|
2014-02-27 06:44:09 +04:00
|
|
|
|
};
|