commit: 504737e860a13f9636fc47131ff27238236e8971
parent: af2d22f88cf84313e11a5f0b1f3a1170f721967e
Author: unarist <m.unarist@gmail.com>
Date: Fri, 1 Sep 2017 20:34:04 +0900
Convert OStatus tag to ActivityPub id on in_reply_to resolution (#4756)
Diffstat:
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/app/lib/ostatus/activity/base.rb b/app/lib/ostatus/activity/base.rb
@@ -56,6 +56,16 @@ class OStatus::Activity::Base
Status.find_by(uri: uri)
end
+ def find_activitypub_status(uri, href)
+ tag_matches = /tag:([^,:]+)[^:]*:objectId=([\d]+)/.match(uri)
+ href_matches = %r{/users/([^/]+)}.match(href)
+
+ unless tag_matches.nil? || href_matches.nil?
+ uri = "https://#{tag_matches[1]}/users/#{href_matches[1]}/statuses/#{tag_matches[2]}"
+ Status.find_by(uri: uri)
+ end
+ end
+
def redis
Redis.current
end
diff --git a/app/lib/ostatus/activity/creation.rb b/app/lib/ostatus/activity/creation.rb
@@ -36,7 +36,7 @@ class OStatus::Activity::Creation < OStatus::Activity::Base
language: content_language,
visibility: visibility_scope,
conversation: find_or_create_conversation,
- thread: thread? ? find_status(thread.first) : nil
+ thread: thread? ? find_status(thread.first) || find_activitypub_status(thread.first, thread.second) : nil
)
save_mentions(status)