2016-11-15 16:56:29 +01:00
# frozen_string_literal: true
2018-01-22 14:25:09 +01:00
class ResolveAccountService < BaseService
2019-07-09 03:27:35 +02:00
include DomainControlHelper
2022-04-28 17:47:34 +02:00
include Redisable
2022-05-13 00:02:35 +02:00
include Lockable
2019-07-09 03:27:35 +02: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 21:05:42 +01:00
# @param [Hash] options
2019-07-09 03:27:35 +02:00
# @option options [Boolean] :redirected Do not follow further Webfinger redirects
2021-02-24 06:32:13 +01:00
# @option options [Boolean] :skip_webfinger Do not attempt any webfinger query or refreshing account data
2022-10-29 01:31:45 +02:00
# @option options [Boolean] :skip_cache Get the latest data from origin even if cache is not due to update yet
2022-09-20 23:30:26 +02:00
# @option options [Boolean] :suppress_errors When failing, return nil instead of raising an error
2016-02-24 12:57:29 +01:00
# @return [Account]
2018-11-08 21:05:42 +01:00
def call ( uri , options = { } )
2019-07-09 03:27:35 +02: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-08 00:34:57 +02:00
return @account if @account & . local? || @domain . nil? || ! webfinger_update_due?
2019-07-09 03:27:35 +02: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 17:10:12 +02:00
process_webfinger! ( @uri )
2020-11-19 19:52:06 +01:00
@domain = nil if TagManager . instance . local_domain? ( @domain )
2019-07-09 03:27:35 +02: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-08 00:28:39 +01: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 03:27:35 +02: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 23:26:26 +01:00
fetch_account!
2022-09-20 23:30:26 +02:00
rescue Webfinger :: Error = > e
2023-02-07 03:44:36 +01:00
Rails . logger . debug { " Webfinger query for #{ @uri } failed: #{ e } " }
2022-09-20 23:30:26 +02:00
raise unless @options [ :suppress_errors ]
2019-07-09 03:27:35 +02:00
end
private
def process_options! ( uri , options )
2022-09-20 23:30:26 +02:00
@options = { suppress_errors : true } . merge ( options )
2016-03-21 18:26:47 +01:00
2018-11-08 21:05:42 +01:00
if uri . is_a? ( Account )
@account = uri
@username = @account . username
@domain = @account . domain
else
2022-05-02 01:00:08 +02:00
@username , @domain = uri . strip . gsub ( / \ A@ / , '' ) . split ( '@' )
2018-11-08 21:05:42 +01:00
end
2016-09-20 00:39:03 +02:00
2023-02-18 23:09:40 +01:00
@domain = if TagManager . instance . local_domain? ( @domain )
nil
else
TagManager . instance . normalize_domain ( @domain )
end
2019-08-07 21:14:08 +02:00
@uri = [ @username , @domain ] . compact . join ( '@' )
2019-07-09 03:27:35 +02:00
end
2016-02-20 22:53:20 +01:00
2020-11-19 19:52:06 +01:00
def process_webfinger! ( uri )
2024-10-01 11:54:42 +02:00
@webfinger = Webfinger . new ( " acct: #{ uri } " ) . perform
2020-11-19 19:52:06 +01:00
confirmed_username , confirmed_domain = split_acct ( @webfinger . subject )
2016-11-03 16:57:44 +01:00
2017-07-19 14:44:04 +02:00
if confirmed_username . casecmp ( @username ) . zero? && confirmed_domain . casecmp ( @domain ) . zero?
@username = confirmed_username
@domain = confirmed_domain
2020-11-19 19:52:06 +01:00
return
2017-04-19 17:28:35 +02:00
end
2020-11-19 19:52:06 +01:00
# Account doesn't match, so it may have been redirected
2024-10-01 11:54:42 +02:00
@webfinger = Webfinger . new ( " acct: #{ confirmed_username } @ #{ confirmed_domain } " ) . perform
2020-11-19 19:52:06 +01:00
@username , @domain = split_acct ( @webfinger . subject )
2023-02-18 12:37:47 +01:00
raise Webfinger :: RedirectError , " Too many webfinger redirects for URI #{ uri } (stopped at #{ @username } @ #{ @domain } ) " unless confirmed_username . casecmp ( @username ) . zero? && confirmed_domain . casecmp ( @domain ) . zero?
2020-11-08 00:28:39 +01:00
rescue Webfinger :: GoneError
@gone = true
2019-07-09 03:27:35 +02:00
end
2020-11-19 19:52:06 +01:00
def split_acct ( acct )
2023-11-28 19:37:54 +01:00
acct . delete_prefix ( 'acct:' ) . split ( '@' ) . tap do | parts |
raise Webfinger :: Error , 'Webfinger response is missing user or host value' unless parts . size == 2
end
2020-11-19 19:52:06 +01:00
end
2020-12-18 23:26:26 +01:00
def fetch_account!
2023-05-02 18:16:07 +02:00
with_redis_lock ( " resolve: #{ @username } @ #{ @domain } " ) do
2022-09-20 23:30:26 +02:00
@account = ActivityPub :: FetchRemoteAccountService . new . call ( actor_url , suppress_errors : @options [ :suppress_errors ] )
2017-04-15 03:16:05 +02:00
end
2016-11-03 16:57:44 +01:00
2017-07-19 14:44:04 +02:00
@account
end
2017-01-23 17:38:38 +01:00
2017-07-19 14:44:04 +02:00
def webfinger_update_due?
2020-06-09 10:26:58 +02:00
return false if @options [ :check_delivery_availability ] && ! DeliveryFailureTracker . available? ( @domain )
2021-02-24 06:32:13 +01:00
return false if @options [ :skip_webfinger ]
2020-06-09 10:26:58 +02:00
2022-10-29 01:31:45 +02:00
@options [ :skip_cache ] || @account . nil? || @account . possibly_stale?
2017-07-19 14:44:04 +02:00
end
2016-02-22 18:10:30 +01:00
2017-08-08 21:52:15 +02:00
def actor_url
2024-07-23 16:42:31 +02:00
@actor_url || = @webfinger . self_link_href
2017-08-08 21:52:15 +02:00
end
2020-11-08 00:28:39 +01:00
def gone_from_origin?
@gone
end
def not_yet_deleted?
@account . present? && ! @account . local?
end
def queue_deletion!
2021-08-20 08:40:33 +02:00
@account . suspend! ( origin : :remote )
2022-01-28 00:43:56 +01:00
AccountDeletionWorker . perform_async ( @account . id , { 'reserve_username' = > false , 'skip_activitypub' = > true } )
2020-11-08 00:28:39 +01:00
end
2016-02-20 22:53:20 +01:00
end