File Coverage

blib/lib/Number/Phone/StubCountry/SR.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::SR;
20 2     2   1104 use base qw(Number::Phone::StubCountry);
  2         7  
  2         212  
21              
22 2     2   17 use strict;
  2         6  
  2         47  
23 2     2   11 use warnings;
  2         4  
  2         54  
24 2     2   11 use utf8;
  2         5  
  2         14  
25             our $VERSION = 1.20230903131448;
26              
27             my $formatters = [
28             {
29             'format' => '$1-$2-$3',
30             'leading_digits' => '56',
31             'pattern' => '(\\d{2})(\\d{2})(\\d{2})'
32             },
33             {
34             'format' => '$1-$2',
35             'leading_digits' => '[2-5]',
36             'pattern' => '(\\d{3})(\\d{3})'
37             },
38             {
39             'format' => '$1-$2',
40             'leading_digits' => '[6-8]',
41             'pattern' => '(\\d{3})(\\d{4})'
42             }
43             ];
44              
45             my $validators = {
46             'fixed_line' => '
47             (?:
48             2[1-3]|
49             3[0-7]|
50             (?:
51             4|
52             68
53             )\\d|
54             5[2-58]
55             )\\d{4}
56             ',
57             'geographic' => '
58             (?:
59             2[1-3]|
60             3[0-7]|
61             (?:
62             4|
63             68
64             )\\d|
65             5[2-58]
66             )\\d{4}
67             ',
68             'mobile' => '
69             (?:
70             7[124-7]|
71             8[124-9]
72             )\\d{5}
73             ',
74             'pager' => '',
75             'personal_number' => '',
76             'specialrate' => '',
77             'toll_free' => '',
78             'voip' => '56\\d{4}'
79             };
80              
81             sub new {
82 10     10 1 26 my $class = shift;
83 10         20 my $number = shift;
84 10         63 $number =~ s/(^\+597|\D)//g;
85 10         51 my $self = bless({ country_code => '597', number => $number, formatters => $formatters, validators => $validators, }, $class);
86 10 100       51 return $self->is_valid() ? $self : undef;
87             }
88             1;