Class: Spree::Api::V1::VariantsController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/spree/api/v1/variants_controller.rb

Instance Attribute Summary

Attributes inherited from BaseController

#current_api_user

Instance Method Summary collapse

Methods inherited from BaseController

#content_type, #permitted_line_item_attributes

Methods included from ControllerSetup

included

Instance Method Details

#createObject



7
8
9
10
11
12
13
14
15
# File 'app/controllers/spree/api/v1/variants_controller.rb', line 7

def create
  authorize! :create, Variant
  @variant = scope.new(variant_params)
  if @variant.save
    respond_with(@variant, status: 201, default_template: :show)
  else
    invalid_resource!(@variant)
  end
end

#destroyObject



17
18
19
20
21
# File 'app/controllers/spree/api/v1/variants_controller.rb', line 17

def destroy
  @variant = scope.accessible_by(current_ability, :destroy).find(params[:id])
  @variant.destroy
  respond_with(@variant, status: 204)
end

#indexObject

The lazyloaded associations here are pretty much attached to which nodes we render on the view so we better update it any time a node is included or removed from the views.



26
27
28
29
30
# File 'app/controllers/spree/api/v1/variants_controller.rb', line 26

def index
  @variants = scope.includes({ option_values: :option_type }, :product, :default_price, :images, stock_items: :stock_location).
              ransack(params[:q]).result.page(params[:page]).per(params[:per_page])
  respond_with(@variants)
end

#newObject



32
# File 'app/controllers/spree/api/v1/variants_controller.rb', line 32

def new; end

#showObject



34
35
36
37
38
# File 'app/controllers/spree/api/v1/variants_controller.rb', line 34

def show
  @variant = scope.includes({ option_values: :option_type }, :option_values, :product, :default_price, :images, stock_items: :stock_location).
             find(params[:id])
  respond_with(@variant)
end

#updateObject



40
41
42
43
44
45
46
47
# File 'app/controllers/spree/api/v1/variants_controller.rb', line 40

def update
  @variant = scope.accessible_by(current_ability, :update).find(params[:id])
  if @variant.update_attributes(variant_params)
    respond_with(@variant, status: 200, default_template: :show)
  else
    invalid_resource!(@product)
  end
end