mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
113 lines
3.6 KiB
Ruby
113 lines
3.6 KiB
Ruby
module Spree
|
|
module Admin
|
|
class PaymentsController < Spree::Admin::BaseController
|
|
before_filter :load_order, :only => [:create, :new, :index, :fire]
|
|
before_filter :load_payment, :except => [:create, :new, :index]
|
|
before_filter :load_data
|
|
before_filter :can_transition_to_payment
|
|
|
|
respond_to :html
|
|
|
|
def index
|
|
@payments = @order.payments
|
|
redirect_to new_admin_order_payment_url(@order) if @payments.empty?
|
|
end
|
|
|
|
def new
|
|
@payment = @order.payments.build
|
|
end
|
|
|
|
def create
|
|
@payment = @order.payments.build(object_params)
|
|
if @payment.payment_method.is_a?(Spree::Gateway) && @payment.payment_method.payment_profiles_supported? && params[:card].present? and params[:card] != 'new'
|
|
@payment.source = CreditCard.find_by_id(params[:card])
|
|
end
|
|
|
|
begin
|
|
unless @payment.save
|
|
redirect_to admin_order_payments_path(@order)
|
|
return
|
|
end
|
|
|
|
if @order.completed?
|
|
@payment.process!
|
|
flash[:success] = flash_message_for(@payment, :successfully_created)
|
|
|
|
redirect_to admin_order_payments_path(@order)
|
|
else
|
|
#This is the first payment (admin created order)
|
|
until @order.completed?
|
|
@order.next!
|
|
end
|
|
flash[:success] = Spree.t(:new_order_completed)
|
|
redirect_to edit_admin_order_url(@order)
|
|
end
|
|
|
|
rescue Spree::Core::GatewayError => e
|
|
flash[:error] = "#{e.message}"
|
|
redirect_to new_admin_order_payment_path(@order)
|
|
end
|
|
end
|
|
|
|
def fire
|
|
return unless event = params[:e] and @payment.payment_source
|
|
|
|
# Because we have a transition method also called void, we do this to avoid conflicts.
|
|
event = "void_transaction" if event == "void"
|
|
if @payment.send("#{event}!")
|
|
flash[:success] = Spree.t(:payment_updated)
|
|
else
|
|
flash[:error] = Spree.t(:cannot_perform_operation)
|
|
end
|
|
rescue Spree::Core::GatewayError => ge
|
|
flash[:error] = "#{ge.message}"
|
|
ensure
|
|
redirect_to admin_order_payments_path(@order)
|
|
end
|
|
|
|
private
|
|
|
|
def object_params
|
|
if params[:payment] and params[:payment_source] and source_params = params.delete(:payment_source)[params[:payment][:payment_method_id]]
|
|
params[:payment][:source_attributes] = source_params
|
|
end
|
|
params[:payment]
|
|
end
|
|
|
|
def load_data
|
|
@amount = params[:amount] || load_order.total
|
|
@payment_methods = PaymentMethod.available(:back_end)
|
|
if @payment and @payment.payment_method
|
|
@payment_method = @payment.payment_method
|
|
else
|
|
@payment_method = @payment_methods.first
|
|
end
|
|
@previous_cards = @order.credit_cards.with_payment_profile
|
|
end
|
|
|
|
# At this point admin should have passed through Customer Details step
|
|
# where order.next is called which leaves the order in payment step
|
|
#
|
|
# Orders in complete step also allows to access this controller
|
|
#
|
|
# Otherwise redirect user to that step
|
|
def can_transition_to_payment
|
|
unless @order.payment? || @order.complete?
|
|
flash[:notice] = Spree.t(:fill_in_customer_info)
|
|
redirect_to edit_admin_order_customer_url(@order)
|
|
end
|
|
end
|
|
|
|
def load_order
|
|
@order = Order.find_by_number!(params[:order_id])
|
|
authorize! action, @order
|
|
@order
|
|
end
|
|
|
|
def load_payment
|
|
@payment = Payment.find(params[:id])
|
|
end
|
|
end
|
|
end
|
|
end
|