Class: Spree::Admin::ProductsController

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

Instance Method Summary collapse

Methods inherited from ResourceController

belongs_to, #create, #edit, #new, #update_positions

Instance Method Details

#cloneObject



61
62
63
64
65
66
67
68
69
70
71
# File 'app/controllers/spree/admin/products_controller.rb', line 61

def clone
  @new = @product.duplicate

  if @new.save
    flash[:success] = Spree.t('notice_messages.product_cloned')
  else
    flash[:error] = Spree.t('notice_messages.product_not_cloned')
  end

  redirect_to edit_admin_product_url(@new)
end

#destroyObject



49
50
51
52
53
54
55
56
57
58
59
# File 'app/controllers/spree/admin/products_controller.rb', line 49

def destroy
  @product = Product.friendly.find(params[:id])
  @product.destroy

  flash[:success] = Spree.t('notice_messages.product_deleted')

  respond_with(@product) do |format|
    format.html { redirect_to collection_url }
    format.js { render_js_for_destroy }
  end
end

#indexObject



15
16
17
18
# File 'app/controllers/spree/admin/products_controller.rb', line 15

def index
  session[:return_to] = request.url
  respond_with(@collection)
end

#showObject



11
12
13
# File 'app/controllers/spree/admin/products_controller.rb', line 11

def show
  redirect_to action: :edit
end

#updateObject



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'app/controllers/spree/admin/products_controller.rb', line 20

def update
  if params[:product][:taxon_ids].present?
    params[:product][:taxon_ids] = params[:product][:taxon_ids].split(',')
  end
  if params[:product][:option_type_ids].present?
    params[:product][:option_type_ids] = params[:product][:option_type_ids].split(',')
  end
  if updating_variant_property_rules?
    params[:product][:variant_property_rules_attributes].each do |_index, param_attrs|
      param_attrs[:option_value_ids] = param_attrs[:option_value_ids].split(',')
    end
  end
  invoke_callbacks(:update, :before)
  if @object.update_attributes(permitted_resource_params)
    invoke_callbacks(:update, :after)
    flash[:success] = flash_message_for(@object, :successfully_updated)
    respond_with(@object) do |format|
      format.html { redirect_to location_after_save }
      format.js   { render layout: false }
    end
  else
    # Stops people submitting blank slugs, causing errors when they try to
    # update the product again
    @product.slug = @product.slug_was if @product.slug.blank?
    invoke_callbacks(:update, :fails)
    respond_with(@object)
  end
end