Class: ActionDispatch::ContentSecurityPolicy::Middleware
Relationships & Source Files | |
Inherits: | Object |
Defined in: | actionpack/lib/action_dispatch/http/content_security_policy.rb |
Constant Summary
-
CONTENT_TYPE =
# File 'actionpack/lib/action_dispatch/http/content_security_policy.rb', line 9"Content-Type"
-
POLICY =
# File 'actionpack/lib/action_dispatch/http/content_security_policy.rb', line 10"Content-Security-Policy"
-
POLICY_REPORT_ONLY =
# File 'actionpack/lib/action_dispatch/http/content_security_policy.rb', line 11"Content-Security-Policy-Report-Only"
Class Method Summary
- .new(app) ⇒ Middleware constructor
Instance Method Summary
Constructor Details
.new(app) ⇒ Middleware
# File 'actionpack/lib/action_dispatch/http/content_security_policy.rb', line 13
def initialize(app) @app = app end
Instance Method Details
#call(env)
[ GitHub ]# File 'actionpack/lib/action_dispatch/http/content_security_policy.rb', line 17
def call(env) request = ActionDispatch::Request.new env _, headers, _ = response = @app.call(env) return response if policy_present?(headers) if policy = request.content_security_policy nonce = request.content_security_policy_nonce nonce_directives = request.content_security_policy_nonce_directives context = request.controller_instance || request headers[header_name(request)] = policy.build(context, nonce, nonce_directives) end response end