The GoPay Ruby allows Ruby applications to access to the GoPay REST API.
It does OAuth authorization under the hood automatically. Easy configuration through initializer.
Add this line to your application's Gemfile:
gem 'gopay-ruby', require: 'gopay'
And then execute:
$ bundle
Or install it yourself as:
$ gem install gopay-ruby
The Gem is framework agnostic. However, if you use Rails, put the initializer in Rails config dir:
config/initializers/gopay.rb
GoPay.configure do |config|
config.goid = GOPAY_ID
config.client_id = GOPAY_CLIENT_ID
config.client_secret = GOPAY_SECRET
config.return_host = RETURN_HOST_URL
config.notification_host = NOTIFICATION_HOST_URL
config.gate = GATE_URL
end
Before charging a user, we need to create a new payment. This will return a hash including a URL which you can use to popup payment modal or redirect the user to the GoPay payment page.
GoPay::Payment.create payment_data
{
"payer":{"allowed_payment_instruments": ["BANK_ACCOUNT"],
"contact":{"first_name": "John",
"last_name": "Doe",
"email": "[email protected]"
}
},
"target":{"type": "ACCOUNT",
"goid": "8123456789"
},
"amount":"1000",
"currency":"CZK",
"order_number":"001",
"order_description":"description001",
"callback":{"return_url":"url.for.return",
"notification_url":"url.for.notification"
},
"lang":"en"
}
This is a basic example of response hash, for more complex examples visit GoPay API docs.
{
"id":3000006529,
"order_number":"001",
"state":"CREATED",
"amount":1000,"currency":"CZK",
"payer":{"allowed_payment_instruments":["BANK_ACCOUNT"],
"contact": {"first_name":"John",
"last_name":"Doe",
"email":"[email protected]",
}
},
"target":{"type":"ACCOUNT",
"goid":8123456789
},
"additional_params":[{"name":"invoicenumber",
"value":"2015001003"
}],
"lang":"en",
"gw_url":" https://gw.sandbox.gopay.com/gw/v3/bCcvmwTKK5hrJx2aGG8ZnFyBJhAvF"
}
If you want to return a payment object from GoPay REST API.
GoPay::Payment.retrieve gopay_id
This functionality allows you to refund payment paid by a customer.
You can use the refund in two ways. First option is a full refund payment and the other one is a partial refund. Both based on amount
parameter.
GoPay::Payment.refund gopay_id, amount
The functionality allows you to cancel recurrence of a previously created recurring payment.
GoPay::Payment.void_recurrence gopay_id
Errors are raised as GoPay::Error. The error contains error code error body returned by GoPay API. You can easily catch errors in your models as shown below.
begin
response = GoPay::Payment.refund(gopay_id, gopay_amount)
rescue GoPay::Error => exception
log_gopay_error exception
end
Parameters for all GoPay methods follow the official documentation. For further explanation please visit GoPay API docs.
Bug reports and pull requests are welcome on GitHub at https://github.com/PrimeHammer/gopay-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.