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   1408 use base qw(Number::Phone::StubCountry);
  2         13  
  2         258  
21              
22 2     2   17 use strict;
  2         8  
  2         54  
23 2     2   14 use warnings;
  2         8  
  2         54  
24 2     2   21 use utf8;
  2         6  
  2         13  
25             our $VERSION = 1.20230903131448;
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' => '2[16]\\d{5}',
68             'personal_number' => '',
69             'specialrate' => '',
70             'toll_free' => '
71             800\\d{4}|
72             (?:
73             0080[01]|
74             800
75             )\\d{6}
76             ',
77             'voip' => ''
78             };
79              
80             sub new {
81 13     13 1 51 my $class = shift;
82 13         33 my $number = shift;
83 13         91 $number =~ s/(^\+974|\D)//g;
84 13         67 my $self = bless({ country_code => '974', number => $number, formatters => $formatters, validators => $validators, }, $class);
85 13 100       66 return $self->is_valid() ? $self : undef;
86             }
87             1;