/usr/share/perl5/Number/Phone/NANP.pm is in libnumber-phone-perl 3.4002-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 | package Number::Phone::NANP;
use strict;
use Scalar::Util 'blessed';
use base 'Number::Phone';
use Number::Phone::NANP::Data;
use Number::Phone::Country qw(noexport);
our $VERSION = 1.5;
my $cache = {};
=head1 NAME
Number::Phone::NANP - NANP-specific methods for Number::Phone
=head1 DESCRIPTION
This is a base class which encapsulates that information about phone
numbers in the North American Numbering Plan (NANP) which are
common to all NANP countries - that is, those whose international
dialling code is +1.
Country-specific modules should inherit from this module and provide
their own versions of methods as necessary. However, they should not
provide an C<is_valid> method or a constructor.
=head1 SYNOPSIS
This module should not be used directly. It will be loaded as necessary
by Number::Phone:
use Number::Phone;
my $phone_number = Number::Phone->new('+1 202 418 1440');
# $phone_number is now a Number::Phone::NANP::US
my $other_phone_number = Number::Phone->new('+1 866 623 2282');
# $phone_number is non-geographic so is a Number::Phone::NANP
=cut
sub new {
my $class = shift;
my $number = shift;
return undef if(!is_valid($number));
# cunningly, N::P::C::p2c supports local NANPish number formats
# as well as +1XXXXXXXXXX format. Yay!
my $country = Number::Phone::Country::phone2country($number);
# try to load country class
eval "use Number::Phone::NANP::$country;";
# if we fail, return a generic NANP object, which just happens to
# also be the right thing to do for pan-NANP numbers like 800
return bless(\$number, $class) if($@);
return bless(\$number, $class."::$country");
}
=head1 METHODS
The following methods from Number::Phone are overridden:
=over 4
=item new
The constructor, you should never have to call this yourself. To create an
object the canonical incantation is C<Number::Phone->new('+1 ...')>.
=item is_valid
The number is valid within the numbering scheme. It may or may
not yet be allocated, or it may be reserved.
=item is_geographic
NANP-globals like 1-800 aren't geographic, the rest are.
=item is_mobile
NANP-globals like 1-800 aren't mobile. For most others we just don't know because
the data isn't published. libphonenumber has data for *some* countries, so we use
that if we can.
=item is_fixed_line
NANP-globals are fixed lines, for the rest we generally don't know with some
exceptions as per is_mobile above.
=cut
# See Message-ID: <008001c406ba$6bd01820$dad4a645@anhmca.adelphia.net>
# by Doug Ewell on Wed Mar 10 2004 in telnum-l.
#
# NB the EF digits being 11 *is* legal in at least some area codes.
# Obviously you can't dial, eg, 911-1234
sub is_valid {
my $number = shift;
# If called as an object method, it *must* be valid otherwise the
# object would never have been instantiated.
# If called as a sub, then it's the constructor that's calling.
return 1 if(blessed($number));
# otherwise we have to validate
# if we've seen this number before, use cached result
return 1 if($cache->{$number}->{is_valid});
my $parsed_number = $number;
my %digits;
$parsed_number =~ s/[^\d+]//g; # strip non-digits/plusses
$parsed_number =~ s/^\+1//; # remove leading +1
@digits{qw(A B C D)} = split(//, $parsed_number, 5);
# this is checked in N::P::C::phone2country_and_idd waaaay before we
# ever get here. NB leave this here in case a refactor makes that go
# away. There are tests for this!
#
# # and quickly check length
# if(length($parsed_number) != 10) {
# $cache->{$number}->{is_valid} = 0;
# return 0;
# }
$cache->{$number}->{is_valid} = (
$digits{A} >= 2 && $digits{A} <= 9 &&
$digits{D} >= 2 && $digits{D} <= 9 &&
$digits{A}.$digits{B} ne '37' &&
$digits{A}.$digits{B} ne '96' &&
$digits{B}.$digits{C} ne '11'
) ? 1 : 0;
$cache->{$number}->{areacode} = substr($parsed_number, 0, 3);
$cache->{$number}->{subscriber} = substr($parsed_number, 3);
return $cache->{$number}->{is_valid};
}
# define the other methods
foreach my $method (qw(areacode subscriber)) {
no strict 'refs';
*{__PACKAGE__."::$method"} = sub {
my $self = shift;
return $cache->{${$self}}->{$method};
}
}
sub is_geographic {
my $self = shift;
# NANP-globals like 1-800 aren't geographic, the rest are
return ref($self) eq __PACKAGE__ ? 0 : 1;
}
sub is_mobile {
my $self = shift;
# NANP-globals like 1-800 aren't mobile
if(ref($self) eq __PACKAGE__) { return 0; }
(my $ISO_country_code = ref($self)) =~ s/.*(..)$/$1/;
return undef if(!exists($Number::Phone::NANP::Data::mobile_regexes{$ISO_country_code}));
return ${$self} =~ /^\+1($Number::Phone::NANP::Data::mobile_regexes{$ISO_country_code})$/ ? 1 : 0;
}
sub is_fixed_line {
my $self = shift;
# NANP-globals like 1-800 are fixed
if(ref($self) eq __PACKAGE__) { return 1; }
(my $ISO_country_code = ref($self)) =~ s/.*(..)$/$1/;
return undef if(!exists($Number::Phone::NANP::Data::fixed_line_regexes{$ISO_country_code}));
return ${$self} =~ /^\+1($Number::Phone::NANP::Data::fixed_line_regexes{$ISO_country_code})$/ ? 1 : 0;
}
=item is_drama
The number is a '555' number. Numbers with the D, E, and F digits set to 555
are not allocated to real customers, and are intended for use in fiction. eg
212 555 2368 for Ghostbusters.
NB, despite Ghostbusters above, only 555-0100 to 555-0199 are actually reserved.
=cut
sub is_drama {
my $self = shift;
if(${$self} =~ /555(\d{4})$/) {
return ($1 gt '0099' && $1 lt '0200') ? 1 : 0;
}
return 0;
}
=item is_tollfree
The number is free to the caller. 800, 844, 855, 866, 877 and 888 "area codes"
=cut
sub is_tollfree {
my $self = shift;
if(${$self} =~ /^(\+1)?8[045678]{2}/) { return 1; }
else { return 0; }
}
=item is_specialrate
The number is charged at a higher rate than normal. The 900 "area code".
=cut
sub is_specialrate {
my $self = shift;
if(${$self} =~ /
^(\+1)?
(
900 | # NANP-global
246 ( 292 | 41[7-9] | 43[01] ) # BB-specific, apparently
)
/x) { return 1; }
else { return 0; }
}
=item is_personal
The number is a "personal" number. The 500, 533, 544, 566 and 577 "area codes".
=cut
sub is_personal {
my $self = shift;
if(${$self} =~ /^(\+1)?5[03467]{2}/) { return 1; }
else { return 0; }
}
sub areaname {
my $self = shift;
return Number::Phone::NANP::Data::_areaname('1'.$self->areacode().$self->subscriber());
}
=item country_code
Returns 1.
=cut
sub country_code { 1; }
=item regulator
Returns informational text relevant to the whole NANP. Note that when
this method is inherited by a subclass it returns undef meaning "not
known", but returns information about the NANPA when called on an object
of class Number::Phone::NANP.
=cut
sub regulator {
my $class = shift;
if(blessed($class) eq __PACKAGE__) {
return 'NANPA, http://www.nanpa.com/';
} else {
return undef;
}
}
=item areacode
Return the area code for the number.
=item areaname
Return the name for the area code, if applicable, otherwise returns undef.
For instance, for a number beginning with +1 201 200 it would return "Jersey City, NJ".
=item subscriber
Return the subscriber part of the number.
=item format
Return a sanely formatted version of the number, complete with IDD code.
=cut
sub format {
my $self = shift;
return '+'.country_code().' '.
$self->areacode().' '.
substr($self->subscriber(), 0, 3).' '.
substr($self->subscriber(), 3);
}
=back
=head1 BUGS/FEEDBACK
Please report bugs at L<https://github.com/DrHyde/perl-modules-Number-Phone/issues>, including, if possible, a test case.
I welcome feedback from users.
=head1 LICENCE
You may use, modify and distribute this software under the same terms as
perl itself.
=head1 AUTHOR
David Cantrell E<lt>david@cantrell.org.ukE<gt>
Copyright 2012
=cut
1;
|