File Coverage

blib/lib/Number/Phone/StubCountry/TV.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::TV;
20 2     2   1355 use base qw(Number::Phone::StubCountry);
  2         8  
  2         283  
21              
22 2     2   23 use strict;
  2         10  
  2         53  
23 2     2   12 use warnings;
  2         6  
  2         61  
24 2     2   10 use utf8;
  2         7  
  2         16  
25             our $VERSION = 1.20230903131448;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'leading_digits' => '2',
31             'pattern' => '(\\d{2})(\\d{3})'
32             },
33             {
34             'format' => '$1 $2',
35             'leading_digits' => '90',
36             'pattern' => '(\\d{2})(\\d{4})'
37             },
38             {
39             'format' => '$1 $2',
40             'leading_digits' => '7',
41             'pattern' => '(\\d{2})(\\d{5})'
42             }
43             ];
44              
45             my $validators = {
46             'fixed_line' => '2[02-9]\\d{3}',
47             'geographic' => '2[02-9]\\d{3}',
48             'mobile' => '
49             (?:
50             7[01]\\d|
51             90
52             )\\d{4}
53             ',
54             'pager' => '',
55             'personal_number' => '',
56             'specialrate' => '',
57             'toll_free' => '',
58             'voip' => ''
59             };
60             my %areanames = ();
61             $areanames{en} = {"68823", "Nui",
62             "68822", "Niulakita",
63             "68820", "Funafuti",
64             "68824", "Nukufetau",
65             "68829", "Vaitupu",
66             "68825", "Nukulaelae",
67             "68826", "Nanumea",
68             "68828", "Niutao",
69             "68827", "Nanumaga",};
70              
71             sub new {
72 7     7 1 27 my $class = shift;
73 7         13 my $number = shift;
74 7         49 $number =~ s/(^\+688|\D)//g;
75 7         42 my $self = bless({ country_code => '688', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
76 7 100       43 return $self->is_valid() ? $self : undef;
77             }
78             1;