Files
fizzy/lib/rails_ext/active_storage_authorization.rb
2026-04-08 14:37:24 -04:00

58 lines
1.6 KiB
Ruby

ActiveSupport.on_load :active_storage_blob do
def accessible_to?(user)
attachments.includes(:record).any? { |attachment| attachment.accessible_to?(user) } || attachments.none?
end
def publicly_accessible?
attachments.includes(:record).any? { |attachment| attachment.publicly_accessible? }
end
end
ActiveSupport.on_load :active_storage_attachment do
def accessible_to?(user)
record.try(:accessible_to?, user)
end
def publicly_accessible?
record.try(:publicly_accessible?)
end
end
Rails.application.config.to_prepare do
module ActiveStorage::Authorize
extend ActiveSupport::Concern
include Authentication
included do
# Ensure require_authentication runs after set_blob.
skip_before_action :require_authentication
before_action :require_authentication, :ensure_accessible, unless: :publicly_accessible_blob?
end
private
def bearer_token_authenticatable_request?
true
end
def publicly_accessible_blob?
@blob.publicly_accessible?
end
def ensure_accessible
unless @blob.accessible_to?(Current.user)
head :forbidden
end
end
def http_cache_forever(public: false, &block)
super(public: public && publicly_accessible_blob?, &block)
end
end
ActiveStorage::Blobs::RedirectController.include ActiveStorage::Authorize
ActiveStorage::Blobs::ProxyController.include ActiveStorage::Authorize
ActiveStorage::Representations::RedirectController.include ActiveStorage::Authorize
ActiveStorage::Representations::ProxyController.include ActiveStorage::Authorize
end