0.0
No commit activity in last 3 years
No release in over 3 years
A simple Ruby implementation for handeling iDeal transactions with the Mollie API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.0.0
>= 0
~> 2.3

Runtime

>= 0
~> 0.8.0
 Project Readme

Mollie iDeal Build Status

Wrapper for the mollie ideal api

Installation

  1. Add gem 'mollie_ideal' to your Gemfile.
  2. Run bundle install.

Usage

# for production
client = MollieIdeal::Client.new(:partner_id => your_partner_id)

# testmode
client = MollieIdeal::Client.new(:testmode => true, :partner_id => your_partner_id)

# Example of how to get the banklist and populate a selectbox
@banks = client.banklist
= select_tag :bank_id, options_for_select(@banks)

# How to setup a payment
response = client.setup_payment(
  :amount      => (amount_in_cents).to_i,
  :bank_id     => params[:bank_id],
  :returnurl   => "http://#{request.env['HTTP_HOST']}/ideal/return",
  :reporturl   => "http://#{request.env['HTTP_HOST']}/ideal/report",
  :description => 'your description'
)
oder.update_attributes(:transaction_id => response.transaction_id)
redirect_to response.URL

# How to handle report on the report url
# For safety reasons mollie calls a report url for updating payment status before redirecting back to the application
order = Order.find_by_transaction_id(params[:transaction_id])
response = client.check_payment(order.transaction_id)
order.update_attributes(:payed => response.payed)

# When mollie redirects the user back you can check if the payment was succesfull bij finding the order object
@order = Order.find_by_transaction_id(params[:transaction_id])

Note on Patches/Pull Requests

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
  • Send me a pull request. Bonus points for topic branches.

Copyright

Copyright (c) 2010 Johan van Zonneveld. See LICENSE for details.