Sha256: 34068b5ed5170bd9df1723a3acd6d4428d303307be93d75a39a68e6697575997

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

# Make redirects for SEO needs
module Spree
  module Core
    module Middleware
      class SeoAssist
        def initialize(app)
          @app = app
        end

        def call(env)
          request = Rack::Request.new(env)
          params = request.params
          taxon_id = params['taxon']

          #redirect requests using taxon id's to their permalinks
          if !taxon_id.blank? && !taxon_id.is_a?(Hash) && taxon = Taxon.find(taxon_id)
            params.delete('taxon')

            return build_response(params, "/t/#{taxon.permalink}" )
          elsif env["PATH_INFO"] =~ /^\/(t|products)(\/\S+)?\/$/
            #ensures no trailing / for taxon and product urls

            return build_response(params, env["PATH_INFO"][0...-1])
          end

          @app.call(env)
        end

        private

        def build_response(params, location)
          query = build_query(params)
          location += '?' + query unless query.blank?
          [301, { 'Location'=> location }, []]
        end

        def build_query(params)
          params.map { |k, v|
            if v.class == Array
              build_query(v.map { |x| ["#{k}[]", x] })
            else
              k + "=" + Rack::Utils.escape(v)
            end
          }.join("&")
        end

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_core-1.0.0.rc1 lib/spree/core/middleware/seo_assist.rb