File Coverage

blib/lib/Number/Phone/StubCountry/CG.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::CG;
20 2     2   1203 use base qw(Number::Phone::StubCountry);
  2         6  
  2         221  
21              
22 2     2   16 use strict;
  2         13  
  2         48  
23 2     2   17 use warnings;
  2         5  
  2         57  
24 2     2   16 use utf8;
  2         4  
  2         10  
25             our $VERSION = 1.20230903131445;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2 $3',
30             'leading_digits' => '8',
31             'pattern' => '(\\d)(\\d{4})(\\d{4})'
32             },
33             {
34             'format' => '$1 $2 $3',
35             'leading_digits' => '[02]',
36             'pattern' => '(\\d{2})(\\d{3})(\\d{4})'
37             }
38             ];
39              
40             my $validators = {
41             'fixed_line' => '222[1-589]\\d{5}',
42             'geographic' => '222[1-589]\\d{5}',
43             'mobile' => '
44             026(?:
45             1[0-5]|
46             6[6-9]
47             )\\d{4}|
48             0(?:
49             [14-6]\\d\\d|
50             2(?:
51             40|
52             5[5-8]|
53             6[07-9]
54             )
55             )\\d{5}
56             ',
57             'pager' => '',
58             'personal_number' => '',
59             'specialrate' => '(80[0-2]\\d{6})',
60             'toll_free' => '',
61             'voip' => ''
62             };
63             my %areanames = ();
64             $areanames{en} = {"2422228", "Brazzaville",
65             "2422225", "Bouenza\/Lekoumou\/Niari",
66             "2422221", "Cuvette",
67             "2422223", "Pool",
68             "2422224", "Plateaux",
69             "2422229", "Pointe\-Noire",
70             "2422222", "Likouala\/Sangha",};
71             $areanames{fr} = {};
72              
73             sub new {
74 10     10 1 33 my $class = shift;
75 10         22 my $number = shift;
76 10         66 $number =~ s/(^\+242|\D)//g;
77 10         56 my $self = bless({ country_code => '242', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
78 10 100       51 return $self->is_valid() ? $self : undef;
79             }
80             1;