mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 07:21:13 +01:00
25 lines
684 B
Ruby
25 lines
684 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Import::RelationshipWorker
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options queue: 'pull', retry: 8, dead: false
|
|
|
|
def perform(account_id, target_account_uri, relationship)
|
|
from_account = Account.find(account_id)
|
|
target_account = ResolveRemoteAccountService.new.call(target_account_uri)
|
|
|
|
return if target_account.nil?
|
|
|
|
case relationship
|
|
when 'follow'
|
|
FollowService.new.call(from_account, target_account.acct)
|
|
when 'block'
|
|
BlockService.new.call(from_account, target_account)
|
|
when 'mute'
|
|
MuteService.new.call(from_account, target_account)
|
|
end
|
|
rescue ActiveRecord::RecordNotFound
|
|
true
|
|
end
|
|
end
|