url_for.rb 9.4 KB
Newer Older
C
Carlhuda 已提交
1 2
module ActionDispatch
  module Routing
3
    # In <tt>config/routes.rb</tt> you define URL-to-controller mappings, but the reverse
4
    # is also possible: a URL can be generated from one of your routing definitions.
C
Carlhuda 已提交
5 6
    # URL generation functionality is centralized in this module.
    #
7
    # See ActionDispatch::Routing for general information about routing and routes.rb.
C
Carlhuda 已提交
8 9 10
    #
    # <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
11 12
    # 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 已提交
13 14 15
    #
    # == URL generation from parameters
    #
16
    # As you may know, some functions, such as ActionController::Base#url_for
C
Carlhuda 已提交
17 18 19 20
    # 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 已提交
21 22
    #   <%= link_to('Click here', controller: 'users',
    #           action: 'new', message: 'Welcome!') %>
E
Earl J St Sauver 已提交
23
    #   # => <a href="/users/new?message=Welcome%21">Click here</a>
C
Carlhuda 已提交
24 25 26 27 28 29 30
    #
    # 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 已提交
31 32 33 34
    #   url_for(controller: 'users',
    #           action: 'new',
    #           message: 'Welcome!',
    #           only_path: true)
C
Carlhuda 已提交
35 36
    #   # => "/users/new?message=Welcome%21"
    #
A
AvnerCohen 已提交
37
    # Notice the <tt>only_path: true</tt> part. This is because UrlFor has no
C
Carlhuda 已提交
38 39 40 41 42
    # 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 已提交
43 44 45 46
    #   url_for(controller: 'users',
    #           action: 'new',
    #           message: 'Welcome!',
    #           host: 'www.example.com')
C
Carlhuda 已提交
47 48 49 50 51 52 53 54
    #   # => "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.
55 56 57 58 59
    # 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 已提交
60 61 62 63 64 65
    #
    #
    # == 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
66
    # <tt>config/routes.rb</tt>:
C
Carlhuda 已提交
67
    #
68
    #   resources :users
C
Carlhuda 已提交
69 70 71 72
    #
    # 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
73
    # you can do that by including Rails.application.routes.url_helpers in your class:
C
Carlhuda 已提交
74 75
    #
    #   class User < ActiveRecord::Base
76
    #     include Rails.application.routes.url_helpers
C
Carlhuda 已提交
77 78 79 80 81 82 83 84 85 86
    #
    #     def base_uri
    #       user_path(self)
    #     end
    #   end
    #
    #   User.find(1).base_uri # => "/users/1"
    #
    module UrlFor
      extend ActiveSupport::Concern
87
      include PolymorphicRoutes
C
Carlhuda 已提交
88 89

      included do
90 91 92 93 94
        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
95
            mattr_writer :default_url_options
96
          end
C
Carlhuda 已提交
97

98
          self.default_url_options = {}
99
        end
100

101
        include(*_url_for_modules) if respond_to?(:_url_for_modules)
102 103
      end

104 105 106 107 108
      def initialize(*)
        @_routes = nil
        super
      end

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

      # Generate a url based on the options provided, default_url_options and the
117
      # routes defined in routes.rb. The following options are supported:
C
Carlhuda 已提交
118 119 120 121 122 123
      #
      # * <tt>:only_path</tt> - If true, the relative url is returned. Defaults to +false+.
      # * <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+.
124 125
      # * <tt>:subdomain</tt> - Specifies the subdomain of the link, using the +tld_length+
      #   to split the subdomain from the host.
126 127 128
      #   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 已提交
129 130 131
      # * <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 已提交
132 133 134
      # * <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/"
135
      # * <tt>:script_name</tt> - Specifies application path relative to domain root. If provided, prepends application path.
C
Carlhuda 已提交
136 137 138 139
      #
      # Any other key (<tt>:controller</tt>, <tt>:action</tt>, etc.) given to
      # +url_for+ is forwarded to the Routes module.
      #
A
AvnerCohen 已提交
140
      #    url_for controller: 'tasks', action: 'testing', host: 'somehost.org', port: '8080'
V
Vijay Dev 已提交
141
      #    # => 'http://somehost.org:8080/tasks/testing'
A
AvnerCohen 已提交
142
      #    url_for controller: 'tasks', action: 'testing', host: 'somehost.org', anchor: 'ok', only_path: true
V
Vijay Dev 已提交
143
      #    # => '/tasks/testing#ok'
A
AvnerCohen 已提交
144
      #    url_for controller: 'tasks', action: 'testing', trailing_slash: true
V
Vijay Dev 已提交
145
      #    # => 'http://somehost.org/tasks/testing/'
A
AvnerCohen 已提交
146
      #    url_for controller: 'tasks', action: 'testing', host: 'somehost.org', number: '33'
V
Vijay Dev 已提交
147
      #    # => 'http://somehost.org/tasks/testing?number=33'
148 149 150 151
      #    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'
152 153 154 155 156 157 158 159 160 161 162 163 164 165
      #
      # 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
      # through `GET /users/1`:
      #
      #   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 已提交
166 167
      def url_for(options = nil)
        case options
168
        when nil
169
          _routes.url_for(url_options.symbolize_keys)
170
        when Hash
171 172 173
          route_name = options.delete :use_route
          _routes.url_for(options.symbolize_keys.reverse_merge!(url_options),
                         route_name)
174
        when ActionController::Parameters
175
          unless options.permitted?
176
            raise ArgumentError.new(ActionDispatch::Routing::INSECURE_URL_PARAMETERS_MESSAGE)
177
          end
178
          route_name = options.delete :use_route
179
          _routes.url_for(options.to_h.symbolize_keys.
180
                          reverse_merge!(url_options), route_name)
P
Piotr Sarnacki 已提交
181 182
        when String
          options
183 184
        when Symbol
          HelperMethodBuilder.url.handle_string_call self, options
185
        when Array
186 187
          components = options.dup
          polymorphic_url(components, components.extract_options!)
188 189
        when Class
          HelperMethodBuilder.url.handle_class_call self, options
190
        else
191
          HelperMethodBuilder.url.handle_model_call self, options
C
Carlhuda 已提交
192 193
        end
      end
194

195
      protected
196

197
      def optimize_routes_generation?
A
Aaron Patterson 已提交
198
        _routes.optimize_routes_generation? && default_url_options.empty?
J
José Valim 已提交
199 200
      end

201 202 203 204 205 206 207 208 209 210
      def _with_routes(routes)
        old_routes, @_routes = @_routes, routes
        yield
      ensure
        @_routes = old_routes
      end

      def _routes_context
        self
      end
C
Carlhuda 已提交
211 212
    end
  end
213
end