aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal/url_for.rb
blob: c1f1be3bef2fbfa6c535a90d90393372ec4c93cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module ActionController
  module UrlFor
    extend ActiveSupport::Concern

    include ActionDispatch::Routing::UrlFor

    def url_options
      options = {}
      if respond_to?(:env) && env && _routes.equal?(env["action_dispatch.routes"])
        options[:script_name] = request.script_name
      end

      super.merge(options).reverse_merge(
        :host => request.host_with_port,
        :protocol => request.protocol,
        :_path_segments => request.symbolized_path_parameters
      )
    end

    def _routes
      raise "In order to use #url_for, you must include routing helpers explicitly. " \
            "For instance, `include Rails.application.routes.url_helpers"
    end

    module ClassMethods
      def action_methods
        @action_methods ||= begin
          super - _routes.named_routes.helper_names
        end
      end
    end
  end
end