2018-11-30 22:51:45 +08:00
|
|
|
# frozen_string_literal: true
|
2022-03-21 22:28:52 +08:00
|
|
|
require "content_security_policy"
|
2018-11-30 22:51:45 +08:00
|
|
|
|
|
|
|
class ContentSecurityPolicy
|
|
|
|
class Middleware
|
|
|
|
def initialize(app)
|
|
|
|
@app = app
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
|
|
|
request = Rack::Request.new(env)
|
|
|
|
_, headers, _ = response = @app.call(env)
|
|
|
|
|
2024-02-16 19:16:54 +08:00
|
|
|
return response if headers["Content-Security-Policy"].present?
|
2018-11-30 22:51:45 +08:00
|
|
|
return response unless html_response?(headers)
|
2020-03-20 03:54:42 +08:00
|
|
|
|
|
|
|
# The EnforceHostname middleware ensures request.host_with_port can be trusted
|
|
|
|
protocol = (SiteSetting.force_https || request.ssl?) ? "https://" : "http://"
|
2020-10-09 19:51:24 +08:00
|
|
|
base_url = protocol + request.host_with_port + Discourse.base_path
|
2018-11-30 22:51:45 +08:00
|
|
|
|
2021-06-15 14:57:17 +08:00
|
|
|
theme_id = env[:resolved_theme_id]
|
2019-12-30 20:17:12 +08:00
|
|
|
|
2021-06-15 14:57:17 +08:00
|
|
|
headers["Content-Security-Policy"] = policy(
|
|
|
|
theme_id,
|
|
|
|
base_url: base_url,
|
|
|
|
path_info: env["PATH_INFO"],
|
|
|
|
) if SiteSetting.content_security_policy
|
|
|
|
headers["Content-Security-Policy-Report-Only"] = policy(
|
|
|
|
theme_id,
|
|
|
|
base_url: base_url,
|
|
|
|
path_info: env["PATH_INFO"],
|
|
|
|
) if SiteSetting.content_security_policy_report_only
|
2018-11-30 22:51:45 +08:00
|
|
|
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
delegate :policy, to: :ContentSecurityPolicy
|
|
|
|
|
|
|
|
def html_response?(headers)
|
|
|
|
headers["Content-Type"] && headers["Content-Type"] =~ /html/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|