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
|
# ABSTRACT: Creditcard Directive for Validation Class Field Definitions
package Validation::Class::Directive::Creditcard;
use strict;
use warnings;
use base 'Validation::Class::Directive';
use Validation::Class::Util;
our $VERSION = '7.900057'; # VERSION
has 'mixin' => 1;
has 'field' => 1;
has 'multi' => 0;
has 'message' => '%s requires a valid credit card number';
sub validate {
my ($self, $proto, $field, $param) = @_;
if (defined $field->{creditcard} && defined $param) {
my $ccre = {
'amex' => qr/^3[4|7]\d{13}$/,
'bankcard' => qr/^56(10\d\d|022[1-5])\d{10}$/,
'diners' => qr/^(?:3(0[0-5]|[68]\d)\d{11})|(?:5[1-5]\d{14})$/,
'disc' => qr/^(?:6011|650\d)\d{12}$/,
'electron' => qr/^(?:417500|4917\d{2}|4913\d{2})\d{10}$/,
'enroute' => qr/^2(?:014|149)\d{11}$/,
'jcb' => qr/^(3\d{4}|2100|1800)\d{11}$/,
'maestro' => qr/^(?:5020|6\d{3})\d{12}$/,
'mastercard' => qr/^5[1-5]\d{14}$/,
'solo' => qr/^(6334[5-9][0-9]|6767[0-9]{2})\d{10}(\d{2,3})?$/,
'switch' => qr/^(?:49(03(0[2-9]|3[5-9])|11(0[1-2]|7[4-9]|8[1-2])|36[0-9]{2})\d{10}(\d{2,3})?)|(?:564182\d{10}(\d{2,3})?)|(6(3(33[0-4][0-9])|759[0-9]{2})\d{10}(\d{2,3})?)$/,
'visa' => qr/^4\d{12}(\d{3})?$/,
'voyager' => qr/^8699[0-9]{11}$/,
# or do a simple catch-all match
'any' => qr/^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6011[0-9]{12}|3(?:0[0-5]|[68][0-9])[0-9]{11}|3[47][0-9]{13})$/
};
my $type = $field->{creditcard};
if ($field->{required} || $param) {
my $is_valid = 0;
$type = isa_arrayref($type) ? $type : $type eq '1' ? ['any'] : [$type];
for (@{$type}) {
if ($param =~ $ccre->{$_}) {
$is_valid = 1;
last;
}
}
$self->error($proto, $field) unless $is_valid;
}
}
return $self;
}
1;
__END__
=pod
=head1 NAME
Validation::Class::Directive::Creditcard - Creditcard Directive for Validation Class Field Definitions
=head1 VERSION
version 7.900057
=head1 SYNOPSIS
use Validation::Class::Simple;
my $rules = Validation::Class::Simple->new(
fields => {
person_cc => {
creditcard => 1
}
}
);
# set parameters to be validated
$rules->params->add($parameters);
# validate
unless ($rules->validate) {
# handle the failures
}
=head1 DESCRIPTION
Validation::Class::Directive::Creditcard is a core validation class field
directive that provides validation for american express, bankcard, diners card,
discover card, electron, enroute, jcb, maestro, mastercard, solo, switch, visa
and voyager credit cards.
=over 8
=item * alternative argument: an-array-of-options
=item * option: amex
=item * option: bankcard
=item * option: diners
=item * option: disc
=item * option: electron
=item * option: enroute
=item * option: jcb
=item * option: maestro
=item * option: mastercard
=item * option: solo
=item * option: switch
=item * option: visa
=item * option: voyager
This directive can be passed a single value or an array of values:
fields => {
person_cc => {
creditcard => ['visa', 'mastercard']
}
}
=back
=head1 AUTHOR
Al Newkirk <anewkirk@ana.io>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Al Newkirk.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|