Class: ActiveMerchant::Billing::CreditCard
- Includes:
- CreditCardMethods
- Defined in:
- lib/active_merchant/billing/credit_card.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 => '2017',
:brand => 'visa',
:number => '4242424242424242',
:verification_value => '424'
)
cc.validate # => {}
cc.display_number # => XXXX-XXXX-XXXX-4242
Direct Known Subclasses
Defined Under Namespace
Classes: ExpiryDate
Constant Summary
Constants included from CreditCardMethods
ActiveMerchant::Billing::CreditCardMethods::CARD_COMPANIES
Class Attribute Summary collapse
-
.require_name ⇒ Object
Returns the value of attribute require_name.
-
.require_verification_value ⇒ Object
Inherited, but can be overridden w/o changing parent’s value.
Instance Attribute Summary collapse
-
#contactless ⇒ true, false
Returns or sets whether card-present card data has been read contactlessly.
-
#encrypted_pin_cryptogram ⇒ String
Returns the ciphertext of the card’s encrypted PIN.
-
#encrypted_pin_ksn ⇒ String
Returns the Key Serial Number (KSN) of the card’s encrypted PIN.
-
#fallback_reason ⇒ String
Returns or sets a fallback reason for a EMV transaction whereby the customer’s card entered a fallback scenario.
-
#first_name ⇒ String
Returns or sets the first name of the card holder.
-
#icc_data ⇒ String
Returns or sets the ICC/ASN1 credit card data for a EMV transaction, typically this is a BER-encoded TLV string.
-
#issue_number ⇒ Object
Returns the value of attribute issue_number.
-
#last_name ⇒ String
Returns or sets the last name of the card holder.
-
#manual_entry ⇒ true, false
Returns or sets whether a card has been processed using manual entry.
-
#month ⇒ Integer
readonly
Returns or sets the expiry month for the card.
-
#number ⇒ String
Returns or sets the credit card number.
-
#start_month ⇒ Object
readonly
Required for Switch / Solo cards.
-
#start_year ⇒ Object
readonly
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
readonly
Returns or sets the expiry year for the card.
Class Method Summary collapse
Instance Method Summary collapse
-
#brand ⇒ String
Returns or sets the credit card brand.
- #brand=(value) ⇒ Object
-
#display_number ⇒ String
Returns a display-friendly version of the card number.
- #emv? ⇒ Boolean
-
#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
#card_verification_value_length, included, #valid_card_verification_value?, #valid_expiry_year?, #valid_issue_number?, #valid_month?, #valid_start_year?
Methods inherited from Model
Methods included from ActiveMerchant::Billing::Compatibility::Model
Constructor Details
This class inherits a constructor from ActiveMerchant::Billing::Model
Class Attribute Details
.require_name ⇒ Object
Returns the value of attribute require_name.
56 57 58 |
# File 'lib/active_merchant/billing/credit_card.rb', line 56 def require_name @require_name end |
.require_verification_value ⇒ Object
Inherited, but can be overridden w/o changing parent’s value
55 56 57 |
# File 'lib/active_merchant/billing/credit_card.rb', line 55 def require_verification_value @require_verification_value end |
Instance Attribute Details
#contactless ⇒ true, false
Returns or sets whether card-present card data has been read contactlessly.
165 166 167 |
# File 'lib/active_merchant/billing/credit_card.rb', line 165 def contactless @contactless end |
#encrypted_pin_cryptogram ⇒ String
Returns the ciphertext of the card’s encrypted PIN.
170 171 172 |
# File 'lib/active_merchant/billing/credit_card.rb', line 170 def encrypted_pin_cryptogram @encrypted_pin_cryptogram end |
#encrypted_pin_ksn ⇒ String
Returns the Key Serial Number (KSN) of the card’s encrypted PIN.
175 176 177 |
# File 'lib/active_merchant/billing/credit_card.rb', line 175 def encrypted_pin_ksn @encrypted_pin_ksn end |
#fallback_reason ⇒ String
Returns or sets a fallback reason for a EMV transaction whereby the customer’s card entered a fallback scenario. This can be an arbitrary string.
160 161 162 |
# File 'lib/active_merchant/billing/credit_card.rb', line 160 def fallback_reason @fallback_reason end |
#first_name ⇒ String
Returns or sets the first name of the card holder.
117 118 119 |
# File 'lib/active_merchant/billing/credit_card.rb', line 117 def first_name @first_name end |
#icc_data ⇒ String
Returns or sets the ICC/ASN1 credit card data for a EMV transaction, typically this is a BER-encoded TLV string.
154 155 156 |
# File 'lib/active_merchant/billing/credit_card.rb', line 154 def icc_data @icc_data end |
#issue_number ⇒ Object
Returns the value of attribute issue_number.
126 127 128 |
# File 'lib/active_merchant/billing/credit_card.rb', line 126 def issue_number @issue_number end |
#last_name ⇒ String
Returns or sets the last name of the card holder.
122 123 124 |
# File 'lib/active_merchant/billing/credit_card.rb', line 122 def last_name @last_name end |
#manual_entry ⇒ true, false
Returns or sets whether a card has been processed using manual entry.
This attribute is optional and is only used by gateways who use this information in their transaction risk calculations. See this page on ‘card not present’ transactions for further explanation and examples of this kind of transaction.
149 150 151 |
# File 'lib/active_merchant/billing/credit_card.rb', line 149 def manual_entry @manual_entry end |
#month ⇒ Integer (readonly)
Returns or sets the expiry month for the card.
74 75 76 |
# File 'lib/active_merchant/billing/credit_card.rb', line 74 def month @month end |
#number ⇒ String
Returns or sets the credit card number.
65 66 67 |
# File 'lib/active_merchant/billing/credit_card.rb', line 65 def number @number end |
#start_month ⇒ Object (readonly)
Required for Switch / Solo cards
125 126 127 |
# File 'lib/active_merchant/billing/credit_card.rb', line 125 def start_month @start_month end |
#start_year ⇒ Object (readonly)
Required for Switch / Solo cards
125 126 127 |
# File 'lib/active_merchant/billing/credit_card.rb', line 125 def start_year @start_year end |
#track_data ⇒ String
Returns or sets the track data for the card
140 141 142 |
# File 'lib/active_merchant/billing/credit_card.rb', line 140 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.
135 136 137 |
# File 'lib/active_merchant/billing/credit_card.rb', line 135 def verification_value @verification_value end |
#year ⇒ Integer (readonly)
Returns or sets the expiry year for the card.
79 80 81 |
# File 'lib/active_merchant/billing/credit_card.rb', line 79 def year @year end |
Class Method Details
.requires_name? ⇒ Boolean
288 289 290 |
# File 'lib/active_merchant/billing/credit_card.rb', line 288 def self.requires_name? require_name end |
.requires_verification_value? ⇒ Boolean
284 285 286 |
# File 'lib/active_merchant/billing/credit_card.rb', line 284 def self.requires_verification_value? require_verification_value end |
Instance Method 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’.
101 102 103 104 105 106 107 |
# File 'lib/active_merchant/billing/credit_card.rb', line 101 def brand if !defined?(@brand) || empty?(@brand) self.class.brand?(number) else @brand end end |
#brand=(value) ⇒ Object
109 110 111 112 |
# File 'lib/active_merchant/billing/credit_card.rb', line 109 def brand=(value) value = value && value.to_s.dup @brand = (value.respond_to?(:downcase) ? value.downcase : value) end |
#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.
256 257 258 |
# File 'lib/active_merchant/billing/credit_card.rb', line 256 def display_number self.class.mask(number) end |
#emv? ⇒ Boolean
292 293 294 |
# File 'lib/active_merchant/billing/credit_card.rb', line 292 def emv? icc_data.present? end |
#expired? ⇒ Boolean
Returns whether the credit card has expired.
197 198 199 |
# File 'lib/active_merchant/billing/credit_card.rb', line 197 def expired? expiry_date.expired? end |
#expiry_date ⇒ ExpiryDate
Provides proxy access to an expiry date object
190 191 192 |
# File 'lib/active_merchant/billing/credit_card.rb', line 190 def expiry_date ExpiryDate.new(@month, @year) end |
#first_digits ⇒ Object
260 261 262 |
# File 'lib/active_merchant/billing/credit_card.rb', line 260 def first_digits self.class.first_digits(number) end |
#first_name? ⇒ Boolean
Returns whether the first_name
attribute has been set.
207 208 209 |
# File 'lib/active_merchant/billing/credit_card.rb', line 207 def first_name? first_name.present? end |
#last_digits ⇒ Object
264 265 266 |
# File 'lib/active_merchant/billing/credit_card.rb', line 264 def last_digits self.class.last_digits(number) end |
#last_name? ⇒ Boolean
Returns whether the last_name
attribute has been set.
212 213 214 |
# File 'lib/active_merchant/billing/credit_card.rb', line 212 def last_name? last_name.present? end |
#name ⇒ String
Returns the full name of the card holder.
219 220 221 |
# File 'lib/active_merchant/billing/credit_card.rb', line 219 def name [first_name, last_name].compact.join(' ') end |
#name=(full_name) ⇒ Object
223 224 225 226 227 |
# File 'lib/active_merchant/billing/credit_card.rb', line 223 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.
202 203 204 |
# File 'lib/active_merchant/billing/credit_card.rb', line 202 def name? first_name? || last_name? end |
#type ⇒ Object
177 178 179 180 |
# File 'lib/active_merchant/billing/credit_card.rb', line 177 def type ActiveMerchant.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
182 183 184 185 |
# File 'lib/active_merchant/billing/credit_card.rb', line 182 def type=(value) ActiveMerchant.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 ActiveMerchant::Billing::Compatibility::Model#errors attribute.
271 272 273 274 275 276 277 278 279 280 281 282 |
# File 'lib/active_merchant/billing/credit_card.rb', line 271 def validate errors = validate_essential_attributes + validate_verification_value # Bogus card is pretty much for testing purposes. Lets just skip these extra tests if its used return errors_hash(errors) if brand == 'bogus' errors_hash( errors + validate_card_brand_and_number + validate_switch_or_solo_attributes ) end |
#verification_value? ⇒ Boolean
242 243 244 |
# File 'lib/active_merchant/billing/credit_card.rb', line 242 def verification_value? !verification_value.blank? end |