2018-04-12 14:45:17 +02:00
|
|
|
# Define an application-wide content security policy
|
|
|
|
# For further information see the following documentation
|
|
|
|
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
|
|
|
|
|
2018-08-23 16:03:38 +02:00
|
|
|
if Rails.env.production?
|
|
|
|
assets_host = Rails.configuration.action_controller.asset_host || "https://#{ENV['WEB_DOMAIN'] || ENV['LOCAL_DOMAIN']}"
|
2018-08-28 21:41:03 +02:00
|
|
|
data_hosts = [assets_host]
|
|
|
|
|
|
|
|
if ENV['S3_ENABLED'] == 'true'
|
2019-05-04 00:14:49 +02:00
|
|
|
attachments_host = "https://#{ENV['S3_ALIAS_HOST'] || ENV['S3_CLOUDFRONT_HOST'] || ENV['S3_HOSTNAME'] || "s3-#{ENV['S3_REGION'] || 'us-east-1'}.amazonaws.com"}"
|
|
|
|
attachments_host = "https://#{Addressable::URI.parse(attachments_host).host}"
|
2018-08-28 21:41:03 +02:00
|
|
|
elsif ENV['SWIFT_ENABLED'] == 'true'
|
|
|
|
attachments_host = ENV['SWIFT_OBJECT_URL']
|
2019-05-04 00:14:49 +02:00
|
|
|
attachments_host = "https://#{Addressable::URI.parse(attachments_host).host}"
|
2018-08-28 21:41:03 +02:00
|
|
|
else
|
|
|
|
attachments_host = nil
|
|
|
|
end
|
2019-05-04 10:40:32 +02:00
|
|
|
|
2018-08-28 21:41:03 +02:00
|
|
|
data_hosts << attachments_host unless attachments_host.nil?
|
2018-08-23 13:08:39 +02:00
|
|
|
|
2019-05-04 10:40:32 +02:00
|
|
|
if ENV['PAPERCLIP_ROOT_URL']
|
|
|
|
url = Addressable::URI.parse(assets_host) + ENV['PAPERCLIP_ROOT_URL']
|
|
|
|
data_hosts << "https://#{url.host}"
|
|
|
|
end
|
|
|
|
|
2020-02-06 11:25:18 +01:00
|
|
|
data_hosts.concat(ENV['EXTRA_DATA_HOSTS'].split('|')) if ENV['EXTRA_DATA_HOSTS']
|
|
|
|
|
2019-05-04 10:40:32 +02:00
|
|
|
data_hosts.uniq!
|
|
|
|
|
2018-08-23 16:03:38 +02:00
|
|
|
Rails.application.config.content_security_policy do |p|
|
|
|
|
p.base_uri :none
|
|
|
|
p.default_src :none
|
|
|
|
p.frame_ancestors :none
|
|
|
|
p.script_src :self, assets_host
|
|
|
|
p.font_src :self, assets_host
|
2018-11-10 18:53:23 +01:00
|
|
|
p.img_src :self, :data, :blob, *data_hosts
|
2020-05-10 15:15:39 +02:00
|
|
|
p.style_src :self, assets_host
|
2018-08-28 21:41:03 +02:00
|
|
|
p.media_src :self, :data, *data_hosts
|
2018-08-23 16:03:38 +02:00
|
|
|
p.frame_src :self, :https
|
2020-04-02 20:32:00 +02:00
|
|
|
p.child_src :self, :blob, assets_host
|
2019-08-19 19:31:32 +02:00
|
|
|
p.worker_src :self, :blob, assets_host
|
2019-08-19 22:02:35 +02:00
|
|
|
p.connect_src :self, :blob, :data, Rails.configuration.x.streaming_api_base_url, *data_hosts
|
2018-11-10 18:53:23 +01:00
|
|
|
p.manifest_src :self, assets_host
|
2018-08-23 16:03:38 +02:00
|
|
|
end
|
2018-08-22 17:22:34 +02:00
|
|
|
end
|
2018-04-12 14:45:17 +02:00
|
|
|
|
|
|
|
# Report CSP violations to a specified URI
|
|
|
|
# For further information see the following documentation:
|
|
|
|
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
|
|
|
|
# Rails.application.config.content_security_policy_report_only = true
|
2020-05-04 13:52:41 +02:00
|
|
|
|
2020-07-07 01:33:38 +02:00
|
|
|
Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }
|
|
|
|
|
|
|
|
# Monkey-patching Rails 5
|
|
|
|
module ActionDispatch
|
|
|
|
class ContentSecurityPolicy
|
|
|
|
def nonce_directive?(directive)
|
|
|
|
directive == 'style-src'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Rails 6 would require the following instead:
|
|
|
|
# Rails.application.config.content_security_policy_nonce_directives = %w(style-src)
|
|
|
|
|
2020-05-04 13:52:41 +02:00
|
|
|
PgHero::HomeController.content_security_policy do |p|
|
|
|
|
p.script_src :self, :unsafe_inline, assets_host
|
|
|
|
p.style_src :self, :unsafe_inline, assets_host
|
|
|
|
end
|
2020-07-07 01:33:38 +02:00
|
|
|
|
|
|
|
PgHero::HomeController.after_action do
|
|
|
|
request.content_security_policy_nonce_generator = nil
|
|
|
|
end
|