aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-04-30 11:17:34 +0200
committerRoger Braun <roger@rogerbraun.net>2017-04-30 11:17:34 +0200
commitd937a8e69567ace33a72d5248c046860305076d7 (patch)
treebd1dfef39f3e5cd8882004bbfac9fbd07e731d47 /lib
parent9d7c3190cc346bf2a5576b6b93c26723059ae9a1 (diff)
downloadpleroma-d937a8e69567ace33a72d5248c046860305076d7.tar.gz
Add thr:in-reply-to to ostatus representer.
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/web/ostatus/activity_representer.ex19
-rw-r--r--lib/pleroma/web/ostatus/feed_representer.ex1
2 files changed, 19 insertions, 1 deletions
diff --git a/lib/pleroma/web/ostatus/activity_representer.ex b/lib/pleroma/web/ostatus/activity_representer.ex
index 30e695bcc..07b9033b9 100644
--- a/lib/pleroma/web/ostatus/activity_representer.ex
+++ b/lib/pleroma/web/ostatus/activity_representer.ex
@@ -1,4 +1,19 @@
defmodule Pleroma.Web.OStatus.ActivityRepresenter do
+ alias Pleroma.Activity
+ require Logger
+
+ defp get_in_reply_to(%{"object" => %{ "inReplyTo" => in_reply_to}}) do
+ with %Activity{data: %{"id" => id}} <- Activity.get_create_activity_by_object_ap_id(in_reply_to) do
+ [{:"thr:in-reply-to", [ref: to_charlist(id)], []}]
+ else _e ->
+ Logger.debug("Couldn't find replied-to activity:")
+ Logger.debug(in_reply_to)
+ []
+ end
+ end
+
+ defp get_in_reply_to(_), do: []
+
def to_simple_form(%{data: %{"object" => %{"type" => "Note"}}} = activity, user) do
h = fn(str) -> [to_charlist(str)] end
@@ -12,6 +27,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do
{:link, [rel: 'enclosure', href: to_charlist(url["href"]), type: to_charlist(url["mediaType"])], []}
end)
+ in_reply_to = get_in_reply_to(activity.data)
+
[
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/note']},
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/post']},
@@ -22,7 +39,7 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do
{:updated, h.(updated_at)},
{:"ostatus:conversation", [], h.(activity.data["context"])},
{:link, [href: h.(activity.data["context"]), rel: 'ostatus:conversation'], []}
- ] ++ attachments
+ ] ++ attachments ++ in_reply_to
end
def to_simple_form(_,_), do: nil
diff --git a/lib/pleroma/web/ostatus/feed_representer.ex b/lib/pleroma/web/ostatus/feed_representer.ex
index 10a1ffb25..db7b685f3 100644
--- a/lib/pleroma/web/ostatus/feed_representer.ex
+++ b/lib/pleroma/web/ostatus/feed_representer.ex
@@ -16,6 +16,7 @@ defmodule Pleroma.Web.OStatus.FeedRepresenter do
[{
:feed, [
xmlns: 'http://www.w3.org/2005/Atom',
+ "xmlns:thr": 'http://purl.org/syndication/thread/1.0',
"xmlns:activity": 'http://activitystrea.ms/spec/1.0/',
"xmlns:poco": 'http://portablecontacts.net/spec/1.0',
"xmlns:ostatus": 'http://ostatus.org/schema/1.0'