omg-actionpack 8.0.0.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +129 -0
- data/MIT-LICENSE +21 -0
- data/README.rdoc +57 -0
- data/lib/abstract_controller/asset_paths.rb +14 -0
- data/lib/abstract_controller/base.rb +299 -0
- data/lib/abstract_controller/caching/fragments.rb +149 -0
- data/lib/abstract_controller/caching.rb +68 -0
- data/lib/abstract_controller/callbacks.rb +265 -0
- data/lib/abstract_controller/collector.rb +44 -0
- data/lib/abstract_controller/deprecator.rb +9 -0
- data/lib/abstract_controller/error.rb +8 -0
- data/lib/abstract_controller/helpers.rb +243 -0
- data/lib/abstract_controller/logger.rb +16 -0
- data/lib/abstract_controller/railties/routes_helpers.rb +25 -0
- data/lib/abstract_controller/rendering.rb +126 -0
- data/lib/abstract_controller/translation.rb +42 -0
- data/lib/abstract_controller/url_for.rb +37 -0
- data/lib/abstract_controller.rb +36 -0
- data/lib/action_controller/api/api_rendering.rb +18 -0
- data/lib/action_controller/api.rb +155 -0
- data/lib/action_controller/base.rb +332 -0
- data/lib/action_controller/caching.rb +49 -0
- data/lib/action_controller/deprecator.rb +9 -0
- data/lib/action_controller/form_builder.rb +55 -0
- data/lib/action_controller/log_subscriber.rb +96 -0
- data/lib/action_controller/metal/allow_browser.rb +123 -0
- data/lib/action_controller/metal/basic_implicit_render.rb +17 -0
- data/lib/action_controller/metal/conditional_get.rb +341 -0
- data/lib/action_controller/metal/content_security_policy.rb +86 -0
- data/lib/action_controller/metal/cookies.rb +20 -0
- data/lib/action_controller/metal/data_streaming.rb +154 -0
- data/lib/action_controller/metal/default_headers.rb +21 -0
- data/lib/action_controller/metal/etag_with_flash.rb +22 -0
- data/lib/action_controller/metal/etag_with_template_digest.rb +59 -0
- data/lib/action_controller/metal/exceptions.rb +106 -0
- data/lib/action_controller/metal/flash.rb +67 -0
- data/lib/action_controller/metal/head.rb +67 -0
- data/lib/action_controller/metal/helpers.rb +129 -0
- data/lib/action_controller/metal/http_authentication.rb +565 -0
- data/lib/action_controller/metal/implicit_render.rb +67 -0
- data/lib/action_controller/metal/instrumentation.rb +120 -0
- data/lib/action_controller/metal/live.rb +398 -0
- data/lib/action_controller/metal/logging.rb +22 -0
- data/lib/action_controller/metal/mime_responds.rb +337 -0
- data/lib/action_controller/metal/parameter_encoding.rb +84 -0
- data/lib/action_controller/metal/params_wrapper.rb +312 -0
- data/lib/action_controller/metal/permissions_policy.rb +38 -0
- data/lib/action_controller/metal/rate_limiting.rb +62 -0
- data/lib/action_controller/metal/redirecting.rb +251 -0
- data/lib/action_controller/metal/renderers.rb +181 -0
- data/lib/action_controller/metal/rendering.rb +260 -0
- data/lib/action_controller/metal/request_forgery_protection.rb +667 -0
- data/lib/action_controller/metal/rescue.rb +33 -0
- data/lib/action_controller/metal/streaming.rb +183 -0
- data/lib/action_controller/metal/strong_parameters.rb +1546 -0
- data/lib/action_controller/metal/testing.rb +25 -0
- data/lib/action_controller/metal/url_for.rb +65 -0
- data/lib/action_controller/metal.rb +339 -0
- data/lib/action_controller/railtie.rb +149 -0
- data/lib/action_controller/railties/helpers.rb +26 -0
- data/lib/action_controller/renderer.rb +161 -0
- data/lib/action_controller/template_assertions.rb +13 -0
- data/lib/action_controller/test_case.rb +691 -0
- data/lib/action_controller.rb +80 -0
- data/lib/action_dispatch/constants.rb +34 -0
- data/lib/action_dispatch/deprecator.rb +9 -0
- data/lib/action_dispatch/http/cache.rb +249 -0
- data/lib/action_dispatch/http/content_disposition.rb +47 -0
- data/lib/action_dispatch/http/content_security_policy.rb +365 -0
- data/lib/action_dispatch/http/filter_parameters.rb +80 -0
- data/lib/action_dispatch/http/filter_redirect.rb +50 -0
- data/lib/action_dispatch/http/headers.rb +134 -0
- data/lib/action_dispatch/http/mime_negotiation.rb +187 -0
- data/lib/action_dispatch/http/mime_type.rb +389 -0
- data/lib/action_dispatch/http/mime_types.rb +54 -0
- data/lib/action_dispatch/http/parameters.rb +119 -0
- data/lib/action_dispatch/http/permissions_policy.rb +189 -0
- data/lib/action_dispatch/http/rack_cache.rb +67 -0
- data/lib/action_dispatch/http/request.rb +498 -0
- data/lib/action_dispatch/http/response.rb +556 -0
- data/lib/action_dispatch/http/upload.rb +107 -0
- data/lib/action_dispatch/http/url.rb +344 -0
- data/lib/action_dispatch/journey/formatter.rb +226 -0
- data/lib/action_dispatch/journey/gtg/builder.rb +149 -0
- data/lib/action_dispatch/journey/gtg/simulator.rb +50 -0
- data/lib/action_dispatch/journey/gtg/transition_table.rb +217 -0
- data/lib/action_dispatch/journey/nfa/dot.rb +27 -0
- data/lib/action_dispatch/journey/nodes/node.rb +208 -0
- data/lib/action_dispatch/journey/parser.rb +103 -0
- data/lib/action_dispatch/journey/path/pattern.rb +209 -0
- data/lib/action_dispatch/journey/route.rb +189 -0
- data/lib/action_dispatch/journey/router/utils.rb +105 -0
- data/lib/action_dispatch/journey/router.rb +151 -0
- data/lib/action_dispatch/journey/routes.rb +82 -0
- data/lib/action_dispatch/journey/scanner.rb +70 -0
- data/lib/action_dispatch/journey/visitors.rb +267 -0
- data/lib/action_dispatch/journey/visualizer/fsm.css +30 -0
- data/lib/action_dispatch/journey/visualizer/fsm.js +159 -0
- data/lib/action_dispatch/journey/visualizer/index.html.erb +52 -0
- data/lib/action_dispatch/journey.rb +7 -0
- data/lib/action_dispatch/log_subscriber.rb +25 -0
- data/lib/action_dispatch/middleware/actionable_exceptions.rb +46 -0
- data/lib/action_dispatch/middleware/assume_ssl.rb +27 -0
- data/lib/action_dispatch/middleware/callbacks.rb +38 -0
- data/lib/action_dispatch/middleware/cookies.rb +719 -0
- data/lib/action_dispatch/middleware/debug_exceptions.rb +206 -0
- data/lib/action_dispatch/middleware/debug_locks.rb +129 -0
- data/lib/action_dispatch/middleware/debug_view.rb +73 -0
- data/lib/action_dispatch/middleware/exception_wrapper.rb +350 -0
- data/lib/action_dispatch/middleware/executor.rb +32 -0
- data/lib/action_dispatch/middleware/flash.rb +318 -0
- data/lib/action_dispatch/middleware/host_authorization.rb +171 -0
- data/lib/action_dispatch/middleware/public_exceptions.rb +64 -0
- data/lib/action_dispatch/middleware/reloader.rb +16 -0
- data/lib/action_dispatch/middleware/remote_ip.rb +199 -0
- data/lib/action_dispatch/middleware/request_id.rb +50 -0
- data/lib/action_dispatch/middleware/server_timing.rb +78 -0
- data/lib/action_dispatch/middleware/session/abstract_store.rb +112 -0
- data/lib/action_dispatch/middleware/session/cache_store.rb +66 -0
- data/lib/action_dispatch/middleware/session/cookie_store.rb +129 -0
- data/lib/action_dispatch/middleware/session/mem_cache_store.rb +34 -0
- data/lib/action_dispatch/middleware/show_exceptions.rb +88 -0
- data/lib/action_dispatch/middleware/ssl.rb +180 -0
- data/lib/action_dispatch/middleware/stack.rb +194 -0
- data/lib/action_dispatch/middleware/static.rb +192 -0
- data/lib/action_dispatch/middleware/templates/rescues/_actions.html.erb +13 -0
- data/lib/action_dispatch/middleware/templates/rescues/_actions.text.erb +0 -0
- data/lib/action_dispatch/middleware/templates/rescues/_message_and_suggestions.html.erb +22 -0
- data/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb +17 -0
- data/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb +23 -0
- data/lib/action_dispatch/middleware/templates/rescues/_source.html.erb +36 -0
- data/lib/action_dispatch/middleware/templates/rescues/_source.text.erb +8 -0
- data/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb +62 -0
- data/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb +9 -0
- data/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb +12 -0
- data/lib/action_dispatch/middleware/templates/rescues/blocked_host.text.erb +9 -0
- data/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +35 -0
- data/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb +9 -0
- data/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb +24 -0
- data/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb +16 -0
- data/lib/action_dispatch/middleware/templates/rescues/layout.erb +284 -0
- data/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.html.erb +23 -0
- data/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.text.erb +3 -0
- data/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +11 -0
- data/lib/action_dispatch/middleware/templates/rescues/missing_template.text.erb +3 -0
- data/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +32 -0
- data/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb +11 -0
- data/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +20 -0
- data/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb +7 -0
- data/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +6 -0
- data/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb +3 -0
- data/lib/action_dispatch/middleware/templates/routes/_route.html.erb +19 -0
- data/lib/action_dispatch/middleware/templates/routes/_table.html.erb +232 -0
- data/lib/action_dispatch/railtie.rb +77 -0
- data/lib/action_dispatch/request/session.rb +283 -0
- data/lib/action_dispatch/request/utils.rb +109 -0
- data/lib/action_dispatch/routing/endpoint.rb +19 -0
- data/lib/action_dispatch/routing/inspector.rb +323 -0
- data/lib/action_dispatch/routing/mapper.rb +2372 -0
- data/lib/action_dispatch/routing/polymorphic_routes.rb +363 -0
- data/lib/action_dispatch/routing/redirection.rb +218 -0
- data/lib/action_dispatch/routing/route_set.rb +958 -0
- data/lib/action_dispatch/routing/routes_proxy.rb +66 -0
- data/lib/action_dispatch/routing/url_for.rb +244 -0
- data/lib/action_dispatch/routing.rb +262 -0
- data/lib/action_dispatch/system_test_case.rb +206 -0
- data/lib/action_dispatch/system_testing/browser.rb +75 -0
- data/lib/action_dispatch/system_testing/driver.rb +85 -0
- data/lib/action_dispatch/system_testing/server.rb +33 -0
- data/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +164 -0
- data/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb +23 -0
- data/lib/action_dispatch/testing/assertion_response.rb +48 -0
- data/lib/action_dispatch/testing/assertions/response.rb +114 -0
- data/lib/action_dispatch/testing/assertions/routing.rb +343 -0
- data/lib/action_dispatch/testing/assertions.rb +25 -0
- data/lib/action_dispatch/testing/integration.rb +694 -0
- data/lib/action_dispatch/testing/request_encoder.rb +60 -0
- data/lib/action_dispatch/testing/test_helpers/page_dump_helper.rb +35 -0
- data/lib/action_dispatch/testing/test_process.rb +57 -0
- data/lib/action_dispatch/testing/test_request.rb +73 -0
- data/lib/action_dispatch/testing/test_response.rb +58 -0
- data/lib/action_dispatch.rb +147 -0
- data/lib/action_pack/gem_version.rb +19 -0
- data/lib/action_pack/version.rb +12 -0
- data/lib/action_pack.rb +27 -0
- metadata +375 -0
@@ -0,0 +1,126 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# :markup: markdown
|
4
|
+
|
5
|
+
require "abstract_controller/error"
|
6
|
+
require "action_view"
|
7
|
+
require "action_view/view_paths"
|
8
|
+
require "set"
|
9
|
+
|
10
|
+
module AbstractController
|
11
|
+
class DoubleRenderError < Error
|
12
|
+
DEFAULT_MESSAGE = "Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like \"redirect_to(...); return\"."
|
13
|
+
|
14
|
+
def initialize(message = nil)
|
15
|
+
super(message || DEFAULT_MESSAGE)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
module Rendering
|
20
|
+
extend ActiveSupport::Concern
|
21
|
+
include ActionView::ViewPaths
|
22
|
+
|
23
|
+
# Normalizes arguments and options, and then delegates to render_to_body and
|
24
|
+
# sticks the result in `self.response_body`.
|
25
|
+
#
|
26
|
+
# Supported options depend on the underlying `render_to_body` implementation.
|
27
|
+
def render(*args, &block)
|
28
|
+
options = _normalize_render(*args, &block)
|
29
|
+
rendered_body = render_to_body(options)
|
30
|
+
if options[:html]
|
31
|
+
_set_html_content_type
|
32
|
+
else
|
33
|
+
_set_rendered_content_type rendered_format
|
34
|
+
end
|
35
|
+
_set_vary_header
|
36
|
+
self.response_body = rendered_body
|
37
|
+
end
|
38
|
+
|
39
|
+
# Similar to #render, but only returns the rendered template as a string,
|
40
|
+
# instead of setting `self.response_body`.
|
41
|
+
#
|
42
|
+
# If a component extends the semantics of `response_body` (as ActionController
|
43
|
+
# extends it to be anything that responds to the method each), this method needs
|
44
|
+
# to be overridden in order to still return a string.
|
45
|
+
def render_to_string(*args, &block)
|
46
|
+
options = _normalize_render(*args, &block)
|
47
|
+
render_to_body(options)
|
48
|
+
end
|
49
|
+
|
50
|
+
# Performs the actual template rendering.
|
51
|
+
def render_to_body(options = {})
|
52
|
+
end
|
53
|
+
|
54
|
+
# Returns `Content-Type` of rendered content.
|
55
|
+
def rendered_format
|
56
|
+
Mime[:text]
|
57
|
+
end
|
58
|
+
|
59
|
+
DEFAULT_PROTECTED_INSTANCE_VARIABLES = %i(@_action_name @_response_body @_formats @_prefixes)
|
60
|
+
|
61
|
+
# This method should return a hash with assigns. You can overwrite this
|
62
|
+
# configuration per controller.
|
63
|
+
def view_assigns
|
64
|
+
variables = instance_variables - _protected_ivars
|
65
|
+
|
66
|
+
variables.each_with_object({}) do |name, hash|
|
67
|
+
hash[name.slice(1, name.length)] = instance_variable_get(name)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
private
|
72
|
+
# Normalize args by converting `render "foo"` to `render action: "foo"` and
|
73
|
+
# `render "foo/bar"` to `render file: "foo/bar"`.
|
74
|
+
def _normalize_args(action = nil, options = {}) # :doc:
|
75
|
+
if action.respond_to?(:permitted?)
|
76
|
+
if action.permitted?
|
77
|
+
action
|
78
|
+
else
|
79
|
+
raise ArgumentError, "render parameters are not permitted"
|
80
|
+
end
|
81
|
+
elsif action.is_a?(Hash)
|
82
|
+
action
|
83
|
+
else
|
84
|
+
options
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
# Normalize options.
|
89
|
+
def _normalize_options(options) # :doc:
|
90
|
+
options
|
91
|
+
end
|
92
|
+
|
93
|
+
# Process extra options.
|
94
|
+
def _process_options(options) # :doc:
|
95
|
+
options
|
96
|
+
end
|
97
|
+
|
98
|
+
# Process the rendered format.
|
99
|
+
def _process_format(format) # :nodoc:
|
100
|
+
end
|
101
|
+
|
102
|
+
def _process_variant(options)
|
103
|
+
end
|
104
|
+
|
105
|
+
def _set_html_content_type # :nodoc:
|
106
|
+
end
|
107
|
+
|
108
|
+
def _set_vary_header # :nodoc:
|
109
|
+
end
|
110
|
+
|
111
|
+
def _set_rendered_content_type(format) # :nodoc:
|
112
|
+
end
|
113
|
+
|
114
|
+
# Normalize args and options.
|
115
|
+
def _normalize_render(*args, &block) # :nodoc:
|
116
|
+
options = _normalize_args(*args, &block)
|
117
|
+
_process_variant(options)
|
118
|
+
_normalize_options(options)
|
119
|
+
options
|
120
|
+
end
|
121
|
+
|
122
|
+
def _protected_ivars
|
123
|
+
DEFAULT_PROTECTED_INSTANCE_VARIABLES
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# :markup: markdown
|
4
|
+
|
5
|
+
require "active_support/html_safe_translation"
|
6
|
+
|
7
|
+
module AbstractController
|
8
|
+
module Translation
|
9
|
+
# Delegates to `I18n.translate`.
|
10
|
+
#
|
11
|
+
# When the given key starts with a period, it will be scoped by the current
|
12
|
+
# controller and action. So if you call `translate(".foo")` from
|
13
|
+
# `PeopleController#index`, it will convert the call to
|
14
|
+
# `I18n.translate("people.index.foo")`. This makes it less repetitive to
|
15
|
+
# translate many keys within the same controller / action and gives you a simple
|
16
|
+
# framework for scoping them consistently.
|
17
|
+
def translate(key, **options)
|
18
|
+
if key&.start_with?(".")
|
19
|
+
path = controller_path.tr("/", ".")
|
20
|
+
defaults = [:"#{path}#{key}"]
|
21
|
+
defaults << options[:default] if options[:default]
|
22
|
+
options[:default] = defaults.flatten
|
23
|
+
key = "#{path}.#{action_name}#{key}"
|
24
|
+
end
|
25
|
+
|
26
|
+
if options[:default] && ActiveSupport::HtmlSafeTranslation.html_safe_translation_key?(key)
|
27
|
+
options[:default] = Array(options[:default]).map do |value|
|
28
|
+
value.is_a?(String) ? ERB::Util.html_escape(value) : value
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
ActiveSupport::HtmlSafeTranslation.translate(key, **options)
|
33
|
+
end
|
34
|
+
alias :t :translate
|
35
|
+
|
36
|
+
# Delegates to `I18n.localize`.
|
37
|
+
def localize(object, **options)
|
38
|
+
I18n.localize(object, **options)
|
39
|
+
end
|
40
|
+
alias :l :localize
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# :markup: markdown
|
4
|
+
|
5
|
+
module AbstractController
|
6
|
+
# # URL For
|
7
|
+
#
|
8
|
+
# Includes `url_for` into the host class (e.g. an abstract controller or
|
9
|
+
# mailer). The class has to provide a `RouteSet` by implementing the `_routes`
|
10
|
+
# methods. Otherwise, an exception will be raised.
|
11
|
+
#
|
12
|
+
# Note that this module is completely decoupled from HTTP - the only requirement
|
13
|
+
# is a valid `_routes` implementation.
|
14
|
+
module UrlFor
|
15
|
+
extend ActiveSupport::Concern
|
16
|
+
include ActionDispatch::Routing::UrlFor
|
17
|
+
|
18
|
+
def _routes
|
19
|
+
raise "In order to use #url_for, you must include routing helpers explicitly. " \
|
20
|
+
"For instance, `include Rails.application.routes.url_helpers`."
|
21
|
+
end
|
22
|
+
|
23
|
+
module ClassMethods
|
24
|
+
def _routes
|
25
|
+
nil
|
26
|
+
end
|
27
|
+
|
28
|
+
def action_methods
|
29
|
+
@action_methods ||= if _routes
|
30
|
+
super - _routes.named_routes.helper_names
|
31
|
+
else
|
32
|
+
super
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# :markup: markdown
|
4
|
+
|
5
|
+
require "action_pack"
|
6
|
+
require "active_support"
|
7
|
+
require "active_support/rails"
|
8
|
+
require "active_support/i18n"
|
9
|
+
require "abstract_controller/deprecator"
|
10
|
+
|
11
|
+
module AbstractController
|
12
|
+
extend ActiveSupport::Autoload
|
13
|
+
|
14
|
+
autoload :ActionNotFound, "abstract_controller/base"
|
15
|
+
autoload :Base
|
16
|
+
autoload :Caching
|
17
|
+
autoload :Callbacks
|
18
|
+
autoload :Collector
|
19
|
+
autoload :DoubleRenderError, "abstract_controller/rendering"
|
20
|
+
autoload :Helpers
|
21
|
+
autoload :Logger
|
22
|
+
autoload :Rendering
|
23
|
+
autoload :Translation
|
24
|
+
autoload :AssetPaths
|
25
|
+
autoload :UrlFor
|
26
|
+
|
27
|
+
def self.eager_load!
|
28
|
+
super
|
29
|
+
AbstractController::Caching.eager_load!
|
30
|
+
AbstractController::Base.descendants.each do |controller|
|
31
|
+
unless controller.abstract?
|
32
|
+
controller.eager_load!
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# :markup: markdown
|
4
|
+
|
5
|
+
module ActionController
|
6
|
+
module ApiRendering
|
7
|
+
extend ActiveSupport::Concern
|
8
|
+
|
9
|
+
included do
|
10
|
+
include Rendering
|
11
|
+
end
|
12
|
+
|
13
|
+
def render_to_body(options = {})
|
14
|
+
_process_options(options)
|
15
|
+
super
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,155 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# :markup: markdown
|
4
|
+
|
5
|
+
require "action_view"
|
6
|
+
require "action_controller"
|
7
|
+
require "action_controller/log_subscriber"
|
8
|
+
|
9
|
+
module ActionController
|
10
|
+
# # Action Controller API
|
11
|
+
#
|
12
|
+
# API Controller is a lightweight version of ActionController::Base, created for
|
13
|
+
# applications that don't require all functionalities that a complete Rails
|
14
|
+
# controller provides, allowing you to create controllers with just the features
|
15
|
+
# that you need for API only applications.
|
16
|
+
#
|
17
|
+
# An API Controller is different from a normal controller in the sense that by
|
18
|
+
# default it doesn't include a number of features that are usually required by
|
19
|
+
# browser access only: layouts and templates rendering, flash, assets, and so
|
20
|
+
# on. This makes the entire controller stack thinner, suitable for API
|
21
|
+
# applications. It doesn't mean you won't have such features if you need them:
|
22
|
+
# they're all available for you to include in your application, they're just not
|
23
|
+
# part of the default API controller stack.
|
24
|
+
#
|
25
|
+
# Normally, `ApplicationController` is the only controller that inherits from
|
26
|
+
# `ActionController::API`. All other controllers in turn inherit from
|
27
|
+
# `ApplicationController`.
|
28
|
+
#
|
29
|
+
# A sample controller could look like this:
|
30
|
+
#
|
31
|
+
# class PostsController < ApplicationController
|
32
|
+
# def index
|
33
|
+
# posts = Post.all
|
34
|
+
# render json: posts
|
35
|
+
# end
|
36
|
+
# end
|
37
|
+
#
|
38
|
+
# Request, response, and parameters objects all work the exact same way as
|
39
|
+
# ActionController::Base.
|
40
|
+
#
|
41
|
+
# ## Renders
|
42
|
+
#
|
43
|
+
# The default API Controller stack includes all renderers, which means you can
|
44
|
+
# use `render :json` and siblings freely in your controllers. Keep in mind that
|
45
|
+
# templates are not going to be rendered, so you need to ensure your controller
|
46
|
+
# is calling either `render` or `redirect_to` in all actions, otherwise it will
|
47
|
+
# return `204 No Content`.
|
48
|
+
#
|
49
|
+
# def show
|
50
|
+
# post = Post.find(params[:id])
|
51
|
+
# render json: post
|
52
|
+
# end
|
53
|
+
#
|
54
|
+
# ## Redirects
|
55
|
+
#
|
56
|
+
# Redirects are used to move from one action to another. You can use the
|
57
|
+
# `redirect_to` method in your controllers in the same way as in
|
58
|
+
# ActionController::Base. For example:
|
59
|
+
#
|
60
|
+
# def create
|
61
|
+
# redirect_to root_url and return if not_authorized?
|
62
|
+
# # do stuff here
|
63
|
+
# end
|
64
|
+
#
|
65
|
+
# ## Adding New Behavior
|
66
|
+
#
|
67
|
+
# In some scenarios you may want to add back some functionality provided by
|
68
|
+
# ActionController::Base that is not present by default in
|
69
|
+
# `ActionController::API`, for instance `MimeResponds`. This module gives you
|
70
|
+
# the `respond_to` method. Adding it is quite simple, you just need to include
|
71
|
+
# the module in a specific controller or in `ApplicationController` in case you
|
72
|
+
# want it available in your entire application:
|
73
|
+
#
|
74
|
+
# class ApplicationController < ActionController::API
|
75
|
+
# include ActionController::MimeResponds
|
76
|
+
# end
|
77
|
+
#
|
78
|
+
# class PostsController < ApplicationController
|
79
|
+
# def index
|
80
|
+
# posts = Post.all
|
81
|
+
#
|
82
|
+
# respond_to do |format|
|
83
|
+
# format.json { render json: posts }
|
84
|
+
# format.xml { render xml: posts }
|
85
|
+
# end
|
86
|
+
# end
|
87
|
+
# end
|
88
|
+
#
|
89
|
+
# Make sure to check the modules included in ActionController::Base if you want
|
90
|
+
# to use any other functionality that is not provided by `ActionController::API`
|
91
|
+
# out of the box.
|
92
|
+
class API < Metal
|
93
|
+
abstract!
|
94
|
+
|
95
|
+
# Shortcut helper that returns all the ActionController::API modules except the
|
96
|
+
# ones passed as arguments:
|
97
|
+
#
|
98
|
+
# class MyAPIBaseController < ActionController::Metal
|
99
|
+
# ActionController::API.without_modules(:UrlFor).each do |left|
|
100
|
+
# include left
|
101
|
+
# end
|
102
|
+
# end
|
103
|
+
#
|
104
|
+
# This gives better control over what you want to exclude and makes it easier to
|
105
|
+
# create an API controller class, instead of listing the modules required
|
106
|
+
# manually.
|
107
|
+
def self.without_modules(*modules)
|
108
|
+
modules = modules.map do |m|
|
109
|
+
m.is_a?(Symbol) ? ActionController.const_get(m) : m
|
110
|
+
end
|
111
|
+
|
112
|
+
MODULES - modules
|
113
|
+
end
|
114
|
+
|
115
|
+
MODULES = [
|
116
|
+
AbstractController::Rendering,
|
117
|
+
|
118
|
+
UrlFor,
|
119
|
+
Redirecting,
|
120
|
+
ApiRendering,
|
121
|
+
Renderers::All,
|
122
|
+
ConditionalGet,
|
123
|
+
BasicImplicitRender,
|
124
|
+
StrongParameters,
|
125
|
+
RateLimiting,
|
126
|
+
Caching,
|
127
|
+
|
128
|
+
DataStreaming,
|
129
|
+
DefaultHeaders,
|
130
|
+
Logging,
|
131
|
+
|
132
|
+
# Before callbacks should also be executed as early as possible, so also include
|
133
|
+
# them at the bottom.
|
134
|
+
AbstractController::Callbacks,
|
135
|
+
|
136
|
+
# Append rescue at the bottom to wrap as much as possible.
|
137
|
+
Rescue,
|
138
|
+
|
139
|
+
# Add instrumentations hooks at the bottom, to ensure they instrument all the
|
140
|
+
# methods properly.
|
141
|
+
Instrumentation,
|
142
|
+
|
143
|
+
# Params wrapper should come before instrumentation so they are properly showed
|
144
|
+
# in logs
|
145
|
+
ParamsWrapper
|
146
|
+
]
|
147
|
+
|
148
|
+
MODULES.each do |mod|
|
149
|
+
include mod
|
150
|
+
end
|
151
|
+
|
152
|
+
ActiveSupport.run_load_hooks(:action_controller_api, self)
|
153
|
+
ActiveSupport.run_load_hooks(:action_controller, self)
|
154
|
+
end
|
155
|
+
end
|