diff options
author | Yaroslav Markin <yaroslav@markin.net> | 2018-04-17 18:05:12 +0300 |
---|---|---|
committer | Yaroslav Markin <yaroslav@markin.net> | 2018-04-17 22:50:33 +0300 |
commit | 47013a7126a92e1f2890b68e0fd2e7ba1b77c97c (patch) | |
tree | 5937c8dc7c20e8d620b9f12f89bcb6f4a152bea7 /actionview/lib/action_view/helpers | |
parent | 15d7fb90cc9e783b4b925246f22d4c41c7fc447b (diff) | |
download | rails-47013a7126a92e1f2890b68e0fd2e7ba1b77c97c.tar.gz rails-47013a7126a92e1f2890b68e0fd2e7ba1b77c97c.tar.bz2 rails-47013a7126a92e1f2890b68e0fd2e7ba1b77c97c.zip |
Add the `nonce: true` option for `javascript_include_tag` helper.
Diffstat (limited to 'actionview/lib/action_view/helpers')
-rw-r--r-- | actionview/lib/action_view/helpers/asset_tag_helper.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/actionview/lib/action_view/helpers/asset_tag_helper.rb b/actionview/lib/action_view/helpers/asset_tag_helper.rb index 06fa1875fc..257080d902 100644 --- a/actionview/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionview/lib/action_view/helpers/asset_tag_helper.rb @@ -55,6 +55,8 @@ module ActionView # that path. # * <tt>:skip_pipeline</tt> - This option is used to bypass the asset pipeline # when it is set to true. + # * <tt>:nonce<tt> - When set to true, adds an automatic nonce value if + # you have Content Security Policy enabled. # # ==== Examples # @@ -79,6 +81,9 @@ module ActionView # # javascript_include_tag "http://www.example.com/xmlhr.js" # # => <script src="http://www.example.com/xmlhr.js"></script> + # + # javascript_include_tag "http://www.example.com/xmlhr.js", nonce: true + # # => <script src="http://www.example.com/xmlhr.js" nonce="..."></script> def javascript_include_tag(*sources) options = sources.extract_options!.stringify_keys path_options = options.extract!("protocol", "extname", "host", "skip_pipeline").symbolize_keys @@ -90,6 +95,9 @@ module ActionView tag_options = { "src" => href }.merge!(options) + if tag_options["nonce"] == true + tag_options["nonce"] = content_security_policy_nonce + end content_tag("script".freeze, "", tag_options) }.join("\n").html_safe |