File Coverage

blib/lib/Number/Phone/StubCountry/TL.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::TL;
20 2     2   1157 use base qw(Number::Phone::StubCountry);
  2         5  
  2         284  
21              
22 2     2   18 use strict;
  2         8  
  2         46  
23 2     2   17 use warnings;
  2         15  
  2         50  
24 2     2   12 use utf8;
  2         4  
  2         25  
25             our $VERSION = 1.20230903131448;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'leading_digits' => '
31             [2-489]|
32             70
33             ',
34             'pattern' => '(\\d{3})(\\d{4})'
35             },
36             {
37             'format' => '$1 $2',
38             'leading_digits' => '7',
39             'pattern' => '(\\d{4})(\\d{4})'
40             }
41             ];
42              
43             my $validators = {
44             'fixed_line' => '
45             (?:
46             2[1-5]|
47             3[1-9]|
48             4[1-4]
49             )\\d{5}
50             ',
51             'geographic' => '
52             (?:
53             2[1-5]|
54             3[1-9]|
55             4[1-4]
56             )\\d{5}
57             ',
58             'mobile' => '7[2-8]\\d{6}',
59             'pager' => '',
60             'personal_number' => '70\\d{5}',
61             'specialrate' => '(90\\d{5})',
62             'toll_free' => '80\\d{5}',
63             'voip' => ''
64             };
65             my %areanames = ();
66             $areanames{en} = {"67041", "Baucau",
67             "67021", "Manufahi",
68             "67031", "Dili",
69             "67039", "Oekusi",
70             "67043", "Viqueque",
71             "67042", "Manatuto",
72             "67032", "Dili",
73             "67022", "Cova\ Lima",
74             "67033", "Dili",
75             "67023", "Bobonaro",
76             "67038", "Ermera",
77             "67036", "Liquica",
78             "67024", "Ainaro",
79             "67044", "Lautem",
80             "67037", "Aileu",
81             "67025", "Dekuse",};
82              
83             sub new {
84 16     16 1 35 my $class = shift;
85 16         29 my $number = shift;
86 16         97 $number =~ s/(^\+670|\D)//g;
87 16         86 my $self = bless({ country_code => '670', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
88 16 100       78 return $self->is_valid() ? $self : undef;
89             }
90             1;