2020-05-10 03:50:54 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RSS::Serializer
|
2022-03-25 21:53:34 -04:00
|
|
|
include FormattingHelper
|
|
|
|
|
2020-05-10 03:50:54 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def render_statuses(builder, statuses)
|
|
|
|
statuses.each do |status|
|
|
|
|
builder.item do |item|
|
|
|
|
item.title(status_title(status))
|
|
|
|
.link(ActivityPub::TagManager.instance.url_for(status))
|
|
|
|
.pub_date(status.created_at)
|
2022-03-25 21:53:34 -04:00
|
|
|
.description(status_description(status))
|
2020-05-10 03:50:54 -04:00
|
|
|
|
2022-03-09 03:06:17 -05:00
|
|
|
status.ordered_media_attachments.each do |media|
|
2020-05-10 03:50:54 -04:00
|
|
|
item.enclosure(full_asset_url(media.file.url(:original, false)), media.file.content_type, media.file.size)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def status_title(status)
|
|
|
|
preview = status.proper.spoiler_text.presence || status.proper.text
|
2022-03-25 21:53:34 -04:00
|
|
|
|
2020-05-10 03:50:54 -04:00
|
|
|
if preview.length > 30 || preview[0, 30].include?("\n")
|
|
|
|
preview = preview[0, 30]
|
|
|
|
preview = preview[0, preview.index("\n").presence || 30] + '…'
|
|
|
|
end
|
|
|
|
|
|
|
|
preview = "#{status.proper.spoiler_text.present? ? 'CW ' : ''}“#{preview}”#{status.proper.sensitive? ? ' (sensitive)' : ''}"
|
|
|
|
|
|
|
|
if status.reblog?
|
|
|
|
"#{status.account.acct} boosted #{status.reblog.account.acct}: #{preview}"
|
|
|
|
else
|
|
|
|
"#{status.account.acct}: #{preview}"
|
|
|
|
end
|
|
|
|
end
|
2022-03-25 21:53:34 -04:00
|
|
|
|
|
|
|
def status_description(status)
|
|
|
|
if status.proper.spoiler_text?
|
|
|
|
status.proper.spoiler_text
|
|
|
|
else
|
|
|
|
html = status_content_format(status.proper).to_str
|
|
|
|
after_html = ''
|
|
|
|
|
|
|
|
if status.proper.preloadable_poll
|
|
|
|
poll_options_html = status.proper.preloadable_poll.options.map { |o| "[ ] #{o}" }.join('<br />')
|
|
|
|
after_html = "<p>#{poll_options_html}</p>"
|
|
|
|
end
|
|
|
|
|
|
|
|
"#{html}#{after_html}"
|
|
|
|
end
|
|
|
|
end
|
2020-05-10 03:50:54 -04:00
|
|
|
end
|