File Coverage

blib/lib/Number/Phone/StubCountry/BT.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::BT;
20 2     2   1517 use base qw(Number::Phone::StubCountry);
  2         7  
  2         302  
21              
22 2     2   26 use strict;
  2         30  
  2         83  
23 2     2   17 use warnings;
  2         6  
  2         57  
24 2     2   14 use utf8;
  2         16  
  2         15  
25             our $VERSION = 1.20230903131444;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'intl_format' => 'NA',
31             'leading_digits' => '[2-7]',
32             'pattern' => '(\\d{3})(\\d{3})'
33             },
34             {
35             'format' => '$1 $2 $3',
36             'leading_digits' => '
37             [2-68]|
38             7[246]
39             ',
40             'pattern' => '(\\d)(\\d{3})(\\d{3})'
41             },
42             {
43             'format' => '$1 $2 $3 $4',
44             'leading_digits' => '
45             1[67]|
46             7
47             ',
48             'pattern' => '(\\d{2})(\\d{2})(\\d{2})(\\d{2})'
49             }
50             ];
51              
52             my $validators = {
53             'fixed_line' => '
54             (?:
55             2[3-6]|
56             [34][5-7]|
57             5[236]|
58             6[2-46]|
59             7[246]|
60             8[2-4]
61             )\\d{5}
62             ',
63             'geographic' => '
64             (?:
65             2[3-6]|
66             [34][5-7]|
67             5[236]|
68             6[2-46]|
69             7[246]|
70             8[2-4]
71             )\\d{5}
72             ',
73             'mobile' => '
74             (?:
75             1[67]|
76             77
77             )\\d{6}
78             ',
79             'pager' => '',
80             'personal_number' => '',
81             'specialrate' => '',
82             'toll_free' => '',
83             'voip' => ''
84             };
85             my %areanames = ();
86             $areanames{en} = {"9752", "Thimphu",
87             "9753", "Trongsa",
88             "9754", "Trashigang",
89             "97576", "Samdrup\ Jongkhar",
90             "9758", "Paro",
91             "9756", "Gelephu",
92             "97574", "Samdrup\ Jongkhar",
93             "97572", "Samdrup\ Jongkhar",
94             "9755", "Phuentsholing",};
95              
96             sub new {
97 7     7 1 26 my $class = shift;
98 7         26 my $number = shift;
99 7         48 $number =~ s/(^\+975|\D)//g;
100 7         47 my $self = bless({ country_code => '975', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
101 7 100       44 return $self->is_valid() ? $self : undef;
102             }
103             1;