Sha256: 38a22533a6b55ac6c263db81395e802361c0f068440032437f5e99a0947ce93a

Contents?: true

Size: 1.99 KB

Versions: 3

Compression:

Stored size: 1.99 KB

Contents

module Spree
  module Api
    module V1
      class VariantsController < Spree::Api::V1::BaseController
        before_filter :product

        def index
          @variants = scope.
                      includes(:option_values).ransack(params[:q]).result.
                      page(params[:page]).per(params[:per_page])
        end

        def show
          @variant = scope.includes(:option_values).find(params[:id])
        end

        def new
        end

        def create
          authorize! :create, Variant
          @variant = scope.new(params[:product])
          if @variant.save
            render :show, :status => 201
          else
            invalid_resource!(@variant)
          end
        end

        def update
          authorize! :update, Variant
          @variant = scope.find(params[:id])
          if @variant.update_attributes(params[:variant])
            render :show, :status => 200
          else
            invalid_resource!(@product)
          end
        end

        def destroy
          authorize! :delete, Variant
          @variant = scope.find(params[:id])
          @variant.destroy
          render :text => nil, :status => 204
        end

        private
          def product
            @product ||= Spree::Product.find_by_permalink(params[:product_id]) if params[:product_id]
          end

          def scope
            if @product
              unless current_api_user.has_spree_role?("admin") || params[:show_deleted]
                variants = @product.variants_including_master
              else
                variants = @product.variants_including_master_and_deleted
              end
            else
              variants = Variant.scoped
              if current_api_user.has_spree_role?("admin")
                unless params[:show_deleted]
                  variants = Variant.active
                end
              else
                variants = variants.active
              end
            end
            variants
          end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spree_api-1.2.4 app/controllers/spree/api/v1/variants_controller.rb
spree_api-1.2.3 app/controllers/spree/api/v1/variants_controller.rb
spree_api-1.2.2 app/controllers/spree/api/v1/variants_controller.rb