2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
module AtomBuilderHelper
|
2016-02-22 15:00:20 +00:00
|
|
|
def stream_updated_at
|
2016-11-15 15:56:29 +00:00
|
|
|
if @account.stream_entries.last
|
|
|
|
(@account.updated_at > @account.stream_entries.last.created_at ? @account.updated_at : @account.stream_entries.last.created_at)
|
|
|
|
else
|
|
|
|
@account.updated_at
|
|
|
|
end
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
|
2016-03-20 12:50:22 +00:00
|
|
|
def entry(xml, is_root = false, &block)
|
2016-02-23 12:08:01 +00:00
|
|
|
if is_root
|
|
|
|
root_tag(xml, :entry, &block)
|
|
|
|
else
|
2016-02-24 23:22:46 +00:00
|
|
|
xml.entry(&block)
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def feed(xml, &block)
|
|
|
|
root_tag(xml, :feed, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
def unique_id(xml, date, id, type)
|
2016-09-09 18:04:34 +00:00
|
|
|
xml.id_ TagManager.instance.unique_tag(date, id, type)
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def simple_id(xml, id)
|
|
|
|
xml.id_ id
|
|
|
|
end
|
|
|
|
|
|
|
|
def published_at(xml, date)
|
|
|
|
xml.published date.iso8601
|
|
|
|
end
|
|
|
|
|
|
|
|
def updated_at(xml, date)
|
|
|
|
xml.updated date.iso8601
|
|
|
|
end
|
|
|
|
|
|
|
|
def verb(xml, verb)
|
2016-11-30 20:32:11 +00:00
|
|
|
xml['activity'].send('verb', TagManager::VERBS[verb])
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
|
2017-01-24 23:49:08 +00:00
|
|
|
def content(xml, content, warning = nil)
|
2017-01-25 15:53:30 +00:00
|
|
|
xml.summary(warning) unless warning.blank?
|
|
|
|
xml.content({ type: 'html' }, content) unless content.blank?
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def title(xml, title)
|
2016-03-21 09:31:20 +00:00
|
|
|
xml.title strip_tags(title || '').truncate(80)
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def author(xml, &block)
|
2016-02-24 23:22:46 +00:00
|
|
|
xml.author(&block)
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
|
2016-12-11 21:49:25 +00:00
|
|
|
def category(xml, term)
|
|
|
|
xml.category(term: term)
|
2016-11-05 14:20:05 +00:00
|
|
|
end
|
|
|
|
|
2016-02-23 12:08:01 +00:00
|
|
|
def target(xml, &block)
|
2016-02-24 23:22:46 +00:00
|
|
|
xml['activity'].object(&block)
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def object_type(xml, type)
|
2016-11-30 20:32:11 +00:00
|
|
|
xml['activity'].send('object-type', TagManager::TYPES[type])
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def uri(xml, uri)
|
|
|
|
xml.uri uri
|
|
|
|
end
|
|
|
|
|
|
|
|
def name(xml, name)
|
|
|
|
xml.name name
|
|
|
|
end
|
|
|
|
|
|
|
|
def summary(xml, summary)
|
2016-03-22 19:20:37 +00:00
|
|
|
xml.summary(summary) unless summary.blank?
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def subtitle(xml, subtitle)
|
2016-03-22 19:20:37 +00:00
|
|
|
xml.subtitle(subtitle) unless subtitle.blank?
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def link_alternate(xml, url)
|
|
|
|
xml.link(rel: 'alternate', type: 'text/html', href: url)
|
|
|
|
end
|
|
|
|
|
|
|
|
def link_self(xml, url)
|
|
|
|
xml.link(rel: 'self', type: 'application/atom+xml', href: url)
|
|
|
|
end
|
|
|
|
|
2017-02-13 14:38:12 +00:00
|
|
|
def link_next(xml, url)
|
|
|
|
xml.link(rel: 'next', type: 'application/atom+xml', href: url)
|
|
|
|
end
|
|
|
|
|
2016-02-23 12:08:01 +00:00
|
|
|
def link_hub(xml, url)
|
|
|
|
xml.link(rel: 'hub', href: url)
|
|
|
|
end
|
|
|
|
|
|
|
|
def link_salmon(xml, url)
|
|
|
|
xml.link(rel: 'salmon', href: url)
|
|
|
|
end
|
|
|
|
|
|
|
|
def portable_contact(xml, account)
|
|
|
|
xml['poco'].preferredUsername account.username
|
2016-03-22 19:20:37 +00:00
|
|
|
xml['poco'].displayName(account.display_name) unless account.display_name.blank?
|
2016-12-21 18:10:19 +00:00
|
|
|
xml['poco'].note(Formatter.instance.simplified_format(account)) unless account.note.blank?
|
2016-02-23 12:08:01 +00:00
|
|
|
end
|
|
|
|
|
2016-02-23 18:17:37 +00:00
|
|
|
def in_reply_to(xml, uri, url)
|
2016-11-15 15:56:29 +00:00
|
|
|
xml['thr'].send('in-reply-to', ref: uri, href: url, type: 'text/html')
|
2016-02-23 18:17:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def link_mention(xml, account)
|
2016-11-30 20:32:11 +00:00
|
|
|
xml.link(:rel => 'mentioned', :href => TagManager.instance.uri_for(account), 'ostatus:object-type' => TagManager::TYPES[:person])
|
2016-02-23 18:17:37 +00:00
|
|
|
end
|
|
|
|
|
2016-09-05 16:57:59 +00:00
|
|
|
def link_enclosure(xml, media)
|
2016-12-04 11:26:12 +00:00
|
|
|
xml.link(rel: 'enclosure', href: full_asset_url(media.file.url(:original, false)), type: media.file_content_type, length: media.file_file_size)
|
2016-09-05 16:57:59 +00:00
|
|
|
end
|
|
|
|
|
2016-02-28 13:26:26 +00:00
|
|
|
def link_avatar(xml, account)
|
2016-12-04 11:26:12 +00:00
|
|
|
single_link_avatar(xml, account, :original, 120)
|
2016-02-28 13:26:26 +00:00
|
|
|
end
|
|
|
|
|
2017-03-18 21:51:20 +00:00
|
|
|
def link_header(xml, account)
|
|
|
|
xml.link('rel' => 'header', 'type' => account.header_content_type, 'media:width' => 700, 'media:height' => 335, 'href' => full_asset_url(account.header.url(:original)))
|
|
|
|
end
|
|
|
|
|
2016-02-28 13:26:26 +00:00
|
|
|
def logo(xml, url)
|
|
|
|
xml.logo url
|
|
|
|
end
|
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
def email(xml, email)
|
|
|
|
xml.email email
|
|
|
|
end
|
|
|
|
|
2016-03-18 23:16:04 +00:00
|
|
|
def conditionally_formatted(activity)
|
|
|
|
if activity.is_a?(Status)
|
2016-09-09 18:04:34 +00:00
|
|
|
Formatter.instance.format(activity.reblog? ? activity.reblog : activity)
|
2016-03-18 23:16:04 +00:00
|
|
|
elsif activity.nil?
|
2016-03-22 19:20:37 +00:00
|
|
|
nil
|
2016-03-18 23:16:04 +00:00
|
|
|
else
|
|
|
|
activity.content
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-30 20:32:11 +00:00
|
|
|
def link_visibility(xml, item)
|
|
|
|
return unless item.respond_to?(:visibility) && item.public_visibility?
|
|
|
|
xml.link(:rel => 'mentioned', :href => TagManager::COLLECTIONS[:public], 'ostatus:object-type' => TagManager::TYPES[:collection])
|
|
|
|
end
|
|
|
|
|
2017-02-11 01:12:05 +00:00
|
|
|
def privacy_scope(xml, level)
|
|
|
|
xml['mastodon'].scope(level)
|
|
|
|
end
|
|
|
|
|
2016-02-23 18:17:37 +00:00
|
|
|
def include_author(xml, account)
|
2017-02-16 00:59:34 +00:00
|
|
|
simple_id xml, TagManager.instance.uri_for(account)
|
2016-02-23 18:17:37 +00:00
|
|
|
object_type xml, :person
|
2016-09-09 18:04:34 +00:00
|
|
|
uri xml, TagManager.instance.uri_for(account)
|
2016-02-23 18:17:37 +00:00
|
|
|
name xml, account.username
|
2016-03-25 01:13:30 +00:00
|
|
|
email xml, account.local? ? "#{account.acct}@#{Rails.configuration.x.local_domain}" : account.acct
|
2016-02-23 18:17:37 +00:00
|
|
|
summary xml, account.note
|
2016-09-09 18:04:34 +00:00
|
|
|
link_alternate xml, TagManager.instance.url_for(account)
|
2016-02-28 13:26:26 +00:00
|
|
|
link_avatar xml, account
|
2017-03-18 21:51:20 +00:00
|
|
|
link_header xml, account
|
2016-02-23 18:17:37 +00:00
|
|
|
portable_contact xml, account
|
2017-02-11 01:12:05 +00:00
|
|
|
privacy_scope xml, account.locked? ? :private : :public
|
2016-02-23 18:17:37 +00:00
|
|
|
end
|
|
|
|
|
2017-01-24 23:49:08 +00:00
|
|
|
def rich_content(xml, activity)
|
|
|
|
if activity.is_a?(Status)
|
|
|
|
content xml, conditionally_formatted(activity), activity.spoiler_text
|
|
|
|
else
|
|
|
|
content xml, conditionally_formatted(activity)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-12 16:28:15 +00:00
|
|
|
def include_target(xml, target)
|
|
|
|
simple_id xml, TagManager.instance.uri_for(target)
|
|
|
|
|
|
|
|
if target.object_type == :person
|
|
|
|
include_author xml, target
|
|
|
|
else
|
|
|
|
object_type xml, target.object_type
|
|
|
|
verb xml, target.verb
|
|
|
|
title xml, target.title
|
|
|
|
link_alternate xml, TagManager.instance.url_for(target)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Statuses have content and author
|
|
|
|
return unless target.is_a?(Status)
|
|
|
|
|
|
|
|
rich_content xml, target
|
|
|
|
verb xml, target.verb
|
|
|
|
published_at xml, target.created_at
|
|
|
|
updated_at xml, target.updated_at
|
|
|
|
|
|
|
|
author(xml) do
|
|
|
|
include_author xml, target.account
|
|
|
|
end
|
|
|
|
|
|
|
|
if target.reply?
|
|
|
|
in_reply_to xml, TagManager.instance.uri_for(target.thread), TagManager.instance.url_for(target.thread)
|
|
|
|
end
|
|
|
|
|
|
|
|
link_visibility xml, target
|
|
|
|
|
|
|
|
target.mentions.each do |mention|
|
|
|
|
link_mention xml, mention.account
|
|
|
|
end
|
|
|
|
|
|
|
|
target.media_attachments.each do |media|
|
|
|
|
link_enclosure xml, media
|
|
|
|
end
|
|
|
|
|
|
|
|
target.tags.each do |tag|
|
|
|
|
category xml, tag.name
|
|
|
|
end
|
|
|
|
|
|
|
|
category(xml, 'nsfw') if target.sensitive?
|
|
|
|
privacy_scope(xml, target.visibility)
|
|
|
|
end
|
|
|
|
|
2016-02-23 18:17:37 +00:00
|
|
|
def include_entry(xml, stream_entry)
|
2016-03-26 00:10:18 +00:00
|
|
|
unique_id xml, stream_entry.created_at, stream_entry.activity_id, stream_entry.activity_type
|
|
|
|
published_at xml, stream_entry.created_at
|
|
|
|
updated_at xml, stream_entry.updated_at
|
|
|
|
title xml, stream_entry.title
|
2017-01-24 23:49:08 +00:00
|
|
|
rich_content xml, stream_entry.activity
|
2016-03-26 00:10:18 +00:00
|
|
|
verb xml, stream_entry.verb
|
|
|
|
link_self xml, account_stream_entry_url(stream_entry.account, stream_entry, format: 'atom')
|
|
|
|
link_alternate xml, account_stream_entry_url(stream_entry.account, stream_entry)
|
2016-10-10 12:22:09 +00:00
|
|
|
object_type xml, stream_entry.object_type
|
2016-02-23 18:17:37 +00:00
|
|
|
|
|
|
|
# Comments need thread element
|
|
|
|
if stream_entry.threaded?
|
2016-09-09 18:04:34 +00:00
|
|
|
in_reply_to xml, TagManager.instance.uri_for(stream_entry.thread), TagManager.instance.url_for(stream_entry.thread)
|
2016-02-23 18:17:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if stream_entry.targeted?
|
|
|
|
target(xml) do
|
2017-02-12 16:28:15 +00:00
|
|
|
include_target(xml, stream_entry.target)
|
2016-02-23 18:17:37 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-30 20:32:11 +00:00
|
|
|
link_visibility xml, stream_entry.activity
|
|
|
|
|
2016-02-23 18:17:37 +00:00
|
|
|
stream_entry.mentions.each do |mentioned|
|
|
|
|
link_mention xml, mentioned
|
|
|
|
end
|
2016-09-05 16:57:59 +00:00
|
|
|
|
2016-11-30 20:32:11 +00:00
|
|
|
return unless stream_entry.activity.is_a?(Status)
|
2016-11-05 14:20:05 +00:00
|
|
|
|
2016-11-30 20:32:11 +00:00
|
|
|
stream_entry.activity.media_attachments.each do |media|
|
|
|
|
link_enclosure xml, media
|
|
|
|
end
|
|
|
|
|
|
|
|
stream_entry.activity.tags.each do |tag|
|
2016-12-11 21:49:25 +00:00
|
|
|
category xml, tag.name
|
2016-09-05 16:57:59 +00:00
|
|
|
end
|
2016-12-11 21:49:25 +00:00
|
|
|
|
|
|
|
category(xml, 'nsfw') if stream_entry.activity.sensitive?
|
2017-02-11 01:12:05 +00:00
|
|
|
privacy_scope(xml, stream_entry.activity.visibility)
|
2016-02-23 18:17:37 +00:00
|
|
|
end
|
|
|
|
|
2016-02-23 12:08:01 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def root_tag(xml, tag, &block)
|
2016-11-30 20:32:11 +00:00
|
|
|
xml.send(tag, {
|
|
|
|
'xmlns' => TagManager::XMLNS,
|
|
|
|
'xmlns:thr' => TagManager::THR_XMLNS,
|
|
|
|
'xmlns:activity' => TagManager::AS_XMLNS,
|
|
|
|
'xmlns:poco' => TagManager::POCO_XMLNS,
|
|
|
|
'xmlns:media' => TagManager::MEDIA_XMLNS,
|
|
|
|
'xmlns:ostatus' => TagManager::OS_XMLNS,
|
2017-02-11 01:12:05 +00:00
|
|
|
'xmlns:mastodon' => TagManager::MTDN_XMLNS,
|
2016-11-30 20:32:11 +00:00
|
|
|
}, &block)
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
2016-03-21 09:08:19 +00:00
|
|
|
|
|
|
|
def single_link_avatar(xml, account, size, px)
|
2017-02-17 00:50:01 +00:00
|
|
|
xml.link('rel' => 'avatar', 'type' => account.avatar_content_type, 'media:width' => px, 'media:height' => px, 'href' => full_asset_url(account.avatar.url(size)))
|
2016-03-21 09:08:19 +00:00
|
|
|
end
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|