-
Notifications
You must be signed in to change notification settings - Fork 0
/
HashSanidator.js
226 lines (183 loc) · 5.64 KB
/
HashSanidator.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
define(function () {
/**
* Validator and Sanitizer for Node and Client-Side sharing
*
*/
// This object is responsible for validating and sanitizing a hash with a set
// of attributes by a given set of rules, and then return error messages
var HashSanidator = function (hash, options) {
options = options || {};
this.hash = hash;
this.clearErrors();
};
HashSanidator.prototype = {
/**
* Regras
*/
// Sets validation rules
rules:function (rules) {
for (var param in rules) {
this.rule(param, rules[param])
}
return !this.hasErrors()
},
// Adiciona uma única regra de validação
rule:function (param, rule) {
var error = this.sanidate(param, rule);
if (error) {
this.errors[param] = error;
return false;
}
return true;
},
/**
* Validação
*/
// Valida e sanitiza um parâmetro com uma regra
sanidate:function (param, rule) {
return new Sanidator(this.hash, param).rule(rule).error;
},
/**
* Controle de erros
*/
// Reseta o estado de erro deste objeto
clearErrors:function () {
this.errors = {};
},
// Adiciona um erro de validação ao request
error:function (param, msg) {
this.errors[param] = msg;
},
// Indica se há erro de validação
hasErrors:function () {
if (!this.errors) return false;
for (var e in this.errors) {
return true;
}
return false;
}
}
// Valida e sanitiza apenas um valor
// @data define outros dados necessários na validação
var Sanidator = function (hash, name) {
this.value = hash[name];
this.name = name;
this.hash = hash;
}
Sanidator.prototype = {
rule:function (rule) {
if (typeof rule == 'function') {
var ret = rule.call(this, this.value, this.hash);
if (typeof ret !== 'undefined') {
this.value = ret;
}
}
return this;
},
// Define a mensagem de erro
err:function (msg) {
this.error = msg || 'Invalid value';
this.skip();
return this;
},
skip:function (b) {
this.skipped = b !== false
},
// Sobrepõe a última mensagem de erro
msg:function (msg) {
if (this.error) this.error = msg;
return this;
},
// Define um novo valor para o elemento sendo sanidado
val:function (v) {
this.value = this.hash[this.name] = v;
return this;
}
}
// Sets a filter for the sanidator
Sanidator.setFilter = function (name, func) {
Sanidator.prototype[name] = function () {
// Once we get an error, nothing else should be evaluated
if (this.skipped) return this;
func.apply(this, [this.value, this.hash].concat(Array.prototype.splice.call(arguments, 0)));
return this;
}
};
Sanidator.setFilters = function (filters) {
for (var name in filters) {
Sanidator.setFilter(name, filters[name]);
}
}
Sanidator.setFilters({
// Indicates whether the value is a valid mongo ObjectId
mongoId:function (v) {
if (!v) return this.err('object_required');
if (v && v.length == 24) return
this.err('invalid_mongoid')
},
// If the value is not given, it may be considered valid fast
nullable:function (v, d, def) {
if (!v) {
this.val(def);
this.skip();
}
},
str:function (v) {
this.val(v.toString());
},
array:function (v) {
if (!(v instanceof Array)) this.err('array_expected');
},
// Garante que é um inteiro
int:function (v, d) {
},
notNull:function (v) {
if (!v) return this.err('notnull');
},
notnull:function () {
this.notNull()
},
'null':function (v) {
if (v) return this.err('must_be_null');
},
ignore:function () {
this.val(null);
},
// Remove espaços em branco
trim:function (v) {
this.val(v.trim());
},
// Garante um tamanho
len:function (v, d, min, max) {
if (max === undefined) {
if (v.length != min) {
this.err('invalid_len');
}
} else {
if (v.length < min || (max != null && v.length > max)) {
this.err('invalid_len');
}
}
},
'enum':function (v, d) {
var set = slice.call(arguments, 2);
var found = 0;
set.forEach(function (item) {
if (item == v) return (found = true) && false;
})
if (!found) this.err('invalid_enum, expected [' + set + ']');
},
// Validação com callbacks
func:function (v, d, func) {
func.call(this, v, d)
},
each:function (v, d, func) {
for (var i = 0; i < v.length; i++) {
if (func.call(this, v[i]) !== true && this.error) {
return;
}
}
}
});
return HashSanidator;
});