Sha256: f0a487d91d824c78683d7736d4b84cbb88a44a185d02cac6f6a8c5de41fff1a5
Contents?: true
Size: 1.7 KB
Versions: 10
Compression:
Stored size: 1.7 KB
Contents
module Spree class ProductsController < Spree::StoreController before_action :load_product, only: :show before_action :load_taxon, only: :index rescue_from ActiveRecord::RecordNotFound, :with => :render_404 helper 'spree/taxons' respond_to :html def index @searcher = build_searcher(params.merge(include_images: true)) @products = @searcher.retrieve_products @taxonomies = Spree::Taxonomy.includes(root: :children) end def show @variants = @product.variants_including_master.active(current_currency).includes([:option_values, :images]) @product_properties = @product.product_properties.includes(:property) @taxon = Spree::Taxon.find(params[:taxon_id]) if params[:taxon_id] redirect_if_legacy_path end private def accurate_title if @product @product.meta_title.blank? ? @product.name : @product.meta_title else super end end def load_product if try_spree_current_user.try(:has_spree_role?, "admin") @products = Product.with_deleted else @products = Product.active(current_currency) end @product = @products.friendly.find(params[:id]) end def load_taxon @taxon = Spree::Taxon.find(params[:taxon]) if params[:taxon].present? end def redirect_if_legacy_path # If an old id or a numeric id was used to find the record, # we should do a 301 redirect that uses the current friendly id. if params[:id] != @product.friendly_id params.merge!(id: @product.friendly_id) return redirect_to url_for(params), status: :moved_permanently end end end end
Version data entries
10 entries across 10 versions & 1 rubygems