Sha256: ca0a1050f33094dcfc115b1ed0bebc20b4b5ebbb7cd14f35a6328105d622b3db

Contents?: true

Size: 1.48 KB

Versions: 6

Compression:

Stored size: 1.48 KB

Contents

module Spree
  class ProductsController < Spree::StoreController
    before_filter :load_product, :only => :show
    before_filter :load_taxon, :only => :index

    rescue_from ActiveRecord::RecordNotFound, :with => :render_404
    helper 'spree/taxons'

    respond_to :html

    def index
      @searcher = build_searcher(params)
      @products = @searcher.retrieve_products
    end

    def show
      return unless @product

      @variants = @product.variants_including_master.active(current_currency).includes([:option_values, :images])
      @product_properties = @product.product_properties.includes(:property)

      referer = request.env['HTTP_REFERER']
      if referer
        begin
          referer_path = URI.parse(request.env['HTTP_REFERER']).path
          # Fix for #2249
        rescue URI::InvalidURIError
          # Do nothing
        else
          if referer_path && referer_path.match(/\/t\/(.*)/)
            @taxon = Spree::Taxon.find_by_permalink($1)
          end
        end
      end
    end

    private
      def accurate_title
        @product ? @product.name : super
      end

      def load_product
        if try_spree_current_user.try(:has_spree_role?, "admin")
          @product = Product.with_deleted.find_by_permalink!(params[:id])
        else
          @product = Product.active(current_currency).find_by_permalink!(params[:id])
        end
      end

      def load_taxon
        @taxon = Spree::Taxon.find(params[:taxon]) if params[:taxon].present?
      end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spree_frontend-2.1.12 app/controllers/spree/products_controller.rb
spree_frontend-2.1.11 app/controllers/spree/products_controller.rb
spree_frontend-2.1.10 app/controllers/spree/products_controller.rb
spree_frontend-2.1.9 app/controllers/spree/products_controller.rb
spree_frontend-2.1.8 app/controllers/spree/products_controller.rb
spree_frontend-2.1.7 app/controllers/spree/products_controller.rb