Class: ActiveMerchant::Billing::FatZebraGateway
- Defined in:
- lib/active_merchant/billing/gateways/fat_zebra.rb
Constant Summary
Constants inherited from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::CURRENCIES_WITHOUT_FRACTIONS, Gateway::DEBIT_CARDS
Instance Attribute Summary
Attributes inherited from Gateway
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ FatZebraGateway
constructor
Setup a new instance of the gateway.
-
#purchase(money, creditcard, options = {}) ⇒ Object
To create a purchase on a credit card use:.
-
#refund(money, txn_id, reference) ⇒ Object
Refund a transaction.
-
#store(creditcard) ⇒ Object
Tokenize a credit card.
Methods inherited from Gateway
#card_brand, card_brand, inherited, supports?, #test?
Methods included from CreditCardFormatting
Constructor Details
#initialize(options = {}) ⇒ FatZebraGateway
Setup a new instance of the gateway.
The options hash should include :username and :token You can find your username and token at dashboard.fatzebra.com.au Under the Your Account section
22 23 24 25 26 27 28 |
# File 'lib/active_merchant/billing/gateways/fat_zebra.rb', line 22 def initialize( = {}) requires!(, :username) requires!(, :token) @username = [:username] @token = [:token] super end |
Instance Method Details
#purchase(money, creditcard, options = {}) ⇒ Object
To create a purchase on a credit card use:
purchase(money, creditcard , { ... })
To charge a tokenized card
purchase(money, {:token => "abzy87u", :cvv => "123"}, { ... }})
37 38 39 40 41 42 43 44 45 46 |
# File 'lib/active_merchant/billing/gateways/fat_zebra.rb', line 37 def purchase(money, creditcard, = {}) post = {} add_amount(post, money, ) add_creditcard(post, creditcard, ) post[:reference] = [:order_id] post[:customer_ip] = [:ip] commit(:post, 'purchases', post) end |
#refund(money, txn_id, reference) ⇒ Object
Refund a transaction
amount - Integer - the amount to refund txn_id - String - the original transaction to be refunded reference - String - your transaction reference
53 54 55 56 57 58 59 60 61 |
# File 'lib/active_merchant/billing/gateways/fat_zebra.rb', line 53 def refund(money, txn_id, reference) post = {} post[:amount] = money post[:transaction_id] = txn_id post[:reference] = reference commit(:post, "refunds", post) end |
#store(creditcard) ⇒ Object
Tokenize a credit card
64 65 66 67 68 69 |
# File 'lib/active_merchant/billing/gateways/fat_zebra.rb', line 64 def store(creditcard) post = {} add_creditcard(post, creditcard) commit(:post, "credit_cards", post) end |