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