2023-07-12 03:47:08 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-10-25 09:56:09 -04:00
|
|
|
# Be sure to restart your server when you modify this file.
|
|
|
|
|
|
|
|
# Define an application-wide content security policy.
|
|
|
|
# See the Securing Rails Applications Guide for more information:
|
|
|
|
# https://guides.rubyonrails.org/security.html#content-security-policy-header
|
2018-04-12 08:45:17 -04:00
|
|
|
|
2023-10-27 12:20:40 -04:00
|
|
|
require_relative '../../app/lib/content_security_policy'
|
2023-10-23 08:27:07 -04:00
|
|
|
|
2023-10-27 12:20:40 -04:00
|
|
|
policy = ContentSecurityPolicy.new
|
|
|
|
assets_host = policy.assets_host
|
2023-11-30 08:47:01 -05:00
|
|
|
media_hosts = policy.media_hosts
|
2018-10-11 14:35:46 -04:00
|
|
|
|
|
|
|
Rails.application.config.content_security_policy do |p|
|
|
|
|
p.base_uri :none
|
|
|
|
p.default_src :none
|
|
|
|
p.frame_ancestors :none
|
|
|
|
p.font_src :self, assets_host
|
2023-11-30 08:47:01 -05:00
|
|
|
p.img_src :self, :data, :blob, *media_hosts
|
2020-05-08 15:22:57 -04:00
|
|
|
p.style_src :self, assets_host
|
2023-11-30 08:47:01 -05:00
|
|
|
p.media_src :self, :data, *media_hosts
|
2018-10-12 13:07:30 -04:00
|
|
|
p.manifest_src :self, assets_host
|
2023-09-12 07:04:51 -04:00
|
|
|
|
2024-09-12 09:24:19 -04:00
|
|
|
if policy.sso_host.present?
|
|
|
|
p.form_action :self, policy.sso_host
|
2023-09-12 07:04:51 -04:00
|
|
|
else
|
2024-09-12 08:54:16 -04:00
|
|
|
p.form_action :self
|
2023-09-12 07:04:51 -04:00
|
|
|
end
|
|
|
|
|
2024-09-12 08:54:16 -04:00
|
|
|
p.child_src :self, :blob, assets_host
|
|
|
|
p.worker_src :self, :blob, assets_host
|
2018-10-11 19:43:09 -04:00
|
|
|
|
|
|
|
if Rails.env.development?
|
2023-08-29 04:17:57 -04:00
|
|
|
webpacker_public_host = ENV.fetch('WEBPACKER_DEV_SERVER_PUBLIC', Webpacker.config.dev_server[:public])
|
2024-01-17 04:22:16 -05:00
|
|
|
front_end_build_urls = %w(ws http).map { |protocol| "#{protocol}#{Webpacker.dev_server.https? ? 's' : ''}://#{webpacker_public_host}" }
|
2018-10-11 19:43:09 -04:00
|
|
|
|
2024-01-17 04:22:16 -05:00
|
|
|
p.connect_src :self, :data, :blob, *media_hosts, Rails.configuration.x.streaming_api_base_url, *front_end_build_urls
|
2019-08-19 14:36:58 -04:00
|
|
|
p.script_src :self, :unsafe_inline, :unsafe_eval, assets_host
|
2024-09-12 08:54:16 -04:00
|
|
|
p.frame_src :self, :https, :http
|
2018-10-11 19:43:09 -04:00
|
|
|
else
|
2023-11-30 08:47:01 -05:00
|
|
|
p.connect_src :self, :data, :blob, *media_hosts, Rails.configuration.x.streaming_api_base_url
|
2022-11-14 21:39:06 -05:00
|
|
|
p.script_src :self, assets_host, "'wasm-unsafe-eval'"
|
2024-09-12 08:54:16 -04:00
|
|
|
p.frame_src :self, :https
|
2018-10-11 19:43:09 -04:00
|
|
|
end
|
2018-10-11 14:35:46 -04:00
|
|
|
end
|
2018-04-12 08:45:17 -04: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 07:52:41 -04:00
|
|
|
|
2023-11-09 04:43:26 -05:00
|
|
|
Rails.application.config.content_security_policy_nonce_generator = ->(_request) { SecureRandom.base64(16) }
|
2020-07-06 19:33:38 -04:00
|
|
|
|
2021-03-24 05:44:31 -04:00
|
|
|
Rails.application.config.content_security_policy_nonce_directives = %w(style-src)
|
2020-07-06 19:33:38 -04:00
|
|
|
|
2021-04-08 20:31:20 -04:00
|
|
|
Rails.application.reloader.to_prepare do
|
|
|
|
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-06 19:33:38 -04:00
|
|
|
|
2021-04-08 20:31:20 -04:00
|
|
|
PgHero::HomeController.after_action do
|
|
|
|
request.content_security_policy_nonce_generator = nil
|
|
|
|
end
|
2022-03-14 14:20:40 -04:00
|
|
|
|
|
|
|
if Rails.env.development?
|
|
|
|
LetterOpenerWeb::LettersController.content_security_policy do |p|
|
|
|
|
p.child_src :self
|
|
|
|
p.connect_src :none
|
|
|
|
p.frame_ancestors :self
|
|
|
|
p.frame_src :self
|
|
|
|
p.script_src :unsafe_inline
|
|
|
|
p.style_src :unsafe_inline
|
|
|
|
p.worker_src :none
|
|
|
|
end
|
|
|
|
|
2023-11-09 04:43:26 -05:00
|
|
|
LetterOpenerWeb::LettersController.after_action do
|
2022-03-14 14:20:40 -04:00
|
|
|
request.content_security_policy_nonce_directives = %w(script-src)
|
|
|
|
end
|
|
|
|
end
|
2020-07-06 19:33:38 -04:00
|
|
|
end
|