aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller/url_for.rb
blob: d2245d0b0decebd7ed7e3cac73f54eee6c14fe1a (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
# Includes #url_for into the host class (e.g. an abstract controller or mailer). The class
# has to provide a RouteSet by implementing the #_routes methods. Otherwise, an exception
# will be raised.
#
# Note that this module is completely decoupled from HTTP - the only requirement is a valid 
# #_routes implementation.
module AbstractController
  module UrlFor
    extend ActiveSupport::Concern
    include ActionDispatch::Routing::UrlFor

    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 _routes
        nil
      end

      def action_methods
        @action_methods ||= begin
          if _routes
            super - _routes.named_routes.helper_names
          else
            super
          end
        end
      end
    end
  end
end