aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_dispatch/http/filter_redirect.rb
blob: cd603649c3e1526c777d1933a08b10fd06de2550 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                              

                                                             








                         
                  





                                                              

                                         










                                     
module ActionDispatch
  module Http
    module FilterRedirect

      FILTERED = '[FILTERED]'.freeze # :nodoc:

      def filtered_location
        filters = location_filter
        if !filters.empty? && location_filter_match?(filters)
          FILTERED
        else
          location
        end
      end

    private

      def location_filter
        if request
          request.env['action_dispatch.redirect_filter'] || []
        else
          []
        end
      end

      def location_filter_match?(filters)
        filters.any? do |filter|
          if String === filter
            location.include?(filter)
          elsif Regexp === filter
            location.match(filter)
          end
        end
      end

    end
  end
end