line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
use Catmandu::Sane; |
3
|
7
|
|
|
7
|
|
3532
|
|
|
7
|
|
|
|
|
14
|
|
|
7
|
|
|
|
|
46
|
|
4
|
|
|
|
|
|
|
our $VERSION = '1.2019'; |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
use Catmandu::Util qw(:is); |
7
|
7
|
|
|
7
|
|
45
|
use Moo::Role; |
|
7
|
|
|
|
|
12
|
|
|
7
|
|
|
|
|
1713
|
|
8
|
7
|
|
|
7
|
|
52
|
use namespace::clean; |
|
7
|
|
|
|
|
16
|
|
|
7
|
|
|
|
|
43
|
|
9
|
7
|
|
|
7
|
|
3011
|
|
|
7
|
|
|
|
|
15
|
|
|
7
|
|
|
|
|
36
|
|
10
|
|
|
|
|
|
|
requires 'validate_data'; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
has 'last_errors' => |
13
|
|
|
|
|
|
|
(is => 'rwp', clearer => '_clear_last_errors', init_arg => undef,); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has 'after_callback' => (is => 'ro', clearer => 1,); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
has 'error_callback' => (is => 'ro', clearer => 1,); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
has 'error_field' => (is => 'ro', clearer => 1,); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
has ['valid_count', 'invalid_count'] => |
22
|
|
|
|
|
|
|
(is => 'rwp', init_arg => undef, default => sub {0},); |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
my ($self, $data) = @_; |
25
|
|
|
|
|
|
|
|
26
|
10
|
|
|
10
|
1
|
28
|
if (!is_hash_ref($data)) { |
27
|
|
|
|
|
|
|
Catmandu::BadArg->throw('Cannot validate data of this type'); |
28
|
10
|
50
|
|
|
|
33
|
} |
29
|
0
|
|
|
|
|
0
|
|
30
|
|
|
|
|
|
|
$self->_clear_last_errors; |
31
|
|
|
|
|
|
|
$self->_set_valid_count(0); |
32
|
10
|
|
|
|
|
246
|
$self->_set_invalid_count(0); |
33
|
10
|
|
|
|
|
64
|
|
34
|
10
|
|
|
|
|
22
|
my $errors = $self->validate_data($data); |
35
|
|
|
|
|
|
|
|
36
|
10
|
|
|
|
|
27
|
if ($errors) { |
37
|
|
|
|
|
|
|
$self->_set_last_errors($errors); |
38
|
10
|
100
|
|
|
|
31
|
$self->_set_invalid_count(1); |
39
|
6
|
|
|
|
|
18
|
return 0; |
40
|
6
|
|
|
|
|
13
|
} |
41
|
6
|
|
|
|
|
32
|
else { |
42
|
|
|
|
|
|
|
$self->_set_valid_count(1); |
43
|
|
|
|
|
|
|
} |
44
|
4
|
|
|
|
|
11
|
|
45
|
|
|
|
|
|
|
1; |
46
|
|
|
|
|
|
|
} |
47
|
4
|
|
|
|
|
29
|
|
48
|
|
|
|
|
|
|
my ($self, $data) = @_; |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
$self->_set_valid_count(0); |
51
|
12
|
|
|
12
|
1
|
3545
|
$self->_set_invalid_count(0); |
52
|
|
|
|
|
|
|
|
53
|
12
|
|
|
|
|
36
|
# handle a single record |
54
|
12
|
|
|
|
|
25
|
if (is_hash_ref($data)) { |
55
|
|
|
|
|
|
|
return $self->_process_record($data); |
56
|
|
|
|
|
|
|
} |
57
|
12
|
100
|
|
|
|
44
|
|
58
|
5
|
|
|
|
|
15
|
# handle arrayref, returns a new arrayref |
59
|
|
|
|
|
|
|
if (is_array_ref($data)) { |
60
|
|
|
|
|
|
|
return [grep {defined} map {$self->_process_record($_)} @$data]; |
61
|
|
|
|
|
|
|
} |
62
|
7
|
100
|
|
|
|
17
|
|
63
|
5
|
|
|
|
|
10
|
# handle iterators, returns a new iterator |
|
16
|
|
|
|
|
57
|
|
|
16
|
|
|
|
|
48
|
|
64
|
|
|
|
|
|
|
if (is_invocant($data)) { |
65
|
|
|
|
|
|
|
return $data->select(sub {$self->_process_record($_[0])}); |
66
|
|
|
|
|
|
|
} |
67
|
2
|
100
|
|
|
|
9
|
|
68
|
1
|
|
|
3
|
|
10
|
Catmandu::BadArg->throw('Cannot validate data of this type'); |
|
3
|
|
|
|
|
6
|
|
69
|
|
|
|
|
|
|
} |
70
|
|
|
|
|
|
|
|
71
|
1
|
|
|
|
|
13
|
my ($self, $data) = @_; |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
my $error_field |
74
|
|
|
|
|
|
|
= ($self->error_field || 0) eq '1' |
75
|
24
|
|
|
24
|
|
34
|
? '_validation_errors' |
76
|
|
|
|
|
|
|
: $self->error_field; |
77
|
24
|
100
|
100
|
|
|
97
|
|
78
|
|
|
|
|
|
|
$self->_clear_last_errors; |
79
|
|
|
|
|
|
|
my $errors = $self->validate_data($data); |
80
|
|
|
|
|
|
|
$self->_set_last_errors($errors); |
81
|
|
|
|
|
|
|
|
82
|
24
|
|
|
|
|
384
|
if ($errors) { |
83
|
24
|
|
|
|
|
122
|
$self->_set_invalid_count(1 + $self->invalid_count); |
84
|
24
|
|
|
|
|
100
|
} |
85
|
|
|
|
|
|
|
else { |
86
|
24
|
100
|
|
|
|
41
|
$self->_set_valid_count(1 + $self->valid_count); |
87
|
14
|
|
|
|
|
30
|
} |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
if ($errors && $error_field) { |
90
|
10
|
|
|
|
|
24
|
$data->{$error_field} = $errors; |
91
|
|
|
|
|
|
|
} |
92
|
|
|
|
|
|
|
|
93
|
24
|
100
|
100
|
|
|
66
|
if ($self->after_callback) { |
94
|
4
|
|
|
|
|
5
|
return $self->after_callback->($data, $errors); |
95
|
|
|
|
|
|
|
} |
96
|
|
|
|
|
|
|
|
97
|
24
|
100
|
|
|
|
45
|
if ($errors && $self->error_callback) { |
98
|
8
|
|
|
|
|
16
|
$self->error_callback->($data, $errors); |
99
|
|
|
|
|
|
|
return; |
100
|
|
|
|
|
|
|
} |
101
|
16
|
100
|
100
|
|
|
43
|
|
102
|
2
|
|
|
|
|
7
|
return if $errors && !$error_field; |
103
|
2
|
|
|
|
|
81
|
|
104
|
|
|
|
|
|
|
$data; |
105
|
|
|
|
|
|
|
} |
106
|
14
|
100
|
100
|
|
|
48
|
|
107
|
|
|
|
|
|
|
1; |
108
|
11
|
|
|
|
|
40
|
|
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
=pod |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
=head1 NAME |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
Catmandu::Validator - Namespace for packages that can validate items in Catmandu |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=head1 SYNOPSIS |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
use Catmandu::Validator::Simple; |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
my $validator = Catmandu::Validator::Simple->new( |
121
|
|
|
|
|
|
|
handler => sub { |
122
|
|
|
|
|
|
|
$data = shift; |
123
|
|
|
|
|
|
|
return "error" unless $data->{title} =~ m/good title/; |
124
|
|
|
|
|
|
|
return; |
125
|
|
|
|
|
|
|
} |
126
|
|
|
|
|
|
|
); |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
if ( $validator->is_valid($hashref) ) { |
129
|
|
|
|
|
|
|
save_record_in_database($hashref); |
130
|
|
|
|
|
|
|
} else { |
131
|
|
|
|
|
|
|
reject_form($validator->last_errors); |
132
|
|
|
|
|
|
|
} |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
my $validator = Catmandu::Validator::Simple->new( |
135
|
|
|
|
|
|
|
handler => sub { ...}, |
136
|
|
|
|
|
|
|
error_callback => sub { |
137
|
|
|
|
|
|
|
my ($data, $errors) = @_; |
138
|
|
|
|
|
|
|
print "Validation errors for record $data->{_id}:\n"; |
139
|
|
|
|
|
|
|
print "$_\n" for @{$errors}; |
140
|
|
|
|
|
|
|
} |
141
|
|
|
|
|
|
|
}; |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
my $validated_arrayref = $validator->validate($arrayref); |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
$validator->validate($iterator, { |
146
|
|
|
|
|
|
|
after_callback => sub { |
147
|
|
|
|
|
|
|
my ($record, $errors) = @_; |
148
|
|
|
|
|
|
|
if ($errors) { |
149
|
|
|
|
|
|
|
add_to_failure_report($rec, $errors); |
150
|
|
|
|
|
|
|
#omit the invalid record from the result |
151
|
|
|
|
|
|
|
return undef; |
152
|
|
|
|
|
|
|
} |
153
|
|
|
|
|
|
|
return $rec; |
154
|
|
|
|
|
|
|
} |
155
|
|
|
|
|
|
|
})->each( sub { |
156
|
|
|
|
|
|
|
my $record = shift; |
157
|
|
|
|
|
|
|
publish_record($record); |
158
|
|
|
|
|
|
|
}); |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
See L<Catmandu::Fix::validate> and L<Catmandu::Fix::Condition::valid> to use validators in fixes (L<Catmandu::Fix>). |
161
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
=head1 DESCRIPTION |
163
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
A Catmandu::Validator is a base class for Perl packages that can validate data. |
165
|
|
|
|
|
|
|
|
166
|
|
|
|
|
|
|
=head1 METHODS |
167
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
=head2 new() |
169
|
|
|
|
|
|
|
|
170
|
|
|
|
|
|
|
Create a new Catmandu::Validator. |
171
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
=head2 new( after_callback => \&callback ) |
173
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
The after_callback is called after each record has been validated. |
175
|
|
|
|
|
|
|
The callback function should take $hashref to each data record, and $arrayref to list of validation errors |
176
|
|
|
|
|
|
|
for the record as arguments. |
177
|
|
|
|
|
|
|
|
178
|
|
|
|
|
|
|
=head2 new( error_field => $field_name ) |
179
|
|
|
|
|
|
|
|
180
|
|
|
|
|
|
|
If the error_field parameter is set, then during validation each record that |
181
|
|
|
|
|
|
|
fails validation will get an extra field added containing an |
182
|
|
|
|
|
|
|
arrayref to the validation errors. The name of the key will be the |
183
|
|
|
|
|
|
|
value passed or '_validation_errors' if 1 is passed. By default it is not set. |
184
|
|
|
|
|
|
|
|
185
|
|
|
|
|
|
|
=head2 is_valid( \%hash ) |
186
|
|
|
|
|
|
|
|
187
|
|
|
|
|
|
|
Validates a single record. Returns 1 success and 0 on failure. Information about the validation errors |
188
|
|
|
|
|
|
|
can be retrieved with the L</"last_errors()"> method. |
189
|
|
|
|
|
|
|
|
190
|
|
|
|
|
|
|
=head2 validate( \%hash ) |
191
|
|
|
|
|
|
|
|
192
|
|
|
|
|
|
|
=head2 validate( $iterator ) |
193
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
=head2 validate( \@array ) |
195
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
Validates a single record or multiple records in an iterator or an array. Returns validated records in the same type of |
197
|
|
|
|
|
|
|
container for multiple records or the record itself for a single record. The default behaviour is to return the records that passed validation unchanged and omit the invalid records. |
198
|
|
|
|
|
|
|
This behaviour can be changed by setting the I<after_callback> or the I<error_field> in the constructor. Returns undef on validation failure for single records. |
199
|
|
|
|
|
|
|
|
200
|
|
|
|
|
|
|
=head2 last_errors() |
201
|
|
|
|
|
|
|
|
202
|
|
|
|
|
|
|
Returns arrayref of errors from the record that was last validated if that record failed validation |
203
|
|
|
|
|
|
|
or undef if there were no errors. |
204
|
|
|
|
|
|
|
|
205
|
|
|
|
|
|
|
=head2 valid_count() |
206
|
|
|
|
|
|
|
|
207
|
|
|
|
|
|
|
Returns the number of valid records from last validate operation. |
208
|
|
|
|
|
|
|
|
209
|
|
|
|
|
|
|
=head2 invalid_count() |
210
|
|
|
|
|
|
|
|
211
|
|
|
|
|
|
|
Returns the number of invalid records from the last validate operation. |
212
|
|
|
|
|
|
|
|
213
|
|
|
|
|
|
|
=head1 SEE ALSO |
214
|
|
|
|
|
|
|
|
215
|
|
|
|
|
|
|
L<Catmandu::Validator::Env> and L<Catmandu::Validator::Simple>. |
216
|
|
|
|
|
|
|
|
217
|
|
|
|
|
|
|
L<Catmandu::Iterable> |
218
|
|
|
|
|
|
|
|
219
|
|
|
|
|
|
|
=cut |