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
-
Dankort
-
Maestro
-
Forbrugsforeningen
-
Sodexo
-
Vr
-
Carnet
-
Synchrony
-
Routex
-
Elo
-
Alelo
-
Cabal
-
Naranja
-
UnionPay
-
Alia
-
Olimpica
-
Creditel
-
Confiable
-
Mada
-
BpPlus
-
Passcard
-
Edenred
-
Anda
-
Creditos directos (Tarjeta D)
-
Panal
-
Verve
-
Tuya
-
UATP
-
Patagonia365
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 collapse
- BRANDS_WITH_SPACES_IN_NUMBER =
%w(bp_plus)
- READ_METHOD_DESCRIPTIONS =
{ nil => 'A card reader was not used.', 'fallback_no_chip' => 'Magstripe was read because the card has no chip.', 'fallback_chip_error' => "Magstripe was read because the card's chip failed.", 'contactless' => 'Data was read by a Contactless EMV kernel. Issuer script results are not available.', 'contactless_magstripe' => 'Contactless data was read with a non-EMV protocol.', 'contact' => 'Data was read using the EMV protocol. Issuer script results may follow.', 'contact_quickchip' => 'Data was read by the Quickchip EMV kernel. Issuer script results are not available.' }
Constants included from CreditCardMethods
ActiveMerchant::Billing::CreditCardMethods::ALELO_RANGES, ActiveMerchant::Billing::CreditCardMethods::CABAL_RANGES, ActiveMerchant::Billing::CreditCardMethods::CARD_COMPANY_DETECTORS, ActiveMerchant::Billing::CreditCardMethods::CARNET_BINS, ActiveMerchant::Billing::CreditCardMethods::CARNET_RANGES, ActiveMerchant::Billing::CreditCardMethods::CARTES_BANCAIRES_RANGES, ActiveMerchant::Billing::CreditCardMethods::ELECTRON_RANGES, ActiveMerchant::Billing::CreditCardMethods::ELO_RANGES, ActiveMerchant::Billing::CreditCardMethods::HIPERCARD_RANGES, ActiveMerchant::Billing::CreditCardMethods::JCB_RANGES, ActiveMerchant::Billing::CreditCardMethods::MADA_RANGES, ActiveMerchant::Billing::CreditCardMethods::MAESTRO_BINS, ActiveMerchant::Billing::CreditCardMethods::MAESTRO_RANGES, ActiveMerchant::Billing::CreditCardMethods::MASTERCARD_RANGES, ActiveMerchant::Billing::CreditCardMethods::NARANJA_RANGES, ActiveMerchant::Billing::CreditCardMethods::PANAL_RANGES, ActiveMerchant::Billing::CreditCardMethods::SODEXO_BINS, ActiveMerchant::Billing::CreditCardMethods::SODEXO_NO_LUHN, ActiveMerchant::Billing::CreditCardMethods::UNIONPAY_RANGES, ActiveMerchant::Billing::CreditCardMethods::VERVE_RANGES
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
-
#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.
-
#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.
-
#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.
-
#read_method ⇒ String
Returns or sets information about the source of the card data.
-
#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
- #allow_spaces_in_card?(number = nil) ⇒ Boolean
-
#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
- #encrypted_wallet? ⇒ 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. - #mobile_wallet? ⇒ Boolean
-
#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. - #network_token? ⇒ Boolean
-
#require_verification_value=(value) ⇒ Boolean
Sets if the credit card requires a verification value.
-
#requires_verification_value? ⇒ Boolean
Returns if this credit card needs a verification value.
- #type ⇒ Object
- #type=(value) ⇒ Object
-
#validate ⇒ Object
Validates the credit card details.
- #verification_value? ⇒ Boolean
Methods included from CreditCardMethods
#card_verification_value_length, #credit_card?, #electron?, in_bin_range?, 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
Methods included from Rails::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.
80 81 82 |
# File 'lib/active_merchant/billing/credit_card.rb', line 80 def require_name @require_name end |
.require_verification_value ⇒ Object
Inherited, but can be overridden w/o changing parent’s value
79 80 81 |
# File 'lib/active_merchant/billing/credit_card.rb', line 79 def require_verification_value @require_verification_value end |
Instance Attribute Details
#encrypted_pin_cryptogram ⇒ String
Returns the ciphertext of the card’s encrypted PIN.
239 240 241 |
# File 'lib/active_merchant/billing/credit_card.rb', line 239 def encrypted_pin_cryptogram @encrypted_pin_cryptogram end |
#encrypted_pin_ksn ⇒ String
Returns the Key Serial Number (KSN) of the card’s encrypted PIN.
244 245 246 |
# File 'lib/active_merchant/billing/credit_card.rb', line 244 def encrypted_pin_ksn @encrypted_pin_ksn end |
#first_name ⇒ String
Returns or sets the first name of the card holder.
163 164 165 |
# File 'lib/active_merchant/billing/credit_card.rb', line 163 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.
219 220 221 |
# File 'lib/active_merchant/billing/credit_card.rb', line 219 def icc_data @icc_data end |
#last_name ⇒ String
Returns or sets the last name of the card holder.
168 169 170 |
# File 'lib/active_merchant/billing/credit_card.rb', line 168 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.
214 215 216 |
# File 'lib/active_merchant/billing/credit_card.rb', line 214 def manual_entry @manual_entry end |
#month ⇒ Integer (readonly)
Returns or sets the expiry month for the card.
98 99 100 |
# File 'lib/active_merchant/billing/credit_card.rb', line 98 def month @month end |
#number ⇒ String
Returns or sets the credit card number.
89 90 91 |
# File 'lib/active_merchant/billing/credit_card.rb', line 89 def number @number end |
#read_method ⇒ String
Returns or sets information about the source of the card data.
224 225 226 |
# File 'lib/active_merchant/billing/credit_card.rb', line 224 def read_method @read_method end |
#track_data ⇒ String
Returns or sets the track data for the card
205 206 207 |
# File 'lib/active_merchant/billing/credit_card.rb', line 205 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.
177 178 179 |
# File 'lib/active_merchant/billing/credit_card.rb', line 177 def verification_value @verification_value end |
#year ⇒ Integer (readonly)
Returns or sets the expiry year for the card.
103 104 105 |
# File 'lib/active_merchant/billing/credit_card.rb', line 103 def year @year end |
Class Method Details
.requires_name? ⇒ Boolean
356 357 358 |
# File 'lib/active_merchant/billing/credit_card.rb', line 356 def self.requires_name? require_name end |
.requires_verification_value? ⇒ Boolean
352 353 354 |
# File 'lib/active_merchant/billing/credit_card.rb', line 352 def self.requires_verification_value? require_verification_value end |
Instance Method Details
#allow_spaces_in_card?(number = nil) ⇒ Boolean
364 365 366 |
# File 'lib/active_merchant/billing/credit_card.rb', line 364 def allow_spaces_in_card?(number = nil) BRANDS_WITH_SPACES_IN_NUMBER.include?(self.class.brand?(self.number || number)) end |
#brand ⇒ String
Returns or sets the credit card brand.
Valid card types are
-
‘visa’
-
‘master’
-
‘discover’
-
‘american_express’
-
‘diners_club’
-
‘jcb’
-
‘dankort’
-
‘maestro’
-
‘forbrugsforeningen’
-
‘sodexo’
-
‘vr’
-
‘carnet’
-
‘synchrony’
-
‘routex’
-
‘elo’
-
‘alelo’
-
‘cabal’
-
‘naranja’
-
‘union_pay’
-
‘alia’
-
‘olimpica’
-
‘creditel’
-
‘confiable’
-
‘mada’
-
‘bp_plus’
-
‘passcard’
-
‘edenred’
-
‘anda’
-
‘tarjeta-d’
-
‘panal’
-
‘verve’
-
‘tuya’
-
‘uatp’
-
‘patagonia_365’
Or, if you wish to test your implementation, ‘bogus’.
147 148 149 150 151 152 153 |
# File 'lib/active_merchant/billing/credit_card.rb', line 147 def brand if !defined?(@brand) || empty?(@brand) self.class.brand?(number) else @brand end end |
#brand=(value) ⇒ Object
155 156 157 158 |
# File 'lib/active_merchant/billing/credit_card.rb', line 155 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.
325 326 327 |
# File 'lib/active_merchant/billing/credit_card.rb', line 325 def display_number self.class.mask(number) end |
#emv? ⇒ Boolean
360 361 362 |
# File 'lib/active_merchant/billing/credit_card.rb', line 360 def emv? icc_data.present? end |
#encrypted_wallet? ⇒ Boolean
376 377 378 |
# File 'lib/active_merchant/billing/credit_card.rb', line 376 def encrypted_wallet? false end |
#expired? ⇒ Boolean
Returns whether the credit card has expired.
266 267 268 |
# File 'lib/active_merchant/billing/credit_card.rb', line 266 def expired? expiry_date.expired? end |
#expiry_date ⇒ ExpiryDate
Provides proxy access to an expiry date object
259 260 261 |
# File 'lib/active_merchant/billing/credit_card.rb', line 259 def expiry_date ExpiryDate.new(@month, @year) end |
#first_digits ⇒ Object
329 330 331 |
# File 'lib/active_merchant/billing/credit_card.rb', line 329 def first_digits self.class.first_digits(number) end |
#first_name? ⇒ Boolean
Returns whether the first_name
attribute has been set.
276 277 278 |
# File 'lib/active_merchant/billing/credit_card.rb', line 276 def first_name? first_name.present? end |
#last_digits ⇒ Object
333 334 335 |
# File 'lib/active_merchant/billing/credit_card.rb', line 333 def last_digits self.class.last_digits(number) end |
#last_name? ⇒ Boolean
Returns whether the last_name
attribute has been set.
281 282 283 |
# File 'lib/active_merchant/billing/credit_card.rb', line 281 def last_name? last_name.present? end |
#mobile_wallet? ⇒ Boolean
372 373 374 |
# File 'lib/active_merchant/billing/credit_card.rb', line 372 def mobile_wallet? false end |
#name ⇒ String
Returns the full name of the card holder.
288 289 290 |
# File 'lib/active_merchant/billing/credit_card.rb', line 288 def name "#{first_name} #{last_name}".strip end |
#name=(full_name) ⇒ Object
292 293 294 295 296 |
# File 'lib/active_merchant/billing/credit_card.rb', line 292 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.
271 272 273 |
# File 'lib/active_merchant/billing/credit_card.rb', line 271 def name? first_name? || last_name? end |
#network_token? ⇒ Boolean
368 369 370 |
# File 'lib/active_merchant/billing/credit_card.rb', line 368 def network_token? false end |
#require_verification_value=(value) ⇒ Boolean
Sets if the credit card requires a verification value.
182 183 184 185 |
# File 'lib/active_merchant/billing/credit_card.rb', line 182 def require_verification_value=(value) @require_verification_value_set = true @require_verification_value = value end |
#requires_verification_value? ⇒ Boolean
Returns if this credit card needs a verification value.
By default this returns the configured value from ‘CreditCard.require_verification_value`, but one can set a per instance requirement with `credit_card.require_verification_value = false`.
193 194 195 196 197 198 199 200 |
# File 'lib/active_merchant/billing/credit_card.rb', line 193 def requires_verification_value? @require_verification_value_set ||= false if @require_verification_value_set @require_verification_value else self.class.requires_verification_value? end end |
#type ⇒ Object
246 247 248 249 |
# File 'lib/active_merchant/billing/credit_card.rb', line 246 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
251 252 253 254 |
# File 'lib/active_merchant/billing/credit_card.rb', line 251 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.
340 341 342 343 344 345 346 347 348 349 350 |
# File 'lib/active_merchant/billing/credit_card.rb', line 340 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 ) end |
#verification_value? ⇒ Boolean
311 312 313 |
# File 'lib/active_merchant/billing/credit_card.rb', line 311 def verification_value? !verification_value.blank? end |