Module: ActionDispatch::ContentSecurityPolicy::Request

Included in:
Request
Defined in:
lib/action_dispatch/http/content_security_policy.rb

Constant Summary collapse

POLICY =
"action_dispatch.content_security_policy".freeze
POLICY_REPORT_ONLY =
"action_dispatch.content_security_policy_report_only".freeze
NONCE_GENERATOR =
"action_dispatch.content_security_policy_nonce_generator".freeze
NONCE =
"action_dispatch.content_security_policy_nonce".freeze

Instance Method Summary collapse

Instance Method Details

#content_security_policyObject



59
60
61
# File 'lib/action_dispatch/http/content_security_policy.rb', line 59

def content_security_policy
  get_header(POLICY)
end

#content_security_policy=(policy) ⇒ Object



63
64
65
# File 'lib/action_dispatch/http/content_security_policy.rb', line 63

def content_security_policy=(policy)
  set_header(POLICY, policy)
end

#content_security_policy_nonceObject



83
84
85
86
87
88
89
90
91
# File 'lib/action_dispatch/http/content_security_policy.rb', line 83

def content_security_policy_nonce
  if content_security_policy_nonce_generator
    if nonce = get_header(NONCE)
      nonce
    else
      set_header(NONCE, generate_content_security_policy_nonce)
    end
  end
end

#content_security_policy_nonce_generatorObject



75
76
77
# File 'lib/action_dispatch/http/content_security_policy.rb', line 75

def content_security_policy_nonce_generator
  get_header(NONCE_GENERATOR)
end

#content_security_policy_nonce_generator=(generator) ⇒ Object



79
80
81
# File 'lib/action_dispatch/http/content_security_policy.rb', line 79

def content_security_policy_nonce_generator=(generator)
  set_header(NONCE_GENERATOR, generator)
end

#content_security_policy_report_onlyObject



67
68
69
# File 'lib/action_dispatch/http/content_security_policy.rb', line 67

def content_security_policy_report_only
  get_header(POLICY_REPORT_ONLY)
end

#content_security_policy_report_only=(value) ⇒ Object



71
72
73
# File 'lib/action_dispatch/http/content_security_policy.rb', line 71

def content_security_policy_report_only=(value)
  set_header(POLICY_REPORT_ONLY, value)
end