Files
sure/config/initializers/active_storage_authorization.rb
ghost e59235fdc5 feat(statements): add account statement vault (#1753)
* feat(statements): add account statement vault

Add web-only statement uploads, account linking, duplicate detection, and per-account coverage/reconciliation checks without mutating transactions. Extend ActiveStorage authorization and targeted tests for family/account scoping.

* fix(statements): return deleted account statements to inbox

Preserve linked statement records when an account is deleted by moving them back to the unmatched inbox, then expand coverage for upload validation, sanitized parser metadata, unavailable reconciliation, and missing-month coverage.

* fix(statements): harden vault upload review flows

Address review and security findings in the statement vault by preserving sanitized parser metadata, failing closed on orphaned statement blobs, avoiding account_id mass assignment permits, and adding regression coverage for link/delete edge cases.

* fix(statements): harden vault upload and access controls

* fix(statements): address vault hardening review

* fix(statements): address vault review feedback

Prioritize SHA-256 duplicate detection while preserving MD5 fallback for legacy rows.

Remove free-form account notes from statement matching, document direct account-destroy unlinking, and add year-selectable historical coverage with muted out-of-range months.

* fix(statements): harden vault review follow-ups

Clarify legacy MD5 checksum use, whitelist statement balance helper dispatch, and preserve sanitized parser metadata.

Hide statement management controls from read-only viewers while keeping server-side authorization unchanged.

* fix(statements): repair settings system coverage

Allow the changelog provider lookup in the self-hosting settings system test, include Statement Vault in settings navigation coverage, and align the feature title casing. Update the devcontainer so ActiveStorage and parallel system tests can run in the documented environment.

* fix(statements): move vault beside accounts

Place Statement Vault with account settings instead of between Imports and Exports. Keep settings footer ordering and system navigation coverage aligned, including the non-admin visibility guard.

* fix(statements): address vault review cleanup

Resolve CodeRabbit review feedback for statement upload validation, duplicate race handling, account statement matching semantics, metadata detection, ActiveStorage authorization tests, and small UI/style cleanups.

* fix(statements): address vault cleanup review

* fix(statements): deduplicate vault style helpers

* fix(statements): close vault review follow-ups

* fix(statements): refresh schema after upstream rebase

* fix(statements): process vault uploads sequentially

* fix(statements): close vault review follow-ups

* fix(statements): scope vault index to accessible accounts

* fix(statements): harden statement vault readiness

Squash the statement vault migration hardening into the feature migration, tighten Active Storage authorization edge cases, bound CSV metadata detection, and add real PDF fixture coverage for stored statements.

Validation: targeted statement/auth/controller/provider tests, full Rails suite, system tests, RuboCop, Biome, Brakeman, Zeitwerk, importmap audit, npm audit, ERB lint, CodeRabbit, and Codex Security all passed locally.

* fix(statements): close vault review follow-ups

Move statement unlinking to after account destroy commit, keep Kraken account creation on the shared crypto helper, and add statement metadata length limits with DB checks.

Validation: fresh devcontainer with fresh DB via db:prepare, focused account/statement/Kraken/Binance tests, RuboCop, Brakeman, Zeitwerk, git diff --check, CodeRabbit, and Codex Security passed before commit.

* fix(statements): address vault scan follow-ups

Move statement tab data setup out of the ERB partial, harden reconciliation labels and coverage initialization, and tighten statement schema constraints.

Validation: CodeRabbit and Codex Security reviewed the current PR diff; Rails focused tests, full Rails tests, system tests, RuboCop, Brakeman, Zeitwerk, ERB lint, npm lint, importmap audit, npm audit, and git diff --check passed.

* fix(statements): defer vault tab loading

---------

Signed-off-by: Juan José Mata <juanjo.mata@gmail.com>
Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
2026-05-13 21:05:11 +02:00

108 lines
3.4 KiB
Ruby

# Override Active Storage blob serving to enforce authorization
Rails.application.config.to_prepare do
module ActiveStorageAttachmentAuthorization
extend ActiveSupport::Concern
PROTECTED_RECORD_TYPES = %w[Transaction AccountStatement].freeze
included do
include Authentication
before_action :authorize_protected_attachment
end
private
def authorize_protected_attachment
# Direct uploads create unattached blobs; model/controller code authorizes the later attachment.
return if is_a?(ActiveStorage::DirectUploadsController)
return unless authorized_blob
attachments = authorized_attachments
raise ActiveRecord::RecordNotFound if attachments.empty?
protected_attachments = attachments.select { |attachment| attachment.record_type.in?(PROTECTED_RECORD_TYPES) }
return if protected_attachments.empty?
return if protected_attachments.all? { |attachment| protected_attachment_authorized?(attachment) }
raise ActiveRecord::RecordNotFound
end
def protected_attachment_authorized?(attachment)
case attachment.record_type
when "Transaction"
transaction_attachment_authorized?(attachment)
when "AccountStatement"
account_statement_attachment_authorized?(attachment)
else
false
end
end
def transaction_attachment_authorized?(attachment)
transaction = attachment.record
return false if transaction.nil?
Current.family == transaction.entry.account.family
rescue ActiveRecord::RecordNotFound, NoMethodError
false
end
def account_statement_attachment_authorized?(attachment)
statement = attachment.record
return false if statement.nil?
statement.viewable_by?(Current.user)
rescue ActiveRecord::RecordNotFound
false
end
def authorized_attachments
return nil unless authorized_blob
@authorized_attachments ||= ActiveStorage::Attachment.where(blob: authorized_blob).to_a
end
def authorized_blob
@blob || @representation&.blob || disk_service_blob
end
def disk_service_blob
return nil unless is_a?(ActiveStorage::DiskController) && action_name == "show"
key = decode_verified_key&.fetch(:key, nil)
return nil if key.blank?
blob_key = key.to_s[%r{\Avariants/([^/]+)/}, 1] || key
ActiveStorage::Blob.find_by(key: blob_key)
rescue ActiveStorage::InvalidKeyError
nil
end
def new_session_url
Rails.application.routes.url_helpers.new_session_url(active_storage_auth_url_options)
end
def new_registration_url
Rails.application.routes.url_helpers.new_registration_url(active_storage_auth_url_options)
end
def active_storage_auth_url_options
{
protocol: request.protocol,
host: request.host,
port: request.optional_port
}.compact
end
end
[
ActiveStorage::Blobs::RedirectController,
ActiveStorage::Blobs::ProxyController,
ActiveStorage::Representations::RedirectController,
ActiveStorage::Representations::ProxyController,
(ActiveStorage::DiskController if defined?(ActiveStorage::DiskController)),
(ActiveStorage::DirectUploadsController if defined?(ActiveStorage::DirectUploadsController))
].compact.each do |controller|
controller.include ActiveStorageAttachmentAuthorization
end
end