File Coverage

blib/lib/Number/Phone/StubCountry/QA.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::QA;
20 2     2   1105 use base qw(Number::Phone::StubCountry);
  2         7  
  2         211  
21              
22 2     2   14 use strict;
  2         8  
  2         47  
23 2     2   14 use warnings;
  2         13  
  2         48  
24 2     2   10 use utf8;
  2         11  
  2         13  
25             our $VERSION = 1.20230307181422;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'leading_digits' => '
31             2[16]|
32             8
33             ',
34             'pattern' => '(\\d{3})(\\d{4})'
35             },
36             {
37             'format' => '$1 $2',
38             'leading_digits' => '[3-7]',
39             'pattern' => '(\\d{4})(\\d{4})'
40             }
41             ];
42              
43             my $validators = {
44             'fixed_line' => '
45             4(?:
46             1111|
47             2022
48             )\\d{3}|
49             4(?:
50             [04]\\d\\d|
51             14[0-6]|
52             999
53             )\\d{4}
54             ',
55             'geographic' => '
56             4(?:
57             1111|
58             2022
59             )\\d{3}|
60             4(?:
61             [04]\\d\\d|
62             14[0-6]|
63             999
64             )\\d{4}
65             ',
66             'mobile' => '[35-7]\\d{7}',
67             'pager' => '
68             2(?:
69             1\\d|
70             61
71             )\\d{4}
72             ',
73             'personal_number' => '',
74             'specialrate' => '',
75             'toll_free' => '
76             800\\d{4}|
77             (?:
78             0080[01]|
79             800
80             )\\d{6}
81             ',
82             'voip' => ''
83             };
84              
85             sub new {
86 13     13 1 28 my $class = shift;
87 13         24 my $number = shift;
88 13         88 $number =~ s/(^\+974|\D)//g;
89 13         62 my $self = bless({ country_code => '974', number => $number, formatters => $formatters, validators => $validators, }, $class);
90 13 100       57 return $self->is_valid() ? $self : undef;
91             }
92             1;