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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
use syn;
use validator::Validator;
use lit::*;
#[derive(Debug)]
pub struct SchemaValidation {
pub function: String,
pub skip_on_field_errors: bool,
pub code: Option<String>,
pub message: Option<String>,
}
#[derive(Debug)]
pub struct FieldValidation {
pub code: String,
pub message: Option<String>,
pub validator: Validator,
}
impl FieldValidation {
pub fn new(validator: Validator) -> FieldValidation {
FieldValidation { code: validator.code().to_string(), validator, message: None }
}
}
pub fn extract_length_validation(
field: String,
meta_items: &Vec<syn::NestedMeta>,
) -> FieldValidation {
let mut min = None;
let mut max = None;
let mut equal = None;
let (message, code) = extract_message_and_code("length", &field, meta_items);
let error = |msg: &str| -> ! {
panic!("Invalid attribute #[validate] on field `{}`: {}", field, msg);
};
for meta_item in meta_items {
if let syn::NestedMeta::Meta(ref item) = *meta_item {
if let syn::Meta::NameValue(syn::MetaNameValue { ref ident, ref lit, .. }) = *item {
match ident.to_string().as_ref() {
"message" | "code" => continue,
"min" => {
min = match lit_to_int(lit) {
Some(s) => Some(s),
None => error("invalid argument type for `min` of `length` validator: only integers are allowed"),
};
},
"max" => {
max = match lit_to_int(lit) {
Some(s) => Some(s),
None => error("invalid argument type for `max` of `length` validator: only integers are allowed"),
};
},
"equal" => {
equal = match lit_to_int(lit) {
Some(s) => Some(s),
None => error("invalid argument type for `equal` of `length` validator: only integers are allowed"),
};
},
v => error(&format!(
"unknown argument `{}` for validator `length` (it only has `min`, `max`, `equal`)",
v
))
}
} else {
panic!(
"unexpected item {:?} while parsing `length` validator of field {}",
item, field
)
}
}
}
if equal.is_some() && (min.is_some() || max.is_some()) {
error("both `equal` and `min` or `max` have been set in `length` validator: probably a mistake");
}
if min.is_none() && max.is_none() && equal.is_none() {
error("Validator `length` requires at least 1 argument out of `min`, `max` and `equal`");
}
let validator = Validator::Length { min, max, equal };
FieldValidation {
message,
code: code.unwrap_or_else(|| validator.code().to_string()),
validator,
}
}
pub fn extract_range_validation(
field: String,
meta_items: &Vec<syn::NestedMeta>,
) -> FieldValidation {
let mut min = 0.0;
let mut max = 0.0;
let (message, code) = extract_message_and_code("range", &field, meta_items);
let error = |msg: &str| -> ! {
panic!("Invalid attribute #[validate] on field `{}`: {}", field, msg);
};
let mut has_min = false;
let mut has_max = false;
for meta_item in meta_items {
match *meta_item {
syn::NestedMeta::Meta(ref item) => match *item {
syn::Meta::NameValue(syn::MetaNameValue { ref ident, ref lit, .. }) => match ident
.to_string()
.as_ref()
{
"message" | "code" => continue,
"min" => {
min = match lit_to_float(lit) {
Some(s) => s,
None => error("invalid argument type for `min` of `range` validator: only integers are allowed")
};
has_min = true;
}
"max" => {
max = match lit_to_float(lit) {
Some(s) => s,
None => error("invalid argument type for `max` of `range` validator: only integers are allowed")
};
has_max = true;
}
v => error(&format!(
"unknown argument `{}` for validator `range` (it only has `min`, `max`)",
v
)),
},
_ => panic!("unexpected item {:?} while parsing `range` validator", item),
},
_ => unreachable!(),
}
}
if !has_min || !has_max {
error("Validator `range` requires 2 arguments: `min` and `max`");
}
let validator = Validator::Range { min, max };
FieldValidation {
message,
code: code.unwrap_or_else(|| validator.code().to_string()),
validator,
}
}
pub fn extract_argless_validation(
validator_name: String,
field: String,
meta_items: &Vec<syn::NestedMeta>,
) -> FieldValidation {
let (message, code) = extract_message_and_code(&validator_name, &field, meta_items);
for meta_item in meta_items {
match *meta_item {
syn::NestedMeta::Meta(ref item) => match *item {
syn::Meta::NameValue(syn::MetaNameValue { ref ident, .. }) => {
match ident.to_string().as_ref() {
"message" | "code" => continue,
v => panic!(
"Unknown argument `{}` for validator `{}` on field `{}`",
v, validator_name, field
),
}
}
_ => panic!("unexpected item {:?} while parsing `range` validator", item),
},
_ => unreachable!(),
}
}
let validator = match validator_name.as_ref() {
"email" => Validator::Email,
#[cfg(feature = "card")]
"credit_card" => Validator::CreditCard,
#[cfg(feature = "phone")]
"phone" => Validator::Phone,
_ => Validator::Url,
};
FieldValidation {
message,
code: code.unwrap_or_else(|| validator.code().to_string()),
validator,
}
}
pub fn extract_one_arg_validation(
val_name: &str,
validator_name: String,
field: String,
meta_items: &Vec<syn::NestedMeta>,
) -> FieldValidation {
let mut value = None;
let (message, code) = extract_message_and_code(&validator_name, &field, meta_items);
for meta_item in meta_items {
match *meta_item {
syn::NestedMeta::Meta(ref item) => match *item {
syn::Meta::NameValue(syn::MetaNameValue { ref ident, ref lit, .. }) => {
match ident.to_string().as_ref() {
"message" | "code" => continue,
v if v == val_name => {
value = match lit_to_string(lit) {
Some(s) => Some(s),
None => panic!(
"Invalid argument type for `{}` for validator `{}` on field `{}`: only a string is allowed",
val_name, validator_name, field
),
};
}
v => panic!(
"Unknown argument `{}` for validator `{}` on field `{}`",
v, validator_name, field
),
}
}
_ => panic!("unexpected item {:?} while parsing `range` validator", item),
},
_ => unreachable!(),
}
}
if value.is_none() {
panic!(
"Missing argument `{}` for validator `{}` on field `{}`",
val_name, validator_name, field
);
}
let validator = match validator_name.as_ref() {
"custom" => Validator::Custom(value.unwrap()),
"contains" => Validator::Contains(value.unwrap()),
"must_match" => Validator::MustMatch(value.unwrap()),
"regex" => Validator::Regex(value.unwrap()),
_ => unreachable!(),
};
FieldValidation {
message,
code: code.unwrap_or_else(|| validator.code().to_string()),
validator,
}
}
fn extract_message_and_code(
validator_name: &str,
field: &str,
meta_items: &Vec<syn::NestedMeta>,
) -> (Option<String>, Option<String>) {
let mut message = None;
let mut code = None;
for meta_item in meta_items {
if let syn::NestedMeta::Meta(syn::Meta::NameValue(syn::MetaNameValue {
ref ident,
ref lit,
..
})) = *meta_item
{
match ident.to_string().as_ref() {
"code" => {
code = match lit_to_string(lit) {
Some(s) => Some(s),
None => panic!(
"Invalid argument type for `code` for validator `{}` on field `{}`: only a string is allowed",
validator_name, field
),
};
}
"message" => {
message = match lit_to_string(lit) {
Some(s) => Some(s),
None => panic!(
"Invalid argument type for `message` for validator `{}` on field `{}`: only a string is allowed",
validator_name, field
),
};
}
_ => continue,
}
}
}
(message, code)
}