Class: ActiveMerchant::Billing::AuthorizeNetGateway

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

Constant Summary collapse

STANDARD_ERROR_CODE_MAPPING =
{
  '36' => STANDARD_ERROR_CODE[:incorrect_number],
  '237' => STANDARD_ERROR_CODE[:invalid_number],
  '2315' => STANDARD_ERROR_CODE[:invalid_number],
  '37' => STANDARD_ERROR_CODE[:invalid_expiry_date],
  '2316' => STANDARD_ERROR_CODE[:invalid_expiry_date],
  '378' => STANDARD_ERROR_CODE[:invalid_cvc],
  '38' => STANDARD_ERROR_CODE[:expired_card],
  '2317' => STANDARD_ERROR_CODE[:expired_card],
  '244' => STANDARD_ERROR_CODE[:incorrect_cvc],
  '227' => STANDARD_ERROR_CODE[:incorrect_address],
  '2127' => STANDARD_ERROR_CODE[:incorrect_address],
  '22' => STANDARD_ERROR_CODE[:card_declined],
  '23' => STANDARD_ERROR_CODE[:card_declined],
  '3153' => STANDARD_ERROR_CODE[:processing_error],
  '235' => STANDARD_ERROR_CODE[:processing_error],
  '24' => STANDARD_ERROR_CODE[:pickup_card],
  '300' => STANDARD_ERROR_CODE[:config_error],
  '384' => STANDARD_ERROR_CODE[:config_error]
}
MARKET_TYPE =
{
  :moto  => '1',
  :retail  => '2'
}
DEVICE_TYPE =
{
  :unknown => '1',
  :unattended_terminal => '2',
  :self_service_terminal => '3',
  :electronic_cash_register => '4',
  :personal_computer_terminal => '5',
  :airpay => '6',
  :wireless_pos => '7',
  :website => '8',
  :dial_terminal => '9',
  :virtual_terminal => '10'
}
TRANSACTION_ALREADY_ACTIONED =
%w(310 311)
CARD_CODE_ERRORS =
%w(N S)
AVS_ERRORS =
%w(A E N R W Z)
AVS_REASON_CODES =
%w(27 45)
TRACKS =
{
    1 => /^%(?<format_code>.)(?<pan>[\d]{1,19}+)\^(?<name>.{2,26})\^(?<expiration>[\d]{0,4}|\^)(?<service_code>[\d]{0,3}|\^)(?<discretionary_data>.*)\?\Z/,
    2 => /\A;(?<pan>[\d]{1,19}+)=(?<expiration>[\d]{0,4}|=)(?<service_code>[\d]{0,3}|=)(?<discretionary_data>.*)\?\Z/
}.freeze
APPLE_PAY_DATA_DESCRIPTOR =
"COMMON.APPLE.INAPP.PAYMENT"
PAYMENT_METHOD_NOT_SUPPORTED_ERROR =
"155"

Constants inherited from Gateway

Gateway::CREDIT_DEPRECATION_MESSAGE, 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?, #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 = {}) ⇒ AuthorizeNetGateway

Returns a new instance of AuthorizeNetGateway.



76
77
78
79
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 76

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

Instance Method Details

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



93
94
95
96
97
98
99
100
101
102
103
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 93

def authorize(amount, payment, options={})
  if payment.is_a?(String)
    commit(:cim_authorize) do |xml|
      add_cim_auth_purchase(xml, "profileTransAuthOnly", amount, payment, options)
    end
  else
    commit(:authorize) do |xml|
      add_auth_purchase(xml, "authOnlyTransaction", amount, payment, options)
    end
  end
end

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



105
106
107
108
109
110
111
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 105

def capture(amount, authorization, options={})
  if auth_was_for_cim?(authorization)
    cim_capture(amount, authorization, options)
  else
    normal_capture(amount, authorization, options)
  end
end

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



129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 129

def credit(amount, payment, options={})
  if payment.is_a?(String)
    raise ArgumentError, "Reference credits are not supported. Please supply the original credit card or use the #refund method."
  end

  commit(:credit) do |xml|
    add_order_id(xml, options)
    xml.transactionRequest do
      xml.transactionType('refundTransaction')
      xml.amount(amount(amount))

      add_payment_source(xml, payment)
      add_invoice(xml, options)
      add_customer_data(xml, payment, options)
      add_settings(xml, payment, options)
      add_user_fields(xml, amount, options)
    end
  end
end

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



81
82
83
84
85
86
87
88
89
90
91
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 81

def purchase(amount, payment, options = {})
  if payment.is_a?(String)
    commit(:cim_purchase) do |xml|
      add_cim_auth_purchase(xml, "profileTransAuthCapture", amount, payment, options)
    end
  else
    commit(:purchase) do |xml|
      add_auth_purchase(xml, "authCaptureTransaction", amount, payment, options)
    end
  end
end

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



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

def refund(amount, authorization, options={})
  if auth_was_for_cim?(authorization)
    cim_refund(amount, authorization, options)
  else
    normal_refund(amount, authorization, options)
  end
end

#scrub(transcript) ⇒ Object



173
174
175
176
177
178
179
180
181
182
183
184
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 173

def scrub(transcript)
  transcript.
    gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
    gsub(%r((<transactionKey>).+(</transactionKey>)), '\1[FILTERED]\2').
    gsub(%r((<cardNumber>).+(</cardNumber>)), '\1[FILTERED]\2').
    gsub(%r((<cardCode>).+(</cardCode>)), '\1[FILTERED]\2').
    gsub(%r((<track1>).+(</track1>)), '\1[FILTERED]\2').
    gsub(%r((<track2>).+(</track2>)), '\1[FILTERED]\2').
    gsub(/(<routingNumber>).+(<\/routingNumber>)/, '\1[FILTERED]\2').
    gsub(/(<accountNumber>).+(<\/accountNumber>)/, '\1[FILTERED]\2').
    gsub(%r((<cryptogram>).+(</cryptogram>)), '\1[FILTERED]\2')
end

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



156
157
158
159
160
161
162
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 156

def store(credit_card, options = {})
  if options[:customer_profile_id]
    create_customer_payment_profile(credit_card, options)
  else
    create_customer_profile(credit_card, options)
  end
end

#supports_network_tokenization?Boolean

Returns:

  • (Boolean)


186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 186

def supports_network_tokenization?
  card = Billing::NetworkTokenizationCreditCard.new({
    :number => "4111111111111111",
    :month => 12,
    :year => 20,
    :first_name => 'John',
    :last_name => 'Smith',
    :brand => 'visa',
    :payment_cryptogram => 'EHuWW9PiBkWvqE5juRwDzAUFBAk='
  })

  request = post_data(:authorize) do |xml|
    add_auth_purchase(xml, "authOnlyTransaction", 1, card, {})
  end
  raw_response = ssl_post(url, request, headers)
  response = parse(:authorize, raw_response)
  response[:response_reason_code].to_s != PAYMENT_METHOD_NOT_SUPPORTED_ERROR
end

#supports_scrubbing?Boolean

Returns:

  • (Boolean)


169
170
171
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 169

def supports_scrubbing?
  true
end

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



149
150
151
152
153
154
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 149

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

#verify_credentialsObject



164
165
166
167
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 164

def verify_credentials
  response = commit(:verify_credentials) { }
  response.success?
end

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



121
122
123
124
125
126
127
# File 'lib/active_merchant/billing/gateways/authorize_net.rb', line 121

def void(authorization, options={})
  if auth_was_for_cim?(authorization)
    cim_void(authorization, options)
  else
    normal_void(authorization, options)
  end
end