akkoma/lib/pleroma/web/ostatus/feed_representer.ex

29 lines
902 B
Elixir
Raw Normal View History

2017-04-18 16:41:51 +00:00
defmodule Pleroma.Web.OStatus.FeedRepresenter do
alias Pleroma.Web.OStatus
2017-04-20 08:16:06 +00:00
alias Pleroma.Web.OStatus.{UserRepresenter, ActivityRepresenter}
2017-04-18 16:41:51 +00:00
def to_simple_form(user, activities, users) do
most_recent_update = List.first(activities).updated_at
|> NaiveDateTime.to_iso8601
h = fn(str) -> [to_charlist(str)] end
2017-04-20 08:16:06 +00:00
entries = Enum.map(activities, fn(activity) ->
{:entry, ActivityRepresenter.to_simple_form(activity, user)}
end)
2017-04-18 16:41:51 +00:00
[{
:feed, [
xmlns: 'http://www.w3.org/2005/Atom',
"xmlns:activity": 'http://activitystrea.ms/spec/1.0/'
], [
{:id, h.(OStatus.feed_path(user))},
{:title, ['#{user.nickname}\'s timeline']},
{:updated, h.(most_recent_update)},
2017-04-20 15:47:33 +00:00
{:link, [rel: 'hub', href: h.(OStatus.pubsub_path(user))], []},
2017-04-18 16:41:51 +00:00
{:author, UserRepresenter.to_simple_form(user)}
2017-04-20 08:16:06 +00:00
] ++ entries
2017-04-18 16:41:51 +00:00
}]
end
end