Class: Spree::Admin::PaymentMethodsController

Inherits:
ResourceController show all
Defined in:
app/controllers/spree/admin/payment_methods_controller.rb

Instance Method Summary collapse

Methods inherited from ResourceController

belongs_to, #destroy, #edit, #new, #update_positions

Instance Method Details

#createObject



10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'app/controllers/spree/admin/payment_methods_controller.rb', line 10

def create
  @payment_method = params[:payment_method].delete(:type).constantize.new(payment_method_params)
  @object = @payment_method
  invoke_callbacks(:create, :before)
  if @payment_method.save
    invoke_callbacks(:create, :after)
    flash[:success] = Spree.t(:successfully_created, resource: Spree.t(:payment_method))
    redirect_to edit_admin_payment_method_path(@payment_method)
  else
    invoke_callbacks(:create, :fails)
    respond_with(@payment_method)
  end
end

#updateObject



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'app/controllers/spree/admin/payment_methods_controller.rb', line 24

def update
  invoke_callbacks(:update, :before)
  payment_method_type = params[:payment_method].delete(:type)
  if @payment_method['type'].to_s != payment_method_type
    @payment_method.update_columns(
      type: payment_method_type,
      updated_at: Time.current,
    )
    @payment_method = PaymentMethod.find(params[:id])
  end

  update_params = params[ActiveModel::Naming.param_key(@payment_method)] || {}
  attributes = payment_method_params.merge(update_params)
  attributes.each do |k,v|
    if k.include?("password") && attributes[k].blank?
      attributes.delete(k)
    end
  end

  if @payment_method.update_attributes(attributes)
    invoke_callbacks(:update, :after)
    flash[:success] = Spree.t(:successfully_updated, resource: Spree.t(:payment_method))
    redirect_to edit_admin_payment_method_path(@payment_method)
  else
    invoke_callbacks(:update, :fails)
    respond_with(@payment_method)
  end
end