Business-RO-CNP
view release on metacpan or search on metacpan
lib/Business/RO/CNP.pm view on Meta::CPAN
1;
__END__
=head1 NAME
Business::RO::CNP - Romanian CNP validation
=head1 VERSION
Version 0.02
=head1 SYNOPSIS
use Business::RO::CNP;
my $cnp = Business::RO::CNP->new(cnp => 1040229319996);
#or:
my $cnp = Business::RO::CNP->new(1040229319996);
print $cnp->valid ? "The CNP is valid" : "The CNP is not valid";
=head1 DESCRIPTION
This module checks the validation of CNP (personal numeric code) of Romania's citizens and offers information about the person.
=head1 SUBROUTINES/METHODS
=head2 valid
This method returns 1 if the CNP is valid or 0 otherwise.
It returns 1 when the L</birthday> method returns a valid birth date and when the last digit of the CNP returned by the method L</checksum> is equal to the value returned by the method L</validator>.
=head2 sex
This method returns 'm' if the person is a male or 'f' if is a female.
The method returns 'unknown' if the sex id of the person (the first digit in the CNP) is 9 (for non-romanian citizens).
When the first digit of the CNP is 1, 3, 5 or 7, this method returns 'm' and when it is 2, 4, 6 or 8, this method returns 'f'.
print $cnp->sex;
=head2 sex_id
The method returns the first digit of the CNP. This digit is odd for men and even for women. It is 1 or 2 for those born between January 1 1900 and December 31 1999, 3 or 4 for those born between January 1 1800 and December 31 1899, 5 or 6 for those ...
The sex id 9 is also reserved for foreign citizens.
print $cnp->sex_id;
=head2 birthday
This method returns a L<DateTime|DateTime> object that holds the birth day of the person so you can call any DateTime methods on it.
print $cnp->birthday;
print $cnp->birthday->ymd;
print $cnp->birthday->strftime('%d %m %y');
print $cnp->birthday->set_locale('ro')->month_name;
Check the L<DateTime|DateTime> module for finding out what methods you can use with this object.
=head2 county
This method returns the county where the person was born or where he received the CNP.
print $cnp->county;
=head2 county_id
This method returns the county ID which is the pair of digits 8 and 9 in the CNP.
Bucharest has the ID 40 but its sectors also have their own IDs.
print $cnp->county_id;
=head2 checksum
This method returns the last digit in the CNP and represents a pre-calculated value based on the first 12 digits of the CNP.
print $cnp->checksum;
=head2 validator
This method calculates the checksum from the first 12 digits of the CNP and it should be equal to the result of the checksum method in order to prove that the CNP is valid.
print $cnp->validator;
=head2 cnp
This method returns the CNP given as parameter to the object constructor.
print $cnp->cnp;
=head2 order_number
This method returns the 3-digit order number from the CNP.
print $cnp->order_number;
=head2 century
This method returns the century in which the person was born.
print $cnp->century;
=head1 AUTHOR
Octavian Rasnita, C<< <orasnita at gmail.com> >>
=head1 INCOMPATIBILITIES
No known incompatibilities.
=head1 BUGS AND LIMITATIONS
Please report any bugs or feature requests to C<bug-business-ro-cnp at rt.cpan.org>, or through
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Business-RO-CNP>. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
( run in 2.406 seconds using v1.01-cache-2.11-cpan-a5162978ef8 )