0
0
Fork 0

Adding enclosures to Atom and statuses JSON

This commit is contained in:
Eugen Rochko 2016-09-05 18:57:59 +02:00
parent eec0dc46a6
commit 1d9c886518
4 changed files with 19 additions and 1 deletions

View file

@ -125,6 +125,10 @@ module AtomBuilderHelper
xml.link(rel: 'mentioned', href: uri_for_target(account))
end
def link_enclosure(xml, media)
xml.link(rel: 'enclosure', href: full_asset_url(media.file.url), type: media.file_content_type, length: media.file_size)
end
def link_avatar(xml, account)
single_link_avatar(xml, account, :large, 300)
single_link_avatar(xml, account, :medium, 96)
@ -205,6 +209,12 @@ module AtomBuilderHelper
stream_entry.mentions.each do |mentioned|
link_mention xml, mentioned
end
if stream_entry.activity.is_a?(Status)
stream_entry.activity.media_attachments.each do |media|
link_enclosure xml, media
end
end
end
private