You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.0 KiB

  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: blocks
  5. #
  6. # id :bigint(8) not null, primary key
  7. # created_at :datetime not null
  8. # updated_at :datetime not null
  9. # account_id :bigint(8) not null
  10. # target_account_id :bigint(8) not null
  11. # uri :string
  12. #
  13. class Block < ApplicationRecord
  14. include Paginable
  15. include RelationshipCacheable
  16. belongs_to :account
  17. belongs_to :target_account, class_name: 'Account'
  18. validates :account_id, uniqueness: { scope: :target_account_id }
  19. def local?
  20. false # Force uri_for to use uri attribute
  21. end
  22. after_commit :remove_blocking_cache
  23. before_validation :set_uri, only: :create
  24. private
  25. def remove_blocking_cache
  26. Rails.cache.delete("exclude_account_ids_for:#{account_id}")
  27. Rails.cache.delete("exclude_account_ids_for:#{target_account_id}")
  28. end
  29. def set_uri
  30. self.uri = ActivityPub::TagManager.instance.generate_uri_for(self) if uri.nil?
  31. end
  32. end