Class: ActiveMerchant::Billing::ClearhausGateway

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

Constant Summary collapse

ACTION_CODE_MESSAGES =
{
  20000 => 'Approved',
  40000 => 'General input error',
  40110 => 'Invalid card number',
  40120 => 'Invalid CSC',
  40130 => 'Invalid expire date',
  40135 => 'Card expired',
  40140 => 'Invalid currency',
  40200 => 'Clearhaus rule violation',
  40300 => '3-D Secure problem',
  40310 => '3-D Secure authentication failure',
  40400 => 'Backend problem',
  40410 => 'Declined by issuer or card scheme',
  40411 => 'Card restricted',
  40412 => 'Card lost or stolen',
  40413 => 'Insufficient funds',
  40414 => 'Suspected fraud',
  40415 => 'Amount limit exceeded',
  50000 => 'Clearhaus error'
}

Constants inherited from Gateway

Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::CURRENCIES_WITHOUT_FRACTIONS, Gateway::DEBIT_CARDS, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE

Instance Attribute Summary

Attributes inherited from Gateway

#options

Instance Method Summary collapse

Methods inherited from Gateway

#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 = {}) ⇒ ClearhausGateway

Create gateway

options:

:api_key - merchant's Clearhaus API Key
:signing_key - merchant's private key for optionally signing request


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

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

Instance Method Details

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

Authorize a transaction.

amount - The monetary amount of the transaction in cents. payment - The CreditCard or the Clearhaus card token. options - A standard ActiveMerchant options hash with optional pares



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/active_merchant/billing/gateways/clearhaus.rb', line 67

def authorize(amount, payment, options={})
  post = {}
  add_invoice(post, amount, options)

  action = if payment.respond_to?(:number)
     add_payment(post, payment)
    "/authorizations"
  elsif payment.kind_of?(String)
    "/cards/#{payment}/authorizations"
  else
    raise ArgumentError.new("Unknown payment type #{payment.inspect}")
  end

  post[:recurring] = options[:recurring] if options[:recurring]
  post[:threed_secure] = {pares: options[:pares]} if options[:pares]

  commit(action, post)
end

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

Capture a pre-authorized transaction.

amount - The monetary amount of the transaction in cents. authorization - The Clearhaus authorization id string. options - A standard ActiveMerchant options hash



91
92
93
94
95
96
# File 'lib/active_merchant/billing/gateways/clearhaus.rb', line 91

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

  commit("/authorizations/#{authorization}/captures", post)
end

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

Make a purchase (authorize and capture)

amount - The monetary amount of the transaction in cents. payment - The CreditCard or the Clearhaus card token. options - A standard ActiveMerchant options hash



55
56
57
58
59
60
# File 'lib/active_merchant/billing/gateways/clearhaus.rb', line 55

def purchase(amount, payment, options={})
  MultiResponse.run(:use_first_response) do |r|
    r.process { authorize(amount, payment, options) }
    r.process { capture(amount, r.authorization, options) }
  end
end

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

Refund a captured transaction (fully or partial).

amount - The monetary amount of the transaction in cents. authorization - The Clearhaus authorization id string. options - A standard ActiveMerchant options hash



103
104
105
106
107
108
# File 'lib/active_merchant/billing/gateways/clearhaus.rb', line 103

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

  commit("/authorizations/#{authorization}/refunds", post)
end

#scrub(transcript) ⇒ Object



136
137
138
139
140
141
# File 'lib/active_merchant/billing/gateways/clearhaus.rb', line 136

def scrub(transcript)
  transcript.
    gsub(%r((Authorization: Basic )[\w=]+), '\1[FILTERED]').
    gsub(%r((&?card(?:\[|%5B)csc(?:\]|%5D)=)[^&]*)i, '\1[FILTERED]').
    gsub(%r((&?card(?:\[|%5B)number(?:\]|%5D)=)[^&]*)i, '\1[FILTERED]')
end

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

Tokenize credit card with Clearhaus.

credit_card - The CreditCard. options - A standard ActiveMerchant options hash



125
126
127
128
129
130
# File 'lib/active_merchant/billing/gateways/clearhaus.rb', line 125

def store(credit_card, options={})
  post = {}
  add_payment(post, credit_card)

  commit("/cards", post)
end

#supports_scrubbing?Boolean

Returns:

  • (Boolean)


132
133
134
# File 'lib/active_merchant/billing/gateways/clearhaus.rb', line 132

def supports_scrubbing?
  true
end

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



114
115
116
117
118
119
# File 'lib/active_merchant/billing/gateways/clearhaus.rb', line 114

def verify(credit_card, options={})
  MultiResponse.run(:use_first_response) do |r|
    r.process { authorize(100, credit_card, options) }
    r.process(:ignore_result) { void(r.authorization, options) }
  end
end

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



110
111
112
# File 'lib/active_merchant/billing/gateways/clearhaus.rb', line 110

def void(authorization, options = {})
  commit("/authorizations/#{authorization}/voids", options)
end