File Coverage

blib/lib/Number/Phone/StubCountry/IQ.pm
Criterion Covered Total %
statement 20 20 100.0
branch 3 4 75.0
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 29 30 96.6


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