File Coverage

blib/lib/Number/Phone/StubCountry/TG.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::TG;
20 2     2   1171 use base qw(Number::Phone::StubCountry);
  2         9  
  2         219  
21              
22 2     2   24 use strict;
  2         7  
  2         50  
23 2     2   14 use warnings;
  2         9  
  2         56  
24 2     2   24 use utf8;
  2         11  
  2         14  
25             our $VERSION = 1.20230614174404;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2 $3 $4',
30             'leading_digits' => '[279]',
31             'pattern' => '(\\d{2})(\\d{2})(\\d{2})(\\d{2})'
32             }
33             ];
34              
35             my $validators = {
36             'fixed_line' => '
37             2(?:
38             2[2-7]|
39             3[23]|
40             4[45]|
41             55|
42             6[67]|
43             77
44             )\\d{5}
45             ',
46             'geographic' => '
47             2(?:
48             2[2-7]|
49             3[23]|
50             4[45]|
51             55|
52             6[67]|
53             77
54             )\\d{5}
55             ',
56             'mobile' => '
57             (?:
58             7[019]|
59             9[0-36-9]
60             )\\d{6}
61             ',
62             'pager' => '',
63             'personal_number' => '',
64             'specialrate' => '',
65             'toll_free' => '',
66             'voip' => ''
67             };
68             my %areanames = ();
69             $areanames{es} = {"22826", "Región\ de\ Kara",
70             "22823", "Región\ Marítima",
71             "22825", "Región\ Central",
72             "22827", "Región\ de\ Savannah",
73             "22824", "Región\ Plateaux",
74             "22822", "Lomé",};
75             $areanames{en} = {"22822", "Lome",
76             "22824", "Plateaux\ region",
77             "22823", "Maritime\ region",
78             "22825", "Central\ region",
79             "22827", "Savannah\ region",
80             "22826", "Kara\ region",};
81             $areanames{fr} = {"22823", "Région\ Maritime",
82             "22825", "Région\ Centrale",
83             "22827", "Région\ des\ Savanes",
84             "22826", "Région\ de\ la\ Kara",
85             "22822", "Lomé",
86             "22824", "Région\ des\ Plateaux",};
87              
88             sub new {
89 7     7 1 20 my $class = shift;
90 7         20 my $number = shift;
91 7         45 $number =~ s/(^\+228|\D)//g;
92 7         43 my $self = bless({ country_code => '228', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
93 7 100       43 return $self->is_valid() ? $self : undef;
94             }
95             1;