File Coverage

blib/lib/Number/Phone/StubCountry/TM.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::TM;
20 2     2   1229 use base qw(Number::Phone::StubCountry);
  2         8  
  2         237  
21              
22 2     2   21 use strict;
  2         6  
  2         49  
23 2     2   13 use warnings;
  2         8  
  2         54  
24 2     2   14 use utf8;
  2         6  
  2         21  
25             our $VERSION = 1.20230307181422;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2-$3-$4',
30             'leading_digits' => '12',
31             'national_rule' => '(8 $1)',
32             'pattern' => '(\\d{2})(\\d{2})(\\d{2})(\\d{2})'
33             },
34             {
35             'format' => '$1 $2-$3-$4',
36             'leading_digits' => '[1-5]',
37             'national_rule' => '(8 $1)',
38             'pattern' => '(\\d{3})(\\d)(\\d{2})(\\d{2})'
39             },
40             {
41             'format' => '$1 $2',
42             'leading_digits' => '6',
43             'national_rule' => '8 $1',
44             'pattern' => '(\\d{2})(\\d{6})'
45             }
46             ];
47              
48             my $validators = {
49             'fixed_line' => '
50             (?:
51             1(?:
52             2\\d|
53             3[1-9]
54             )|
55             2(?:
56             22|
57             4[0-35-8]
58             )|
59             3(?:
60             22|
61             4[03-9]
62             )|
63             4(?:
64             22|
65             3[128]|
66             4\\d|
67             6[15]
68             )|
69             5(?:
70             22|
71             5[7-9]|
72             6[014-689]
73             )
74             )\\d{5}
75             ',
76             'geographic' => '
77             (?:
78             1(?:
79             2\\d|
80             3[1-9]
81             )|
82             2(?:
83             22|
84             4[0-35-8]
85             )|
86             3(?:
87             22|
88             4[03-9]
89             )|
90             4(?:
91             22|
92             3[128]|
93             4\\d|
94             6[15]
95             )|
96             5(?:
97             22|
98             5[7-9]|
99             6[014-689]
100             )
101             )\\d{5}
102             ',
103             'mobile' => '6\\d{7}',
104             'pager' => '',
105             'personal_number' => '',
106             'specialrate' => '',
107             'toll_free' => '',
108             'voip' => ''
109             };
110             my %areanames = ();
111             $areanames{en} = {"9932", "Balkan",
112             "9934", "Lebap",
113             "9931", "Ahal",
114             "9933", "Daşoguz",
115             "9935", "Mary",};
116              
117             sub new {
118 7     7 1 21 my $class = shift;
119 7         16 my $number = shift;
120 7         47 $number =~ s/(^\+993|\D)//g;
121 7         43 my $self = bless({ country_code => '993', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
122 7 100       34 return $self if ($self->is_valid());
123 1         3 $number =~ s/^(?:8)//;
124 1         12 $self = bless({ country_code => '993', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
125 1 50       5 return $self->is_valid() ? $self : undef;
126             }
127             1;