File Coverage

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