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

33 lines
1.1 KiB
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
2017-04-23 08:38:24 +00:00
most_recent_update = (List.first(activities) || user).updated_at
2017-04-18 16:41:51 +00:00
|> NaiveDateTime.to_iso8601
h = fn(str) -> [to_charlist(str)] end
entries = activities
|> Enum.map(fn(activity) ->
2017-04-20 08:16:06 +00:00
{:entry, ActivityRepresenter.to_simple_form(activity, user)}
end)
2017-04-22 12:37:54 +00:00
|> Enum.filter(fn ({_, form}) -> form end)
2017-04-20 08:16:06 +00:00
2017-04-18 16:41:51 +00:00
[{
:feed, [
xmlns: 'http://www.w3.org/2005/Atom',
2017-04-22 13:11:13 +00:00
"xmlns:activity": 'http://activitystrea.ms/spec/1.0/',
"xmlns:poco": 'http://portablecontacts.net/spec/1.0'
2017-04-18 16:41:51 +00:00
], [
{: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-22 10:11:36 +00:00
{:link, [rel: 'self', href: h.(OStatus.feed_path(user))], []},
{: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