2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-22 08:25:09 -05:00
|
|
|
class ResolveAccountService < BaseService
|
2017-08-08 15:52:15 -04:00
|
|
|
include JsonLdHelper
|
2019-07-08 21:27:35 -04:00
|
|
|
include DomainControlHelper
|
2020-05-10 05:41:43 -04:00
|
|
|
include WebfingerHelper
|
2019-07-08 21:27:35 -04:00
|
|
|
|
|
|
|
# Find or create an account record for a remote user. When creating,
|
|
|
|
# look up the user's webfinger and fetch ActivityPub data
|
|
|
|
# @param [String, Account] uri URI in the username@domain format or account record
|
2018-11-08 15:05:42 -05:00
|
|
|
# @param [Hash] options
|
2019-07-08 21:27:35 -04:00
|
|
|
# @option options [Boolean] :redirected Do not follow further Webfinger redirects
|
2021-02-24 00:32:13 -05:00
|
|
|
# @option options [Boolean] :skip_webfinger Do not attempt any webfinger query or refreshing account data
|
2016-02-24 06:57:29 -05:00
|
|
|
# @return [Account]
|
2018-11-08 15:05:42 -05:00
|
|
|
def call(uri, options = {})
|
2019-07-08 21:27:35 -04:00
|
|
|
return if uri.blank?
|
|
|
|
|
|
|
|
process_options!(uri, options)
|
|
|
|
|
|
|
|
# First of all we want to check if we've got the account
|
|
|
|
# record with the URI already, and if so, we can exit early
|
|
|
|
|
|
|
|
return if domain_not_allowed?(@domain)
|
|
|
|
|
|
|
|
@account ||= Account.find_remote(@username, @domain)
|
|
|
|
|
2020-10-07 18:34:57 -04:00
|
|
|
return @account if @account&.local? || @domain.nil? || !webfinger_update_due?
|
2019-07-08 21:27:35 -04:00
|
|
|
|
|
|
|
# At this point we are in need of a Webfinger query, which may
|
|
|
|
# yield us a different username/domain through a redirect
|
2019-07-10 11:10:12 -04:00
|
|
|
process_webfinger!(@uri)
|
2020-11-19 13:52:06 -05:00
|
|
|
@domain = nil if TagManager.instance.local_domain?(@domain)
|
2019-07-08 21:27:35 -04:00
|
|
|
|
|
|
|
# Because the username/domain pair may be different than what
|
|
|
|
# we already checked, we need to check if we've already got
|
|
|
|
# the record with that URI, again
|
|
|
|
|
|
|
|
return if domain_not_allowed?(@domain)
|
|
|
|
|
|
|
|
@account ||= Account.find_remote(@username, @domain)
|
|
|
|
|
2020-11-07 18:28:39 -05:00
|
|
|
if gone_from_origin? && not_yet_deleted?
|
|
|
|
queue_deletion!
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
return @account if @account&.local? || gone_from_origin? || !webfinger_update_due?
|
2019-07-08 21:27:35 -04:00
|
|
|
|
|
|
|
# Now it is certain, it is definitely a remote account, and it
|
|
|
|
# either needs to be created, or updated from fresh data
|
|
|
|
|
2020-12-18 17:26:26 -05:00
|
|
|
fetch_account!
|
2020-11-07 18:28:39 -05:00
|
|
|
rescue Webfinger::Error, Oj::ParseError => e
|
2019-07-08 21:27:35 -04:00
|
|
|
Rails.logger.debug "Webfinger query for #{@uri} failed: #{e}"
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def process_options!(uri, options)
|
2018-11-08 15:05:42 -05:00
|
|
|
@options = options
|
2016-03-21 13:26:47 -04:00
|
|
|
|
2018-11-08 15:05:42 -05:00
|
|
|
if uri.is_a?(Account)
|
|
|
|
@account = uri
|
|
|
|
@username = @account.username
|
|
|
|
@domain = @account.domain
|
|
|
|
else
|
|
|
|
@username, @domain = uri.split('@')
|
|
|
|
end
|
2016-09-19 18:39:03 -04:00
|
|
|
|
2019-08-07 15:14:08 -04:00
|
|
|
@domain = begin
|
|
|
|
if TagManager.instance.local_domain?(@domain)
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
TagManager.instance.normalize_domain(@domain)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@uri = [@username, @domain].compact.join('@')
|
2019-07-08 21:27:35 -04:00
|
|
|
end
|
2016-02-20 16:53:20 -05:00
|
|
|
|
2020-11-19 13:52:06 -05:00
|
|
|
def process_webfinger!(uri)
|
2020-05-10 05:41:43 -04:00
|
|
|
@webfinger = webfinger!("acct:#{uri}")
|
2020-11-19 13:52:06 -05:00
|
|
|
confirmed_username, confirmed_domain = split_acct(@webfinger.subject)
|
2016-11-03 11:57:44 -04:00
|
|
|
|
2017-07-19 08:44:04 -04:00
|
|
|
if confirmed_username.casecmp(@username).zero? && confirmed_domain.casecmp(@domain).zero?
|
|
|
|
@username = confirmed_username
|
|
|
|
@domain = confirmed_domain
|
2020-11-19 13:52:06 -05:00
|
|
|
return
|
2017-04-19 11:28:35 -04:00
|
|
|
end
|
|
|
|
|
2020-11-19 13:52:06 -05:00
|
|
|
# Account doesn't match, so it may have been redirected
|
|
|
|
@webfinger = webfinger!("acct:#{confirmed_username}@#{confirmed_domain}")
|
|
|
|
@username, @domain = split_acct(@webfinger.subject)
|
|
|
|
|
|
|
|
unless confirmed_username.casecmp(@username).zero? && confirmed_domain.casecmp(@domain).zero?
|
|
|
|
raise Webfinger::RedirectError, "The URI #{uri} tries to hijack #{@username}@#{@domain}"
|
|
|
|
end
|
2020-11-07 18:28:39 -05:00
|
|
|
rescue Webfinger::GoneError
|
|
|
|
@gone = true
|
2019-07-08 21:27:35 -04:00
|
|
|
end
|
|
|
|
|
2020-11-19 13:52:06 -05:00
|
|
|
def split_acct(acct)
|
|
|
|
acct.gsub(/\Aacct:/, '').split('@')
|
|
|
|
end
|
|
|
|
|
2020-12-18 17:26:26 -05:00
|
|
|
def fetch_account!
|
2019-07-06 17:26:16 -04:00
|
|
|
return unless activitypub_ready?
|
2016-11-03 11:57:44 -04:00
|
|
|
|
2017-07-19 08:44:04 -04:00
|
|
|
RedisLock.acquire(lock_options) do |lock|
|
|
|
|
if lock.acquired?
|
2020-12-18 17:26:26 -05:00
|
|
|
@account = ActivityPub::FetchRemoteAccountService.new.call(actor_url)
|
2018-05-16 06:29:45 -04:00
|
|
|
else
|
|
|
|
raise Mastodon::RaceConditionError
|
2017-07-19 08:44:04 -04:00
|
|
|
end
|
2017-04-14 21:16:05 -04:00
|
|
|
end
|
2016-11-03 11:57:44 -04:00
|
|
|
|
2017-07-19 08:44:04 -04:00
|
|
|
@account
|
|
|
|
end
|
2017-01-23 11:38:38 -05:00
|
|
|
|
2017-07-19 08:44:04 -04:00
|
|
|
def webfinger_update_due?
|
2020-06-09 04:26:58 -04:00
|
|
|
return false if @options[:check_delivery_availability] && !DeliveryFailureTracker.available?(@domain)
|
2021-02-24 00:32:13 -05:00
|
|
|
return false if @options[:skip_webfinger]
|
2020-06-09 04:26:58 -04:00
|
|
|
|
2021-05-08 10:22:18 -04:00
|
|
|
@account.nil? || @account.possibly_stale?
|
2017-07-19 08:44:04 -04:00
|
|
|
end
|
2016-02-22 12:10:30 -05:00
|
|
|
|
2017-08-08 15:52:15 -04:00
|
|
|
def activitypub_ready?
|
2020-10-07 18:34:57 -04:00
|
|
|
['application/activity+json', 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'].include?(@webfinger.link('self', 'type'))
|
2017-08-08 15:52:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def actor_url
|
2020-10-07 18:34:57 -04:00
|
|
|
@actor_url ||= @webfinger.link('self', 'href')
|
2017-08-08 15:52:15 -04:00
|
|
|
end
|
|
|
|
|
2020-11-07 18:28:39 -05:00
|
|
|
def gone_from_origin?
|
|
|
|
@gone
|
|
|
|
end
|
|
|
|
|
|
|
|
def not_yet_deleted?
|
|
|
|
@account.present? && !@account.local?
|
|
|
|
end
|
|
|
|
|
|
|
|
def queue_deletion!
|
2021-08-20 02:40:33 -04:00
|
|
|
@account.suspend!(origin: :remote)
|
2020-11-19 11:39:47 -05:00
|
|
|
AccountDeletionWorker.perform_async(@account.id, reserve_username: false, skip_activitypub: true)
|
2020-11-07 18:28:39 -05:00
|
|
|
end
|
|
|
|
|
2017-07-19 08:44:04 -04:00
|
|
|
def lock_options
|
2021-05-19 17:52:08 -04:00
|
|
|
{ redis: Redis.current, key: "resolve:#{@username}@#{@domain}", autorelease: 15.minutes.seconds }
|
2016-02-28 08:26:26 -05:00
|
|
|
end
|
2016-02-20 16:53:20 -05:00
|
|
|
end
|