url_for.rb 10.0 KB
Newer Older
1 2
# frozen_string_literal: true

C
Carlhuda 已提交
3 4
module ActionDispatch
  module Routing
5
    # In <tt>config/routes.rb</tt> you define URL-to-controller mappings, but the reverse
6
    # is also possible: a URL can be generated from one of your routing definitions.
C
Carlhuda 已提交
7 8
    # URL generation functionality is centralized in this module.
    #
9
    # See ActionDispatch::Routing for general information about routing and routes.rb.
C
Carlhuda 已提交
10 11 12
    #
    # <b>Tip:</b> If you need to generate URLs from your models or some other place,
    # then ActionController::UrlFor is what you're looking for. Read on for
13 14
    # an introduction. In general, this module should not be included on its own,
    # as it is usually included by url_helpers (as in Rails.application.routes.url_helpers).
C
Carlhuda 已提交
15 16 17
    #
    # == URL generation from parameters
    #
18
    # As you may know, some functions, such as ActionController::Base#url_for
C
Carlhuda 已提交
19 20 21 22
    # and ActionView::Helpers::UrlHelper#link_to, can generate URLs given a set
    # of parameters. For example, you've probably had the chance to write code
    # like this in one of your views:
    #
A
AvnerCohen 已提交
23 24
    #   <%= link_to('Click here', controller: 'users',
    #           action: 'new', message: 'Welcome!') %>
E
Earl J St Sauver 已提交
25
    #   # => <a href="/users/new?message=Welcome%21">Click here</a>
C
Carlhuda 已提交
26 27 28 29 30 31 32
    #
    # link_to, and all other functions that require URL generation functionality,
    # actually use ActionController::UrlFor under the hood. And in particular,
    # they use the ActionController::UrlFor#url_for method. One can generate
    # the same path as the above example by using the following code:
    #
    #   include UrlFor
A
AvnerCohen 已提交
33 34 35 36
    #   url_for(controller: 'users',
    #           action: 'new',
    #           message: 'Welcome!',
    #           only_path: true)
C
Carlhuda 已提交
37 38
    #   # => "/users/new?message=Welcome%21"
    #
A
AvnerCohen 已提交
39
    # Notice the <tt>only_path: true</tt> part. This is because UrlFor has no
C
Carlhuda 已提交
40 41 42 43 44
    # information about the website hostname that your Rails app is serving. So if you
    # want to include the hostname as well, then you must also pass the <tt>:host</tt>
    # argument:
    #
    #   include UrlFor
A
AvnerCohen 已提交
45 46 47 48
    #   url_for(controller: 'users',
    #           action: 'new',
    #           message: 'Welcome!',
    #           host: 'www.example.com')
C
Carlhuda 已提交
49 50 51 52 53 54 55 56
    #   # => "http://www.example.com/users/new?message=Welcome%21"
    #
    # By default, all controllers and views have access to a special version of url_for,
    # that already knows what the current hostname is. So if you use url_for in your
    # controllers or your views, then you don't need to explicitly pass the <tt>:host</tt>
    # argument.
    #
    # For convenience reasons, mailers provide a shortcut for ActionController::UrlFor#url_for.
57 58 59 60 61
    # So within mailers, you only have to type +url_for+ instead of 'ActionController::UrlFor#url_for'
    # in full. However, mailers don't have hostname information, and you still have to provide
    # the +:host+ argument or set the default host that will be used in all mailers using the
    # configuration option +config.action_mailer.default_url_options+. For more information on
    # url_for in mailers read the ActionMailer#Base documentation.
C
Carlhuda 已提交
62 63 64 65 66 67
    #
    #
    # == URL generation for named routes
    #
    # UrlFor also allows one to access methods that have been auto-generated from
    # named routes. For example, suppose that you have a 'users' resource in your
68
    # <tt>config/routes.rb</tt>:
C
Carlhuda 已提交
69
    #
70
    #   resources :users
C
Carlhuda 已提交
71 72 73 74
    #
    # This generates, among other things, the method <tt>users_path</tt>. By default,
    # this method is accessible from your controllers, views and mailers. If you need
    # to access this auto-generated method from other places (such as a model), then
75
    # you can do that by including Rails.application.routes.url_helpers in your class:
C
Carlhuda 已提交
76 77
    #
    #   class User < ActiveRecord::Base
78
    #     include Rails.application.routes.url_helpers
C
Carlhuda 已提交
79 80 81 82 83 84 85 86 87 88
    #
    #     def base_uri
    #       user_path(self)
    #     end
    #   end
    #
    #   User.find(1).base_uri # => "/users/1"
    #
    module UrlFor
      extend ActiveSupport::Concern
89
      include PolymorphicRoutes
C
Carlhuda 已提交
90 91

      included do
92 93 94 95 96
        unless method_defined?(:default_url_options)
          # Including in a class uses an inheritable hash. Modules get a plain hash.
          if respond_to?(:class_attribute)
            class_attribute :default_url_options
          else
97
            mattr_writer :default_url_options
98
          end
C
Carlhuda 已提交
99

100
          self.default_url_options = {}
101
        end
102

103
        include(*_url_for_modules) if respond_to?(:_url_for_modules)
104 105
      end

106 107 108 109 110
      def initialize(*)
        @_routes = nil
        super
      end

A
Anatoly Makarevich 已提交
111
      # Hook overridden in controller to add request information
112
      # with +default_url_options+. Application logic should not
113
      # go into url_options.
114 115
      def url_options
        default_url_options
C
Carlhuda 已提交
116 117
      end

118
      # Generate a URL based on the options provided, default_url_options and the
119
      # routes defined in routes.rb. The following options are supported:
C
Carlhuda 已提交
120
      #
121
      # * <tt>:only_path</tt> - If true, the relative URL is returned. Defaults to +false+.
C
Carlhuda 已提交
122 123 124 125
      # * <tt>:protocol</tt> - The protocol to connect to. Defaults to 'http'.
      # * <tt>:host</tt> - Specifies the host the link should be targeted at.
      #   If <tt>:only_path</tt> is false, this option must be
      #   provided either explicitly, or via +default_url_options+.
126 127
      # * <tt>:subdomain</tt> - Specifies the subdomain of the link, using the +tld_length+
      #   to split the subdomain from the host.
128 129 130
      #   If false, removes all subdomains from the host part of the link.
      # * <tt>:domain</tt> - Specifies the domain of the link, using the +tld_length+
      #   to split the domain from the host.
X
Xavier Noria 已提交
131 132 133
      # * <tt>:tld_length</tt> - Number of labels the TLD id composed of, only used if
      #   <tt>:subdomain</tt> or <tt>:domain</tt> are supplied. Defaults to
      #   <tt>ActionDispatch::Http::URL.tld_length</tt>, which in turn defaults to 1.
C
Carlhuda 已提交
134 135 136
      # * <tt>:port</tt> - Optionally specify the port to connect to.
      # * <tt>:anchor</tt> - An anchor name to be appended to the path.
      # * <tt>:trailing_slash</tt> - If true, adds a trailing slash, as in "/archive/2009/"
137
      # * <tt>:script_name</tt> - Specifies application path relative to domain root. If provided, prepends application path.
C
Carlhuda 已提交
138 139 140 141
      #
      # Any other key (<tt>:controller</tt>, <tt>:action</tt>, etc.) given to
      # +url_for+ is forwarded to the Routes module.
      #
A
AvnerCohen 已提交
142
      #    url_for controller: 'tasks', action: 'testing', host: 'somehost.org', port: '8080'
V
Vijay Dev 已提交
143
      #    # => 'http://somehost.org:8080/tasks/testing'
A
AvnerCohen 已提交
144
      #    url_for controller: 'tasks', action: 'testing', host: 'somehost.org', anchor: 'ok', only_path: true
V
Vijay Dev 已提交
145
      #    # => '/tasks/testing#ok'
A
AvnerCohen 已提交
146
      #    url_for controller: 'tasks', action: 'testing', trailing_slash: true
V
Vijay Dev 已提交
147
      #    # => 'http://somehost.org/tasks/testing/'
A
AvnerCohen 已提交
148
      #    url_for controller: 'tasks', action: 'testing', host: 'somehost.org', number: '33'
V
Vijay Dev 已提交
149
      #    # => 'http://somehost.org/tasks/testing?number=33'
150 151 152 153
      #    url_for controller: 'tasks', action: 'testing', host: 'somehost.org', script_name: "/myapp"
      #    # => 'http://somehost.org/myapp/tasks/testing'
      #    url_for controller: 'tasks', action: 'testing', host: 'somehost.org', script_name: "/myapp", only_path: true
      #    # => '/myapp/tasks/testing'
154 155 156 157
      #
      # Missing routes keys may be filled in from the current request's parameters
      # (e.g. +:controller+, +:action+, +:id+ and any other parameters that are
      # placed in the path). Given that the current action has been reached
158
      # through <tt>GET /users/1</tt>:
159 160 161 162 163 164 165 166 167
      #
      #   url_for(only_path: true)                        # => '/users/1'
      #   url_for(only_path: true, action: 'edit')        # => '/users/1/edit'
      #   url_for(only_path: true, action: 'edit', id: 2) # => '/users/2/edit'
      #
      # Notice that no +:id+ parameter was provided to the first +url_for+ call
      # and the helper used the one from the route's path. Any path parameter
      # implicitly used by +url_for+ can always be overwritten like shown on the
      # last +url_for+ calls.
P
Piotr Sarnacki 已提交
168
      def url_for(options = nil)
169 170 171 172
        full_url_for(options)
      end

      def full_url_for(options = nil) # :nodoc:
P
Piotr Sarnacki 已提交
173
        case options
174
        when nil
175
          _routes.url_for(url_options.symbolize_keys)
176
        when Hash, ActionController::Parameters
177
          route_name = options.delete :use_route
178 179
          merged_url_options = options.to_h.symbolize_keys.reverse_merge!(url_options)
          _routes.url_for(merged_url_options, route_name)
P
Piotr Sarnacki 已提交
180 181
        when String
          options
182 183
        when Symbol
          HelperMethodBuilder.url.handle_string_call self, options
184
        when Array
185 186
          components = options.dup
          polymorphic_url(components, components.extract_options!)
187 188
        when Class
          HelperMethodBuilder.url.handle_class_call self, options
189
        else
190
          HelperMethodBuilder.url.handle_model_call self, options
C
Carlhuda 已提交
191 192
        end
      end
193

194 195 196 197 198 199 200 201 202 203 204 205
      # Allows calling direct or regular named route.
      #
      #   resources :buckets
      #
      #   direct :recordable do |recording|
      #     route_for(:bucket, recording.bucket)
      #   end
      #
      #   direct :threadable do |threadable|
      #     route_for(:recordable, threadable.parent)
      #   end
      #
206
      # This maintains the context of the original caller on
T
T.J. Schuck 已提交
207
      # whether to return a path or full URL, e.g:
208
      #
209 210
      #   threadable_path(threadable)  # => "/buckets/1"
      #   threadable_url(threadable)   # => "http://example.com/buckets/1"
211
      #
212
      def route_for(name, *args)
213 214 215
        public_send(:"#{name}_url", *args)
      end

216
      protected
217

218 219 220
        def optimize_routes_generation?
          _routes.optimize_routes_generation? && default_url_options.empty?
        end
J
José Valim 已提交
221

222 223 224
      private

        def _with_routes(routes) # :doc:
225 226 227 228 229
          old_routes, @_routes = @_routes, routes
          yield
        ensure
          @_routes = old_routes
        end
230

231
        def _routes_context # :doc:
232 233
          self
        end
C
Carlhuda 已提交
234 235
    end
  end
236
end