Class: ActiveMerchant::Billing::PaymentezGateway

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

Overview

:nodoc:

Constant Summary collapse

STANDARD_ERROR_CODE_MAPPING =
{
  1 => :processing_error,
  6 => :card_declined,
  9 => :card_declined,
  10 => :processing_error,
  11 => :card_declined,
  12 => :config_error,
  13 => :config_error,
  19 => :invalid_cvc,
  20 => :config_error,
  21 => :card_declined,
  22 => :card_declined,
  23 => :card_declined,
  24 => :card_declined,
  25 => :card_declined,
  26 => :card_declined,
  27 => :card_declined,
  28 => :card_declined
}.freeze
CARD_MAPPING =
{
  'visa' => 'vi',
  'master' => 'mc',
  'american_express' => 'ax',
  'diners_club' => 'di',
  'elo' => 'el'
}.freeze

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

Returns a new instance of PaymentezGateway.



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

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

Instance Method Details

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



62
63
64
65
66
67
68
69
70
71
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 62

def authorize(money, payment, options = {})
  post = {}

  add_invoice(post, money, options)
  add_payment(post, payment)
  add_customer_data(post, options)
  add_extra_params(post, options)

  commit_transaction('authorize', post)
end

#capture(money, authorization, _options = {}) ⇒ Object



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

def capture(money, authorization, _options = {})
  post = {
    transaction: { id: authorization }
  }
  post[:order] = { amount: amount(money).to_f } if money

  commit_transaction('capture', post)
end

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



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

def purchase(money, payment, options = {})
  post = {}

  add_invoice(post, money, options)
  add_payment(post, payment)
  add_customer_data(post, options)
  add_extra_params(post, options)
  action = payment.is_a?(String) ? 'debit' : 'debit_cc'

  commit_transaction(action, post)
end

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



82
83
84
85
86
87
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 82

def refund(money, authorization, options = {})
  post = { transaction: { id: authorization } }
  post[:order] = { amount: amount(money).to_f } if money

  commit_transaction('refund', post)
end

#scrub(transcript) ⇒ Object



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

def scrub(transcript)
  transcript.
    gsub(%r{(\\?"number\\?":)(\\?"[^"]+\\?")}, '\1[FILTERED]').
    gsub(%r{(\\?"cvc\\?":)(\\?"[^"]+\\?")}, '\1[FILTERED]').
    gsub(%r{(Auth-Token: )([A-Za-z0-9=]+)}, '\1[FILTERED]')
end

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



101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 101

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

  add_customer_data(post, options)
  add_payment(post, credit_card)

  response = commit_card('add', post)
  if !response.success? && !(token = extract_previous_card_token(response)).nil?
    unstore(token, options)
    response = commit_card('add', post)
  end
  response
end

#supports_scrubbing?Boolean

Returns:

  • (Boolean)


120
121
122
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 120

def supports_scrubbing?
  true
end

#unstore(identification, options = {}) ⇒ Object



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

def unstore(identification, options = {})
  post = { card: { token: identification }, user: { id: options[:user_id] } }
  commit_card('delete', post)
end

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



94
95
96
97
98
99
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 94

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

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



89
90
91
92
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 89

def void(authorization, _options = {})
  post = { transaction: { id: authorization } }
  commit_transaction('refund', post)
end