Sha256: 8a3e49a2ef65f55822b1e074db80fe82a55e718c1a574dd8b507bffccded8081

Contents?: true

Size: 1.88 KB

Versions: 35

Compression:

Stored size: 1.88 KB

Contents

module ActionController
  # Includes +url_for+ into the host class. The class has to provide a +RouteSet+ by implementing
  # the <tt>_routes</tt> method. Otherwise, an exception will be raised.
  #
  # In addition to <tt>AbstractController::UrlFor</tt>, this module accesses the HTTP layer to define
  # url options like the +host+. In order to do so, this module requires the host class
  # to implement +env+ which needs to be Rack-compatible and +request+
  # which is either an instance of +ActionDispatch::Request+ or an object
  # that responds to the +host+, +optional_port+, +protocol+ and
  # +symbolized_path_parameter+ methods.
  #
  #   class RootUrl
  #     include ActionController::UrlFor
  #     include Rails.application.routes.url_helpers
  #
  #     delegate :env, :request, to: :controller
  #
  #     def initialize(controller)
  #       @controller = controller
  #       @url        = root_path # named route from the application.
  #     end
  #   end
  module UrlFor
    extend ActiveSupport::Concern

    include AbstractController::UrlFor

    def url_options
      @_url_options ||= {
        :host => request.host,
        :port => request.optional_port,
        :protocol => request.protocol,
        :_recall => request.path_parameters
      }.merge!(super).freeze

      if (same_origin = _routes.equal?(request.routes)) ||
         (script_name = request.engine_script_name(_routes)) ||
         (original_script_name = request.original_script_name)

        options = @_url_options.dup
        if original_script_name
          options[:original_script_name] = original_script_name
        else
          if same_origin
            options[:script_name] = request.script_name.empty? ? "".freeze : request.script_name.dup
          else
            options[:script_name] = script_name
          end
        end
        options.freeze
      else
        @_url_options
      end
    end
  end
end

Version data entries

35 entries across 35 versions & 4 rubygems

Version Path
actionpack-5.0.7.2 lib/action_controller/metal/url_for.rb
actionpack-5.0.7.1 lib/action_controller/metal/url_for.rb
actionpack-5.0.7 lib/action_controller/metal/url_for.rb
actionpack-5.0.6 lib/action_controller/metal/url_for.rb
actionpack-5.0.6.rc1 lib/action_controller/metal/url_for.rb
actionpack-5.0.5 lib/action_controller/metal/url_for.rb
actionpack-5.0.5.rc2 lib/action_controller/metal/url_for.rb
actionpack-5.0.5.rc1 lib/action_controller/metal/url_for.rb
actionpack-5.0.4 lib/action_controller/metal/url_for.rb
actionpack-5.0.4.rc1 lib/action_controller/metal/url_for.rb
actionpack-5.0.3 lib/action_controller/metal/url_for.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/actionpack-5.0.2/lib/action_controller/metal/url_for.rb
actionpack-5.0.2 lib/action_controller/metal/url_for.rb
actionpack-5.0.2.rc1 lib/action_controller/metal/url_for.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.1/lib/action_controller/metal/url_for.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.1/lib/action_controller/metal/url_for.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.1/lib/action_controller/metal/url_for.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.1/lib/action_controller/metal/url_for.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.1/lib/action_controller/metal/url_for.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.1/lib/action_controller/metal/url_for.rb