summaryrefslogtreecommitdiff
path: root/billing/app/controllers/payments_controller.rb
blob: 79a643368f91ab6da3cfb81fcdf6e745d56d9b78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
class PaymentsController < ApplicationController
  def new
    @amount = calculate_amount
    if current_user
      if @customer = Customer.find_by_user_id(current_user.id)
        @braintree_data = Braintree::Customer.find(@customer.braintree_customer_id)
        @default_cc = @braintree_data.credit_cards.find { |cc| cc.default? }
        @tr_data = Braintree::TransparentRedirect.transaction_data(:redirect_url => confirm_payment_url,
                                                                   :transaction => {:type => "sale", :amount => @amount, :customer_id => @customer.braintree_customer_id, :options => {:submit_for_settlement => true } })
      else
        redirect_to new_customer_path
      end
    else
      # anonymous payment not attributed to any user (ie, donation)
      @tr_data = Braintree::TransparentRedirect.transaction_data(:redirect_url => confirm_payment_url,
                                                                 :transaction => {:type => "sale", :amount => @amount, :options => {:submit_for_settlement => true } })
    end

  end

  def confirm
    @result = Braintree::TransparentRedirect.confirm(request.query_string)
    if @result.success?
      render :action => "confirm"
    else
      @amount = calculate_amount
      render :action => "new"
    end
  end

  protected

  def calculate_amount
    # in a real app this be calculated from a shopping cart, determined by the product, etc.
    "100.00"
  end
end