File Coverage

blib/lib/Number/Phone/StubCountry/SV.pm
Criterion Covered Total %
statement 17 17 100.0
branch 2 2 100.0
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 25 25 100.0


line stmt bran cond sub pod time code
1             # automatically generated file, don't edit
2              
3              
4              
5             # Copyright 2023 David Cantrell, derived from data from libphonenumber
6             # http://code.google.com/p/libphonenumber/
7             #
8             # Licensed under the Apache License, Version 2.0 (the "License");
9             # you may not use this file except in compliance with the License.
10             # You may obtain a copy of the License at
11             #
12             # http://www.apache.org/licenses/LICENSE-2.0
13             #
14             # Unless required by applicable law or agreed to in writing, software
15             # distributed under the License is distributed on an "AS IS" BASIS,
16             # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17             # See the License for the specific language governing permissions and
18             # limitations under the License.
19             package Number::Phone::StubCountry::SV;
20 2     2   1195 use base qw(Number::Phone::StubCountry);
  2         7  
  2         215  
21              
22 2     2   18 use strict;
  2         5  
  2         48  
23 2     2   16 use warnings;
  2         8  
  2         66  
24 2     2   28 use utf8;
  2         8  
  2         15  
25             our $VERSION = 1.20230903131448;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'leading_digits' => '[89]',
31             'pattern' => '(\\d{3})(\\d{4})'
32             },
33             {
34             'format' => '$1 $2',
35             'leading_digits' => '[267]',
36             'pattern' => '(\\d{4})(\\d{4})'
37             },
38             {
39             'format' => '$1 $2 $3',
40             'leading_digits' => '[89]',
41             'pattern' => '(\\d{3})(\\d{4})(\\d{4})'
42             }
43             ];
44              
45             my $validators = {
46             'fixed_line' => '
47             2(?:
48             79(?:
49             0[0347-9]|
50             [1-9]\\d
51             )|
52             89(?:
53             0[024589]|
54             [1-9]\\d
55             )
56             )\\d{3}|
57             2(?:
58             [1-69]\\d|
59             [78][0-8]
60             )\\d{5}
61             ',
62             'geographic' => '
63             2(?:
64             79(?:
65             0[0347-9]|
66             [1-9]\\d
67             )|
68             89(?:
69             0[024589]|
70             [1-9]\\d
71             )
72             )\\d{3}|
73             2(?:
74             [1-69]\\d|
75             [78][0-8]
76             )\\d{5}
77             ',
78             'mobile' => '[67]\\d{7}',
79             'pager' => '',
80             'personal_number' => '',
81             'specialrate' => '(
82             900\\d{4}(?:
83             \\d{4}
84             )?
85             )',
86             'toll_free' => '
87             800\\d{4}(?:
88             \\d{4}
89             )?
90             ',
91             'voip' => ''
92             };
93              
94             sub new {
95 13     13 1 50 my $class = shift;
96 13         27 my $number = shift;
97 13         93 $number =~ s/(^\+503|\D)//g;
98 13         78 my $self = bless({ country_code => '503', number => $number, formatters => $formatters, validators => $validators, }, $class);
99 13 100       69 return $self->is_valid() ? $self : undef;
100             }
101             1;