Module: ActiveMerchant::Billing::CreditCardMethods::ClassMethods
- Defined in:
- lib/active_merchant/billing/credit_card_methods.rb
Instance Method Summary collapse
-
#brand?(number) ⇒ Boolean
Returns a string containing the brand of card from the list of known information below.
- #card_companies ⇒ Object
- #electron?(number) ⇒ Boolean
- #first_digits(number) ⇒ Object
- #last_digits(number) ⇒ Object
- #mask(number) ⇒ Object
-
#matching_brand?(number, brand) ⇒ Boolean
Checks to see if the calculated brand matches the specified brand.
- #matching_type?(number, brand) ⇒ Boolean
- #type?(number) ⇒ Boolean
-
#valid_number?(number) ⇒ Boolean
Returns true if it validates.
Instance Method Details
#brand?(number) ⇒ Boolean
Returns a string containing the brand of card from the list of known information below.
165 166 167 168 169 170 171 172 173 |
# File 'lib/active_merchant/billing/credit_card_methods.rb', line 165 def brand?(number) return 'bogus' if valid_test_mode_card_number?(number) CARD_COMPANY_DETECTORS.each do |company, func| return company.dup if func.call(number) end return nil end |
#card_companies ⇒ Object
160 161 162 |
# File 'lib/active_merchant/billing/credit_card_methods.rb', line 160 def card_companies CARD_COMPANY_DETECTORS.keys end |
#electron?(number) ⇒ Boolean
175 176 177 178 179 180 181 182 183 184 |
# File 'lib/active_merchant/billing/credit_card_methods.rb', line 175 def electron?(number) return false unless [16, 19].include?(number&.length) # don't recalculate for each range bank_identification_number = first_digits(number).to_i ELECTRON_RANGES.any? do |range| range.include?(bank_identification_number) end end |
#first_digits(number) ⇒ Object
191 192 193 |
# File 'lib/active_merchant/billing/credit_card_methods.rb', line 191 def first_digits(number) number&.slice(0, 6) || '' end |
#last_digits(number) ⇒ Object
195 196 197 198 |
# File 'lib/active_merchant/billing/credit_card_methods.rb', line 195 def last_digits(number) return '' if number.nil? number.length <= 4 ? number : number.slice(-4..-1) end |
#mask(number) ⇒ Object
200 201 202 |
# File 'lib/active_merchant/billing/credit_card_methods.rb', line 200 def mask(number) "XXXX-XXXX-XXXX-#{last_digits(number)}" end |
#matching_brand?(number, brand) ⇒ Boolean
Checks to see if the calculated brand matches the specified brand
205 206 207 |
# File 'lib/active_merchant/billing/credit_card_methods.rb', line 205 def matching_brand?(number, brand) brand?(number) == brand end |
#matching_type?(number, brand) ⇒ Boolean
209 210 211 212 |
# File 'lib/active_merchant/billing/credit_card_methods.rb', line 209 def matching_type?(number, brand) ActiveMerchant.deprecated 'CreditCard#matching_type? is deprecated and will be removed from a future release of ActiveMerchant. Please use CreditCard#matching_brand? instead.' matching_brand?(number, brand) end |
#type?(number) ⇒ Boolean
186 187 188 189 |
# File 'lib/active_merchant/billing/credit_card_methods.rb', line 186 def type?(number) ActiveMerchant.deprecated 'CreditCard#type? is deprecated and will be removed from a future release of ActiveMerchant. Please use CreditCard#brand? instead.' brand?(number) end |
#valid_number?(number) ⇒ Boolean
Returns true if it validates. Optionally, you can pass a card brand as an argument and make sure it is of the correct brand.
References:
153 154 155 156 157 158 |
# File 'lib/active_merchant/billing/credit_card_methods.rb', line 153 def valid_number?(number) valid_test_mode_card_number?(number) || valid_card_number_length?(number) && valid_card_number_characters?(number) && valid_checksum?(number) end |