File Coverage

blib/lib/Number/Phone/StubCountry/MZ.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::MZ;
20 2     2   1190 use base qw(Number::Phone::StubCountry);
  2         9  
  2         252  
21              
22 2     2   16 use strict;
  2         10  
  2         52  
23 2     2   19 use warnings;
  2         6  
  2         56  
24 2     2   11 use utf8;
  2         6  
  2         12  
25             our $VERSION = 1.20230307181421;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2 $3',
30             'leading_digits' => '
31             2|
32             8[2-79]
33             ',
34             'pattern' => '(\\d{2})(\\d{3})(\\d{3,4})'
35             },
36             {
37             'format' => '$1 $2 $3',
38             'leading_digits' => '8',
39             'pattern' => '(\\d{3})(\\d{3})(\\d{3})'
40             }
41             ];
42              
43             my $validators = {
44             'fixed_line' => '
45             2(?:
46             [1346]\\d|
47             5[0-2]|
48             [78][12]|
49             93
50             )\\d{5}
51             ',
52             'geographic' => '
53             2(?:
54             [1346]\\d|
55             5[0-2]|
56             [78][12]|
57             93
58             )\\d{5}
59             ',
60             'mobile' => '8[2-79]\\d{7}',
61             'pager' => '',
62             'personal_number' => '',
63             'specialrate' => '',
64             'toll_free' => '800\\d{6}',
65             'voip' => ''
66             };
67             my %areanames = ();
68             $areanames{en} = {"258252", "Tete",
69             "258282", "Xai\-Xai",
70             "258271", "Lichinga",
71             "25829", "Inhambane",
72             "25821", "Maputo",
73             "25824", "Quelimane",
74             "258281", "Chokwe",
75             "258272", "Pemba",
76             "258251", "Manica",
77             "25826", "Nampula",
78             "25823", "Beira",};
79             $areanames{pt} = {"258281", "Chokwé",};
80              
81             sub new {
82 10     10 1 32 my $class = shift;
83 10         21 my $number = shift;
84 10         65 $number =~ s/(^\+258|\D)//g;
85 10         55 my $self = bless({ country_code => '258', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
86 10 100       50 return $self->is_valid() ? $self : undef;
87             }
88             1;