mastodon/app/views/accounts/show.atom.ruby

27 lines
738 B
Plaintext
Raw Normal View History

2016-11-28 12:36:47 +00:00
# frozen_string_literal: true
2016-02-22 15:00:20 +00:00
Nokogiri::XML::Builder.new do |xml|
feed(xml) do
simple_id xml, account_url(@account, format: 'atom')
title xml, @account.display_name
subtitle xml, @account.note
updated_at xml, stream_updated_at
2016-12-04 12:02:43 +00:00
logo xml, full_asset_url(@account.avatar.url( :original))
author(xml) do
include_author xml, @account
2016-02-22 15:00:20 +00:00
end
link_alternate xml, TagManager.instance.url_for(@account)
link_self xml, account_url(@account, format: 'atom')
2016-11-28 12:36:47 +00:00
link_hub xml, api_push_url
link_salmon xml, api_salmon_url(@account.id)
2016-02-22 15:00:20 +00:00
@entries.each do |stream_entry|
entry(xml, false) do
include_entry xml, stream_entry
2016-02-22 15:00:20 +00:00
end
end
end
end.to_xml