Add thr:in-reply-to to ostatus representer.
[akkoma] / lib / pleroma / web / ostatus / feed_representer.ex
1 defmodule Pleroma.Web.OStatus.FeedRepresenter do
2 alias Pleroma.Web.OStatus
3 alias Pleroma.Web.OStatus.{UserRepresenter, ActivityRepresenter}
4
5 def to_simple_form(user, activities, users) do
6 most_recent_update = (List.first(activities) || user).updated_at
7 |> NaiveDateTime.to_iso8601
8
9 h = fn(str) -> [to_charlist(str)] end
10
11 entries = Enum.map(activities, fn(activity) ->
12 {:entry, ActivityRepresenter.to_simple_form(activity, user)}
13 end)
14 |> Enum.filter(fn ({_, form}) -> form end)
15
16 [{
17 :feed, [
18 xmlns: 'http://www.w3.org/2005/Atom',
19 "xmlns:thr": 'http://purl.org/syndication/thread/1.0',
20 "xmlns:activity": 'http://activitystrea.ms/spec/1.0/',
21 "xmlns:poco": 'http://portablecontacts.net/spec/1.0',
22 "xmlns:ostatus": 'http://ostatus.org/schema/1.0'
23 ], [
24 {:id, h.(OStatus.feed_path(user))},
25 {:title, ['#{user.nickname}\'s timeline']},
26 {:updated, h.(most_recent_update)},
27 {:link, [rel: 'hub', href: h.(OStatus.pubsub_path(user))], []},
28 {:link, [rel: 'salmon', href: h.(OStatus.salmon_path(user))], []},
29 {:link, [rel: 'self', href: h.(OStatus.feed_path(user))], []},
30 {:author, UserRepresenter.to_simple_form(user)},
31 ] ++ entries
32 }]
33 end
34 end