2016-09-09 14:04:34 -04:00
|
|
|
require 'singleton'
|
|
|
|
|
|
|
|
class Formatter
|
|
|
|
include Singleton
|
|
|
|
|
|
|
|
include ActionView::Helpers::TextHelper
|
|
|
|
include ActionView::Helpers::SanitizeHelper
|
|
|
|
|
|
|
|
def format(status)
|
|
|
|
return reformat(status) unless status.local?
|
|
|
|
|
|
|
|
html = status.text
|
|
|
|
html = encode(html)
|
2016-09-10 04:07:56 -04:00
|
|
|
html = simple_format(html, sanitize: false)
|
2016-09-09 14:04:34 -04:00
|
|
|
html = link_urls(html)
|
|
|
|
html = link_mentions(html, status.mentions)
|
|
|
|
|
|
|
|
html.html_safe
|
|
|
|
end
|
|
|
|
|
|
|
|
def reformat(status)
|
|
|
|
sanitize(status.content, tags: %w(a br p), attributes: %w(href rel))
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def encode(html)
|
|
|
|
HTMLEntities.new.encode(html)
|
|
|
|
end
|
|
|
|
|
|
|
|
def link_urls(html)
|
2016-10-13 10:49:52 -04:00
|
|
|
auto_link(html, link: :urls, html: { rel: 'nofollow noopener' }) do |text|
|
|
|
|
truncate(text.gsub(/\Ahttps?:\/\/(www\.)?/, ''), length: 30)
|
|
|
|
end
|
2016-09-09 14:04:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def link_mentions(html, mentions)
|
|
|
|
html.gsub(Account::MENTION_RE) do |match|
|
|
|
|
acct = Account::MENTION_RE.match(match)[1]
|
2016-09-29 15:28:21 -04:00
|
|
|
mention = mentions.find { |item| item.account.acct.casecmp(acct).zero? }
|
2016-09-09 14:04:34 -04:00
|
|
|
|
2016-09-10 13:18:17 -04:00
|
|
|
mention.nil? ? match : mention_html(match, mention.account)
|
2016-09-09 14:04:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def mention_html(match, account)
|
2016-09-10 03:57:41 -04:00
|
|
|
"#{match.split('@').first}<a href=\"#{TagManager.instance.url_for(account)}\" class=\"mention\">@<span>#{account.username}</span></a>"
|
2016-09-09 14:04:34 -04:00
|
|
|
end
|
|
|
|
end
|