2016-02-22 07:00:20 -08:00
|
|
|
Nokogiri::XML::Builder.new do |xml|
|
2016-02-23 04:08:01 -08:00
|
|
|
feed(xml) do
|
2016-02-29 10:42:08 -08:00
|
|
|
simple_id xml, account_url(@account, format: 'atom')
|
2016-02-23 04:08:01 -08:00
|
|
|
title xml, @account.display_name
|
|
|
|
subtitle xml, @account.note
|
|
|
|
updated_at xml, stream_updated_at
|
2016-02-28 05:26:26 -08:00
|
|
|
logo xml, asset_url(@account.avatar.url(:medium))
|
2016-02-23 04:08:01 -08:00
|
|
|
|
|
|
|
author(xml) do
|
2016-02-23 10:17:37 -08:00
|
|
|
include_author xml, @account
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
|
2016-02-29 10:42:08 -08:00
|
|
|
link_alternate xml, url_for_target(@account)
|
|
|
|
link_self xml, account_url(@account, format: 'atom')
|
2016-02-29 11:06:39 -08:00
|
|
|
link_hub xml, Rails.configuration.x.hub_url
|
2016-02-29 10:42:08 -08:00
|
|
|
link_salmon xml, api_salmon_url(@account.id)
|
2016-02-22 07:00:20 -08:00
|
|
|
|
2016-02-22 10:11:07 -08:00
|
|
|
@account.stream_entries.order('id desc').each do |stream_entry|
|
2016-02-23 04:08:01 -08:00
|
|
|
entry(xml, false) do
|
2016-02-23 10:17:37 -08:00
|
|
|
include_entry xml, stream_entry
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end.to_xml
|