2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-09 18:04:34 +00:00
|
|
|
require 'singleton'
|
|
|
|
|
|
|
|
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
|
|
|
|
include ActionView::Helpers::SanitizeHelper
|
|
|
|
|
|
|
|
def format(status)
|
2016-11-07 00:14:12 +00:00
|
|
|
return reformat(status.content) unless status.local?
|
2016-09-09 18:04:34 +00:00
|
|
|
|
|
|
|
html = status.text
|
2017-04-19 12:52:18 +00:00
|
|
|
html = encode_and_link_urls(html)
|
2017-01-24 23:49:08 +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
|
|
|
html = link_mentions(html, status.mentions)
|
2016-11-04 18:12:59 +00:00
|
|
|
html = link_hashtags(html)
|
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-02-23 01:14:35 +00:00
|
|
|
sanitize(html, tags: %w(a br p span), attributes: %w(href rel class))
|
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?
|
|
|
|
strip_tags(status.text)
|
|
|
|
end
|
|
|
|
|
2016-11-07 00:14:12 +00:00
|
|
|
def simplified_format(account)
|
|
|
|
return reformat(account.note) unless account.local?
|
|
|
|
|
2017-04-19 12:52:18 +00:00
|
|
|
html = encode_and_link_urls(account.note)
|
2017-03-28 12:16:08 +00:00
|
|
|
html = link_accounts(html)
|
2017-01-23 13:45:09 +00:00
|
|
|
html = link_hashtags(html)
|
2016-11-07 00:14:12 +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
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def encode(html)
|
|
|
|
HTMLEntities.new.encode(html)
|
|
|
|
end
|
|
|
|
|
2017-04-19 12:52:18 +00:00
|
|
|
def encode_and_link_urls(html)
|
|
|
|
entities = Twitter::Extractor.extract_urls_with_indices(html, extract_url_without_protocol: false)
|
|
|
|
entities = entities.sort_by { |entity| entity[:indices].first }
|
|
|
|
|
|
|
|
chars = html.to_s.to_char_a
|
|
|
|
html_attrs = {
|
|
|
|
target: '_blank',
|
|
|
|
rel: 'nofollow noopener',
|
|
|
|
}
|
|
|
|
result = ''
|
|
|
|
|
|
|
|
last_index = entities.reduce(0) do |index, entity|
|
|
|
|
indices = entity[:indices]
|
|
|
|
result += encode(chars[index...indices.first].join)
|
|
|
|
result += Twitter::Autolink.send(:link_to_text, entity, link_html(entity[:url]), entity[:url], html_attrs)
|
|
|
|
indices.last
|
|
|
|
end
|
|
|
|
result += encode(chars[last_index..-1].join)
|
|
|
|
end
|
|
|
|
|
2016-09-09 18:04:34 +00:00
|
|
|
def link_urls(html)
|
2017-02-22 18:35:11 +00:00
|
|
|
Twitter::Autolink.auto_link_urls(html, url_target: '_blank',
|
|
|
|
link_attribute_block: lambda { |_, a| a[:rel] << ' noopener' },
|
|
|
|
link_text_block: lambda { |_, text| link_html(text) })
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def link_mentions(html, mentions)
|
|
|
|
html.gsub(Account::MENTION_RE) do |match|
|
|
|
|
acct = Account::MENTION_RE.match(match)[1]
|
2017-03-28 12:16:08 +00:00
|
|
|
mention = mentions.find { |item| TagManager.instance.same_acct?(item.account.acct, acct) }
|
2016-09-09 18:04:34 +00:00
|
|
|
|
2016-09-10 17:18:17 +00:00
|
|
|
mention.nil? ? match : mention_html(match, mention.account)
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-28 12:16:08 +00:00
|
|
|
def link_accounts(html)
|
|
|
|
html.gsub(Account::MENTION_RE) do |match|
|
|
|
|
acct = Account::MENTION_RE.match(match)[1]
|
|
|
|
username, domain = acct.split('@')
|
|
|
|
domain = nil if TagManager.instance.local_domain?(domain)
|
|
|
|
account = Account.find_remote(username, domain)
|
|
|
|
|
|
|
|
account.nil? ? match : mention_html(match, account)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-04 18:12:59 +00:00
|
|
|
def link_hashtags(html)
|
|
|
|
html.gsub(Tag::HASHTAG_RE) do |match|
|
|
|
|
hashtag_html(match)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-23 13:45:09 +00:00
|
|
|
def link_html(url)
|
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-02-22 18:35:11 +00:00
|
|
|
"<span class=\"invisible\">#{prefix}</span><span class=\"#{cutoff ? 'ellipsis' : ''}\">#{text}</span><span class=\"invisible\">#{suffix}</span>"
|
2017-01-23 13:45:09 +00:00
|
|
|
end
|
|
|
|
|
2016-11-04 18:12:59 +00:00
|
|
|
def hashtag_html(match)
|
2017-04-21 16:18:58 +00:00
|
|
|
prefix, _, affix = match.rpartition('#')
|
2016-11-05 14:20:05 +00:00
|
|
|
"#{prefix}<a href=\"#{tag_url(affix.downcase)}\" class=\"mention hashtag\">#<span>#{affix}</span></a>"
|
2016-11-04 18:12:59 +00:00
|
|
|
end
|
|
|
|
|
2016-09-09 18:04:34 +00:00
|
|
|
def mention_html(match, account)
|
2017-04-13 17:36:41 +00:00
|
|
|
"#{match.split('@').first}<span class=\"h-card\"><a href=\"#{TagManager.instance.url_for(account)}\" class=\"u-url mention\">@<span>#{account.username}</span></a></span>"
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
end
|