|
@ -15,6 +15,8 @@ class ActivityPub::ProcessAccountService < BaseService |
|
|
@domain = domain |
|
|
@domain = domain |
|
|
@collections = {} |
|
|
@collections = {} |
|
|
|
|
|
|
|
|
|
|
|
return if auto_suspend? |
|
|
|
|
|
|
|
|
RedisLock.acquire(lock_options) do |lock| |
|
|
RedisLock.acquire(lock_options) do |lock| |
|
|
if lock.acquired? |
|
|
if lock.acquired? |
|
|
@account = Account.find_remote(@username, @domain) |
|
|
@account = Account.find_remote(@username, @domain) |
|
@ -55,7 +57,7 @@ class ActivityPub::ProcessAccountService < BaseService |
|
|
@account.domain = @domain |
|
|
@account.domain = @domain |
|
|
@account.private_key = nil |
|
|
@account.private_key = nil |
|
|
@account.suspended_at = domain_block.created_at if auto_suspend? |
|
|
@account.suspended_at = domain_block.created_at if auto_suspend? |
|
|
@account.silenced_at = domain_block.created_at if auto_silence? |
|
|
|
|
|
|
|
|
@account.silenced_at = domain_block.created_at if auto_silence? |
|
|
end |
|
|
end |
|
|
|
|
|
|
|
|
def update_account |
|
|
def update_account |
|
|