Sha256: 490ec3446566c649ef6e52503cf7b78085d86152e6aa915e4ca477910fe1c2ba

Contents?: true

Size: 1.25 KB

Versions: 5

Compression:

Stored size: 1.25 KB

Contents

module Spree
  module Api
    class ImagesController < Spree::Api::BaseController
      def index
        @images = scope.images.accessible_by(current_ability, :read)
        respond_with(@images)
      end

      def show
        @image = Spree::Image.accessible_by(current_ability, :read).find(params[:id])
        respond_with(@image)
      end

      def create
        authorize! :create, Image
        @image = scope.images.create(image_params)
        respond_with(@image, status: 201, default_template: :show)
      end

      def update
        @image = scope.images.accessible_by(current_ability, :update).find(params[:id])
        @image.update_attributes(image_params)
        respond_with(@image, default_template: :show)
      end

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

      private

      def image_params
        params.require(:image).permit(permitted_image_attributes)
      end

      def scope
        if params[:product_id]
          Spree::Product.friendly.find(params[:product_id])
        elsif params[:variant_id]
          Spree::Variant.find(params[:variant_id])
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
solidus_api-2.2.2 app/controllers/spree/api/images_controller.rb
solidus_api-2.2.1 app/controllers/spree/api/images_controller.rb
solidus_api-2.2.0 app/controllers/spree/api/images_controller.rb
solidus_api-2.2.0.rc1 app/controllers/spree/api/images_controller.rb
solidus_api-2.2.0.beta1 app/controllers/spree/api/images_controller.rb