mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-07 16:33:24 +00:00
5ae1b39ec9
fix #361 with rich OEmbed display via iframe, fix #237 by hiding sensitive content behind a spoiler on public pages
15 lines
690 B
Ruby
15 lines
690 B
Ruby
# frozen_string_literal: true
|
|
object @stream_entry
|
|
|
|
node(:type) { 'rich' }
|
|
node(:version) { '1.0' }
|
|
node(:title, &:title)
|
|
node(:author_name) { |entry| entry.account.display_name.blank? ? entry.account.username : entry.account.display_name }
|
|
node(:author_url) { |entry| account_url(entry.account) }
|
|
node(:provider_name) { Rails.configuration.x.local_domain }
|
|
node(:provider_url) { root_url }
|
|
node(:cache_age) { 86_400 }
|
|
node(:html) { |entry| "<iframe src=\"#{embed_account_stream_entry_url(entry.account, entry)}\" style=\"width: 100%; overflow: hidden\" frameborder=\"0\" width=\"#{@width}\" height=\"#{@height}\" scrolling=\"no\"></iframe>" }
|
|
node(:width) { @width }
|
|
node(:height) { nil }
|