|
our $VERSION = 1.20250323211834;
my $formatters = [
{
'format' => '$1 $2' ,
'leading_digits' => '80' ,
'national_rule' => '(0$1)' ,
'pattern' => '(\\d{3})(\\d{5})'
},
{
'format' => '$1 $2' ,
'leading_digits' => '1' ,
'national_rule' => '(0$1)' ,
'pattern' => '(\\d)(\\d{7})'
},
{
'format' => '$1 $2' ,
'leading_digits' => '[4-8]' ,
'national_rule' => '(0$1)' ,
'pattern' => '(\\d{2})(\\d{6})'
},
{
'format' => '$1 $2 $3' ,
'leading_digits' => '9' ,
'pattern' => '(\\d{3})(\\d{3})(\\d{3})'
}
];
my $validators = {
'fixed_line' => '
(?:
(?:
(?:
4[34]|
5[14]
)[0-8]|
687
)\\d|
7(?:
173|
(?:
3[0-8]|
55
)\\d
)|
8(?:
10[05689]|
6(?:
0[06-9]|
1[6-9]|
29
)|
7(?:
0[0569]|
[56]0
)
)
)\\d{4}|
(?:
1[0-8]|
4[12]|
5[236]|
6[1-7]|
7[246]|
8[2-4]
)\\d{6}
',
'geographic' => '
(?:
(?:
(?:
4[34]|
5[14]
)[0-8]|
687
)\\d|
7(?:
173|
(?:
3[0-8]|
55
)\\d
)|
8(?:
10[05689]|
6(?:
0[06-9]|
1[6-9]|
29
)|
7(?:
0[0569]|
[56]0
)
)
)\\d{4}|
(?:
1[0-8]|
4[12]|
5[236]|
6[1-7]|
7[246]|
8[2-4]
)\\d{6}
',
'mobile' => '9\\d{8}' ,
'pager' => '' ,
'personal_number' => '80[24]\\d{5}' ,
'specialrate' => '(801\\d{5})|(805\\d{5})' ,
'toll_free' => '800\\d{5}' ,
'voip' => ''
};
my %areanames = ();
$areanames {en} = { "5164" , "Junín" ,
"5165" , "Loreto" ,
"5176" , "Cajamarca" ,
"5142" , "San\ Martín" ,
"5143" , "Ancash" ,
"5151" , "Puno" ,
"5161" , "Ucayali" ,
"5183" , "Apurímac" ,
"5182" , "Madre\ de\ Dios" ,
"5173" , "Piura" ,
"5154" , "Arequipa" ,
"5172" , "Tumbes" ,
"5144" , "La\ Libertad" ,
"5168" , "Lima" ,
"5156" , "Ica" ,
"5167" , "Huancavelica" ,
"5163" , "Pasco" ,
"511" , "Lima\/Callao" ,
"5162" , "Huánuco" ,
"5174" , "Lambayeque" ,
"5152" , "Tacna" ,
"5153" , "Moquegua" ,
"5175" , "Lima" ,
"5141" , "Amazonas" ,
"5184" , "Cusco" ,
"5166" , "Ayacucho" ,};
my $timezones = {
'' => [
'America/Lima'
]
};
sub new {
my $class = shift ;
my $number = shift ;
$number =~ s/(^\+51|\D)//g;
my $self = bless ({ country_code => '51' , number => $number , formatters => $formatters , validators => $validators , timezones => $timezones , areanames => \ %areanames }, $class );
return $self if ( $self ->is_valid());
$number =~ s/^(?:0)//;
$self = bless ({ country_code => '51' , number => $number , formatters => $formatters , validators => $validators , areanames => \ %areanames }, $class );
return $self ->is_valid() ? $self : undef ;
}
1;
|