social.metadata.moe/lib/pleroma/web/ostatus/feed_representer.ex

35 lines
1.3 KiB
Elixir
Raw Normal View History

2017-04-19 01:41:51 +09:00
defmodule Pleroma.Web.OStatus.FeedRepresenter do
alias Pleroma.Web.OStatus
2017-04-20 17:16:06 +09:00
alias Pleroma.Web.OStatus.{UserRepresenter, ActivityRepresenter}
2017-04-19 01:41:51 +09:00
def to_simple_form(user, activities, users) do
2017-04-23 17:38:24 +09:00
most_recent_update = (List.first(activities) || user).updated_at
2017-04-19 01:41:51 +09:00
|> NaiveDateTime.to_iso8601
h = fn(str) -> [to_charlist(str)] end
2017-04-20 17:16:06 +09:00
entries = Enum.map(activities, fn(activity) ->
{:entry, ActivityRepresenter.to_simple_form(activity, user)}
end)
2017-04-22 21:37:54 +09:00
|> Enum.filter(fn ({_, form}) -> form end)
2017-04-20 17:16:06 +09:00
2017-04-19 01:41:51 +09:00
[{
:feed, [
xmlns: 'http://www.w3.org/2005/Atom',
"xmlns:thr": 'http://purl.org/syndication/thread/1.0',
2017-04-22 22:11:13 +09:00
"xmlns:activity": 'http://activitystrea.ms/spec/1.0/',
2017-04-26 15:47:22 +09:00
"xmlns:poco": 'http://portablecontacts.net/spec/1.0',
"xmlns:ostatus": 'http://ostatus.org/schema/1.0'
2017-04-19 01:41:51 +09:00
], [
{:id, h.(OStatus.feed_path(user))},
{:title, ['#{user.nickname}\'s timeline']},
{:updated, h.(most_recent_update)},
2017-04-21 00:47:33 +09:00
{:link, [rel: 'hub', href: h.(OStatus.pubsub_path(user))], []},
{:link, [rel: 'salmon', href: h.(OStatus.salmon_path(user))], []},
2017-04-22 19:11:36 +09:00
{:link, [rel: 'self', href: h.(OStatus.feed_path(user))], []},
{:author, UserRepresenter.to_simple_form(user)},
2017-04-20 17:16:06 +09:00
] ++ entries
2017-04-19 01:41:51 +09:00
}]
end
end