File Coverage

blib/lib/Number/Phone/StubCountry/ME.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::ME;
20 2     2   1328 use base qw(Number::Phone::StubCountry);
  2         6  
  2         274  
21              
22 2     2   22 use strict;
  2         5  
  2         60  
23 2     2   13 use warnings;
  2         8  
  2         56  
24 2     2   14 use utf8;
  2         8  
  2         15  
25             our $VERSION = 1.20230614174404;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2 $3',
30             'leading_digits' => '[2-9]',
31             'national_rule' => '0$1',
32             'pattern' => '(\\d{2})(\\d{3})(\\d{3,4})'
33             }
34             ];
35              
36             my $validators = {
37             'fixed_line' => '
38             (?:
39             20[2-8]|
40             3(?:
41             [0-2][2-7]|
42             3[24-7]
43             )|
44             4(?:
45             0[2-467]|
46             1[2467]
47             )|
48             5(?:
49             0[2467]|
50             1[24-7]|
51             2[2-467]
52             )
53             )\\d{5}
54             ',
55             'geographic' => '
56             (?:
57             20[2-8]|
58             3(?:
59             [0-2][2-7]|
60             3[24-7]
61             )|
62             4(?:
63             0[2-467]|
64             1[2467]
65             )|
66             5(?:
67             0[2467]|
68             1[24-7]|
69             2[2-467]
70             )
71             )\\d{5}
72             ',
73             'mobile' => '
74             6(?:
75             [07-9]\\d|
76             3[024]|
77             6[0-25]
78             )\\d{5}
79             ',
80             'pager' => '',
81             'personal_number' => '',
82             'specialrate' => '(
83             9(?:
84             4[1568]|
85             5[178]
86             )\\d{5}
87             )|(77[1-9]\\d{5})',
88             'toll_free' => '
89             80(?:
90             [0-2578]|
91             9\\d
92             )\\d{5}
93             ',
94             'voip' => '78[1-49]\\d{5}'
95             };
96             my %areanames = ();
97             $areanames{en} = {"38240", "Niksic\/Pluzine\/Savnik",
98             "38233", "Budva",
99             "38252", "Pljevlja\/Zabljak",
100             "38250", "Bijelo\ Polje\/Mojkovac",
101             "38251", "Andrijevica\/Berane\/Blue\/Gusinje\/Petnitsa\/Rožaje",
102             "38241", "Cetinje",
103             "38232", "Kotor\/Tivat",
104             "38230", "Bar\/Ulcinj",
105             "3822", "Danilovgad\/Kolasin\/Podgorica",
106             "38231", "Herceg\ Novi",};
107              
108             sub new {
109 19     19 1 42 my $class = shift;
110 19         45 my $number = shift;
111 19         162 $number =~ s/(^\+382|\D)//g;
112 19         137 my $self = bless({ country_code => '382', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
113 19 100       103 return $self if ($self->is_valid());
114 1         3 $number =~ s/^(?:0)//;
115 1         12 $self = bless({ country_code => '382', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
116 1 50       5 return $self->is_valid() ? $self : undef;
117             }
118             1;