File Coverage

blib/lib/Number/Phone/StubCountry/PS.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::PS;
20 2     2   1350 use base qw(Number::Phone::StubCountry);
  2         9  
  2         261  
21              
22 2     2   19 use strict;
  2         8  
  2         59  
23 2     2   11 use warnings;
  2         6  
  2         58  
24 2     2   17 use utf8;
  2         6  
  2         15  
25             our $VERSION = 1.20230307181422;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2 $3',
30             'leading_digits' => '[2489]',
31             'national_rule' => '0$1',
32             'pattern' => '(\\d)(\\d{3})(\\d{4})'
33             },
34             {
35             'format' => '$1 $2 $3',
36             'leading_digits' => '5',
37             'national_rule' => '0$1',
38             'pattern' => '(\\d{3})(\\d{3})(\\d{3})'
39             },
40             {
41             'format' => '$1 $2 $3',
42             'leading_digits' => '1',
43             'pattern' => '(\\d{4})(\\d{3})(\\d{3})'
44             }
45             ];
46              
47             my $validators = {
48             'fixed_line' => '
49             (?:
50             22[2-47-9]|
51             42[45]|
52             82[014-68]|
53             92[3569]
54             )\\d{5}
55             ',
56             'geographic' => '
57             (?:
58             22[2-47-9]|
59             42[45]|
60             82[014-68]|
61             92[3569]
62             )\\d{5}
63             ',
64             'mobile' => '5[69]\\d{7}',
65             'pager' => '',
66             'personal_number' => '',
67             'specialrate' => '(1700\\d{6})',
68             'toll_free' => '1800\\d{6}',
69             'voip' => ''
70             };
71             my %areanames = ();
72             $areanames{en} = {"970424", "Jenin",
73             "970820", "Khan\ Yunis",
74             "970824", "North\ Gaza",
75             "970821", "Rafah",
76             "970826", "Gaza",
77             "970223", "Jerusalem",
78             "970926", "Tulkarm",
79             "970929", "Qalqilya\/Salfit",
80             "970222", "Jericho\/Hebron",
81             "970227", "Bethlehem",
82             "970825", "Deir\ al\-Balah",
83             "970923", "Nablus",
84             "970229", "Ramallah\/Al\-Bireh",
85             "970925", "Tubas",
86             "970828", "Gaza",};
87              
88             sub new {
89 13     13 1 29 my $class = shift;
90 13         27 my $number = shift;
91 13         90 $number =~ s/(^\+970|\D)//g;
92 13         75 my $self = bless({ country_code => '970', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
93 13 100       66 return $self if ($self->is_valid());
94 1         3 $number =~ s/^(?:0)//;
95 1         10 $self = bless({ country_code => '970', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
96 1 50       4 return $self->is_valid() ? $self : undef;
97             }
98             1;