Class: ActiveMerchant::Billing::CreditCard
- Inherits:
-
Object
- Object
- ActiveMerchant::Billing::CreditCard
- Includes:
- CreditCardMethods, Validateable
- Defined in:
- lib/active_merchant/billing/credit_card.rb,
lib/active_merchant/billing/expiry_date.rb
Overview
A CreditCard
object represents a physical credit card, and is capable of validating the various data associated with these.
At the moment, the following credit card types are supported:
-
Visa
-
MasterCard
-
Discover
-
American Express
-
Diner’s Club
-
JCB
-
Switch
-
Solo
-
Dankort
-
Maestro
-
Forbrugsforeningen
-
Laser
For testing purposes, use the ‘bogus’ credit card brand. This skips the vast majority of validations, allowing you to focus on your core concerns until you’re ready to be more concerned with the details of particular credit cards or your gateway.
Testing With CreditCard
Often when testing we don’t care about the particulars of a given card brand. When using the ‘test’ mode in your Gateway, there are six different valid card numbers: 1, 2, 3, ‘success’, ‘fail’, and ‘error’.
For details, see ActiveMerchant::Billing::CreditCardMethods::ClassMethods#valid_number?
Example Usage
cc = CreditCard.new(
:first_name => 'Steve',
:last_name => 'Smith',
:month => '9',
:year => '2010',
:brand => 'visa',
:number => '4242424242424242'
)
cc.valid? # => true
cc.display_number # => XXXX-XXXX-XXXX-4242
Defined Under Namespace
Classes: ExpiryDate
Constant Summary
Constants included from CreditCardMethods
ActiveMerchant::Billing::CreditCardMethods::CARD_COMPANIES
Instance Attribute Summary collapse
-
#brand ⇒ String
Returns or sets the credit card brand.
-
#first_name ⇒ String
Returns or sets the first name of the card holder.
-
#issue_number ⇒ Object
Required for Switch / Solo cards.
-
#last_name ⇒ String
Returns or sets the last name of the card holder.
-
#month ⇒ Integer
Returns or sets the expiry month for the card.
-
#number ⇒ String
Returns or sets the credit card number.
-
#start_month ⇒ Object
Required for Switch / Solo cards.
-
#start_year ⇒ Object
Required for Switch / Solo cards.
-
#track_data ⇒ String
Returns or sets the track data for the card.
-
#verification_value ⇒ String
Returns or sets the card verification value.
-
#year ⇒ Integer
Returns or sets the expiry year for the card.
Class Method Summary collapse
Instance Method Summary collapse
-
#display_number ⇒ String
Returns a display-friendly version of the card number.
-
#expired? ⇒ Boolean
Returns whether the credit card has expired.
-
#expiry_date ⇒ ExpiryDate
Provides proxy access to an expiry date object.
- #first_digits ⇒ Object
-
#first_name? ⇒ Boolean
Returns whether the
first_name
attribute has been set. - #last_digits ⇒ Object
-
#last_name? ⇒ Boolean
Returns whether the
last_name
attribute has been set. -
#name ⇒ String
Returns the full name of the card holder.
- #name=(full_name) ⇒ Object
-
#name? ⇒ Boolean
Returns whether either the
first_name
or thelast_name
attributes has been set. - #type ⇒ Object
- #type=(value) ⇒ Object
-
#validate ⇒ Object
Validates the credit card details.
- #verification_value? ⇒ Boolean
Methods included from CreditCardMethods
included, #valid_expiry_year?, #valid_issue_number?, #valid_month?, #valid_start_year?
Instance Attribute Details
#brand ⇒ String
Returns or sets the credit card brand.
Valid card types are
-
‘visa’
-
‘master’
-
‘discover’
-
‘american_express’
-
‘diners_club’
-
‘jcb’
-
‘switch’
-
‘solo’
-
‘dankort’
-
‘maestro’
-
‘forbrugsforeningen’
-
‘laser’
Or, if you wish to test your implementation, ‘bogus’.
91 92 93 |
# File 'lib/active_merchant/billing/credit_card.rb', line 91 def brand @brand end |
#first_name ⇒ String
Returns or sets the first name of the card holder.
96 97 98 |
# File 'lib/active_merchant/billing/credit_card.rb', line 96 def first_name @first_name end |
#issue_number ⇒ Object
Required for Switch / Solo cards
104 105 106 |
# File 'lib/active_merchant/billing/credit_card.rb', line 104 def issue_number @issue_number end |
#last_name ⇒ String
Returns or sets the last name of the card holder.
101 102 103 |
# File 'lib/active_merchant/billing/credit_card.rb', line 101 def last_name @last_name end |
#month ⇒ Integer
Returns or sets the expiry month for the card.
64 65 66 |
# File 'lib/active_merchant/billing/credit_card.rb', line 64 def month @month end |
#number ⇒ String
Returns or sets the credit card number.
59 60 61 |
# File 'lib/active_merchant/billing/credit_card.rb', line 59 def number @number end |
#start_month ⇒ Object
Required for Switch / Solo cards
104 105 106 |
# File 'lib/active_merchant/billing/credit_card.rb', line 104 def start_month @start_month end |
#start_year ⇒ Object
Required for Switch / Solo cards
104 105 106 |
# File 'lib/active_merchant/billing/credit_card.rb', line 104 def start_year @start_year end |
#track_data ⇒ String
Returns or sets the track data for the card
118 119 120 |
# File 'lib/active_merchant/billing/credit_card.rb', line 118 def track_data @track_data end |
#verification_value ⇒ String
Returns or sets the card verification value.
This attribute is optional but recommended. The verification value is a card security code. If provided, the gateway will attempt to validate the value.
113 114 115 |
# File 'lib/active_merchant/billing/credit_card.rb', line 113 def verification_value @verification_value end |
#year ⇒ Integer
Returns or sets the expiry year for the card.
69 70 71 |
# File 'lib/active_merchant/billing/credit_card.rb', line 69 def year @year end |
Class Method Details
.requires_verification_value? ⇒ Boolean
213 214 215 |
# File 'lib/active_merchant/billing/credit_card.rb', line 213 def self.requires_verification_value? require_verification_value end |
Instance Method Details
#display_number ⇒ String
Returns a display-friendly version of the card number.
All but the last 4 numbers are replaced with an “X”, and hyphens are inserted in order to improve legibility.
186 187 188 |
# File 'lib/active_merchant/billing/credit_card.rb', line 186 def display_number self.class.mask(number) end |
#expired? ⇒ Boolean
Returns whether the credit card has expired.
140 141 142 |
# File 'lib/active_merchant/billing/credit_card.rb', line 140 def expired? expiry_date.expired? end |
#expiry_date ⇒ ExpiryDate
Provides proxy access to an expiry date object
133 134 135 |
# File 'lib/active_merchant/billing/credit_card.rb', line 133 def expiry_date ExpiryDate.new(@month, @year) end |
#first_digits ⇒ Object
190 191 192 |
# File 'lib/active_merchant/billing/credit_card.rb', line 190 def first_digits self.class.first_digits(number) end |
#first_name? ⇒ Boolean
Returns whether the first_name
attribute has been set.
150 151 152 |
# File 'lib/active_merchant/billing/credit_card.rb', line 150 def first_name? @first_name.present? end |
#last_digits ⇒ Object
194 195 196 |
# File 'lib/active_merchant/billing/credit_card.rb', line 194 def last_digits self.class.last_digits(number) end |
#last_name? ⇒ Boolean
Returns whether the last_name
attribute has been set.
155 156 157 |
# File 'lib/active_merchant/billing/credit_card.rb', line 155 def last_name? @last_name.present? end |
#name ⇒ String
Returns the full name of the card holder.
162 163 164 |
# File 'lib/active_merchant/billing/credit_card.rb', line 162 def name [@first_name, @last_name].compact.join(' ') end |
#name=(full_name) ⇒ Object
166 167 168 169 170 |
# File 'lib/active_merchant/billing/credit_card.rb', line 166 def name=(full_name) names = full_name.split self.last_name = names.pop self.first_name = names.join(" ") end |
#name? ⇒ Boolean
Returns whether either the first_name
or the last_name
attributes has been set.
145 146 147 |
# File 'lib/active_merchant/billing/credit_card.rb', line 145 def name? first_name? || last_name? end |
#type ⇒ Object
120 121 122 123 |
# File 'lib/active_merchant/billing/credit_card.rb', line 120 def type self.class.deprecated "CreditCard#type is deprecated and will be removed from a future release of ActiveMerchant. Please use CreditCard#brand instead." brand end |
#type=(value) ⇒ Object
125 126 127 128 |
# File 'lib/active_merchant/billing/credit_card.rb', line 125 def type=(value) self.class.deprecated "CreditCard#type is deprecated and will be removed from a future release of ActiveMerchant. Please use CreditCard#brand instead." self.brand = value end |
#validate ⇒ Object
Validates the credit card details.
Any validation errors are added to the #errors attribute.
201 202 203 204 205 206 207 208 209 210 211 |
# File 'lib/active_merchant/billing/credit_card.rb', line 201 def validate validate_essential_attributes # Bogus card is pretty much for testing purposes. Lets just skip these extra tests if its used return if brand == 'bogus' validate_card_brand validate_card_number validate_verification_value validate_switch_or_solo_attributes end |
#verification_value? ⇒ Boolean
172 173 174 |
# File 'lib/active_merchant/billing/credit_card.rb', line 172 def verification_value? !@verification_value.blank? end |