Sha256: 74afda5a4d0ad712a709a32ac92b24a0c1da969d90853f74b53da9951665c22c

Contents?: true

Size: 993 Bytes

Versions: 3

Compression:

Stored size: 993 Bytes

Contents

module Spree
  class ProductsController < BaseController
    HTTP_REFERER_REGEXP = /^https?:\/\/[^\/]+\/t\/([a-z0-9\-\/]+)$/
    rescue_from ActiveRecord::RecordNotFound, :with => :render_404
    helper 'spree/taxons'

    respond_to :html

    def index
      @searcher = Spree::Config.searcher_class.new(params)
      @products = @searcher.retrieve_products
      respond_with(@products)
    end

    def show
      @product = Product.find_by_permalink!(params[:id])
      return unless @product

      @variants = Variant.active.includes([:option_values, :images]).where(:product_id => @product.id)
      @product_properties = ProductProperty.includes(:property).where(:product_id => @product.id)

      referer = request.env['HTTP_REFERER']

      if referer && referer.match(HTTP_REFERER_REGEXP)
        @taxon = Taxon.find_by_permalink($1)
      end

      respond_with(@product)
    end

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spree_core-1.0.0.rc3 app/controllers/spree/products_controller.rb
spree_core-1.0.0.rc2 app/controllers/spree/products_controller.rb
spree_core-1.0.0.rc1 app/controllers/spree/products_controller.rb