File Coverage

blib/lib/Number/Phone/StubCountry/SD.pm
Criterion Covered Total %
statement 20 20 100.0
branch 3 4 75.0
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 29 30 96.6


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::SD;
20 2     2   1303 use base qw(Number::Phone::StubCountry);
  2         6  
  2         264  
21              
22 2     2   21 use strict;
  2         16  
  2         59  
23 2     2   13 use warnings;
  2         11  
  2         53  
24 2     2   12 use utf8;
  2         4  
  2         16  
25             our $VERSION = 1.20230903131448;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2 $3',
30             'leading_digits' => '[19]',
31             'national_rule' => '0$1',
32             'pattern' => '(\\d{2})(\\d{3})(\\d{4})'
33             }
34             ];
35              
36             my $validators = {
37             'fixed_line' => '
38             1(?:
39             5\\d|
40             8[35-7]
41             )\\d{6}
42             ',
43             'geographic' => '
44             1(?:
45             5\\d|
46             8[35-7]
47             )\\d{6}
48             ',
49             'mobile' => '
50             (?:
51             1[0-2]|
52             9[0-3569]
53             )\\d{7}
54             ',
55             'pager' => '',
56             'personal_number' => '',
57             'specialrate' => '',
58             'toll_free' => '',
59             'voip' => ''
60             };
61             my %areanames = ();
62             $areanames{en} = {"249187", "Omdurman",
63             "249183", "Khartoum",
64             "249186", "Khartoum\ Rural",
65             "249156", "Khartoum\ Rural",
66             "249157", "Omdurman",
67             "249153", "Khartoum",
68             "249185", "Khartoum\ North",
69             "249155", "Khartoum\ North",};
70              
71             sub new {
72 7     7 1 22 my $class = shift;
73 7         18 my $number = shift;
74 7         47 $number =~ s/(^\+249|\D)//g;
75 7         46 my $self = bless({ country_code => '249', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
76 7 100       35 return $self if ($self->is_valid());
77 1         3 $number =~ s/^(?:0)//;
78 1         15 $self = bless({ country_code => '249', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
79 1 50       7 return $self->is_valid() ? $self : undef;
80             }
81             1;