tyop
[freeside.git] / FS / FS / payinfo_Mixin.pm
1 package FS::payinfo_Mixin;
2
3 use strict;
4 use Business::CreditCard;
5 use FS::payby;
6
7 =head1 NAME
8
9 FS::payinfo_Mixin - Mixin class for records in tables that contain payinfo.  
10
11 =head1 SYNOPSIS
12
13 package FS::some_table;
14 use vars qw(@ISA);
15 @ISA = qw( FS::payinfo_Mixin FS::Record );
16
17 =head1 DESCRIPTION
18
19 This is a mixin class for records that contain payinfo. 
20
21 This class handles the following functions for payinfo...
22
23 Payment Mask (Generation and Storage)
24 Data Validation (parent checks need to be sure to call this)
25 Encryption - In the Future (Pull from Record.pm)
26 Bad Card Stuff - In the Future (Integrate Banned Pay)
27 Currency - In the Future
28
29 =head1 FIELDS
30
31 =over 4
32
33 =item payby
34
35 The following payment types (payby) are supported:
36
37 For Customers (cust_main):
38 'CARD' (credit card - automatic), 'DCRD' (credit card - on-demand),
39 'CHEK' (electronic check - automatic), 'DCHK' (electronic check - on-demand),
40 'LECB' (Phone bill billing), 'BILL' (billing), 'COMP' (free), or
41 'PREPAY' (special billing type: applies a credit and sets billing type to I<BILL> - see L<FS::prepay_credit>)
42
43 For Refunds (cust_refund):
44 'CARD' (credit cards), 'CHEK' (electronic check/ACH),
45 'LECB' (Phone bill billing), 'BILL' (billing), 'CASH' (cash),
46 'WEST' (Western Union), 'MCRD' (Manual credit card), 'CBAK' Chargeback, or 'COMP' (free)
47
48
49 For Payments (cust_pay):
50 'CARD' (credit cards), 'CHEK' (electronic check/ACH),
51 'LECB' (phone bill billing), 'BILL' (billing), 'PREP' (prepaid card),
52 'CASH' (cash), 'WEST' (Western Union), or 'MCRD' (Manual credit card)
53 'COMP' (free) is depricated as a payment type in cust_pay
54
55 =cut 
56
57 # was this supposed to do something?
58  
59 #sub payby {
60 #  my($self,$payby) = @_;
61 #  if ( defined($payby) ) {
62 #    $self->setfield('payby', $payby);
63 #  } 
64 #  return $self->getfield('payby')
65 #}
66
67 =item payinfo
68
69 Payment information (payinfo) can be one of the following types:
70
71 Card Number, P.O., comp issuer (4-8 lowercase alphanumerics; think username) or prepayment identifier (see L<FS::prepay_credit>)
72
73 =cut
74
75 sub payinfo {
76   my($self,$payinfo) = @_;
77   if ( defined($payinfo) ) {
78     $self->setfield('payinfo', $payinfo); # This is okay since we are the 'setter'
79     $self->paymask($self->mask_payinfo());
80   } else {
81     $payinfo = $self->getfield('payinfo'); # This is okay since we are the 'getter'
82     return $payinfo;
83   }
84 }
85
86 =item paycvv
87
88 Card Verification Value, "CVV2" (also known as CVC2 or CID), the 3 or 4 digit number on the back (or front, for American Express) of the credit card
89
90 =cut
91
92 sub paycvv {
93   my($self,$paycvv) = @_;
94   # This is only allowed in cust_main... Even then it really shouldn't be stored...
95   if ($self->table eq 'cust_main') {
96     if ( defined($paycvv) ) {
97       $self->setfield('paycvv', $paycvv); # This is okay since we are the 'setter'
98     } else {
99       $paycvv = $self->getfield('paycvv'); # This is okay since we are the 'getter'
100       return $paycvv;
101     }
102   } else {
103 #    warn "This doesn't work for other tables besides cust_main
104     '';
105   } 
106 }
107
108 =item paymask
109
110 =cut
111
112 sub paymask {
113   my($self,$paymask)=@_;
114
115
116   if ($paymask ne '') {
117     # I hate this little bit of magic...  I don't expect it to cause a problem, but who knows...
118     # If the payinfo is passed in masked then ignore it and set it based on the payinfo
119     # The only guy that should call this in this way is... $self->payinfo
120     $self->setfield('paymask', $self->mask_payinfo());
121   } else {
122     $paymask=$self->getfield('paymask');
123     if (!defined($paymask) || $paymask eq '') {
124       # Generate it if it's blank - Note that we're not going to set it - just generate
125       $paymask = $self->mask_payinfo();
126     }
127   }
128   return $paymask;
129 }
130
131 =back
132
133 =head1 METHODS
134
135 =over 4
136
137 =item mask_payinfo [ PAYBY, PAYINFO ]
138
139 This method converts the payment info (credit card, bank account, etc.) into a
140 masked string.
141
142 Optionally, an arbitrary payby and payinfo can be passed.
143
144 =cut
145
146 sub mask_payinfo {
147   my $self = shift;
148   my $payby   = scalar(@_) ? shift : $self->payby;
149   my $payinfo = scalar(@_) ? shift : $self->payinfo;
150
151   # Check to see if it's encrypted...
152   my $paymask;
153   if ( $self->is_encrypted($payinfo) ) {
154     $paymask = 'N/A';
155   } else {
156     # if not, mask it...
157     if ($payby eq 'CARD' || $payby eq 'DCRD' || $payby eq 'MCRD') {
158       # Credit Cards (Show first and last four)
159       $paymask = substr($payinfo,0,6).
160                  'x'x(length($payinfo)-10).
161                  substr($payinfo,(length($payinfo)-4));
162     } elsif ($payby eq 'CHEK' || $payby eq 'DCHK' ) {
163       # Checks (Show last 2 @ bank)
164       my( $account, $aba ) = split('@', $payinfo );
165       $paymask = 'x'x(length($account)-2).
166                  substr($account,(length($account)-2))."@".$aba;
167     } else { # Tie up loose ends
168       $paymask = $payinfo;
169     }
170   }
171   return $paymask;
172 }
173
174 =cut
175
176 sub _mask_payinfo {
177   my $self = shift;
178
179 =item payinfo_check
180
181 Checks payby and payinfo.
182
183 For Customers (cust_main):
184 'CARD' (credit card - automatic), 'DCRD' (credit card - on-demand),
185 'CHEK' (electronic check - automatic), 'DCHK' (electronic check - on-demand),
186 'LECB' (Phone bill billing), 'BILL' (billing), 'COMP' (free), or
187 'PREPAY' (special billing type: applies a credit - see L<FS::prepay_credit> and sets billing type to I<BILL>)
188
189 For Refunds (cust_refund):
190 'CARD' (credit cards), 'CHEK' (electronic check/ACH),
191 'LECB' (Phone bill billing), 'BILL' (billing), 'CASH' (cash),
192 'WEST' (Western Union), 'MCRD' (Manual credit card), 'CBAK' (Chargeback),  or 'COMP' (free)
193
194 For Payments (cust_pay):
195 'CARD' (credit cards), 'CHEK' (electronic check/ACH),
196 'LECB' (phone bill billing), 'BILL' (billing), 'PREP' (prepaid card),
197 'CASH' (cash), 'WEST' (Western Union), or 'MCRD' (Manual credit card)
198 'COMP' (free) is depricated as a payment type in cust_pay
199
200 =cut
201
202 sub payinfo_check {
203   my $self = shift;
204
205   FS::payby->can_payby($self->table, $self->payby)
206     or return "Illegal payby: ". $self->payby;
207
208   if ( $self->payby eq 'CARD' ) {
209     my $payinfo = $self->payinfo;
210     $payinfo =~ s/\D//g;
211     $self->payinfo($payinfo);
212     if ( $self->payinfo ) {
213       $self->payinfo =~ /^(\d{13,16})$/
214         or return "Illegal (mistyped?) credit card number (payinfo)";
215       $self->payinfo($1);
216       validate($self->payinfo) or return "Illegal credit card number";
217       return "Unknown card type" if cardtype($self->payinfo) eq "Unknown";
218     } else {
219       $self->payinfo('N/A');
220     }
221   } else {
222     my $error = $self->ut_textn('payinfo');
223     return $error if $error;
224   }
225 }
226
227 =head1 BUGS
228
229 Have to add the future items...
230
231 =head1 SEE ALSO
232
233 L<FS::payby>, L<FS::Record>
234
235 =cut
236
237 1;
238