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

28 lines
848 B
Plaintext
Raw Normal View History

2016-11-28 13:36:47 +01:00
# frozen_string_literal: true
2016-02-22 16:00:20 +01: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
logo xml, full_asset_url(@account.avatar.url(:original))
author(xml) do
include_author xml, @account
2016-02-22 16:00:20 +01:00
end
link_alternate xml, TagManager.instance.url_for(@account)
link_self xml, account_url(@account, format: 'atom')
2017-02-13 15:38:12 +01:00
link_next xml, account_url(@account, format: 'atom', max_id: @entries.last.id) if @entries.size == 20
2016-11-28 13:36:47 +01:00
link_hub xml, api_push_url
link_salmon xml, api_salmon_url(@account.id)
2016-02-22 16:00:20 +01:00
@entries.each do |stream_entry|
entry(xml, false) do
include_entry xml, stream_entry
2016-02-22 16:00:20 +01:00
end
end
end
end.to_xml