2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-04-12 12:45:17 +00: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
|
|
|
|
|
2023-09-12 11:04:51 +00:00
|
|
|
def sso_host
|
|
|
|
return unless ENV['ONE_CLICK_SSO_LOGIN'] == 'true'
|
|
|
|
return unless ENV['OMNIAUTH_ONLY'] == 'true'
|
|
|
|
return unless Devise.omniauth_providers.length == 1
|
|
|
|
|
|
|
|
provider = Devise.omniauth_configs[Devise.omniauth_providers[0]]
|
|
|
|
@sso_host ||= begin
|
2023-09-13 17:54:04 +00:00
|
|
|
case provider.provider
|
|
|
|
when :cas
|
|
|
|
provider.cas_url
|
|
|
|
when :saml
|
|
|
|
provider.options[:idp_sso_target_url]
|
|
|
|
when :openid_connect
|
|
|
|
provider.options.dig(:client_options, :authorization_endpoint) || OpenIDConnect::Discovery::Provider::Config.discover!(provider.options[:issuer]).authorization_endpoint
|
|
|
|
end
|
2023-09-12 11:04:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-07-30 15:12:47 +00:00
|
|
|
unless Rails.env.development?
|
2018-08-23 14:03:38 +00:00
|
|
|
assets_host = Rails.configuration.action_controller.asset_host || "https://#{ENV['WEB_DOMAIN'] || ENV['LOCAL_DOMAIN']}"
|
2018-08-28 19:41:03 +00:00
|
|
|
data_hosts = [assets_host]
|
|
|
|
|
2023-09-26 18:09:56 +00:00
|
|
|
if ENV['S3_ENABLED'] == 'true' || ENV['AZURE_ENABLED'] == 'true'
|
2023-07-30 11:15:01 +00:00
|
|
|
attachments_host = "https://#{ENV['S3_ALIAS_HOST'] || ENV['S3_CLOUDFRONT_HOST'] || ENV['AZURE_ALIAS_HOST'] || ENV['S3_HOSTNAME'] || "s3-#{ENV['S3_REGION'] || 'us-east-1'}.amazonaws.com"}"
|
2019-05-03 22:14:49 +00:00
|
|
|
attachments_host = "https://#{Addressable::URI.parse(attachments_host).host}"
|
2018-08-28 19:41:03 +00:00
|
|
|
elsif ENV['SWIFT_ENABLED'] == 'true'
|
|
|
|
attachments_host = ENV['SWIFT_OBJECT_URL']
|
2019-05-03 22:14:49 +00:00
|
|
|
attachments_host = "https://#{Addressable::URI.parse(attachments_host).host}"
|
2018-08-28 19:41:03 +00:00
|
|
|
else
|
|
|
|
attachments_host = nil
|
|
|
|
end
|
2019-05-04 08:40:32 +00:00
|
|
|
|
2018-08-28 19:41:03 +00:00
|
|
|
data_hosts << attachments_host unless attachments_host.nil?
|
2018-08-23 11:08:39 +00:00
|
|
|
|
2019-05-04 08:40:32 +00: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 10:25:18 +00:00
|
|
|
data_hosts.concat(ENV['EXTRA_DATA_HOSTS'].split('|')) if ENV['EXTRA_DATA_HOSTS']
|
|
|
|
|
2019-05-04 08:40:32 +00:00
|
|
|
data_hosts.uniq!
|
|
|
|
|
2018-08-23 14:03:38 +00:00
|
|
|
Rails.application.config.content_security_policy do |p|
|
|
|
|
p.base_uri :none
|
|
|
|
p.default_src :none
|
|
|
|
p.frame_ancestors :none
|
2022-11-16 07:30:00 +00:00
|
|
|
p.script_src :self, assets_host, "'wasm-unsafe-eval'"
|
2018-08-23 14:03:38 +00:00
|
|
|
p.font_src :self, assets_host
|
2018-11-10 17:53:23 +00:00
|
|
|
p.img_src :self, :data, :blob, *data_hosts
|
2020-05-10 13:15:39 +00:00
|
|
|
p.style_src :self, assets_host
|
2018-08-28 19:41:03 +00:00
|
|
|
p.media_src :self, :data, *data_hosts
|
2018-08-23 14:03:38 +00:00
|
|
|
p.frame_src :self, :https
|
2020-04-02 18:32:00 +00:00
|
|
|
p.child_src :self, :blob, assets_host
|
2019-08-19 17:31:32 +00:00
|
|
|
p.worker_src :self, :blob, assets_host
|
2019-08-19 20:02:35 +00:00
|
|
|
p.connect_src :self, :blob, :data, Rails.configuration.x.streaming_api_base_url, *data_hosts
|
2018-11-10 17:53:23 +00:00
|
|
|
p.manifest_src :self, assets_host
|
2023-09-15 19:25:05 +00:00
|
|
|
|
|
|
|
if sso_host.present?
|
|
|
|
p.form_action :self, sso_host
|
|
|
|
else
|
|
|
|
p.form_action :self
|
|
|
|
end
|
2018-08-23 14:03:38 +00:00
|
|
|
end
|
2018-08-22 15:22:34 +00:00
|
|
|
end
|
2018-04-12 12:45:17 +00: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 11:52:41 +00:00
|
|
|
|
2023-10-03 13:24:12 +00:00
|
|
|
Rails.application.config.content_security_policy_nonce_generator = ->request { SecureRandom.base64(16) }
|
2020-07-06 23:33:38 +00:00
|
|
|
|
2021-03-24 09:44:31 +00:00
|
|
|
Rails.application.config.content_security_policy_nonce_directives = %w(style-src)
|
2020-07-06 23:33:38 +00:00
|
|
|
|
2021-04-09 00:31:20 +00: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 23:33:38 +00:00
|
|
|
|
2021-04-09 00:31:20 +00:00
|
|
|
PgHero::HomeController.after_action do
|
|
|
|
request.content_security_policy_nonce_generator = nil
|
|
|
|
end
|
2022-03-14 18:20:40 +00: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
|
|
|
|
|
|
|
|
LetterOpenerWeb::LettersController.after_action do |p|
|
|
|
|
request.content_security_policy_nonce_directives = %w(script-src)
|
|
|
|
end
|
|
|
|
end
|
2020-07-06 23:33:38 +00:00
|
|
|
end
|