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}
|
2018-01-30 10:26:07 +00:00
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Web.MediaProxy
|
2017-04-18 16:41:51 +00:00
|
|
|
|
2017-11-19 01:22:07 +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
|
|
|
|
|
2017-04-27 13:18:50 +00:00
|
|
|
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-30 09:17:34 +00:00
|
|
|
"xmlns:thr": 'http://purl.org/syndication/thread/1.0',
|
2017-04-22 13:11:13 +00:00
|
|
|
"xmlns:activity": 'http://activitystrea.ms/spec/1.0/',
|
2017-04-26 06:47:22 +00:00
|
|
|
"xmlns:poco": 'http://portablecontacts.net/spec/1.0',
|
|
|
|
"xmlns:ostatus": 'http://ostatus.org/schema/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)},
|
2018-01-30 10:37:04 +00:00
|
|
|
{:logo, [to_charlist(User.avatar_url(user) |> MediaProxy.url())]},
|
2017-04-20 15:47:33 +00:00
|
|
|
{:link, [rel: 'hub', href: h.(OStatus.pubsub_path(user))], []},
|
2017-04-24 16:46:34 +00:00
|
|
|
{:link, [rel: 'salmon', href: h.(OStatus.salmon_path(user))], []},
|
2017-05-01 16:40:36 +00:00
|
|
|
{:link, [rel: 'self', href: h.(OStatus.feed_path(user)), type: 'application/atom+xml'], []},
|
2017-04-22 10:11:36 +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
|