mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
26 lines
690 B
Ruby
26 lines
690 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PaymentsController < BaseController
|
|
respond_to :html
|
|
|
|
prepend_before_action :require_logged_in, only: :redirect_to_authorize
|
|
|
|
def redirect_to_authorize
|
|
@payment = Spree::Payment.find(params[:id])
|
|
authorize! :show, @payment.order
|
|
|
|
redirect_to(@payment.redirect_auth_url || order_url(@payment.order))
|
|
end
|
|
|
|
private
|
|
|
|
def require_logged_in
|
|
return if session[:access_token] || spree_current_user
|
|
|
|
store_location_for :spree_user, request.original_fullpath
|
|
|
|
flash[:error] = I18n.t("spree.orders.edit.login_to_view_order")
|
|
redirect_to main_app.root_path(anchor: "/login", after_login: request.original_fullpath)
|
|
end
|
|
end
|