2014-02-19 21:32:23 +04:00
|
|
|
|
var schema = require('../schema').tables,
|
|
|
|
|
_ = require('lodash'),
|
|
|
|
|
validator = require('validator'),
|
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'),
|
|
|
|
|
requireTree = require('../../require-tree').readAll,
|
2014-02-19 21:32:23 +04:00
|
|
|
|
|
|
|
|
|
validateSchema,
|
|
|
|
|
validateSettings,
|
2014-07-10 02:11:04 +04:00
|
|
|
|
validateActiveTheme,
|
|
|
|
|
validate,
|
|
|
|
|
|
|
|
|
|
availableThemes;
|
2014-02-19 21:32:23 +04:00
|
|
|
|
|
2014-02-28 10:51:52 +04:00
|
|
|
|
// Provide a few custom validators
|
|
|
|
|
//
|
|
|
|
|
validator.extend('empty', function (str) {
|
|
|
|
|
return _.isEmpty(str);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
validator.extend('notContains', function (str, badString) {
|
|
|
|
|
return !_.contains(str, badString);
|
|
|
|
|
});
|
|
|
|
|
|
2014-07-14 20:32:55 +04:00
|
|
|
|
validator.extend('isEmptyOrURL', function (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
|
|
|
|
});
|
|
|
|
|
|
2014-12-11 18:50:10 +03:00
|
|
|
|
// Validation against schema attributes
|
|
|
|
|
// values are checked against the validation objects from schema.js
|
2014-02-19 21:32:23 +04:00
|
|
|
|
validateSchema = function (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
|
|
|
|
|
|
|
|
|
_.each(columns, function (columnKey) {
|
2014-05-05 17:51:21 +04:00
|
|
|
|
var message = '';
|
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) {
|
2014-02-28 10:51:52 +04:00
|
|
|
|
if (validator.isNull(model[columnKey]) || validator.empty(model[columnKey])) {
|
2014-05-05 17:51:21 +04:00
|
|
|
|
message = 'Value in [' + tableName + '.' + columnKey + '] cannot be blank.';
|
2014-05-09 14:11:29 +04:00
|
|
|
|
validationErrors.push(new errors.ValidationError(message, 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
|
|
|
|
|
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
|
|
|
|
|
if (schema[tableName][columnKey].hasOwnProperty('maxlength')) {
|
2014-02-28 10:51:52 +04:00
|
|
|
|
if (!validator.isLength(model[columnKey], 0, schema[tableName][columnKey].maxlength)) {
|
2014-05-05 17:51:21 +04:00
|
|
|
|
message = 'Value in [' + tableName + '.' + columnKey + '] exceeds maximum length of '
|
|
|
|
|
+ schema[tableName][columnKey].maxlength + ' characters.';
|
2014-05-09 14:11:29 +04:00
|
|
|
|
validationErrors.push(new errors.ValidationError(message, 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')) {
|
2014-05-14 17:30:46 +04:00
|
|
|
|
validationErrors = validationErrors.concat(validate(model[columnKey], 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')) {
|
2014-02-28 10:51:52 +04:00
|
|
|
|
if (schema[tableName][columnKey].type === 'integer' && !validator.isInt(model[columnKey])) {
|
2014-06-26 08:52:04 +04:00
|
|
|
|
message = 'Value in [' + tableName + '.' + columnKey + '] is not an integer.';
|
2014-05-09 14:11:29 +04:00
|
|
|
|
validationErrors.push(new errors.ValidationError(message, 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
|
|
|
|
|
validateSettings = function (defaultSettings, model) {
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
2014-07-10 02:11:04 +04:00
|
|
|
|
validateActiveTheme = function (themeName) {
|
|
|
|
|
// If Ghost is running and its availableThemes collection exists
|
|
|
|
|
// give it priority.
|
2014-07-17 18:33:21 +04:00
|
|
|
|
if (config.paths.availableThemes && Object.keys(config.paths.availableThemes).length > 0) {
|
2014-08-17 10:17:23 +04:00
|
|
|
|
availableThemes = Promise.resolve(config.paths.availableThemes);
|
2014-07-10 02:11:04 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-02 03:19:46 +04:00
|
|
|
|
if (!availableThemes) {
|
|
|
|
|
// A Promise that will resolve to an object with a property for each installed theme.
|
|
|
|
|
// This is necessary because certain configuration data is only available while Ghost
|
|
|
|
|
// is running and at times the validations are used when it's not (e.g. tests)
|
|
|
|
|
availableThemes = requireTree(config.paths.themePath);
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-10 02:11:04 +04:00
|
|
|
|
return availableThemes.then(function (themes) {
|
|
|
|
|
if (!themes.hasOwnProperty(themeName)) {
|
2014-08-17 10:17:23 +04:00
|
|
|
|
return Promise.reject(new errors.ValidationError(themeName + ' cannot be activated because it is not currently installed.', 'activeTheme'));
|
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
|
2014-02-19 21:32:23 +04:00
|
|
|
|
validate = function (value, key, validations) {
|
2014-05-09 14:11:29 +04:00
|
|
|
|
var validationErrors = [];
|
2014-06-26 08:52:04 +04:00
|
|
|
|
|
2014-02-19 21:32:23 +04:00
|
|
|
|
_.each(validations, function (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) {
|
2014-06-26 08:52:04 +04:00
|
|
|
|
validationErrors.push(new errors.ValidationError('Validation (' + validationName + ') failed for ' + 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 = {
|
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
|
|
|
|
};
|