-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcontentValidators.js
154 lines (136 loc) · 4.65 KB
/
contentValidators.js
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/**
* Modules returns an object that contains all of the available validation rules available for content.
*
* usage:
* var contentValidators = require('contentValidators'),
* validator = contentValidators.get(rule),
* isValid = validator(str, options);
*
*/
module.exports = (function (){
'use strict';
var db = require('../db')(),
_ = require('lodash'),
q = require('q'),
validator = require('validator'),
contentValidators = {
'required': promisify( isRequired ),
'alpha': promisify( isAlpha ),
'alpha_numeric': promisify( isAlphaNumeric ),
'number': promisify( isNumber ),
'email': promisify( validator.isEmail ),
'url': promisify( validator.isURL ),
'date': promisify( validator.isDate ),
'regex': promisify( matches ),
'unique': promisify( isUnique )
};
/**
* Promisify is a function that will take a sync function and wrap it in a promise, it will also resolve/reject
* the promise. If the function passed in returns a promise it will pass it along.
*
* @param func
* @returns {Function}
*/
function promisify(func) {
return function(str, options) {
var result,
deferred = q.defer(),
promise = deferred.promise;
if (!_.isFunction(func)) {
deferred.reject();
}
else {
result = func(str, options);
if (_.isBoolean(result)) {
promise = handleBoolean(result, deferred);
}
else if (_.isFunction(result.then)) {
promise = result;
}
}
return promise;
};
}
function handleBoolean(result, deferred){
if (result === true) {
deferred.resolve(result);
}
else {
deferred.reject(result);
}
return deferred.promise;
}
function isRuleValid(rule){
var isValid = true,
validationRule = contentValidators[rule.type];
if(_.isFunction(validationRule)){
//check each of the fields to make sure they are valid
}
return isValid;
}
function isRequired(str){
return (!_.isUndefined(str) && !_.isNull(str) && !_.isEmpty(str));
}
function isAlpha(str, options){
var isValid = validator.isAlpha(str);
if(isValid && !_.isUndefined(options)){
isValid = validator.isLength(str, options.min, options.max);
}
return isValid;
}
function isAlphaNumeric(str, options){
var isValid = validator.isAlphanumeric(str);
if(isValid && !_.isUndefined(options)){
isValid = validator.isLength(str, options.min, options.max);
}
return isValid;
}
function isNumber(str, options){
var isValid = validator.isNumeric(str);
if(isValid && !_.isUndefined(options)){
isValid = (Number(str) >= options.min && Number(str) <= options.max);
}
return isValid;
}
function matches(str, options){
return validator.matches(str, options.pattern);
}
/**
* Function that will check to see if a passed in property exists in the system. By default it will check all
* content types. If you pass one/many content types along in the options then it will narrow it's search
* to the desired content types.
*
* @param str Value to be tested for uniqueness
* @param options { property: 'fields.property', contentTypes: [ 'contentTypeID' ] }
* @returns {*}
*/
function isUnique(str, options){
var deferred = q.defer(),
qry = [ { key: options.property, cmp: '=', value: str } ];
db.content.query([], options.contentTypes, qry, {} ).then(
function(payload) {
if(payload.total === 0){
deferred.resolve(true);
}
else {
deferred.reject(false);
}
}
);
return deferred.promise;
}
/**
* Returned value for this module. Module returns an object with a 'get' function that will return a function
* for any validation methods that have been defined. If no validation function is found then the function will
* always return true.
*/
return {
get: function(rule){
return (isRuleValid(rule)) ?
contentValidators[rule.type] :
function(){
return true;
};
}
};
})();