File Coverage

blib/lib/Number/Phone/StubCountry/CW.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::CW;
20 3     3   1829 use base qw(Number::Phone::StubCountry);
  3         8  
  3         378  
21              
22 3     3   22 use strict;
  3         10  
  3         72  
23 3     3   15 use warnings;
  3         9  
  3         77  
24 3     3   18 use utf8;
  3         8  
  3         20  
25             our $VERSION = 1.20230903131447;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'leading_digits' => '[3467]',
31             'pattern' => '(\\d{3})(\\d{4})'
32             },
33             {
34             'format' => '$1 $2 $3',
35             'leading_digits' => '9[4-8]',
36             'pattern' => '(\\d)(\\d{3})(\\d{4})'
37             }
38             ];
39              
40             my $validators = {
41             'fixed_line' => '
42             9(?:
43             4(?:
44             3[0-5]|
45             4[14]|
46             6\\d
47             )|
48             50\\d|
49             7(?:
50             2[014]|
51             3[02-9]|
52             4[4-9]|
53             6[357]|
54             77|
55             8[7-9]
56             )|
57             8(?:
58             3[39]|
59             [46]\\d|
60             7[01]|
61             8[57-9]
62             )
63             )\\d{4}
64             ',
65             'geographic' => '
66             9(?:
67             4(?:
68             3[0-5]|
69             4[14]|
70             6\\d
71             )|
72             50\\d|
73             7(?:
74             2[014]|
75             3[02-9]|
76             4[4-9]|
77             6[357]|
78             77|
79             8[7-9]
80             )|
81             8(?:
82             3[39]|
83             [46]\\d|
84             7[01]|
85             8[57-9]
86             )
87             )\\d{4}
88             ',
89             'mobile' => '
90             953[01]\\d{4}|
91             9(?:
92             5[12467]|
93             6[5-9]
94             )\\d{5}
95             ',
96             'pager' => '955\\d{5}',
97             'personal_number' => '',
98             'specialrate' => '(60[0-2]\\d{4})',
99             'toll_free' => '',
100             'voip' => ''
101             };
102             my %areanames = ();
103             $areanames{en} = {"5994162", "Saba",
104             "5993180", "St\.\ Eustatius",
105             "5993183", "St\.\ Eustatius",
106             "59975", "Bonaire",
107             "59971", "Bonaire",
108             "5994163", "Saba",
109             "59972", "Bonaire",
110             "599417", "Saba",
111             "5993182", "St\.\ Eustatius",
112             "5994160", "Saba",};
113              
114             sub new {
115 19     19 1 42 my $class = shift;
116 19         36 my $number = shift;
117 19         109 $number =~ s/(^\+599|\D)//g;
118 19         126 my $self = bless({ country_code => '599', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
119 19 100       96 return $self->is_valid() ? $self : undef;
120             }
121             1;