Module: Effective::Providers::MarkAsPaid

Extended by:
ActiveSupport::Concern
Included in:
OrdersController
Defined in:
app/controllers/effective/providers/mark_as_paid.rb

Instance Method Summary collapse

Instance Method Details

#mark_as_paidObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'app/controllers/effective/providers/mark_as_paid.rb', line 6

def mark_as_paid
  @order ||= Order.find(params[:id])

  EffectiveOrders.authorize!(self, :update, @order)
  EffectiveOrders.authorize!(self, :admin, :effective_orders)

  @order.assign_attributes(mark_as_paid_params.except(:payment, :payment_provider, :payment_card))

  order_purchased(
    details: mark_as_paid_params[:payment],
    provider: mark_as_paid_params[:payment_provider],
    card: mark_as_paid_params[:payment_card],
    email: @order.send_mark_as_paid_email_to_buyer?,
    skip_buyer_validations: true,
    purchased_url: params[:purchased_url].presence || effective_orders.admin_order_path(@order),
    declined_url: params[:declined_url].presence || effective_orders.admin_order_path(@order)
  )
end

#mark_as_paid_paramsObject



25
26
27
28
29
# File 'app/controllers/effective/providers/mark_as_paid.rb', line 25

def mark_as_paid_params
  params.require(:effective_order).permit(
    :payment, :payment_provider, :payment_card, :note_to_buyer, :send_mark_as_paid_email_to_buyer
  )
end