As per discussion on https://discourse.diasporafoundation.org/t/removing-diaspora-s-current-chat-integration/2718, nobody raised serious concerns or objections. Given future plans, we do not think having an unfinished implementation of something that likely will not get finished in the current form is worth it. So let's get rid of it.
43 lines
1.9 KiB
Ruby
43 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
SecureHeaders::Configuration.default do |config|
|
|
config.hsts = SecureHeaders::OPT_OUT # added by Rack::SSL
|
|
|
|
# rubocop:disable Lint/PercentStringArray
|
|
csp = {
|
|
default_src: %w['none'],
|
|
connect_src: %w['self' embedr.flickr.com geo.query.yahoo.com nominatim.openstreetmap.org api.github.com],
|
|
font_src: %w['self'],
|
|
form_action: %w['self' platform.twitter.com syndication.twitter.com],
|
|
frame_ancestors: %w['self'],
|
|
frame_src: %w['self' blob: www.youtube.com w.soundcloud.com twitter.com platform.twitter.com
|
|
syndication.twitter.com player.vimeo.com www.mixcloud.com www.dailymotion.com media.ccc.de
|
|
bandcamp.com www.instagram.com],
|
|
img_src: %w['self' data: blob: *],
|
|
media_src: %w[https:],
|
|
script_src: %w['self' blob: 'unsafe-eval' platform.twitter.com cdn.syndication.twimg.com widgets.flickr.com
|
|
embedr.flickr.com www.instagram.com 'unsafe-inline'],
|
|
style_src: %w['self' 'unsafe-inline' platform.twitter.com *.twimg.com],
|
|
manifest_src: %w['self']
|
|
}
|
|
# rubocop:enable Lint/PercentStringArray
|
|
|
|
if AppConfig.environment.assets.host.present?
|
|
asset_host = Addressable::URI.parse(AppConfig.environment.assets.host.get).host
|
|
csp[:font_src] << asset_host
|
|
csp[:script_src] << asset_host
|
|
csp[:style_src] << asset_host
|
|
end
|
|
|
|
csp[:script_src] << "code.jquery.com" if AppConfig.privacy.jquery_cdn?
|
|
csp[:form_action] << "www.paypal.com" if AppConfig.settings.paypal_donations.enable?
|
|
|
|
csp[:report_uri] = [AppConfig.settings.csp.report_uri] if AppConfig.settings.csp.report_uri.present?
|
|
|
|
if AppConfig.settings.csp.report_only?
|
|
config.csp = SecureHeaders::OPT_OUT
|
|
config.csp_report_only = csp if AppConfig.settings.csp.report_uri.present?
|
|
else
|
|
config.csp = csp
|
|
end
|
|
end
|