File Coverage

blib/lib/Number/Phone/StubCountry/ST.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::ST;
20 2     2   1221 use base qw(Number::Phone::StubCountry);
  2         8  
  2         231  
21              
22 2     2   41 use strict;
  2         9  
  2         51  
23 2     2   23 use warnings;
  2         6  
  2         54  
24 2     2   10 use utf8;
  2         5  
  2         16  
25             our $VERSION = 1.20230614174404;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'leading_digits' => '[29]',
31             'pattern' => '(\\d{3})(\\d{4})'
32             }
33             ];
34              
35             my $validators = {
36             'fixed_line' => '22\\d{5}',
37             'geographic' => '22\\d{5}',
38             'mobile' => '
39             900[5-9]\\d{3}|
40             9(?:
41             0[1-9]|
42             [89]\\d
43             )\\d{4}
44             ',
45             'pager' => '',
46             'personal_number' => '',
47             'specialrate' => '',
48             'toll_free' => '',
49             'voip' => ''
50             };
51             my %areanames = ();
52             $areanames{pt} = {"2392251", "Região\ Autonoma\ do\ Príncipe",};
53             $areanames{en} = {"239224", "Água\ Grande",
54             "239229", "Água\ Grande",
55             "2392231", "Guadalupe",
56             "2392222", "Água\ Grande",
57             "2392221", "Água\ Grande",
58             "2392271", "Trindade",
59             "2392272", "Madalena",
60             "2392220", "Santo\ Amaro",
61             "2392223", "Água\ Grande",
62             "2392225", "Água\ Grande",
63             "2392233", "Neves\,\ Santa\ Catarina",
64             "2392251", "Autonomous\ Region\ of\ Príncipe",
65             "2392227", "Água\ Grande",
66             "2392261", "Angolares\,\ Porto\ Alegre",
67             "2392228", "Água\ Grande",
68             "2392224", "Água\ Grande",
69             "2392226", "Água\ Grande",
70             "2392265", "Santana\,\ Ribeira\ Afonso",
71             "239228", "Água\ Grande",};
72              
73             sub new {
74 7     7 1 25 my $class = shift;
75 7         17 my $number = shift;
76 7         44 $number =~ s/(^\+239|\D)//g;
77 7         47 my $self = bless({ country_code => '239', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
78 7 100       41 return $self->is_valid() ? $self : undef;
79             }
80             1;