|
|
|
@ -13,11 +13,10 @@ class Formatter |
|
|
|
|
return reformat(status.content) unless status.local? |
|
|
|
|
|
|
|
|
|
html = status.text |
|
|
|
|
html = encode_and_link_urls(html) |
|
|
|
|
html = encode_and_link_urls(html, status.mentions) |
|
|
|
|
|
|
|
|
|
html = simple_format(html, {}, sanitize: false) |
|
|
|
|
html = html.delete("\n") |
|
|
|
|
html = link_mentions(html, status.mentions) |
|
|
|
|
html = link_hashtags(html) |
|
|
|
|
|
|
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety |
|
|
|
|
end |
|
|
|
@ -37,8 +36,6 @@ class Formatter |
|
|
|
|
html = encode_and_link_urls(account.note) |
|
|
|
|
html = simple_format(html, {}, sanitize: false) |
|
|
|
|
html = html.delete("\n") |
|
|
|
|
html = link_accounts(html) |
|
|
|
|
html = link_hashtags(html) |
|
|
|
|
|
|
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety |
|
|
|
|
end |
|
|
|
@ -53,51 +50,66 @@ class Formatter |
|
|
|
|
HTMLEntities.new.encode(html) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
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 } |
|
|
|
|
def encode_and_link_urls(html, mentions = nil) |
|
|
|
|
entities = Extractor.extract_entities_with_indices(html, extract_url_without_protocol: false) |
|
|
|
|
|
|
|
|
|
rewrite(html.dup, entities) do |entity| |
|
|
|
|
if entity[:url] |
|
|
|
|
link_to_url(entity) |
|
|
|
|
elsif entity[:hashtag] |
|
|
|
|
link_to_hashtag(entity) |
|
|
|
|
elsif entity[:screen_name] |
|
|
|
|
link_to_mention(entity, mentions) |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
chars = html.to_s.to_char_a |
|
|
|
|
html_attrs = { |
|
|
|
|
target: '_blank', |
|
|
|
|
rel: 'nofollow noopener', |
|
|
|
|
} |
|
|
|
|
result = '' |
|
|
|
|
def rewrite(text, entities) |
|
|
|
|
chars = text.to_s.to_char_a |
|
|
|
|
|
|
|
|
|
# sort by start index |
|
|
|
|
entities = entities.sort_by do |entity| |
|
|
|
|
indices = entity.respond_to?(:indices) ? entity.indices : entity[:indices] |
|
|
|
|
indices.first |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
result = [] |
|
|
|
|
last_index = entities.reduce(0) do |index, entity| |
|
|
|
|
normalized_url = Addressable::URI.parse(entity[:url]).normalize |
|
|
|
|
indices = entity[:indices] |
|
|
|
|
result += encode(chars[index...indices.first].join) |
|
|
|
|
result += Twitter::Autolink.send(:link_to_text, entity, link_html(entity[:url]), normalized_url, html_attrs) |
|
|
|
|
indices = entity.respond_to?(:indices) ? entity.indices : entity[:indices] |
|
|
|
|
result << encode(chars[index...indices.first].join) |
|
|
|
|
result << yield(entity) |
|
|
|
|
indices.last |
|
|
|
|
end |
|
|
|
|
result += encode(chars[last_index..-1].join) |
|
|
|
|
end |
|
|
|
|
result << encode(chars[last_index..-1].join) |
|
|
|
|
|
|
|
|
|
def link_mentions(html, mentions) |
|
|
|
|
html.gsub(Account::MENTION_RE) do |match| |
|
|
|
|
acct = Account::MENTION_RE.match(match)[1] |
|
|
|
|
mention = mentions.find { |item| TagManager.instance.same_acct?(item.account.acct, acct) } |
|
|
|
|
result.flatten.join |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
mention.nil? ? match : mention_html(match, mention.account) |
|
|
|
|
end |
|
|
|
|
def link_to_url(entity) |
|
|
|
|
normalized_url = Addressable::URI.parse(entity[:url]).normalize |
|
|
|
|
html_attrs = { |
|
|
|
|
target: '_blank', |
|
|
|
|
rel: 'nofollow noopener', |
|
|
|
|
} |
|
|
|
|
Twitter::Autolink.send(:link_to_text, entity, link_html(entity[:url]), normalized_url, html_attrs) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
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) |
|
|
|
|
def link_to_mention(entity, mentions) |
|
|
|
|
acct = entity[:screen_name] |
|
|
|
|
return link_to_account(acct) unless mentions |
|
|
|
|
mention = mentions.find { |item| TagManager.instance.same_acct?(item.account.acct, acct) } |
|
|
|
|
mention ? mention_html(mention.account) : "@#{acct}" |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
account.nil? ? match : mention_html(match, account) |
|
|
|
|
end |
|
|
|
|
def link_to_account(acct) |
|
|
|
|
username, domain = acct.split('@') |
|
|
|
|
domain = nil if TagManager.instance.local_domain?(domain) |
|
|
|
|
account = Account.find_remote(username, domain) |
|
|
|
|
account ? mention_html(account) : "@#{acct}" |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
def link_hashtags(html) |
|
|
|
|
html.gsub(Tag::HASHTAG_RE) do |match| |
|
|
|
|
hashtag_html(match) |
|
|
|
|
end |
|
|
|
|
def link_to_hashtag(entity) |
|
|
|
|
hashtag_html(entity[:hashtag]) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
def link_html(url) |
|
|
|
@ -110,12 +122,11 @@ class Formatter |
|
|
|
|
"<span class=\"invisible\">#{prefix}</span><span class=\"#{cutoff ? 'ellipsis' : ''}\">#{text}</span><span class=\"invisible\">#{suffix}</span>" |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
def hashtag_html(match) |
|
|
|
|
prefix, _, affix = match.rpartition('#') |
|
|
|
|
"#{prefix}<a href=\"#{tag_url(affix.downcase)}\" class=\"mention hashtag\">#<span>#{affix}</span></a>" |
|
|
|
|
def hashtag_html(tag) |
|
|
|
|
"<a href=\"#{tag_url(tag.downcase)}\" class=\"mention hashtag\">#<span>#{tag}</span></a>" |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
def mention_html(match, account) |
|
|
|
|
"#{match.split('@').first}<span class=\"h-card\"><a href=\"#{TagManager.instance.url_for(account)}\" class=\"u-url mention\">@<span>#{account.username}</span></a></span>" |
|
|
|
|
def mention_html(account) |
|
|
|
|
"<span class=\"h-card\"><a href=\"#{TagManager.instance.url_for(account)}\" class=\"u-url mention\">@<span>#{account.username}</span></a></span>" |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|