2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-09 18:04:34 +00:00
|
|
|
require 'singleton'
|
2017-04-27 12:42:22 +00:00
|
|
|
require_relative './sanitize_config'
|
2016-09-09 18:04:34 +00:00
|
|
|
|
|
|
|
class Formatter
|
|
|
|
include Singleton
|
2016-11-05 14:20:05 +00:00
|
|
|
include RoutingHelper
|
2016-09-09 18:04:34 +00:00
|
|
|
|
|
|
|
include ActionView::Helpers::TextHelper
|
|
|
|
|
2017-12-06 10:41:57 +00:00
|
|
|
def format(status, **options)
|
2017-05-12 15:46:44 +00:00
|
|
|
if status.reblog?
|
|
|
|
prepend_reblog = status.reblog.account.acct
|
|
|
|
status = status.proper
|
|
|
|
else
|
|
|
|
prepend_reblog = false
|
|
|
|
end
|
|
|
|
|
2017-06-04 12:58:57 +00:00
|
|
|
raw_content = status.text
|
2016-09-09 18:04:34 +00:00
|
|
|
|
2018-03-07 07:28:52 +00:00
|
|
|
return '' if raw_content.blank?
|
|
|
|
|
2017-09-19 00:42:40 +00:00
|
|
|
unless status.local?
|
|
|
|
html = reformat(raw_content)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify]
|
2017-09-19 15:55:48 +00:00
|
|
|
return html.html_safe # rubocop:disable Rails/OutputSafety
|
2017-09-19 00:42:40 +00:00
|
|
|
end
|
2017-05-05 17:48:22 +00:00
|
|
|
|
2018-10-17 15:13:04 +00:00
|
|
|
linkable_accounts = status.active_mentions.map(&:account)
|
2017-05-12 15:46:44 +00:00
|
|
|
linkable_accounts << status.account
|
|
|
|
|
2017-05-10 22:28:10 +00:00
|
|
|
html = raw_content
|
2017-05-12 15:46:44 +00:00
|
|
|
html = "RT @#{prepend_reblog} #{html}" if prepend_reblog
|
|
|
|
html = encode_and_link_urls(html, linkable_accounts)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify]
|
2017-06-04 12:58:57 +00:00
|
|
|
html = simple_format(html, {}, sanitize: false)
|
2017-04-14 10:50:00 +00:00
|
|
|
html = html.delete("\n")
|
2016-09-09 18:04:34 +00:00
|
|
|
|
2016-11-15 15:56:29 +00:00
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
|
2016-11-07 00:14:12 +00:00
|
|
|
def reformat(html)
|
2017-09-19 15:55:48 +00:00
|
|
|
sanitize(html, Sanitize::Config::MASTODON_STRICT)
|
2016-11-07 00:14:12 +00:00
|
|
|
end
|
|
|
|
|
2017-03-03 22:45:48 +00:00
|
|
|
def plaintext(status)
|
|
|
|
return status.text if status.local?
|
2017-09-19 00:42:40 +00:00
|
|
|
|
|
|
|
text = status.text.gsub(/(<br \/>|<br>|<\/p>)+/) { |match| "#{match}\n" }
|
|
|
|
strip_tags(text)
|
2017-03-03 22:45:48 +00:00
|
|
|
end
|
|
|
|
|
2018-04-01 21:55:42 +00:00
|
|
|
def simplified_format(account, **options)
|
2018-04-26 23:38:10 +00:00
|
|
|
html = account.local? ? linkify(account.note) : reformat(account.note)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify]
|
2018-04-01 21:55:42 +00:00
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
|
2017-04-27 12:42:22 +00:00
|
|
|
def sanitize(html, config)
|
|
|
|
Sanitize.fragment(html, config)
|
|
|
|
end
|
|
|
|
|
2018-08-31 13:16:59 +00:00
|
|
|
def format_spoiler(status, **options)
|
2017-09-22 23:50:17 +00:00
|
|
|
html = encode(status.spoiler_text)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay])
|
2017-09-22 23:50:17 +00:00
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
|
|
|
end
|
|
|
|
|
2018-05-06 09:48:51 +00:00
|
|
|
def format_display_name(account, **options)
|
|
|
|
html = encode(account.display_name.presence || account.username)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify]
|
2018-05-06 09:48:51 +00:00
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
|
|
|
end
|
|
|
|
|
|
|
|
def format_field(account, str, **options)
|
2018-04-14 10:41:08 +00:00
|
|
|
return reformat(str).html_safe unless account.local? # rubocop:disable Rails/OutputSafety
|
2018-05-06 09:48:51 +00:00
|
|
|
html = encode_and_link_urls(str, me: true)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify]
|
2018-05-06 09:48:51 +00:00
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
2018-04-14 10:41:08 +00:00
|
|
|
end
|
|
|
|
|
2017-11-30 03:06:20 +00:00
|
|
|
def linkify(text)
|
|
|
|
html = encode_and_link_urls(text)
|
|
|
|
html = simple_format(html, {}, sanitize: false)
|
|
|
|
html = html.delete("\n")
|
|
|
|
|
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
|
|
|
end
|
|
|
|
|
2016-09-09 18:04:34 +00:00
|
|
|
private
|
|
|
|
|
2018-10-11 22:15:55 +00:00
|
|
|
def html_entities
|
|
|
|
@html_entities ||= HTMLEntities.new
|
|
|
|
end
|
|
|
|
|
2016-09-09 18:04:34 +00:00
|
|
|
def encode(html)
|
2018-10-11 22:15:55 +00:00
|
|
|
html_entities.encode(html)
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
def encode_and_link_urls(html, accounts = nil, options = {})
|
2017-05-05 17:48:22 +00:00
|
|
|
entities = Extractor.extract_entities_with_indices(html, extract_url_without_protocol: false)
|
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
if accounts.is_a?(Hash)
|
|
|
|
options = accounts
|
|
|
|
accounts = nil
|
|
|
|
end
|
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
rewrite(html.dup, entities) do |entity|
|
|
|
|
if entity[:url]
|
2018-04-14 10:41:08 +00:00
|
|
|
link_to_url(entity, options)
|
2017-05-05 17:48:22 +00:00
|
|
|
elsif entity[:hashtag]
|
|
|
|
link_to_hashtag(entity)
|
|
|
|
elsif entity[:screen_name]
|
2017-05-12 15:46:44 +00:00
|
|
|
link_to_mention(entity, accounts)
|
2017-05-05 17:48:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-04-19 12:52:18 +00:00
|
|
|
|
2017-11-07 13:48:13 +00:00
|
|
|
def count_tag_nesting(tag)
|
|
|
|
if tag[1] == '/' then -1
|
|
|
|
elsif tag[-2] == '/' then 0
|
|
|
|
else 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-30 21:14:01 +00:00
|
|
|
def encode_custom_emojis(html, emojis, animate = false)
|
2017-09-19 00:42:40 +00:00
|
|
|
return html if emojis.empty?
|
|
|
|
|
2018-08-30 21:14:01 +00:00
|
|
|
emoji_map = if animate
|
|
|
|
emojis.map { |e| [e.shortcode, full_asset_url(e.image.url)] }.to_h
|
|
|
|
else
|
|
|
|
emojis.map { |e| [e.shortcode, full_asset_url(e.image.url(:static))] }.to_h
|
|
|
|
end
|
2017-09-19 00:42:40 +00:00
|
|
|
|
|
|
|
i = -1
|
2017-11-07 13:48:13 +00:00
|
|
|
tag_open_index = nil
|
2017-09-19 00:42:40 +00:00
|
|
|
inside_shortname = false
|
|
|
|
shortname_start_index = -1
|
2017-11-07 13:48:13 +00:00
|
|
|
invisible_depth = 0
|
2017-09-19 00:42:40 +00:00
|
|
|
|
|
|
|
while i + 1 < html.size
|
|
|
|
i += 1
|
|
|
|
|
2017-11-07 13:48:13 +00:00
|
|
|
if invisible_depth.zero? && inside_shortname && html[i] == ':'
|
2017-09-19 00:42:40 +00:00
|
|
|
shortcode = html[shortname_start_index + 1..i - 1]
|
|
|
|
emoji = emoji_map[shortcode]
|
|
|
|
|
|
|
|
if emoji
|
2018-10-11 22:15:55 +00:00
|
|
|
replacement = "<img draggable=\"false\" class=\"emojione\" alt=\":#{encode(shortcode)}:\" title=\":#{encode(shortcode)}:\" src=\"#{encode(emoji)}\" />"
|
2017-09-19 00:42:40 +00:00
|
|
|
before_html = shortname_start_index.positive? ? html[0..shortname_start_index - 1] : ''
|
|
|
|
html = before_html + replacement + html[i + 1..-1]
|
|
|
|
i += replacement.size - (shortcode.size + 2) - 1
|
|
|
|
else
|
|
|
|
i -= 1
|
|
|
|
end
|
|
|
|
|
|
|
|
inside_shortname = false
|
2017-11-07 13:48:13 +00:00
|
|
|
elsif tag_open_index && html[i] == '>'
|
|
|
|
tag = html[tag_open_index..i]
|
|
|
|
tag_open_index = nil
|
|
|
|
if invisible_depth.positive?
|
|
|
|
invisible_depth += count_tag_nesting(tag)
|
|
|
|
elsif tag == '<span class="invisible">'
|
|
|
|
invisible_depth = 1
|
|
|
|
end
|
2017-09-19 00:42:40 +00:00
|
|
|
elsif html[i] == '<'
|
2017-11-07 13:48:13 +00:00
|
|
|
tag_open_index = i
|
2017-09-19 00:42:40 +00:00
|
|
|
inside_shortname = false
|
2017-11-07 13:48:13 +00:00
|
|
|
elsif !tag_open_index && html[i] == ':'
|
2017-09-19 00:42:40 +00:00
|
|
|
inside_shortname = true
|
|
|
|
shortname_start_index = i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
html
|
|
|
|
end
|
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
def rewrite(text, entities)
|
|
|
|
chars = text.to_s.to_char_a
|
2017-04-19 12:52:18 +00:00
|
|
|
|
2017-05-12 15:46:44 +00:00
|
|
|
# Sort by start index
|
2017-05-05 17:48:22 +00:00
|
|
|
entities = entities.sort_by do |entity|
|
|
|
|
indices = entity.respond_to?(:indices) ? entity.indices : entity[:indices]
|
|
|
|
indices.first
|
|
|
|
end
|
|
|
|
|
|
|
|
result = []
|
2017-05-12 15:46:44 +00:00
|
|
|
|
2017-04-19 12:52:18 +00:00
|
|
|
last_index = entities.reduce(0) do |index, entity|
|
2017-05-05 17:48:22 +00:00
|
|
|
indices = entity.respond_to?(:indices) ? entity.indices : entity[:indices]
|
|
|
|
result << encode(chars[index...indices.first].join)
|
|
|
|
result << yield(entity)
|
2017-04-19 12:52:18 +00:00
|
|
|
indices.last
|
|
|
|
end
|
2017-05-12 15:46:44 +00:00
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
result << encode(chars[last_index..-1].join)
|
2017-04-19 12:52:18 +00:00
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
result.flatten.join
|
|
|
|
end
|
2016-09-09 18:04:34 +00:00
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
def link_to_url(entity, options = {})
|
2018-01-03 19:51:33 +00:00
|
|
|
url = Addressable::URI.parse(entity[:url])
|
|
|
|
html_attrs = { target: '_blank', rel: 'nofollow noopener' }
|
2017-05-12 15:46:44 +00:00
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
html_attrs[:rel] = "me #{html_attrs[:rel]}" if options[:me]
|
|
|
|
|
2018-01-03 19:51:33 +00:00
|
|
|
Twitter::Autolink.send(:link_to_text, entity, link_html(entity[:url]), url, html_attrs)
|
2017-08-02 12:54:33 +00:00
|
|
|
rescue Addressable::URI::InvalidURIError, IDN::Idna::IdnaError
|
2017-05-09 16:17:41 +00:00
|
|
|
encode(entity[:url])
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
|
2017-05-12 15:46:44 +00:00
|
|
|
def link_to_mention(entity, linkable_accounts)
|
2017-05-05 17:48:22 +00:00
|
|
|
acct = entity[:screen_name]
|
2017-05-12 15:46:44 +00:00
|
|
|
|
|
|
|
return link_to_account(acct) unless linkable_accounts
|
|
|
|
|
|
|
|
account = linkable_accounts.find { |item| TagManager.instance.same_acct?(item.acct, acct) }
|
2018-10-11 22:15:55 +00:00
|
|
|
account ? mention_html(account) : "@#{encode(acct)}"
|
2017-05-05 17:48:22 +00:00
|
|
|
end
|
2017-03-28 12:16:08 +00:00
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
def link_to_account(acct)
|
|
|
|
username, domain = acct.split('@')
|
2017-05-12 15:46:44 +00:00
|
|
|
|
|
|
|
domain = nil if TagManager.instance.local_domain?(domain)
|
2018-04-26 23:38:10 +00:00
|
|
|
account = EntityCache.instance.mention(username, domain)
|
2017-05-12 15:46:44 +00:00
|
|
|
|
2018-10-11 22:15:55 +00:00
|
|
|
account ? mention_html(account) : "@#{encode(acct)}"
|
2017-03-28 12:16:08 +00:00
|
|
|
end
|
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
def link_to_hashtag(entity)
|
|
|
|
hashtag_html(entity[:hashtag])
|
2016-11-04 18:12:59 +00:00
|
|
|
end
|
|
|
|
|
2017-01-23 13:45:09 +00:00
|
|
|
def link_html(url)
|
2017-09-14 16:03:20 +00:00
|
|
|
url = Addressable::URI.parse(url).to_s
|
2017-01-24 16:05:44 +00:00
|
|
|
prefix = url.match(/\Ahttps?:\/\/(www\.)?/).to_s
|
|
|
|
text = url[prefix.length, 30]
|
|
|
|
suffix = url[prefix.length + 30..-1]
|
2017-02-05 14:29:16 +00:00
|
|
|
cutoff = url[prefix.length..-1].length > 30
|
2017-01-24 16:05:44 +00:00
|
|
|
|
2017-09-16 19:33:52 +00:00
|
|
|
"<span class=\"invisible\">#{encode(prefix)}</span><span class=\"#{cutoff ? 'ellipsis' : ''}\">#{encode(text)}</span><span class=\"invisible\">#{encode(suffix)}</span>"
|
2017-01-23 13:45:09 +00:00
|
|
|
end
|
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
def hashtag_html(tag)
|
2018-10-11 22:15:55 +00:00
|
|
|
"<a href=\"#{encode(tag_url(tag.downcase))}\" class=\"mention hashtag\" rel=\"tag\">#<span>#{encode(tag)}</span></a>"
|
2016-11-04 18:12:59 +00:00
|
|
|
end
|
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
def mention_html(account)
|
2018-10-11 22:15:55 +00:00
|
|
|
"<span class=\"h-card\"><a href=\"#{encode(TagManager.instance.url_for(account))}\" class=\"u-url mention\">@<span>#{encode(account.username)}</span></a></span>"
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
end
|