2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-22 13:25:09 +00:00
|
|
|
class ResolveAccountService < BaseService
|
2017-08-08 20:52:15 +01:00
|
|
|
include JsonLdHelper
|
2019-07-09 02:27:35 +01:00
|
|
|
include DomainControlHelper
|
2020-05-10 10:41:43 +01:00
|
|
|
include WebfingerHelper
|
2019-07-09 02:27:35 +01: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 20:05:42 +00:00
|
|
|
# @param [Hash] options
|
2019-07-09 02:27:35 +01:00
|
|
|
# @option options [Boolean] :redirected Do not follow further Webfinger redirects
|
|
|
|
# @option options [Boolean] :skip_webfinger Do not attempt to refresh account data
|
2016-02-24 11:57:29 +00:00
|
|
|
# @return [Account]
|
2018-11-08 20:05:42 +00:00
|
|
|
def call(uri, options = {})
|
2019-07-09 02:27:35 +01: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 23:34:57 +01:00
|
|
|
return @account if @account&.local? || @domain.nil? || !webfinger_update_due?
|
2019-07-09 02:27:35 +01: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 16:10:12 +01:00
|
|
|
process_webfinger!(@uri)
|
2019-07-09 02:27:35 +01: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 23:28:39 +00: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-09 02:27:35 +01:00
|
|
|
|
|
|
|
# Now it is certain, it is definitely a remote account, and it
|
|
|
|
# either needs to be created, or updated from fresh data
|
|
|
|
|
|
|
|
process_account!
|
2020-11-07 23:28:39 +00:00
|
|
|
rescue Webfinger::Error, Oj::ParseError => e
|
2019-07-09 02:27:35 +01:00
|
|
|
Rails.logger.debug "Webfinger query for #{@uri} failed: #{e}"
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def process_options!(uri, options)
|
2018-11-08 20:05:42 +00:00
|
|
|
@options = options
|
2016-03-21 17:26:47 +00:00
|
|
|
|
2018-11-08 20:05:42 +00:00
|
|
|
if uri.is_a?(Account)
|
|
|
|
@account = uri
|
|
|
|
@username = @account.username
|
|
|
|
@domain = @account.domain
|
|
|
|
else
|
|
|
|
@username, @domain = uri.split('@')
|
|
|
|
end
|
2016-09-19 23:39:03 +01:00
|
|
|
|
2019-08-07 20:14:08 +01: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-09 02:27:35 +01:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2019-07-10 16:10:12 +01:00
|
|
|
def process_webfinger!(uri, redirected = false)
|
2020-05-10 10:41:43 +01:00
|
|
|
@webfinger = webfinger!("acct:#{uri}")
|
2017-07-19 13:44:04 +01:00
|
|
|
confirmed_username, confirmed_domain = @webfinger.subject.gsub(/\Aacct:/, '').split('@')
|
2016-11-03 15:57:44 +00:00
|
|
|
|
2017-07-19 13:44:04 +01:00
|
|
|
if confirmed_username.casecmp(@username).zero? && confirmed_domain.casecmp(@domain).zero?
|
|
|
|
@username = confirmed_username
|
|
|
|
@domain = confirmed_domain
|
2019-07-10 16:10:12 +01:00
|
|
|
@uri = uri
|
|
|
|
elsif !redirected
|
|
|
|
return process_webfinger!("#{confirmed_username}@#{confirmed_domain}", true)
|
2017-07-19 13:44:04 +01:00
|
|
|
else
|
2020-11-07 23:28:39 +00:00
|
|
|
raise Webfinger::RedirectError, "The URI #{uri} tries to hijack #{@username}@#{@domain}"
|
2017-04-19 16:28:35 +01:00
|
|
|
end
|
|
|
|
|
2019-07-09 02:27:35 +01:00
|
|
|
@domain = nil if TagManager.instance.local_domain?(@domain)
|
2020-11-07 23:28:39 +00:00
|
|
|
rescue Webfinger::GoneError
|
|
|
|
@gone = true
|
2019-07-09 02:27:35 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def process_account!
|
2019-07-06 22:26:16 +01:00
|
|
|
return unless activitypub_ready?
|
2016-11-03 15:57:44 +00:00
|
|
|
|
2017-07-19 13:44:04 +01:00
|
|
|
RedisLock.acquire(lock_options) do |lock|
|
|
|
|
if lock.acquired?
|
|
|
|
@account = Account.find_remote(@username, @domain)
|
2016-11-03 15:57:44 +00:00
|
|
|
|
2020-02-22 00:26:41 +00:00
|
|
|
next if actor_json.nil?
|
2019-07-06 22:26:16 +01:00
|
|
|
|
2019-07-09 02:27:35 +01:00
|
|
|
@account = ActivityPub::ProcessAccountService.new.call(@username, @domain, actor_json)
|
2018-05-16 11:29:45 +01:00
|
|
|
else
|
|
|
|
raise Mastodon::RaceConditionError
|
2017-07-19 13:44:04 +01:00
|
|
|
end
|
2017-04-15 02:16:05 +01:00
|
|
|
end
|
2016-11-03 15:57:44 +00:00
|
|
|
|
2017-07-19 13:44:04 +01:00
|
|
|
@account
|
|
|
|
end
|
2017-01-23 16:38:38 +00:00
|
|
|
|
2017-07-19 13:44:04 +01:00
|
|
|
def webfinger_update_due?
|
2020-06-09 09:26:58 +01:00
|
|
|
return false if @options[:check_delivery_availability] && !DeliveryFailureTracker.available?(@domain)
|
|
|
|
|
2018-11-08 20:05:42 +00:00
|
|
|
@account.nil? || ((!@options[:skip_webfinger] || @account.ostatus?) && @account.possibly_stale?)
|
2017-07-19 13:44:04 +01:00
|
|
|
end
|
2016-02-22 17:10:30 +00:00
|
|
|
|
2017-08-08 20:52:15 +01:00
|
|
|
def activitypub_ready?
|
2020-10-07 23:34:57 +01:00
|
|
|
['application/activity+json', 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'].include?(@webfinger.link('self', 'type'))
|
2017-08-08 20:52:15 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def actor_url
|
2020-10-07 23:34:57 +01:00
|
|
|
@actor_url ||= @webfinger.link('self', 'href')
|
2017-08-08 20:52:15 +01:00
|
|
|
end
|
|
|
|
|
2017-08-14 10:27:25 +01:00
|
|
|
def actor_json
|
|
|
|
return @actor_json if defined?(@actor_json)
|
|
|
|
|
2017-10-04 00:13:48 +01:00
|
|
|
json = fetch_resource(actor_url, false)
|
2018-05-02 11:40:24 +01:00
|
|
|
@actor_json = supported_context?(json) && equals_or_includes_any?(json['type'], ActivityPub::FetchRemoteAccountService::SUPPORTED_TYPES) ? json : nil
|
2017-08-14 10:27:25 +01:00
|
|
|
end
|
|
|
|
|
2020-11-07 23:28:39 +00:00
|
|
|
def gone_from_origin?
|
|
|
|
@gone
|
|
|
|
end
|
|
|
|
|
|
|
|
def not_yet_deleted?
|
|
|
|
@account.present? && !@account.local?
|
|
|
|
end
|
|
|
|
|
|
|
|
def queue_deletion!
|
2020-11-19 16:39:47 +00:00
|
|
|
AccountDeletionWorker.perform_async(@account.id, reserve_username: false, skip_activitypub: true)
|
2020-11-07 23:28:39 +00:00
|
|
|
end
|
|
|
|
|
2017-07-19 13:44:04 +01:00
|
|
|
def lock_options
|
|
|
|
{ redis: Redis.current, key: "resolve:#{@username}@#{@domain}" }
|
2016-02-28 13:26:26 +00:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|