actionpack 7.0.8.1 → 7.2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +94 -500
- data/MIT-LICENSE +1 -1
- data/README.rdoc +2 -2
- data/lib/abstract_controller/asset_paths.rb +2 -0
- data/lib/abstract_controller/base.rb +119 -106
- data/lib/abstract_controller/caching/fragments.rb +51 -52
- data/lib/abstract_controller/caching.rb +2 -0
- data/lib/abstract_controller/callbacks.rb +94 -67
- data/lib/abstract_controller/collector.rb +6 -6
- data/lib/abstract_controller/deprecator.rb +9 -0
- data/lib/abstract_controller/error.rb +2 -0
- data/lib/abstract_controller/helpers.rb +121 -91
- data/lib/abstract_controller/logger.rb +2 -0
- data/lib/abstract_controller/railties/routes_helpers.rb +3 -16
- data/lib/abstract_controller/rendering.rb +14 -13
- data/lib/abstract_controller/translation.rb +12 -30
- data/lib/abstract_controller/url_for.rb +9 -5
- data/lib/abstract_controller.rb +8 -0
- data/lib/action_controller/api/api_rendering.rb +2 -0
- data/lib/action_controller/api.rb +78 -73
- data/lib/action_controller/base.rb +199 -141
- data/lib/action_controller/caching.rb +16 -11
- data/lib/action_controller/deprecator.rb +9 -0
- data/lib/action_controller/form_builder.rb +21 -16
- data/lib/action_controller/log_subscriber.rb +19 -5
- data/lib/action_controller/metal/allow_browser.rb +123 -0
- data/lib/action_controller/metal/basic_implicit_render.rb +2 -0
- data/lib/action_controller/metal/conditional_get.rb +187 -174
- data/lib/action_controller/metal/content_security_policy.rb +26 -25
- data/lib/action_controller/metal/cookies.rb +4 -2
- data/lib/action_controller/metal/data_streaming.rb +65 -54
- data/lib/action_controller/metal/default_headers.rb +6 -2
- data/lib/action_controller/metal/etag_with_flash.rb +4 -0
- data/lib/action_controller/metal/etag_with_template_digest.rb +18 -14
- data/lib/action_controller/metal/exceptions.rb +19 -9
- data/lib/action_controller/metal/flash.rb +12 -10
- data/lib/action_controller/metal/head.rb +20 -16
- data/lib/action_controller/metal/helpers.rb +64 -67
- data/lib/action_controller/metal/http_authentication.rb +214 -200
- data/lib/action_controller/metal/implicit_render.rb +21 -17
- data/lib/action_controller/metal/instrumentation.rb +22 -12
- data/lib/action_controller/metal/live.rb +125 -92
- data/lib/action_controller/metal/logging.rb +6 -4
- data/lib/action_controller/metal/mime_responds.rb +151 -142
- data/lib/action_controller/metal/parameter_encoding.rb +34 -32
- data/lib/action_controller/metal/params_wrapper.rb +58 -58
- data/lib/action_controller/metal/permissions_policy.rb +14 -13
- data/lib/action_controller/metal/rate_limiting.rb +62 -0
- data/lib/action_controller/metal/redirecting.rb +110 -84
- data/lib/action_controller/metal/renderers.rb +50 -49
- data/lib/action_controller/metal/rendering.rb +103 -82
- data/lib/action_controller/metal/request_forgery_protection.rb +279 -161
- data/lib/action_controller/metal/rescue.rb +12 -8
- data/lib/action_controller/metal/streaming.rb +174 -132
- data/lib/action_controller/metal/strong_parameters.rb +598 -473
- data/lib/action_controller/metal/testing.rb +2 -0
- data/lib/action_controller/metal/url_for.rb +23 -14
- data/lib/action_controller/metal.rb +145 -61
- data/lib/action_controller/railtie.rb +25 -9
- data/lib/action_controller/railties/helpers.rb +2 -0
- data/lib/action_controller/renderer.rb +105 -66
- data/lib/action_controller/template_assertions.rb +4 -2
- data/lib/action_controller/test_case.rb +157 -128
- data/lib/action_controller.rb +17 -3
- data/lib/action_dispatch/constants.rb +34 -0
- data/lib/action_dispatch/deprecator.rb +9 -0
- data/lib/action_dispatch/http/cache.rb +28 -29
- data/lib/action_dispatch/http/content_disposition.rb +2 -0
- data/lib/action_dispatch/http/content_security_policy.rb +69 -49
- data/lib/action_dispatch/http/filter_parameters.rb +27 -12
- data/lib/action_dispatch/http/filter_redirect.rb +22 -1
- data/lib/action_dispatch/http/headers.rb +23 -21
- data/lib/action_dispatch/http/mime_negotiation.rb +37 -48
- data/lib/action_dispatch/http/mime_type.rb +60 -30
- data/lib/action_dispatch/http/mime_types.rb +5 -1
- data/lib/action_dispatch/http/parameters.rb +12 -10
- data/lib/action_dispatch/http/permissions_policy.rb +32 -34
- data/lib/action_dispatch/http/rack_cache.rb +4 -0
- data/lib/action_dispatch/http/request.rb +132 -79
- data/lib/action_dispatch/http/response.rb +136 -103
- data/lib/action_dispatch/http/upload.rb +19 -15
- data/lib/action_dispatch/http/url.rb +75 -73
- data/lib/action_dispatch/journey/formatter.rb +19 -6
- data/lib/action_dispatch/journey/gtg/builder.rb +4 -3
- data/lib/action_dispatch/journey/gtg/simulator.rb +2 -0
- data/lib/action_dispatch/journey/gtg/transition_table.rb +10 -8
- data/lib/action_dispatch/journey/nfa/dot.rb +2 -0
- data/lib/action_dispatch/journey/nodes/node.rb +6 -5
- data/lib/action_dispatch/journey/parser.rb +4 -3
- data/lib/action_dispatch/journey/parser_extras.rb +2 -0
- data/lib/action_dispatch/journey/path/pattern.rb +18 -15
- data/lib/action_dispatch/journey/route.rb +12 -9
- data/lib/action_dispatch/journey/router/utils.rb +16 -15
- data/lib/action_dispatch/journey/router.rb +13 -10
- data/lib/action_dispatch/journey/routes.rb +6 -4
- data/lib/action_dispatch/journey/scanner.rb +4 -2
- data/lib/action_dispatch/journey/visitors.rb +2 -0
- data/lib/action_dispatch/journey.rb +2 -0
- data/lib/action_dispatch/log_subscriber.rb +25 -0
- data/lib/action_dispatch/middleware/actionable_exceptions.rb +7 -6
- data/lib/action_dispatch/middleware/assume_ssl.rb +27 -0
- data/lib/action_dispatch/middleware/callbacks.rb +4 -0
- data/lib/action_dispatch/middleware/cookies.rb +192 -194
- data/lib/action_dispatch/middleware/debug_exceptions.rb +36 -27
- data/lib/action_dispatch/middleware/debug_locks.rb +18 -13
- data/lib/action_dispatch/middleware/debug_view.rb +9 -2
- data/lib/action_dispatch/middleware/exception_wrapper.rb +181 -27
- data/lib/action_dispatch/middleware/executor.rb +9 -1
- data/lib/action_dispatch/middleware/flash.rb +65 -46
- data/lib/action_dispatch/middleware/host_authorization.rb +22 -17
- data/lib/action_dispatch/middleware/public_exceptions.rb +12 -8
- data/lib/action_dispatch/middleware/reloader.rb +9 -5
- data/lib/action_dispatch/middleware/remote_ip.rb +88 -83
- data/lib/action_dispatch/middleware/request_id.rb +15 -8
- data/lib/action_dispatch/middleware/server_timing.rb +8 -6
- data/lib/action_dispatch/middleware/session/abstract_store.rb +7 -0
- data/lib/action_dispatch/middleware/session/cache_store.rb +14 -7
- data/lib/action_dispatch/middleware/session/cookie_store.rb +32 -25
- data/lib/action_dispatch/middleware/session/mem_cache_store.rb +9 -3
- data/lib/action_dispatch/middleware/show_exceptions.rb +42 -28
- data/lib/action_dispatch/middleware/ssl.rb +60 -45
- data/lib/action_dispatch/middleware/stack.rb +15 -9
- data/lib/action_dispatch/middleware/static.rb +40 -34
- data/lib/action_dispatch/middleware/templates/rescues/_actions.html.erb +2 -2
- data/lib/action_dispatch/middleware/templates/rescues/_message_and_suggestions.html.erb +4 -4
- data/lib/action_dispatch/middleware/templates/rescues/_source.html.erb +8 -1
- data/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +7 -7
- data/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb +2 -2
- data/lib/action_dispatch/middleware/templates/rescues/layout.erb +17 -0
- data/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.html.erb +16 -12
- data/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +1 -1
- data/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +3 -3
- data/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +4 -4
- data/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +1 -1
- data/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb +1 -1
- data/lib/action_dispatch/middleware/templates/routes/_route.html.erb +3 -0
- data/lib/action_dispatch/middleware/templates/routes/_table.html.erb +47 -38
- data/lib/action_dispatch/railtie.rb +12 -4
- data/lib/action_dispatch/request/session.rb +39 -27
- data/lib/action_dispatch/request/utils.rb +10 -3
- data/lib/action_dispatch/routing/endpoint.rb +2 -0
- data/lib/action_dispatch/routing/inspector.rb +59 -9
- data/lib/action_dispatch/routing/mapper.rb +686 -639
- data/lib/action_dispatch/routing/polymorphic_routes.rb +70 -61
- data/lib/action_dispatch/routing/redirection.rb +52 -38
- data/lib/action_dispatch/routing/route_set.rb +106 -62
- data/lib/action_dispatch/routing/routes_proxy.rb +16 -19
- data/lib/action_dispatch/routing/url_for.rb +131 -122
- data/lib/action_dispatch/routing.rb +152 -150
- data/lib/action_dispatch/system_test_case.rb +91 -81
- data/lib/action_dispatch/system_testing/browser.rb +27 -19
- data/lib/action_dispatch/system_testing/driver.rb +16 -22
- data/lib/action_dispatch/system_testing/server.rb +2 -0
- data/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +53 -31
- data/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb +2 -0
- data/lib/action_dispatch/testing/assertion_response.rb +9 -7
- data/lib/action_dispatch/testing/assertions/response.rb +36 -26
- data/lib/action_dispatch/testing/assertions/routing.rb +203 -95
- data/lib/action_dispatch/testing/assertions.rb +5 -1
- data/lib/action_dispatch/testing/integration.rb +240 -229
- data/lib/action_dispatch/testing/request_encoder.rb +6 -1
- data/lib/action_dispatch/testing/test_helpers/page_dump_helper.rb +35 -0
- data/lib/action_dispatch/testing/test_process.rb +14 -9
- data/lib/action_dispatch/testing/test_request.rb +4 -2
- data/lib/action_dispatch/testing/test_response.rb +34 -19
- data/lib/action_dispatch.rb +52 -21
- data/lib/action_pack/gem_version.rb +5 -3
- data/lib/action_pack/version.rb +3 -1
- data/lib/action_pack.rb +18 -17
- metadata +91 -32
@@ -1,19 +1,23 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# :markup: markdown
|
4
|
+
|
3
5
|
module ActionController # :nodoc:
|
6
|
+
# # Action Controller Rescue
|
7
|
+
#
|
4
8
|
# This module is responsible for providing
|
5
|
-
#
|
6
|
-
#
|
7
|
-
#
|
9
|
+
# [rescue_from](rdoc-ref:ActiveSupport::Rescuable::ClassMethods#rescue_from) to
|
10
|
+
# controllers, wrapping actions to handle configured errors, and configuring
|
11
|
+
# when detailed exceptions must be shown.
|
8
12
|
module Rescue
|
9
13
|
extend ActiveSupport::Concern
|
10
14
|
include ActiveSupport::Rescuable
|
11
15
|
|
12
|
-
# Override this method if you want to customize when detailed
|
13
|
-
#
|
14
|
-
#
|
15
|
-
#
|
16
|
-
#
|
16
|
+
# Override this method if you want to customize when detailed exceptions must be
|
17
|
+
# shown. This method is only called when `consider_all_requests_local` is
|
18
|
+
# `false`. By default, it returns `false`, but someone may set it to
|
19
|
+
# `request.local?` so local requests in production still show the detailed
|
20
|
+
# exception pages.
|
17
21
|
def show_detailed_exceptions?
|
18
22
|
false
|
19
23
|
end
|
@@ -1,198 +1,240 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
# :markup: markdown
|
4
4
|
|
5
5
|
module ActionController # :nodoc:
|
6
|
+
# # Action Controller Streaming
|
7
|
+
#
|
6
8
|
# Allows views to be streamed back to the client as they are rendered.
|
7
9
|
#
|
8
|
-
# By default, Rails renders views by first rendering the template
|
9
|
-
#
|
10
|
-
#
|
10
|
+
# By default, Rails renders views by first rendering the template and then the
|
11
|
+
# layout. The response is sent to the client after the whole template is
|
12
|
+
# rendered, all queries are made, and the layout is processed.
|
11
13
|
#
|
12
14
|
# Streaming inverts the rendering flow by rendering the layout first and
|
13
|
-
#
|
14
|
-
# header of the HTML (which is usually in the layout) to be streamed back
|
15
|
-
#
|
16
|
-
#
|
15
|
+
# subsequently each part of the layout as they are processed. This allows the
|
16
|
+
# header of the HTML (which is usually in the layout) to be streamed back to
|
17
|
+
# client very quickly, enabling JavaScripts and stylesheets to be loaded earlier
|
18
|
+
# than usual.
|
19
|
+
#
|
20
|
+
# Several Rack middlewares may not work and you need to be careful when
|
21
|
+
# streaming. This is covered in more detail below, see the Streaming@Middlewares
|
22
|
+
# section.
|
23
|
+
#
|
24
|
+
# Streaming can be added to a given template easily, all you need to do is to
|
25
|
+
# pass the `:stream` option to `render`.
|
26
|
+
#
|
27
|
+
# class PostsController
|
28
|
+
# def index
|
29
|
+
# @posts = Post.all
|
30
|
+
# render stream: true
|
31
|
+
# end
|
32
|
+
# end
|
17
33
|
#
|
18
|
-
#
|
19
|
-
# Rack middlewares may not work and you need to be careful when streaming.
|
20
|
-
# Those points are going to be addressed soon.
|
34
|
+
# ## When to use streaming
|
21
35
|
#
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
36
|
+
# Streaming may be considered to be overkill for lightweight actions like `new`
|
37
|
+
# or `edit`. The real benefit of streaming is on expensive actions that, for
|
38
|
+
# example, do a lot of queries on the database.
|
25
39
|
#
|
26
|
-
#
|
27
|
-
#
|
40
|
+
# In such actions, you want to delay queries execution as much as you can. For
|
41
|
+
# example, imagine the following `dashboard` action:
|
28
42
|
#
|
29
|
-
#
|
30
|
-
# def index
|
43
|
+
# def dashboard
|
31
44
|
# @posts = Post.all
|
32
|
-
#
|
45
|
+
# @pages = Page.all
|
46
|
+
# @articles = Article.all
|
33
47
|
# end
|
34
|
-
# end
|
35
|
-
#
|
36
|
-
# == When to use streaming
|
37
|
-
#
|
38
|
-
# Streaming may be considered to be overkill for lightweight actions like
|
39
|
-
# +new+ or +edit+. The real benefit of streaming is on expensive actions
|
40
|
-
# that, for example, do a lot of queries on the database.
|
41
|
-
#
|
42
|
-
# In such actions, you want to delay queries execution as much as you can.
|
43
|
-
# For example, imagine the following +dashboard+ action:
|
44
|
-
#
|
45
|
-
# def dashboard
|
46
|
-
# @posts = Post.all
|
47
|
-
# @pages = Page.all
|
48
|
-
# @articles = Article.all
|
49
|
-
# end
|
50
48
|
#
|
51
49
|
# Most of the queries here are happening in the controller. In order to benefit
|
52
50
|
# from streaming you would want to rewrite it as:
|
53
51
|
#
|
54
|
-
#
|
55
|
-
#
|
56
|
-
#
|
57
|
-
#
|
58
|
-
#
|
59
|
-
#
|
60
|
-
#
|
52
|
+
# def dashboard
|
53
|
+
# # Allow lazy execution of the queries
|
54
|
+
# @posts = Post.all
|
55
|
+
# @pages = Page.all
|
56
|
+
# @articles = Article.all
|
57
|
+
# render stream: true
|
58
|
+
# end
|
61
59
|
#
|
62
|
-
# Notice that
|
63
|
-
#
|
60
|
+
# Notice that `:stream` only works with templates. Rendering `:json` or `:xml`
|
61
|
+
# with `:stream` won't work.
|
64
62
|
#
|
65
|
-
#
|
63
|
+
# ## Communication between layout and template
|
66
64
|
#
|
67
|
-
# When streaming, rendering happens top-down instead of inside-out.
|
68
|
-
#
|
69
|
-
#
|
65
|
+
# When streaming, rendering happens top-down instead of inside-out. Rails starts
|
66
|
+
# with the layout, and the template is rendered later, when its `yield` is
|
67
|
+
# reached.
|
70
68
|
#
|
71
|
-
# This means that, if your application currently relies on instance
|
72
|
-
#
|
73
|
-
#
|
74
|
-
#
|
75
|
-
#
|
69
|
+
# This means that, if your application currently relies on instance variables
|
70
|
+
# set in the template to be used in the layout, they won't work once you move to
|
71
|
+
# streaming. The proper way to communicate between layout and template,
|
72
|
+
# regardless of whether you use streaming or not, is by using `content_for`,
|
73
|
+
# `provide`, and `yield`.
|
76
74
|
#
|
77
|
-
# Take a simple example where the layout expects the template to tell
|
78
|
-
#
|
75
|
+
# Take a simple example where the layout expects the template to tell which
|
76
|
+
# title to use:
|
79
77
|
#
|
80
|
-
#
|
81
|
-
#
|
82
|
-
#
|
83
|
-
#
|
78
|
+
# <html>
|
79
|
+
# <head><title><%= yield :title %></title></head>
|
80
|
+
# <body><%= yield %></body>
|
81
|
+
# </html>
|
84
82
|
#
|
85
|
-
# You would use
|
83
|
+
# You would use `content_for` in your template to specify the title:
|
86
84
|
#
|
87
|
-
#
|
88
|
-
#
|
85
|
+
# <%= content_for :title, "Main" %>
|
86
|
+
# Hello
|
89
87
|
#
|
90
88
|
# And the final result would be:
|
91
89
|
#
|
92
|
-
#
|
93
|
-
#
|
94
|
-
#
|
95
|
-
#
|
90
|
+
# <html>
|
91
|
+
# <head><title>Main</title></head>
|
92
|
+
# <body>Hello</body>
|
93
|
+
# </html>
|
96
94
|
#
|
97
|
-
# However, if
|
98
|
-
#
|
99
|
-
# template:
|
95
|
+
# However, if `content_for` is called several times, the final result would have
|
96
|
+
# all calls concatenated. For instance, if we have the following template:
|
100
97
|
#
|
101
|
-
#
|
102
|
-
#
|
103
|
-
#
|
98
|
+
# <%= content_for :title, "Main" %>
|
99
|
+
# Hello
|
100
|
+
# <%= content_for :title, " page" %>
|
104
101
|
#
|
105
102
|
# The final result would be:
|
106
103
|
#
|
107
|
-
#
|
108
|
-
#
|
109
|
-
#
|
110
|
-
#
|
104
|
+
# <html>
|
105
|
+
# <head><title>Main page</title></head>
|
106
|
+
# <body>Hello</body>
|
107
|
+
# </html>
|
108
|
+
#
|
109
|
+
# This means that, if you have `yield :title` in your layout and you want to use
|
110
|
+
# streaming, you would have to render the whole template (and eventually trigger
|
111
|
+
# all queries) before streaming the title and all assets, which defeats the
|
112
|
+
# purpose of streaming. Alternatively, you can use a helper called `provide`
|
113
|
+
# that does the same as `content_for` but tells the layout to stop searching for
|
114
|
+
# other entries and continue rendering.
|
111
115
|
#
|
112
|
-
#
|
113
|
-
# and you want to use streaming, you would have to render the whole template
|
114
|
-
# (and eventually trigger all queries) before streaming the title and all
|
115
|
-
# assets, which kills the purpose of streaming. For this purpose, you can use
|
116
|
-
# a helper called +provide+ that does the same as +content_for+ but tells the
|
117
|
-
# layout to stop searching for other entries and continue rendering.
|
116
|
+
# For instance, the template above using `provide` would be:
|
118
117
|
#
|
119
|
-
#
|
118
|
+
# <%= provide :title, "Main" %>
|
119
|
+
# Hello
|
120
|
+
# <%= content_for :title, " page" %>
|
120
121
|
#
|
121
|
-
#
|
122
|
-
# Hello
|
123
|
-
# <%= content_for :title, " page" %>
|
122
|
+
# Resulting in:
|
124
123
|
#
|
125
|
-
#
|
124
|
+
# <html>
|
125
|
+
# <head><title>Main</title></head>
|
126
|
+
# <body>Hello</body>
|
127
|
+
# </html>
|
126
128
|
#
|
127
|
-
#
|
128
|
-
#
|
129
|
-
# <body>Hello</body>
|
130
|
-
# </html>
|
129
|
+
# That said, when streaming, you need to properly check your templates and
|
130
|
+
# choose when to use `provide` and `content_for`.
|
131
131
|
#
|
132
|
-
#
|
133
|
-
# and choose when to use +provide+ and +content_for+.
|
132
|
+
# See also ActionView::Helpers::CaptureHelper for more information.
|
134
133
|
#
|
135
|
-
#
|
134
|
+
# ## Headers, cookies, session, and flash
|
136
135
|
#
|
137
|
-
# When streaming, the HTTP headers are sent to the client right before
|
138
|
-
#
|
139
|
-
#
|
140
|
-
# to the client.
|
136
|
+
# When streaming, the HTTP headers are sent to the client right before it
|
137
|
+
# renders the first line. This means that, modifying headers, cookies, session
|
138
|
+
# or flash after the template starts rendering will not propagate to the client.
|
141
139
|
#
|
142
|
-
#
|
140
|
+
# ## Middlewares
|
143
141
|
#
|
144
|
-
# Middlewares that need to manipulate the body won't work with streaming.
|
145
|
-
#
|
146
|
-
#
|
147
|
-
#
|
142
|
+
# Middlewares that need to manipulate the body won't work with streaming. You
|
143
|
+
# should disable those middlewares whenever streaming in development or
|
144
|
+
# production. For instance, `Rack::Bug` won't work when streaming as it needs to
|
145
|
+
# inject contents in the HTML body.
|
148
146
|
#
|
149
|
-
# Also
|
150
|
-
#
|
151
|
-
#
|
147
|
+
# Also `Rack::Cache` won't work with streaming as it does not support streaming
|
148
|
+
# bodies yet. Whenever streaming `Cache-Control` is automatically set to
|
149
|
+
# "no-cache".
|
152
150
|
#
|
153
|
-
#
|
151
|
+
# ## Errors
|
154
152
|
#
|
155
153
|
# When it comes to streaming, exceptions get a bit more complicated. This
|
156
|
-
# happens because part of the template was already rendered and streamed to
|
157
|
-
#
|
154
|
+
# happens because part of the template was already rendered and streamed to the
|
155
|
+
# client, making it impossible to render a whole exception page.
|
158
156
|
#
|
159
|
-
# Currently, when an exception happens in development or production, Rails
|
160
|
-
#
|
157
|
+
# Currently, when an exception happens in development or production, Rails will
|
158
|
+
# automatically stream to the client:
|
161
159
|
#
|
162
|
-
#
|
160
|
+
# "><script>window.location = "/500.html"</script></html>
|
163
161
|
#
|
164
|
-
# The first two characters ("
|
165
|
-
# while rendering attributes for a given tag. You can check the real cause
|
166
|
-
#
|
162
|
+
# The first two characters (`">`) are required in case the exception happens
|
163
|
+
# while rendering attributes for a given tag. You can check the real cause for
|
164
|
+
# the exception in your logger.
|
167
165
|
#
|
168
|
-
#
|
166
|
+
# ## Web server support
|
169
167
|
#
|
170
|
-
# Not all web servers support streaming out-of-the-box. You need to check
|
171
|
-
#
|
168
|
+
# Not all web servers support streaming out-of-the-box. You need to check the
|
169
|
+
# instructions for each of them.
|
172
170
|
#
|
173
|
-
#
|
171
|
+
# #### Unicorn
|
174
172
|
#
|
175
|
-
# Unicorn supports streaming but it needs to be configured. For this, you
|
176
|
-
#
|
173
|
+
# Unicorn supports streaming but it needs to be configured. For this, you need
|
174
|
+
# to create a config file as follow:
|
177
175
|
#
|
178
|
-
#
|
179
|
-
#
|
176
|
+
# # unicorn.config.rb
|
177
|
+
# listen 3000, tcp_nopush: false
|
180
178
|
#
|
181
179
|
# And use it on initialization:
|
182
180
|
#
|
183
|
-
#
|
181
|
+
# unicorn_rails --config-file unicorn.config.rb
|
182
|
+
#
|
183
|
+
# You may also want to configure other parameters like `:tcp_nodelay`.
|
184
184
|
#
|
185
|
-
#
|
186
|
-
#
|
185
|
+
# For more information, please check the
|
186
|
+
# [documentation](https://bogomips.org/unicorn/Unicorn/Configurator.html#method-
|
187
|
+
# i-listen).
|
187
188
|
#
|
188
|
-
# If you are using Unicorn with NGINX, you may need to tweak NGINX.
|
189
|
-
#
|
189
|
+
# If you are using Unicorn with NGINX, you may need to tweak NGINX. Streaming
|
190
|
+
# should work out of the box on Rainbows.
|
190
191
|
#
|
191
|
-
#
|
192
|
+
# #### Passenger
|
192
193
|
#
|
193
|
-
#
|
194
|
+
# Phusion Passenger with NGINX, offers two streaming mechanisms out of the box.
|
194
195
|
#
|
196
|
+
# 1. NGINX response buffering mechanism which is dependent on the value of
|
197
|
+
# `passenger_buffer_response` option (default is "off").
|
198
|
+
# 2. Passenger buffering system which is always 'on' irrespective of the value
|
199
|
+
# of `passenger_buffer_response`.
|
200
|
+
#
|
201
|
+
#
|
202
|
+
# When `passenger_buffer_response` is turned "on", then streaming would be done
|
203
|
+
# at the NGINX level which waits until the application is done sending the
|
204
|
+
# response back to the client.
|
205
|
+
#
|
206
|
+
# For more information, please check the [documentation]
|
207
|
+
# (https://www.phusionpassenger.com/docs/references/config_reference/nginx/#passenger_buffer_response).
|
195
208
|
module Streaming
|
209
|
+
class Body # :nodoc:
|
210
|
+
TERM = "\r\n"
|
211
|
+
TAIL = "0#{TERM}"
|
212
|
+
|
213
|
+
# Store the response body to be chunked.
|
214
|
+
def initialize(body)
|
215
|
+
@body = body
|
216
|
+
end
|
217
|
+
|
218
|
+
# For each element yielded by the response body, yield the element in chunked
|
219
|
+
# encoding.
|
220
|
+
def each(&block)
|
221
|
+
term = TERM
|
222
|
+
@body.each do |chunk|
|
223
|
+
size = chunk.bytesize
|
224
|
+
next if size == 0
|
225
|
+
|
226
|
+
yield [size.to_s(16), term, chunk.b, term].join
|
227
|
+
end
|
228
|
+
yield TAIL
|
229
|
+
yield term
|
230
|
+
end
|
231
|
+
|
232
|
+
# Close the response body if the response body supports it.
|
233
|
+
def close
|
234
|
+
@body.close if @body.respond_to?(:close)
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
196
238
|
private
|
197
239
|
# Set proper cache control and transfer encoding when streaming
|
198
240
|
def _process_options(options)
|
@@ -208,10 +250,10 @@ module ActionController # :nodoc:
|
|
208
250
|
end
|
209
251
|
end
|
210
252
|
|
211
|
-
# Call render_body if we are streaming instead of usual
|
253
|
+
# Call render_body if we are streaming instead of usual `render`.
|
212
254
|
def _render_template(options)
|
213
255
|
if options.delete(:stream)
|
214
|
-
|
256
|
+
Body.new view_renderer.render_body(view_context, options)
|
215
257
|
else
|
216
258
|
super
|
217
259
|
end
|