Project

pay_fu

0.01
No commit activity in last 3 years
No release in over 3 years
pay_fu engine
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

pay_fu

a rails payment engine that supports both alipay and paypal.

Setup

  1. add to Gemfile
gem "pay_fu"
  1. install gem
bundle install
  1. generate config file, route and migration file
rails generate pay_fu:install
  1. update config file config/pay_fu.yml

  2. run migration

rake db:migrate
  1. in controller file, after user clicking checkout, redirect him to paypal gateway page.
include PayFu::PaypalHelper
def action
  ...
  redirect_to_paypal_gateway(:item_name => "subject", :amount => 123)
  return
end
  1. similar for alipay
include PayFu::AlipayHelper
def action
  ...
  redirect_to_alipay_gateway(:subject => "donatecn", :body => "donatecn", :amount => @donate.amount, :out_trade_no => "123", :notify_url => pay_fu.alipay_transactions_notify_url)
  return
end