line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package BankAccount::Validator::UK::Rule; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
$BankAccount::Validator::UK::Rule::VERSION = '0.64'; |
4
|
|
|
|
|
|
|
$BankAccount::Validator::UK::Rule::AUTHORITY = 'cpan:MANWAR'; |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
BankAccount::Validator::UK::Rule - Rules for validating UK bank account. |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 VERSION |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Version 0.64 |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=cut |
15
|
|
|
|
|
|
|
|
16
|
3
|
|
|
3
|
|
43
|
use 5.006; |
|
3
|
|
|
|
|
9
|
|
17
|
3
|
|
|
3
|
|
13
|
use strict; use warnings; |
|
3
|
|
|
3
|
|
4
|
|
|
3
|
|
|
|
|
47
|
|
|
3
|
|
|
|
|
10
|
|
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
60
|
|
18
|
3
|
|
|
3
|
|
992
|
use autodie; |
|
3
|
|
|
|
|
35171
|
|
|
3
|
|
|
|
|
12
|
|
19
|
3
|
|
|
3
|
|
17002
|
use File::ShareDir ':ALL'; |
|
3
|
|
|
|
|
62717
|
|
|
3
|
|
|
|
|
1717
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 DESCRIPTION |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
B |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 METHODS |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 get_sort_codes() |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
It is used by the module L internally. It returns the |
30
|
|
|
|
|
|
|
substituting sort code if found, as provided by VOCALINK in the document dated |
31
|
|
|
|
|
|
|
13th June'2005. The document is called scsubtab.txt. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=cut |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
sub get_sort_codes { |
36
|
|
|
|
|
|
|
|
37
|
36
|
|
|
36
|
1
|
77
|
my $sort_codes = {}; |
38
|
36
|
|
|
|
|
192
|
my $file_name = dist_file('BankAccount-Validator-UK', 'scsubtab.txt'); |
39
|
|
|
|
|
|
|
|
40
|
36
|
|
|
|
|
6216
|
open(my $SOURCE, "<", $file_name); |
41
|
36
|
|
|
|
|
9634
|
while (my $row = <$SOURCE>) { |
42
|
756
|
|
|
|
|
883
|
chomp $row; |
43
|
756
|
|
|
|
|
1614
|
my ($left, $right) = split /\s/, $row, 2; |
44
|
756
|
|
|
|
|
1132
|
$left =~ s/^\s+//g; |
45
|
756
|
|
|
|
|
1024
|
$left =~ s/\s+$//g; |
46
|
756
|
|
|
|
|
872
|
$right =~ s/^\s+//g; |
47
|
756
|
|
|
|
|
849
|
$right =~ s/\s+$//g; |
48
|
|
|
|
|
|
|
|
49
|
756
|
50
|
33
|
|
|
2194
|
if (($left =~ /^\d+$/) && ($right =~ /^\d+$/)) { |
50
|
756
|
|
|
|
|
2206
|
$sort_codes->{$left} = $right; |
51
|
|
|
|
|
|
|
} |
52
|
|
|
|
|
|
|
} |
53
|
36
|
|
|
|
|
166
|
close($SOURCE); |
54
|
|
|
|
|
|
|
|
55
|
36
|
|
|
|
|
3854
|
return $sort_codes; |
56
|
|
|
|
|
|
|
} |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 get_rules() |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
It is used by the module L internally.It returns every |
61
|
|
|
|
|
|
|
possible rules cover by the document, as provided by VOCALINK dated 24th Dec 2021 |
62
|
|
|
|
|
|
|
and is called valacdos.txt. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
sub get_rules { |
67
|
|
|
|
|
|
|
|
68
|
35
|
|
|
35
|
1
|
52
|
my $rules; |
69
|
35
|
|
|
|
|
43
|
foreach (@{_raw_data()}) { |
|
35
|
|
|
|
|
105
|
|
70
|
39550
|
|
|
|
|
102069
|
my @values = split ' '; |
71
|
39550
|
|
|
|
|
44253
|
my $value_of = {}; |
72
|
39550
|
|
|
|
|
39719
|
my $index = 0; |
73
|
39550
|
|
|
|
|
47352
|
foreach my $k (qw(start end mod u v w x y z a b c d e f g h)) { |
74
|
672350
|
|
|
|
|
791274
|
$values[$index] =~ s/^\s+//g; |
75
|
672350
|
|
|
|
|
718670
|
$values[$index] =~ s/\s+$//g; |
76
|
672350
|
100
|
|
|
|
740063
|
if ($index == 2) { |
77
|
39550
|
|
|
|
|
55414
|
$value_of->{$k} = $values[$index]; |
78
|
|
|
|
|
|
|
} |
79
|
|
|
|
|
|
|
else { |
80
|
632800
|
|
|
|
|
805351
|
$value_of->{$k} = $values[$index] + 0; |
81
|
|
|
|
|
|
|
} |
82
|
672350
|
|
|
|
|
681891
|
$index++; |
83
|
|
|
|
|
|
|
} |
84
|
|
|
|
|
|
|
|
85
|
39550
|
100
|
|
|
|
46034
|
if (!$values[$index]) { |
86
|
18130
|
|
|
|
|
20464
|
$value_of->{'ex'} = 0; |
87
|
|
|
|
|
|
|
} |
88
|
|
|
|
|
|
|
else { |
89
|
21420
|
|
|
|
|
25741
|
$value_of->{'ex'} = $values[$index] + 0; |
90
|
|
|
|
|
|
|
} |
91
|
|
|
|
|
|
|
|
92
|
39550
|
|
|
|
|
83629
|
push @$rules, $value_of; |
93
|
|
|
|
|
|
|
} |
94
|
|
|
|
|
|
|
|
95
|
35
|
|
|
|
|
4101
|
return $rules; |
96
|
|
|
|
|
|
|
} |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
sub _raw_data { |
99
|
|
|
|
|
|
|
|
100
|
35
|
|
|
35
|
|
76
|
my $raw_data = []; |
101
|
35
|
|
|
|
|
98
|
my $file_name = dist_file('BankAccount-Validator-UK', 'valacdos.txt'); |
102
|
|
|
|
|
|
|
|
103
|
35
|
|
|
|
|
4143
|
open(my $SOURCE, "<", $file_name); |
104
|
35
|
|
|
|
|
3063
|
while (my $row = <$SOURCE>) { |
105
|
39550
|
|
|
|
|
40758
|
chomp $row; |
106
|
39550
|
|
|
|
|
67821
|
push @$raw_data, $row; |
107
|
|
|
|
|
|
|
} |
108
|
35
|
|
|
|
|
198
|
close($SOURCE); |
109
|
|
|
|
|
|
|
|
110
|
35
|
|
|
|
|
2274
|
return $raw_data; |
111
|
|
|
|
|
|
|
} |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
=head1 AUTHOR |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
Mohammad S Anwar, C<< >> |
116
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
=head1 REPOSITORY |
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
L |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
=head1 BUGS |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
Please report any bugs or feature requests to C
|
124
|
|
|
|
|
|
|
rt.cpan.org>, or through the web interface at L. |
125
|
|
|
|
|
|
|
I will be notified, and then you'll automatically be notified of progress on your |
126
|
|
|
|
|
|
|
bug as I make changes. |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
=head1 SUPPORT |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
perldoc BankAccount::Validator::UK::Rule |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
You can also look for information at: |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
=over 4 |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker (report bugs here) |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
L |
141
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
143
|
|
|
|
|
|
|
|
144
|
|
|
|
|
|
|
L |
145
|
|
|
|
|
|
|
|
146
|
|
|
|
|
|
|
=item * CPAN Ratings |
147
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
L |
149
|
|
|
|
|
|
|
|
150
|
|
|
|
|
|
|
=item * Search CPAN |
151
|
|
|
|
|
|
|
|
152
|
|
|
|
|
|
|
L |
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
=back |
155
|
|
|
|
|
|
|
|
156
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
157
|
|
|
|
|
|
|
|
158
|
|
|
|
|
|
|
Copyright (C) 2012 - 2017 Mohammad S Anwar. |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
This program is free software; you can redistribute it and / or modify it under |
161
|
|
|
|
|
|
|
the terms of the the Artistic License (2.0). You may obtain a copy of the full |
162
|
|
|
|
|
|
|
license at: |
163
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
L |
165
|
|
|
|
|
|
|
|
166
|
|
|
|
|
|
|
Any use, modification, and distribution of the Standard or Modified Versions is |
167
|
|
|
|
|
|
|
governed by this Artistic License.By using, modifying or distributing the Package, |
168
|
|
|
|
|
|
|
you accept this license. Do not use, modify, or distribute the Package, if you do |
169
|
|
|
|
|
|
|
not accept this license. |
170
|
|
|
|
|
|
|
|
171
|
|
|
|
|
|
|
If your Modified Version has been derived from a Modified Version made by someone |
172
|
|
|
|
|
|
|
other than you,you are nevertheless required to ensure that your Modified Version |
173
|
|
|
|
|
|
|
complies with the requirements of this license. |
174
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
This license does not grant you the right to use any trademark, service mark, |
176
|
|
|
|
|
|
|
tradename, or logo of the Copyright Holder. |
177
|
|
|
|
|
|
|
|
178
|
|
|
|
|
|
|
This license includes the non-exclusive, worldwide, free-of-charge patent license |
179
|
|
|
|
|
|
|
to make, have made, use, offer to sell, sell, import and otherwise transfer the |
180
|
|
|
|
|
|
|
Package with respect to any patent claims licensable by the Copyright Holder that |
181
|
|
|
|
|
|
|
are necessarily infringed by the Package. If you institute patent litigation |
182
|
|
|
|
|
|
|
(including a cross-claim or counterclaim) against any party alleging that the |
183
|
|
|
|
|
|
|
Package constitutes direct or contributory patent infringement,then this Artistic |
184
|
|
|
|
|
|
|
License to you shall terminate on the date that such litigation is filed. |
185
|
|
|
|
|
|
|
|
186
|
|
|
|
|
|
|
Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND |
187
|
|
|
|
|
|
|
CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED |
188
|
|
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR |
189
|
|
|
|
|
|
|
NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS |
190
|
|
|
|
|
|
|
REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, |
191
|
|
|
|
|
|
|
INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE |
192
|
|
|
|
|
|
|
OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
193
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
=cut |
195
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
1; # End of BankAccount::Validator::UK::Rule |