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)},
|
|
|
|
{:link, [rel: 'hub', href: h.(OStatus.pubsub_path)], []},
|
|
|
|
{: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
|