aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_controller/metal/url_for.rb
blob: 89ab0b47533c204d051cfaff303d16aaf9177203 (plain) (tree)
1
2
3
4
5
6
7
8






                                            
                   


                                        


                                                             
                                                   





                                                                                       
                                                                                 


       
module ActionController
  module UrlFor
    extend ActiveSupport::Concern

    include ActionDispatch::Routing::UrlFor
    include ActionController::RackDelegation

    def url_options
      super.reverse_merge(
        :host => request.host_with_port,
        :protocol => request.protocol,
        # ROUTES TODO: relative_url_root should be middleware
        # and the generator should take SCRIPT_NAME into
        # consideration
        :script_name => request.env["SCRIPT_NAME"],
        :_path_segments => request.symbolized_path_parameters
      )
    end

    def _router
      raise "In order to use #url_for, you must include the helpers of a particular " \
            "router. For instance, `include Rails.application.routes.url_helpers"
    end
  end
end