Add support for numeric-based URIs for local accounts (#32724)
This commit is contained in:
@@ -39,13 +39,25 @@ class ActivityPub::TagManager
|
||||
|
||||
case target.object_type
|
||||
when :person
|
||||
target.instance_actor? ? instance_actor_url : account_url(target)
|
||||
if target.instance_actor?
|
||||
instance_actor_url
|
||||
elsif target.numeric_ap_id?
|
||||
ap_account_url(target.id)
|
||||
else
|
||||
account_url(target)
|
||||
end
|
||||
when :conversation
|
||||
context_url(target) unless target.parent_account_id.nil? || target.parent_status_id.nil?
|
||||
when :note, :comment, :activity
|
||||
return activity_account_status_url(target.account, target) if target.reblog?
|
||||
if target.account.numeric_ap_id?
|
||||
return activity_ap_account_status_url(target.account, target) if target.reblog?
|
||||
|
||||
account_status_url(target.account, target)
|
||||
ap_account_status_url(target.account.id, target)
|
||||
else
|
||||
return activity_account_status_url(target.account, target) if target.reblog?
|
||||
|
||||
account_status_url(target.account, target)
|
||||
end
|
||||
when :emoji
|
||||
emoji_url(target)
|
||||
when :flag
|
||||
@@ -57,7 +69,7 @@ class ActivityPub::TagManager
|
||||
return quote.approval_uri unless quote.quoted_account&.local?
|
||||
return if check_approval && !quote.accepted?
|
||||
|
||||
account_quote_authorization_url(quote.quoted_account, quote)
|
||||
quote.quoted_account.numeric_ap_id? ? ap_account_quote_authorization_url(quote.quoted_account_id, quote) : account_quote_authorization_url(quote.quoted_account, quote)
|
||||
end
|
||||
|
||||
def key_uri_for(target)
|
||||
@@ -68,6 +80,10 @@ class ActivityPub::TagManager
|
||||
account_url(username: username)
|
||||
end
|
||||
|
||||
def uri_for_account_id(id)
|
||||
ap_account_url(id: id)
|
||||
end
|
||||
|
||||
def generate_uri_for(_target)
|
||||
URI.join(root_url, 'payloads', SecureRandom.uuid)
|
||||
end
|
||||
@@ -75,7 +91,7 @@ class ActivityPub::TagManager
|
||||
def activity_uri_for(target)
|
||||
raise ArgumentError, 'target must be a local activity' unless %i(note comment activity).include?(target.object_type) && target.local?
|
||||
|
||||
activity_account_status_url(target.account, target)
|
||||
target.account.numeric_ap_id? ? activity_ap_account_status_url(target.account.id, target) : activity_account_status_url(target.account, target)
|
||||
end
|
||||
|
||||
def context_uri_for(target, page_params = nil)
|
||||
@@ -87,49 +103,61 @@ class ActivityPub::TagManager
|
||||
def replies_uri_for(target, page_params = nil)
|
||||
raise ArgumentError, 'target must be a local activity' unless %i(note comment activity).include?(target.object_type) && target.local?
|
||||
|
||||
account_status_replies_url(target.account, target, page_params)
|
||||
target.account.numeric_ap_id? ? ap_account_status_replies_url(target.account.id, target, page_params) : account_status_replies_url(target.account, target, page_params)
|
||||
end
|
||||
|
||||
def likes_uri_for(target)
|
||||
raise ArgumentError, 'target must be a local activity' unless %i(note comment activity).include?(target.object_type) && target.local?
|
||||
|
||||
account_status_likes_url(target.account, target)
|
||||
target.account.numeric_ap_id? ? ap_account_status_likes_url(target.account.id, target) : account_status_likes_url(target.account, target)
|
||||
end
|
||||
|
||||
def shares_uri_for(target)
|
||||
raise ArgumentError, 'target must be a local activity' unless %i(note comment activity).include?(target.object_type) && target.local?
|
||||
|
||||
account_status_shares_url(target.account, target)
|
||||
target.account.numeric_ap_id? ? ap_account_status_shares_url(target.account.id, target) : account_status_shares_url(target.account, target)
|
||||
end
|
||||
|
||||
def following_uri_for(target, ...)
|
||||
raise ArgumentError, 'target must be a local account' unless target.local?
|
||||
|
||||
account_following_index_url(target, ...)
|
||||
target.numeric_ap_id? ? ap_account_following_index_url(target.id, ...) : account_following_index_url(target, ...)
|
||||
end
|
||||
|
||||
def followers_uri_for(target, ...)
|
||||
return target.followers_url.presence unless target.local?
|
||||
|
||||
account_followers_url(target, ...)
|
||||
target.numeric_ap_id? ? ap_account_followers_url(target.id, ...) : account_followers_url(target, ...)
|
||||
end
|
||||
|
||||
def collection_uri_for(target, ...)
|
||||
raise NotImplementedError unless target.local?
|
||||
raise ArgumentError, 'target must be a local account' unless target.local?
|
||||
|
||||
account_collection_url(target, ...)
|
||||
target.numeric_ap_id? ? ap_account_collection_url(target.id, ...) : account_collection_url(target, ...)
|
||||
end
|
||||
|
||||
def inbox_uri_for(target)
|
||||
raise NotImplementedError unless target.local?
|
||||
raise ArgumentError, 'target must be a local account' unless target.local?
|
||||
|
||||
target.instance_actor? ? instance_actor_inbox_url : account_inbox_url(target)
|
||||
if target.instance_actor?
|
||||
instance_actor_inbox_url
|
||||
elsif target.numeric_ap_id?
|
||||
ap_account_inbox_url(target.id)
|
||||
else
|
||||
account_inbox_url(target)
|
||||
end
|
||||
end
|
||||
|
||||
def outbox_uri_for(target, ...)
|
||||
raise NotImplementedError unless target.local?
|
||||
raise ArgumentError, 'target must be a local account' unless target.local?
|
||||
|
||||
target.instance_actor? ? instance_actor_outbox_url(...) : account_outbox_url(target, ...)
|
||||
if target.instance_actor?
|
||||
instance_actor_outbox_url(...)
|
||||
elsif target.numeric_ap_id?
|
||||
ap_account_outbox_url(target.id, ...)
|
||||
else
|
||||
account_outbox_url(target, ...)
|
||||
end
|
||||
end
|
||||
|
||||
# Primary audience of a status
|
||||
@@ -262,10 +290,9 @@ class ActivityPub::TagManager
|
||||
|
||||
path_params = Rails.application.routes.recognize_path(uri)
|
||||
|
||||
# TODO: handle numeric IDs
|
||||
case path_params[:controller]
|
||||
when 'accounts'
|
||||
[:username, path_params[:username]]
|
||||
path_params.key?(:username) ? [:username, path_params[:username]] : [:id, path_params[:id]]
|
||||
when 'instance_actors'
|
||||
[:id, -99]
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user