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   1121 use base qw(Number::Phone::StubCountry);
  2         11  
  2         219  
21              
22 2     2   15 use strict;
  2         5  
  2         45  
23 2     2   20 use warnings;
  2         6  
  2         65  
24 2     2   20 use utf8;
  2         5  
  2         15  
25             our $VERSION = 1.20230307181417;
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' => '(
60             80(?:
61             0\\d\\d|
62             120
63             )\\d{4}
64             )',
65             'toll_free' => '',
66             'voip' => ''
67             };
68             my %areanames = ();
69             $areanames{en} = {"2422225", "Bouenza\/Lekoumou\/Niari",
70             "2422224", "Plateaux",
71             "2422221", "Cuvette",
72             "2422228", "Brazzaville",
73             "2422222", "Likouala\/Sangha",
74             "2422223", "Pool",
75             "2422229", "Pointe\-Noire",};
76             $areanames{fr} = {};
77              
78             sub new {
79 10     10 1 22 my $class = shift;
80 10         34 my $number = shift;
81 10         91 $number =~ s/(^\+242|\D)//g;
82 10         58 my $self = bless({ country_code => '242', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
83 10 100       51 return $self->is_valid() ? $self : undef;
84             }
85             1;