actionpack 7.1.5.1 → 8.1.2
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 +308 -523
- data/README.rdoc +1 -1
- data/lib/abstract_controller/asset_paths.rb +6 -2
- data/lib/abstract_controller/base.rb +104 -105
- data/lib/abstract_controller/caching/fragments.rb +50 -53
- data/lib/abstract_controller/caching.rb +8 -3
- data/lib/abstract_controller/callbacks.rb +70 -62
- data/lib/abstract_controller/collector.rb +7 -7
- data/lib/abstract_controller/deprecator.rb +2 -0
- data/lib/abstract_controller/error.rb +2 -0
- data/lib/abstract_controller/helpers.rb +71 -84
- data/lib/abstract_controller/logger.rb +4 -1
- data/lib/abstract_controller/railties/routes_helpers.rb +2 -0
- data/lib/abstract_controller/rendering.rb +13 -13
- data/lib/abstract_controller/translation.rb +12 -13
- data/lib/abstract_controller/url_for.rb +8 -6
- data/lib/abstract_controller.rb +2 -0
- data/lib/action_controller/api/api_rendering.rb +2 -0
- data/lib/action_controller/api.rb +76 -72
- data/lib/action_controller/base.rb +199 -126
- data/lib/action_controller/caching.rb +16 -14
- data/lib/action_controller/deprecator.rb +2 -0
- data/lib/action_controller/form_builder.rb +21 -18
- data/lib/action_controller/log_subscriber.rb +23 -2
- data/lib/action_controller/metal/allow_browser.rb +133 -0
- data/lib/action_controller/metal/basic_implicit_render.rb +2 -0
- data/lib/action_controller/metal/conditional_get.rb +217 -175
- data/lib/action_controller/metal/content_security_policy.rb +25 -24
- data/lib/action_controller/metal/cookies.rb +4 -2
- data/lib/action_controller/metal/data_streaming.rb +72 -63
- data/lib/action_controller/metal/default_headers.rb +5 -3
- data/lib/action_controller/metal/etag_with_flash.rb +3 -1
- data/lib/action_controller/metal/etag_with_template_digest.rb +17 -15
- data/lib/action_controller/metal/exceptions.rb +16 -9
- data/lib/action_controller/metal/flash.rb +13 -14
- data/lib/action_controller/metal/head.rb +15 -11
- data/lib/action_controller/metal/helpers.rb +63 -55
- data/lib/action_controller/metal/http_authentication.rb +209 -201
- data/lib/action_controller/metal/implicit_render.rb +17 -15
- data/lib/action_controller/metal/instrumentation.rb +16 -14
- data/lib/action_controller/metal/live.rb +177 -128
- 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 +57 -59
- data/lib/action_controller/metal/permissions_policy.rb +22 -12
- data/lib/action_controller/metal/rate_limiting.rb +92 -0
- data/lib/action_controller/metal/redirecting.rb +213 -94
- data/lib/action_controller/metal/renderers.rb +78 -57
- data/lib/action_controller/metal/rendering.rb +111 -77
- data/lib/action_controller/metal/request_forgery_protection.rb +182 -143
- data/lib/action_controller/metal/rescue.rb +20 -9
- data/lib/action_controller/metal/streaming.rb +118 -195
- data/lib/action_controller/metal/strong_parameters.rb +720 -530
- data/lib/action_controller/metal/testing.rb +2 -0
- data/lib/action_controller/metal/url_for.rb +17 -15
- data/lib/action_controller/metal.rb +86 -60
- data/lib/action_controller/railtie.rb +36 -15
- data/lib/action_controller/railties/helpers.rb +2 -0
- data/lib/action_controller/renderer.rb +41 -36
- data/lib/action_controller/structured_event_subscriber.rb +116 -0
- data/lib/action_controller/template_assertions.rb +4 -2
- data/lib/action_controller/test_case.rb +160 -131
- data/lib/action_controller.rb +5 -1
- data/lib/action_dispatch/constants.rb +8 -0
- data/lib/action_dispatch/deprecator.rb +2 -0
- data/lib/action_dispatch/http/cache.rb +163 -35
- data/lib/action_dispatch/http/content_disposition.rb +2 -0
- data/lib/action_dispatch/http/content_security_policy.rb +54 -39
- data/lib/action_dispatch/http/filter_parameters.rb +14 -8
- data/lib/action_dispatch/http/filter_redirect.rb +22 -1
- data/lib/action_dispatch/http/headers.rb +22 -22
- data/lib/action_dispatch/http/mime_negotiation.rb +89 -41
- data/lib/action_dispatch/http/mime_type.rb +25 -21
- data/lib/action_dispatch/http/mime_types.rb +3 -0
- data/lib/action_dispatch/http/param_builder.rb +187 -0
- data/lib/action_dispatch/http/param_error.rb +26 -0
- data/lib/action_dispatch/http/parameters.rb +14 -12
- data/lib/action_dispatch/http/permissions_policy.rb +25 -36
- data/lib/action_dispatch/http/query_parser.rb +55 -0
- data/lib/action_dispatch/http/rack_cache.rb +2 -0
- data/lib/action_dispatch/http/request.rb +141 -92
- data/lib/action_dispatch/http/response.rb +137 -77
- data/lib/action_dispatch/http/upload.rb +18 -16
- data/lib/action_dispatch/http/url.rb +187 -89
- data/lib/action_dispatch/journey/formatter.rb +21 -9
- data/lib/action_dispatch/journey/gtg/builder.rb +4 -3
- data/lib/action_dispatch/journey/gtg/simulator.rb +34 -11
- data/lib/action_dispatch/journey/gtg/transition_table.rb +47 -53
- data/lib/action_dispatch/journey/nfa/dot.rb +2 -0
- data/lib/action_dispatch/journey/nodes/node.rb +8 -6
- data/lib/action_dispatch/journey/parser.rb +99 -195
- data/lib/action_dispatch/journey/path/pattern.rb +4 -1
- data/lib/action_dispatch/journey/route.rb +54 -38
- data/lib/action_dispatch/journey/router/utils.rb +22 -27
- data/lib/action_dispatch/journey/router.rb +63 -83
- data/lib/action_dispatch/journey/routes.rb +11 -2
- data/lib/action_dispatch/journey/scanner.rb +46 -42
- data/lib/action_dispatch/journey/visitors.rb +57 -23
- data/lib/action_dispatch/journey/visualizer/fsm.js +4 -6
- data/lib/action_dispatch/journey.rb +2 -0
- data/lib/action_dispatch/log_subscriber.rb +7 -1
- data/lib/action_dispatch/middleware/actionable_exceptions.rb +2 -0
- data/lib/action_dispatch/middleware/assume_ssl.rb +8 -5
- data/lib/action_dispatch/middleware/callbacks.rb +3 -1
- data/lib/action_dispatch/middleware/cookies.rb +125 -106
- data/lib/action_dispatch/middleware/debug_exceptions.rb +37 -8
- data/lib/action_dispatch/middleware/debug_locks.rb +15 -13
- data/lib/action_dispatch/middleware/debug_view.rb +13 -5
- data/lib/action_dispatch/middleware/exception_wrapper.rb +18 -23
- data/lib/action_dispatch/middleware/executor.rb +19 -4
- data/lib/action_dispatch/middleware/flash.rb +63 -51
- data/lib/action_dispatch/middleware/host_authorization.rb +17 -15
- data/lib/action_dispatch/middleware/public_exceptions.rb +14 -12
- data/lib/action_dispatch/middleware/reloader.rb +5 -3
- data/lib/action_dispatch/middleware/remote_ip.rb +87 -77
- data/lib/action_dispatch/middleware/request_id.rb +16 -10
- data/lib/action_dispatch/middleware/server_timing.rb +4 -2
- data/lib/action_dispatch/middleware/session/abstract_store.rb +2 -0
- data/lib/action_dispatch/middleware/session/cache_store.rb +30 -8
- data/lib/action_dispatch/middleware/session/cookie_store.rb +27 -26
- data/lib/action_dispatch/middleware/session/mem_cache_store.rb +7 -3
- data/lib/action_dispatch/middleware/show_exceptions.rb +16 -16
- data/lib/action_dispatch/middleware/ssl.rb +53 -40
- data/lib/action_dispatch/middleware/stack.rb +11 -10
- data/lib/action_dispatch/middleware/static.rb +33 -31
- data/lib/action_dispatch/middleware/templates/rescues/_copy_button.html.erb +1 -0
- data/lib/action_dispatch/middleware/templates/rescues/_source.html.erb +3 -5
- data/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb +9 -5
- data/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb +1 -0
- data/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +1 -0
- data/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb +4 -0
- data/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb +3 -0
- data/lib/action_dispatch/middleware/templates/rescues/layout.erb +50 -0
- data/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.html.erb +1 -0
- data/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +1 -0
- data/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +1 -0
- data/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +1 -0
- data/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +1 -0
- data/lib/action_dispatch/middleware/templates/routes/_table.html.erb +1 -1
- data/lib/action_dispatch/railtie.rb +23 -3
- data/lib/action_dispatch/request/session.rb +24 -21
- data/lib/action_dispatch/request/utils.rb +11 -3
- data/lib/action_dispatch/routing/endpoint.rb +2 -0
- data/lib/action_dispatch/routing/inspector.rb +85 -60
- data/lib/action_dispatch/routing/mapper.rb +1031 -851
- data/lib/action_dispatch/routing/polymorphic_routes.rb +69 -62
- data/lib/action_dispatch/routing/redirection.rb +47 -39
- data/lib/action_dispatch/routing/route_set.rb +79 -56
- data/lib/action_dispatch/routing/routes_proxy.rb +7 -4
- data/lib/action_dispatch/routing/url_for.rb +130 -125
- data/lib/action_dispatch/routing.rb +150 -148
- data/lib/action_dispatch/structured_event_subscriber.rb +20 -0
- data/lib/action_dispatch/system_test_case.rb +91 -81
- data/lib/action_dispatch/system_testing/browser.rb +16 -23
- data/lib/action_dispatch/system_testing/driver.rb +2 -0
- data/lib/action_dispatch/system_testing/server.rb +2 -0
- data/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +34 -23
- 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 +52 -25
- data/lib/action_dispatch/testing/assertions/routing.rb +168 -87
- data/lib/action_dispatch/testing/assertions.rb +2 -0
- data/lib/action_dispatch/testing/integration.rb +233 -223
- data/lib/action_dispatch/testing/request_encoder.rb +11 -9
- data/lib/action_dispatch/testing/test_helpers/page_dump_helper.rb +35 -0
- data/lib/action_dispatch/testing/test_process.rb +11 -8
- data/lib/action_dispatch/testing/test_request.rb +3 -1
- data/lib/action_dispatch/testing/test_response.rb +27 -26
- data/lib/action_dispatch.rb +36 -32
- data/lib/action_pack/gem_version.rb +6 -4
- data/lib/action_pack/version.rb +3 -1
- data/lib/action_pack.rb +17 -16
- metadata +36 -32
- data/lib/action_dispatch/journey/parser.y +0 -50
- data/lib/action_dispatch/journey/parser_extras.rb +0 -31
|
@@ -1,257 +1,180 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
# :markup: markdown
|
|
4
|
+
|
|
3
5
|
module ActionController # :nodoc:
|
|
4
|
-
#
|
|
6
|
+
# # Action Controller Streaming
|
|
5
7
|
#
|
|
6
8
|
# Allows views to be streamed back to the client as they are rendered.
|
|
7
9
|
#
|
|
8
|
-
# By default,
|
|
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
15
|
# subsequently each part of the layout as they are processed. This allows the
|
|
14
|
-
# header of the HTML (which is usually in the layout) to be streamed back
|
|
15
|
-
#
|
|
16
|
-
#
|
|
17
|
-
#
|
|
18
|
-
# Several Rack middlewares may not work and you need to be careful when
|
|
19
|
-
# This is covered in more detail below, see the Streaming@Middlewares
|
|
20
|
-
#
|
|
21
|
-
#
|
|
22
|
-
# to
|
|
23
|
-
#
|
|
24
|
-
#
|
|
25
|
-
#
|
|
26
|
-
#
|
|
27
|
-
#
|
|
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
|
|
28
32
|
# end
|
|
29
|
-
# end
|
|
30
33
|
#
|
|
31
|
-
#
|
|
34
|
+
# ## When to use streaming
|
|
32
35
|
#
|
|
33
|
-
#
|
|
34
|
-
#
|
|
35
|
-
#
|
|
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.
|
|
36
39
|
#
|
|
37
|
-
# In such actions, you want to delay queries execution as much as you can.
|
|
38
|
-
#
|
|
40
|
+
# In such actions, you want to delay queries execution as much as you can. For
|
|
41
|
+
# example, imagine the following `dashboard` action:
|
|
39
42
|
#
|
|
40
|
-
#
|
|
41
|
-
#
|
|
42
|
-
#
|
|
43
|
-
#
|
|
44
|
-
#
|
|
43
|
+
# def dashboard
|
|
44
|
+
# @posts = Post.all
|
|
45
|
+
# @pages = Page.all
|
|
46
|
+
# @articles = Article.all
|
|
47
|
+
# end
|
|
45
48
|
#
|
|
46
49
|
# Most of the queries here are happening in the controller. In order to benefit
|
|
47
50
|
# from streaming you would want to rewrite it as:
|
|
48
51
|
#
|
|
49
|
-
#
|
|
50
|
-
#
|
|
51
|
-
#
|
|
52
|
-
#
|
|
53
|
-
#
|
|
54
|
-
#
|
|
55
|
-
#
|
|
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
|
|
56
59
|
#
|
|
57
|
-
# Notice that
|
|
58
|
-
#
|
|
60
|
+
# Notice that `:stream` only works with templates. Rendering `:json` or `:xml`
|
|
61
|
+
# with `:stream` won't work.
|
|
59
62
|
#
|
|
60
|
-
#
|
|
63
|
+
# ## Communication between layout and template
|
|
61
64
|
#
|
|
62
|
-
# When streaming, rendering happens top-down instead of inside-out.
|
|
63
|
-
#
|
|
64
|
-
#
|
|
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.
|
|
65
68
|
#
|
|
66
|
-
# This means that, if your application currently relies on instance
|
|
67
|
-
#
|
|
68
|
-
#
|
|
69
|
-
#
|
|
70
|
-
#
|
|
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`.
|
|
71
74
|
#
|
|
72
|
-
# Take a simple example where the layout expects the template to tell
|
|
73
|
-
#
|
|
75
|
+
# Take a simple example where the layout expects the template to tell which
|
|
76
|
+
# title to use:
|
|
74
77
|
#
|
|
75
|
-
#
|
|
76
|
-
#
|
|
77
|
-
#
|
|
78
|
-
#
|
|
78
|
+
# <html>
|
|
79
|
+
# <head><title><%= yield :title %></title></head>
|
|
80
|
+
# <body><%= yield %></body>
|
|
81
|
+
# </html>
|
|
79
82
|
#
|
|
80
|
-
# You would use
|
|
83
|
+
# You would use `content_for` in your template to specify the title:
|
|
81
84
|
#
|
|
82
|
-
#
|
|
83
|
-
#
|
|
85
|
+
# <%= content_for :title, "Main" %>
|
|
86
|
+
# Hello
|
|
84
87
|
#
|
|
85
88
|
# And the final result would be:
|
|
86
89
|
#
|
|
87
|
-
#
|
|
88
|
-
#
|
|
89
|
-
#
|
|
90
|
-
#
|
|
90
|
+
# <html>
|
|
91
|
+
# <head><title>Main</title></head>
|
|
92
|
+
# <body>Hello</body>
|
|
93
|
+
# </html>
|
|
91
94
|
#
|
|
92
|
-
# However, if
|
|
93
|
-
#
|
|
94
|
-
# 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:
|
|
95
97
|
#
|
|
96
|
-
#
|
|
97
|
-
#
|
|
98
|
-
#
|
|
98
|
+
# <%= content_for :title, "Main" %>
|
|
99
|
+
# Hello
|
|
100
|
+
# <%= content_for :title, " page" %>
|
|
99
101
|
#
|
|
100
102
|
# The final result would be:
|
|
101
103
|
#
|
|
102
|
-
#
|
|
103
|
-
#
|
|
104
|
-
#
|
|
105
|
-
#
|
|
104
|
+
# <html>
|
|
105
|
+
# <head><title>Main page</title></head>
|
|
106
|
+
# <body>Hello</body>
|
|
107
|
+
# </html>
|
|
106
108
|
#
|
|
107
|
-
# This means that, if you have
|
|
108
|
-
#
|
|
109
|
-
#
|
|
110
|
-
#
|
|
111
|
-
#
|
|
112
|
-
#
|
|
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.
|
|
113
115
|
#
|
|
114
|
-
# For instance, the template above using
|
|
116
|
+
# For instance, the template above using `provide` would be:
|
|
115
117
|
#
|
|
116
|
-
#
|
|
117
|
-
#
|
|
118
|
-
#
|
|
118
|
+
# <%= provide :title, "Main" %>
|
|
119
|
+
# Hello
|
|
120
|
+
# <%= content_for :title, " page" %>
|
|
119
121
|
#
|
|
120
122
|
# Resulting in:
|
|
121
123
|
#
|
|
122
|
-
#
|
|
123
|
-
#
|
|
124
|
-
#
|
|
125
|
-
#
|
|
124
|
+
# <html>
|
|
125
|
+
# <head><title>Main</title></head>
|
|
126
|
+
# <body>Hello</body>
|
|
127
|
+
# </html>
|
|
126
128
|
#
|
|
127
|
-
# That said, when streaming, you need to properly check your templates
|
|
128
|
-
#
|
|
129
|
+
# That said, when streaming, you need to properly check your templates and
|
|
130
|
+
# choose when to use `provide` and `content_for`.
|
|
129
131
|
#
|
|
130
132
|
# See also ActionView::Helpers::CaptureHelper for more information.
|
|
131
133
|
#
|
|
132
|
-
#
|
|
134
|
+
# ## Headers, cookies, session, and flash
|
|
133
135
|
#
|
|
134
|
-
# When streaming, the HTTP headers are sent to the client right before
|
|
135
|
-
#
|
|
136
|
-
#
|
|
137
|
-
# 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.
|
|
138
139
|
#
|
|
139
|
-
#
|
|
140
|
+
# ## Middlewares
|
|
140
141
|
#
|
|
141
|
-
# Middlewares that need to manipulate the body won't work with streaming.
|
|
142
|
-
#
|
|
143
|
-
#
|
|
144
|
-
#
|
|
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.
|
|
145
146
|
#
|
|
146
|
-
# Also
|
|
147
|
-
#
|
|
148
|
-
#
|
|
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".
|
|
149
150
|
#
|
|
150
|
-
#
|
|
151
|
+
# ## Errors
|
|
151
152
|
#
|
|
152
153
|
# When it comes to streaming, exceptions get a bit more complicated. This
|
|
153
|
-
# happens because part of the template was already rendered and streamed to
|
|
154
|
-
#
|
|
155
|
-
#
|
|
156
|
-
# Currently, when an exception happens in development or production, \Rails
|
|
157
|
-
# will automatically stream to the client:
|
|
158
|
-
#
|
|
159
|
-
# "><script>window.location = "/500.html"</script></html>
|
|
160
|
-
#
|
|
161
|
-
# The first two characters (<tt>"></tt>) are required in case the exception
|
|
162
|
-
# happens while rendering attributes for a given tag. You can check the real
|
|
163
|
-
# cause for the exception in your logger.
|
|
164
|
-
#
|
|
165
|
-
# == Web server support
|
|
166
|
-
#
|
|
167
|
-
# Not all web servers support streaming out-of-the-box. You need to check
|
|
168
|
-
# the instructions for each of them.
|
|
169
|
-
#
|
|
170
|
-
# ==== Unicorn
|
|
171
|
-
#
|
|
172
|
-
# Unicorn supports streaming but it needs to be configured. For this, you
|
|
173
|
-
# need to create a config file as follow:
|
|
174
|
-
#
|
|
175
|
-
# # unicorn.config.rb
|
|
176
|
-
# listen 3000, tcp_nopush: false
|
|
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.
|
|
177
156
|
#
|
|
178
|
-
#
|
|
157
|
+
# Currently, when an exception happens in development or production, Rails will
|
|
158
|
+
# automatically stream to the client:
|
|
179
159
|
#
|
|
180
|
-
#
|
|
160
|
+
# "><script>window.location = "/500.html"</script></html>
|
|
181
161
|
#
|
|
182
|
-
#
|
|
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.
|
|
183
165
|
#
|
|
184
|
-
#
|
|
185
|
-
# {documentation}[https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-listen].
|
|
186
|
-
#
|
|
187
|
-
# If you are using Unicorn with NGINX, you may need to tweak NGINX.
|
|
188
|
-
# \Streaming should work out of the box on Rainbows.
|
|
189
|
-
#
|
|
190
|
-
# ==== Passenger
|
|
191
|
-
#
|
|
192
|
-
# Phusion Passenger with NGINX, offers two streaming mechanisms out of the box.
|
|
193
|
-
#
|
|
194
|
-
# 1. NGINX response buffering mechanism which is dependent on the value of
|
|
195
|
-
# +passenger_buffer_response+ option (default is "off").
|
|
196
|
-
# 2. Passenger buffering system which is always 'on' irrespective of the value
|
|
197
|
-
# of +passenger_buffer_response+.
|
|
198
|
-
#
|
|
199
|
-
# When +passenger_buffer_response+ is turned "on", then streaming would be
|
|
200
|
-
# done at the NGINX level which waits until the application is done sending
|
|
201
|
-
# the response back to the client.
|
|
202
|
-
#
|
|
203
|
-
# For more information, please check the
|
|
204
|
-
# {documentation}[https://www.phusionpassenger.com/docs/references/config_reference/nginx/#passenger_buffer_response].
|
|
166
|
+
# ## Web server support
|
|
205
167
|
#
|
|
168
|
+
# Rack 3+ compatible servers all support streaming.
|
|
206
169
|
module Streaming
|
|
207
|
-
class Body # :nodoc:
|
|
208
|
-
TERM = "\r\n"
|
|
209
|
-
TAIL = "0#{TERM}"
|
|
210
|
-
|
|
211
|
-
# Store the response body to be chunked.
|
|
212
|
-
def initialize(body)
|
|
213
|
-
@body = body
|
|
214
|
-
end
|
|
215
|
-
|
|
216
|
-
# For each element yielded by the response body, yield
|
|
217
|
-
# the element in chunked encoding.
|
|
218
|
-
def each(&block)
|
|
219
|
-
term = TERM
|
|
220
|
-
@body.each do |chunk|
|
|
221
|
-
size = chunk.bytesize
|
|
222
|
-
next if size == 0
|
|
223
|
-
|
|
224
|
-
yield [size.to_s(16), term, chunk.b, term].join
|
|
225
|
-
end
|
|
226
|
-
yield TAIL
|
|
227
|
-
yield term
|
|
228
|
-
end
|
|
229
|
-
|
|
230
|
-
# Close the response body if the response body supports it.
|
|
231
|
-
def close
|
|
232
|
-
@body.close if @body.respond_to?(:close)
|
|
233
|
-
end
|
|
234
|
-
end
|
|
235
|
-
|
|
236
170
|
private
|
|
237
|
-
#
|
|
238
|
-
def _process_options(options)
|
|
239
|
-
super
|
|
240
|
-
if options[:stream]
|
|
241
|
-
if request.version == "HTTP/1.0"
|
|
242
|
-
options.delete(:stream)
|
|
243
|
-
else
|
|
244
|
-
headers["Cache-Control"] ||= "no-cache"
|
|
245
|
-
headers["Transfer-Encoding"] = "chunked"
|
|
246
|
-
headers.delete("Content-Length")
|
|
247
|
-
end
|
|
248
|
-
end
|
|
249
|
-
end
|
|
250
|
-
|
|
251
|
-
# Call render_body if we are streaming instead of usual +render+.
|
|
171
|
+
# Call render_body if we are streaming instead of usual `render`.
|
|
252
172
|
def _render_template(options)
|
|
253
173
|
if options.delete(:stream)
|
|
254
|
-
|
|
174
|
+
# It shouldn't be necessary to set this.
|
|
175
|
+
headers["cache-control"] ||= "no-cache"
|
|
176
|
+
|
|
177
|
+
view_renderer.render_body(view_context, options)
|
|
255
178
|
else
|
|
256
179
|
super
|
|
257
180
|
end
|