This commit is contained in:
Matt Jankowski 2024-04-26 18:09:09 +00:00 committed by GitHub
commit 59cd18a513
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 22 additions and 15 deletions

View File

@ -13,6 +13,7 @@
#
class Block < ApplicationRecord
include ActivityPubPayloadGeneration
include Paginable
include RelationshipCacheable
@ -25,7 +26,6 @@ class Block < ApplicationRecord
false # Force uri_for to use uri attribute
end
before_validation :set_uri, only: :create
after_commit :invalidate_blocking_cache
after_commit :invalidate_follow_recommendations_cache
@ -39,8 +39,4 @@ class Block < ApplicationRecord
def invalidate_follow_recommendations_cache
Rails.cache.delete("follow_recommendations/#{account_id}")
end
def set_uri
self.uri = ActivityPub::TagManager.instance.generate_uri_for(self) if uri.nil?
end
end

View File

@ -0,0 +1,19 @@
# frozen_string_literal: true
module ActivityPubPayloadGeneration
extend ActiveSupport::Concern
included do
before_validation :generate_payload_uri,
only: :create,
unless: :uri?
end
private
def generate_payload_uri
self.uri = ActivityPub::TagManager
.instance
.generate_uri_for(self)
end
end

View File

@ -16,6 +16,7 @@
#
class Follow < ApplicationRecord
include ActivityPubPayloadGeneration
include Paginable
include RelationshipCacheable
include RateLimitable
@ -42,7 +43,6 @@ class Follow < ApplicationRecord
destroy!
end
before_validation :set_uri, only: :create
after_create :increment_cache_counters
after_destroy :remove_endorsements
after_destroy :decrement_cache_counters
@ -51,10 +51,6 @@ class Follow < ApplicationRecord
private
def set_uri
self.uri = ActivityPub::TagManager.instance.generate_uri_for(self) if uri.nil?
end
def remove_endorsements
AccountPin.where(target_account_id: target_account_id, account_id: account_id).delete_all
end

View File

@ -16,6 +16,7 @@
#
class FollowRequest < ApplicationRecord
include ActivityPubPayloadGeneration
include Paginable
include RelationshipCacheable
include RateLimitable
@ -44,15 +45,10 @@ class FollowRequest < ApplicationRecord
false # Force uri_for to use uri attribute
end
before_validation :set_uri, only: :create
after_commit :invalidate_follow_recommendations_cache
private
def set_uri
self.uri = ActivityPub::TagManager.instance.generate_uri_for(self) if uri.nil?
end
def invalidate_follow_recommendations_cache
Rails.cache.delete("follow_recommendations/#{account_id}")
end