-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCleanData.pm
233 lines (180 loc) · 5.4 KB
/
CleanData.pm
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
package CleanData;
use 5.012;
use strict;
use warnings;
use HTML::Entities;
use Time::ParseDate;
use URI::Escape;
our $VERSION = '1.00';
use base 'Exporter';
our @EXPORT_OK = qw(untaint encode_for_commit encode_for_file encode_for_filename encode_for_html transcode_uri_for_html clean_date clean_decimal clean_email clean_filename clean_int clean_text clean_unit clean_username clean_word clean_words true validate_acct validate_acctname validate_date validate_decimal validate_int validate_unitname validate_unit);
sub untaint
{
return undef unless defined $_[0];
return undef unless $_[0] =~ /^(.*)$/s;
return $1;
}
sub encode_for_commit
{
return undef unless defined $_[0];
return uri_escape(decode_entities($_[0]), '\P{IsPrint}');
}
sub encode_for_file
{
return undef unless defined $_[0];
return encode_entities(decode_entities($_[0]), '^A-Za-z0-9¬`!"£\$%^&*()\-_=+{}\[\];:\'@~,.<>/?\\\| '); # hash not included to avoid getting treated as comment in file!
}
sub encode_for_filename
{
return undef unless defined $_[0];
my $encoded = uri_escape(decode_entities($_[0]), '^A-Za-z0-9\$^()\-_={}\[\]:@~,.?|'); # £+# don't work well in URLs...
$encoded =~ s/^~/%7E/;
$encoded =~ s/^[.]/%2E/;
return $encoded;
}
sub encode_for_html
{
return undef unless defined $_[0];
my $in = $_[0];
return $in unless ($in =~ /[^A-Za-z0-9`!\$^*()\-_=+{}\[\];:@#~,.\/?\\| ]/);
my $escaped = encode_entities(decode_entities($in), '^A-Za-z0-9`!\$%^*()\-_=+{}\[\];:@#~,./?\\\| ');
$escaped =~ s/'/'/g;
return $escaped;
}
sub transcode_uri_for_html
{
return undef unless defined $_[0];
return encode_for_html(uri_unescape($_[0]));
}
sub clean_date
{
return undef unless defined $_[0];
my ($pd_secs, $pd_error) = parsedate($_[0], (FUZZY => 1, UK => 1, DATE_REQUIRED => 1, PREFER_PAST => 1, WHOLE => 1));
return $pd_error ? undef : $pd_secs;
}
sub clean_decimal
{
return 0 unless defined $_[0];
return 0 if ($_[0] =~ /^\s*0*[.,·]?0*\s*$/);
return undef if ($_[0] =~ /^\s*-?[.,·]?\s*$/);
return undef unless $_[0] =~ /^\s*(-?\d*[.,·]?\d*)\s*$/;
my $num_str = $1;
$num_str =~ tr/,·/../;
return $num_str;
}
sub clean_email
{
return undef unless defined $_[0];
return undef unless $_[0] =~ /^\s*(.+\@.+)\s*$/;
return encode_for_html($1);
}
sub clean_filename
{
my ($file, $path) = @_;
return undef unless defined $file;
return undef unless -r "$path/$file";
return untaint($file)
}
sub clean_int
{
return 0 unless defined $_[0];
return 0 if ($_[0] =~ /^\s*$/);
return undef unless $_[0] =~ /^\s*(-?\d*)\s*$/;
return $1;
}
sub clean_text
{
return undef unless defined $_[0];
return undef unless $_[0] =~ /^\s*(.+?)\s*$/s;
return encode_for_html($1);
}
sub clean_unit
{
return undef unless defined $_[0];
my $UNIT = uc ($_[0]);
return undef unless $UNIT =~ /^([A-Z]*[0-9\-+_]*[A-Z]*)$/; # not '.' as these units are extensively regexp'd
return $1;
}
sub clean_username
{
return undef unless defined $_[0];
# don't allow upper case to give special TG columns (Creditor, TrnsfrPot etc.) their own namespace
return undef unless $_[0] =~ /^([a-z0-9\-+_]*)$/; # these have to exist on a filesystem. certainly do not permit dots (.), as could get trashed lock files
return $1;
}
sub clean_word
{
return undef unless defined $_[0];
return undef unless $_[0] =~ /^\s*(\S*)\s*$/;
return encode_for_html($1);
}
sub clean_words
{
return undef unless defined $_[0];
return undef unless $_[0] =~ /^\s*((\S[^\v]*)?\S)\s*$/;
return encode_for_html($1);
}
sub true
{
return defined $_[0] && !!($_[0] =~ /^\s*[^fn0]/i);
}
sub validate_acctname
{
my ($acct, $whinge) = @_;
$acct = clean_username($acct);
$whinge->('Disallowed characters in account name') unless defined $acct;
$whinge->('Account name too short') if length $acct < 3;
$whinge->('Account name too long') if length $acct > 10;
return $acct;
}
sub validate_acct
{
my ($acct, $valid_hash, $whinge) = @_;
$acct = clean_username($acct);
$whinge->('Disallowed characters in account name') unless defined $acct;
$whinge->("Non-existent account \"$acct\"") unless exists $valid_hash->{$acct};
return $acct;
}
sub validate_date
{
my ($input, $whinge) = @_;
$whinge->('Missing date') unless defined $input;
my $pd_secs = clean_date($input);
$whinge->("Unparsable date \"$input\"") unless defined $pd_secs;
return join ('.', ((localtime ($pd_secs))[3], (localtime ($pd_secs))[4] + 1, (localtime ($pd_secs))[5] + 1900));
}
sub validate_decimal
{
my ($val, $type, $neg_test, $whinge) = @_;
$val = clean_decimal($val);
$whinge->("$type non-numeric") unless defined $val;
$whinge->("$type negative") if $neg_test and $val < 0;
return $val;
}
sub validate_int
{
my ($val, $type, $neg_test, $whinge) = @_;
$val = clean_int($val);
$whinge->("$type non-integer") unless defined $val;
$whinge->("$type negative") if $neg_test and $val < 0;
return $val;
}
sub validate_unitname
{
my ($unit, $whinge) = @_;
$unit = clean_unit($unit);
$whinge->('Disallowed characters in short code') unless defined $unit;
$whinge->('Short code too short') if length $unit < 1;
$whinge->('No upper-case letters found in short code') unless $unit =~ /[A-Z]/;
$whinge->('Short code too long') if length $unit > 4;
return $unit;
}
sub validate_unit
{
my ($unit, $valid_ref, $whinge) = @_;
$unit = clean_unit($unit);
$whinge->('Disallowed characters in currency code') unless defined $unit;
$whinge->("Non-existent unit \"$unit\"") unless grep ($_ eq $unit, @$valid_ref);
return $unit;
}
1;