File Coverage

blib/lib/Number/Phone/StubCountry/ZM.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::ZM;
20 2     2   1297 use base qw(Number::Phone::StubCountry);
  2         9  
  2         255  
21              
22 2     2   21 use strict;
  2         8  
  2         51  
23 2     2   10 use warnings;
  2         7  
  2         56  
24 2     2   17 use utf8;
  2         5  
  2         13  
25             our $VERSION = 1.20230307181423;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'intl_format' => 'NA',
31             'leading_digits' => '[1-9]',
32             'pattern' => '(\\d{3})(\\d{3})'
33             },
34             {
35             'format' => '$1 $2 $3',
36             'leading_digits' => '[28]',
37             'national_rule' => '0$1',
38             'pattern' => '(\\d{3})(\\d{3})(\\d{3})'
39             },
40             {
41             'format' => '$1 $2',
42             'leading_digits' => '[79]',
43             'national_rule' => '0$1',
44             'pattern' => '(\\d{2})(\\d{7})'
45             }
46             ];
47              
48             my $validators = {
49             'fixed_line' => '21[1-8]\\d{6}',
50             'geographic' => '21[1-8]\\d{6}',
51             'mobile' => '
52             (?:
53             7[5-79]|
54             9[5-8]
55             )\\d{7}
56             ',
57             'pager' => '',
58             'personal_number' => '',
59             'specialrate' => '',
60             'toll_free' => '800\\d{6}',
61             'voip' => '63\\d{7}'
62             };
63             my %areanames = ();
64             $areanames{en} = {"260216", "Chipata\/Eastern\ Province",
65             "260211", "Lusaka\ Province",
66             "260214", "Kasama\/Northern\ Province",
67             "260215", "Kabwe\/Central\ Province",
68             "260212", "Ndola\/Copperbelt\ and\ Luapula\ Provinces",
69             "260217", "Solwezi\/Western\ Province",
70             "260218", "Mongu\/North\-Western\ Province",
71             "260213", "Livingstone\/Southern\ Province",};
72              
73             sub new {
74 13     13 1 30 my $class = shift;
75 13         39 my $number = shift;
76 13         106 $number =~ s/(^\+260|\D)//g;
77 13         88 my $self = bless({ country_code => '260', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
78 13 100       70 return $self if ($self->is_valid());
79 1         3 $number =~ s/^(?:0)//;
80 1         10 $self = bless({ country_code => '260', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
81 1 50       4 return $self->is_valid() ? $self : undef;
82             }
83             1;