fedibird-fe/app/services/account_subscribe_service.rb

35 lines
1.5 KiB
Ruby
Raw Normal View History

2019-08-30 08:02:41 +00:00
# frozen_string_literal: true
class AccountSubscribeService < BaseService
# Subscribe a remote user
# @param [Account] source_account From which to subscribe
# @param [String, Account] uri User URI to subscribe in the form of username@domain (or account record)
2020-03-21 04:25:30 +00:00
def call(source_account, target_acct, options = {})
@options = { show_reblogs: true, list_id: nil }.merge(options)
if target_acct.class.name == 'Account'
target_account = target_acct
else
begin
target_account = ResolveAccountService.new.call(target_acct, skip_webfinger: true)
target_account ||= ResolveAccountService.new.call(target_acct, skip_webfinger: false)
rescue
target_account = nil
end
2019-08-30 08:02:41 +00:00
end
raise ActiveRecord::RecordNotFound if target_account.nil? || target_account.id == source_account.id || target_account.suspended?
raise Mastodon::NotPermittedError if target_account.blocking?(source_account) || source_account.blocking?(target_account) || (!target_account.local? && target_account.ostatus?) || source_account.domain_blocking?(target_account.domain)
2020-03-21 04:25:30 +00:00
if source_account.subscribing?(target_account, @options[:list_id])
2019-08-30 08:02:41 +00:00
return
end
ActivityTracker.increment('activity:interactions')
2020-03-21 04:25:30 +00:00
subscribe = source_account.subscribe!(target_account, @options[:show_reblogs], @options[:list_id])
MergeWorker.perform_async(target_account.id, source_account.id, true) if @options[:list_id].nil?
2019-08-30 08:02:41 +00:00
subscribe
end
end