lib/action_controller/metal/content_security_policy.rb
# frozen_string_literal: true module ActionController # :nodoc: module ContentSecurityPolicy extend ActiveSupport::Concern include AbstractController::Helpers include AbstractController::Callbacks included do helper_method :content_security_policy? helper_method :content_security_policy_nonce end module ClassMethods # Overrides parts of the globally configured +Content-Security-Policy+ # header: # # class PostsController < ApplicationController # content_security_policy do |policy| # policy.base_uri "https://www.example.com" # end # end # # Options can be passed similar to +before_action+. For example, pass # <tt>only: :index</tt> to override the header on the index action only: # # class PostsController < ApplicationController # content_security_policy(only: :index) do |policy| # policy.default_src :self, :https # end # end # # Pass +false+ to remove the +Content-Security-Policy+ header: # # class PostsController < ApplicationController # content_security_policy false, only: :index # end def content_security_policy(enabled = true, **options, &block) before_action(options) do if block_given? policy = current_content_security_policy yield policy request.content_security_policy = policy end unless enabled request.content_security_policy = nil end end end # Overrides the globally configured +Content-Security-Policy-Report-Only+ # header: # # class PostsController < ApplicationController # content_security_policy_report_only only: :index # end # # Pass +false+ to remove the +Content-Security-Policy-Report-Only+ header: # # class PostsController < ApplicationController # content_security_policy_report_only false, only: :index # end def content_security_policy_report_only(report_only = true, **options) before_action(options) do request.content_security_policy_report_only = report_only end end end private def content_security_policy? request.content_security_policy end def content_security_policy_nonce request.content_security_policy_nonce end def current_content_security_policy request.content_security_policy&.clone || ActionDispatch::ContentSecurityPolicy.new end end end