Class: ActiveMerchant::Billing::CheckoutV2Gateway

Inherits:
Gateway
  • Object
show all
Defined in:
lib/active_merchant/billing/gateways/checkout_v2.rb

Constant Summary

Constants inherited from Gateway

Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE

Instance Attribute Summary

Attributes inherited from Gateway

#options

Instance Method Summary collapse

Methods inherited from Gateway

#add_field_to_post_if_present, #add_fields_to_post_if_present, #card_brand, card_brand, #generate_unique_id, inherited, #supported_countries, supported_countries, supported_countries=, supports?, #supports_network_tokenization?, #test?

Methods included from CreditCardFormatting

#expdate, #format

Methods included from PostsData

included, #raw_ssl_request, #ssl_get, #ssl_post, #ssl_request

Constructor Details

#initialize(options = {}) ⇒ CheckoutV2Gateway

Returns a new instance of CheckoutV2Gateway.



16
17
18
19
# File 'lib/active_merchant/billing/gateways/checkout_v2.rb', line 16

def initialize(options = {})
  requires!(options, :secret_key)
  super
end

Instance Method Details

#authorize(amount, payment_method, options = {}) ⇒ Object



28
29
30
31
32
33
34
# File 'lib/active_merchant/billing/gateways/checkout_v2.rb', line 28

def authorize(amount, payment_method, options = {})
  post = {}
  post[:capture] = false
  build_auth_or_purchase(post, amount, payment_method, options)

  commit(:authorize, post)
end

#capture(amount, authorization, options = {}) ⇒ Object



36
37
38
39
40
41
42
43
# File 'lib/active_merchant/billing/gateways/checkout_v2.rb', line 36

def capture(amount, authorization, options = {})
  post = {}
  add_invoice(post, amount, options)
  add_customer_data(post, options)
  (post, options)

  commit(:capture, post, authorization)
end

#purchase(amount, payment_method, options = {}) ⇒ Object



21
22
23
24
25
26
# File 'lib/active_merchant/billing/gateways/checkout_v2.rb', line 21

def purchase(amount, payment_method, options = {})
  post = {}
  build_auth_or_purchase(post, amount, payment_method, options)

  commit(:purchase, post)
end

#refund(amount, authorization, options = {}) ⇒ Object



52
53
54
55
56
57
58
59
# File 'lib/active_merchant/billing/gateways/checkout_v2.rb', line 52

def refund(amount, authorization, options = {})
  post = {}
  add_invoice(post, amount, options)
  add_customer_data(post, options)
  (post, options)

  commit(:refund, post, authorization)
end

#scrub(transcript) ⇒ Object



73
74
75
76
77
78
# File 'lib/active_merchant/billing/gateways/checkout_v2.rb', line 73

def scrub(transcript)
  transcript.
    gsub(/(Authorization: )[^\\]*/i, '\1[FILTERED]').
    gsub(/("number\\":\\")\d+/, '\1[FILTERED]').
    gsub(/("cvv\\":\\")\d+/, '\1[FILTERED]')
end

#supports_scrubbing?Boolean

Returns:

  • (Boolean)


69
70
71
# File 'lib/active_merchant/billing/gateways/checkout_v2.rb', line 69

def supports_scrubbing?
  true
end

#verify(credit_card, options = {}) ⇒ Object



61
62
63
# File 'lib/active_merchant/billing/gateways/checkout_v2.rb', line 61

def verify(credit_card, options = {})
  authorize(0, credit_card, options)
end

#verify_payment(authorization, option = {}) ⇒ Object



65
66
67
# File 'lib/active_merchant/billing/gateways/checkout_v2.rb', line 65

def verify_payment(authorization, option = {})
  commit(:verify_payment, authorization)
end

#void(authorization, _options = {}) ⇒ Object



45
46
47
48
49
50
# File 'lib/active_merchant/billing/gateways/checkout_v2.rb', line 45

def void(authorization, _options = {})
  post = {}
  (post, options)

  commit(:void, post, authorization)
end