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
|
|
|
|
|
2022-11-09 14:38:46 +00:00
|
|
|
DISALLOWED_BOUNDING_REGEX = /[[:alnum:]:]/.freeze
|
|
|
|
|
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
|
|
|
|
2019-03-28 03:44:59 +00:00
|
|
|
if options[:inline_poll_options] && status.preloadable_poll
|
|
|
|
raw_content = raw_content + "\n\n" + status.preloadable_poll.options.map { |title| "[ ] #{title}" }.join("\n")
|
2019-03-05 20:09:18 +00:00
|
|
|
end
|
|
|
|
|
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)
|
2021-09-23 15:09:04 +00:00
|
|
|
html = apply_inner_link(html)
|
2022-03-17 14:25:16 +00:00
|
|
|
html = apply_reference_link(html, status)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify]
|
2022-02-09 20:47:09 +00:00
|
|
|
html = nyaize_html(html) if options[:nyaize]
|
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)
|
2019-09-29 04:41:03 +00:00
|
|
|
html = quotify(html, status) if status.quote? && !options[:escape_quotify]
|
2022-03-17 14:25:16 +00:00
|
|
|
html = add_compatible_reference_link(html, status) if status.references.exists?
|
2022-02-09 20:47:09 +00:00
|
|
|
html = nyaize_html(html) if options[:nyaize]
|
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
|
|
|
|
|
2019-09-29 04:41:03 +00:00
|
|
|
def format_in_quote(status, **options)
|
|
|
|
html = format(status)
|
|
|
|
return '' if html.empty?
|
|
|
|
doc = Nokogiri::HTML.parse(html, nil, 'utf-8')
|
|
|
|
html = doc.css('body')[0].inner_html
|
|
|
|
html.sub!(/^<p>(.+)<\/p>$/, '\1')
|
|
|
|
html = Sanitize.clean(html).delete("\n").truncate(150)
|
|
|
|
html = encode_custom_emojis(html, status.emojis) if options[:custom_emojify]
|
2021-09-23 15:09:04 +00:00
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
2019-09-29 04:41:03 +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)
|
2020-02-07 14:24:22 +00:00
|
|
|
rescue ArgumentError
|
|
|
|
''
|
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" }
|
2022-03-17 14:25:16 +00:00
|
|
|
text = remove_reference_link(text)
|
2017-09-19 00:42:40 +00:00
|
|
|
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
|
|
|
|
|
2019-03-20 16:29:12 +00:00
|
|
|
def format_poll_option(status, option, **options)
|
|
|
|
html = encode(option.title)
|
|
|
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay])
|
|
|
|
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)
|
2021-04-10 09:51:02 +00:00
|
|
|
html = account.local? ? encode_and_link_urls(str, me: true, with_domain: true) : reformat(str)
|
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 = {})
|
2019-02-02 18:01:18 +00:00
|
|
|
entities = utf8_friendly_extractor(html, extract_url_without_protocol: false)
|
2017-05-05 17:48:22 +00:00
|
|
|
|
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]
|
2021-04-10 09:51:02 +00:00
|
|
|
link_to_mention(entity, accounts, options)
|
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
|
|
|
|
|
2020-09-01 01:04:00 +00:00
|
|
|
# rubocop:disable Metrics/BlockNesting
|
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?
|
|
|
|
|
2019-07-21 16:10:40 +00:00
|
|
|
emoji_map = emojis.each_with_object({}) { |e, h| h[e.shortcode] = [full_asset_url(e.image.url), full_asset_url(e.image.url(:static))] }
|
2017-09-19 00:42:40 +00:00
|
|
|
|
2022-11-09 14:38:46 +00:00
|
|
|
tree = Nokogiri::HTML.fragment(html)
|
|
|
|
tree.xpath('./text()|.//text()[not(ancestor[@class="invisible"])]').to_a.each do |node|
|
|
|
|
i = -1
|
|
|
|
inside_shortname = false
|
|
|
|
shortname_start_index = -1
|
|
|
|
last_index = 0
|
|
|
|
text = node.content
|
|
|
|
result = Nokogiri::XML::NodeSet.new(tree.document)
|
|
|
|
|
|
|
|
while i + 1 < text.size
|
|
|
|
i += 1
|
2017-09-19 00:42:40 +00:00
|
|
|
|
2022-11-09 14:38:46 +00:00
|
|
|
if inside_shortname && text[i] == ':'
|
|
|
|
inside_shortname = false
|
|
|
|
shortcode = text[shortname_start_index + 1..i - 1]
|
|
|
|
char_after = text[i + 1]
|
2017-09-19 00:42:40 +00:00
|
|
|
|
2022-11-09 14:38:46 +00:00
|
|
|
next unless (char_after.nil? || !DISALLOWED_BOUNDING_REGEX.match?(char_after)) && (emoji = emoji_map[shortcode])
|
2017-09-19 00:42:40 +00:00
|
|
|
|
2019-07-21 16:10:40 +00:00
|
|
|
original_url, static_url = emoji
|
2022-11-09 14:38:46 +00:00
|
|
|
|
|
|
|
result << Nokogiri::XML::Text.new(text[last_index..shortname_start_index - 1], tree.document) if shortname_start_index.positive?
|
|
|
|
|
|
|
|
result << Nokogiri::HTML.fragment(
|
2019-07-21 16:10:40 +00:00
|
|
|
if animate
|
2021-03-17 09:09:55 +00:00
|
|
|
image_tag(original_url, draggable: false, class: 'emojione', alt: ":#{shortcode}:", title: ":#{shortcode}:")
|
2019-07-21 16:10:40 +00:00
|
|
|
else
|
2021-03-17 09:09:55 +00:00
|
|
|
image_tag(original_url, draggable: false, class: 'emojione custom-emoji', alt: ":#{shortcode}:", title: ":#{shortcode}:", data: { original: original_url, static: static_url })
|
2019-07-21 16:10:40 +00:00
|
|
|
end
|
2022-11-09 14:38:46 +00:00
|
|
|
)
|
2017-09-19 00:42:40 +00:00
|
|
|
|
2022-11-09 14:38:46 +00:00
|
|
|
last_index = i + 1
|
|
|
|
elsif text[i] == ':' && (i.zero? || !DISALLOWED_BOUNDING_REGEX.match?(text[i - 1]))
|
|
|
|
inside_shortname = true
|
|
|
|
shortname_start_index = i
|
2017-11-07 13:48:13 +00:00
|
|
|
end
|
2017-09-19 00:42:40 +00:00
|
|
|
end
|
2022-11-09 14:38:46 +00:00
|
|
|
|
|
|
|
result << Nokogiri::XML::Text.new(text[last_index..-1], tree.document)
|
|
|
|
node.replace(result)
|
2017-09-19 00:42:40 +00:00
|
|
|
end
|
|
|
|
|
2022-11-09 14:38:46 +00:00
|
|
|
tree.to_html
|
2017-09-19 00:42:40 +00:00
|
|
|
end
|
2020-09-01 01:04:00 +00:00
|
|
|
# rubocop:enable Metrics/BlockNesting
|
2017-09-19 00:42:40 +00:00
|
|
|
|
2019-09-29 04:41:03 +00:00
|
|
|
def quotify(html, status)
|
|
|
|
url = ActivityPub::TagManager.instance.url_for(status.quote)
|
|
|
|
link = encode_and_link_urls(url)
|
|
|
|
html.sub(/(<[^>]+>)\z/, "<span class=\"quote-inline\"><br/>QT: #{link}</span>\\1")
|
|
|
|
end
|
|
|
|
|
2022-03-17 14:25:16 +00:00
|
|
|
def add_compatible_reference_link(html, status)
|
|
|
|
url = references_short_account_status_url(status.account, status)
|
|
|
|
link = "<a href=\"#{url}\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"status-link unhandled-link\" data-status-id=\"#{status.id}\">#{I18n.t('status_references.link_text')}</a>"
|
|
|
|
html.sub(/<\/p>\z/, "<span class=\"reference-link-inline\"> #{link}</span></p>")
|
|
|
|
end
|
|
|
|
|
2022-02-09 20:47:09 +00:00
|
|
|
def nyaize_html(html)
|
|
|
|
inside_anchor = false
|
|
|
|
|
|
|
|
html.split(/(<.+?>)/).compact.map do |x|
|
|
|
|
if x.match(/^<a/)
|
|
|
|
inside_anchor = true
|
|
|
|
elsif x == '</a>'
|
|
|
|
inside_anchor = false
|
|
|
|
end
|
|
|
|
|
|
|
|
if inside_anchor || x[0] == '<'
|
|
|
|
x
|
|
|
|
else
|
|
|
|
x.split(/(:.+?:)/).compact.map do |x|
|
|
|
|
if x[0] == ':'
|
|
|
|
x
|
|
|
|
else
|
|
|
|
nyaize(x)
|
|
|
|
end
|
|
|
|
end.join
|
|
|
|
end
|
|
|
|
end.join
|
|
|
|
end
|
|
|
|
|
|
|
|
def nyaize(text)
|
|
|
|
text
|
|
|
|
# ja-JP
|
|
|
|
.gsub(/な/, "にゃ").gsub(/ナ/, "ニャ").gsub(/ナ/, "ニャ")
|
|
|
|
# en-US
|
|
|
|
.gsub(/(?<=n)a/i) { |x| x == 'A' ? 'YA' : 'ya' }
|
|
|
|
.gsub(/(?<=morn)ing/i) { |x| x == 'ING' ? 'YAN' : 'yan' }
|
|
|
|
.gsub(/(?<=every)one/i) { |x| x == 'ONE' ? 'NYAN' : 'nyan' }
|
|
|
|
# vko-KR
|
|
|
|
.gsub(/[나-낳]/) { |c| (c.ord + '냐'.ord - '나'.ord).chr }
|
|
|
|
.gsub(/(다)|(다(?=\.))|(다(?= ))|(다(?=!))|(다(?=\?))/m, '다냥')
|
|
|
|
.gsub(/(야(?=\?))|(야$)|(야(?= ))/m, '냥')
|
|
|
|
end
|
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
def rewrite(text, entities)
|
2019-05-15 04:54:06 +00:00
|
|
|
text = text.to_s
|
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]
|
2019-05-15 04:54:06 +00:00
|
|
|
result << encode(text[index...indices.first])
|
2017-05-05 17:48:22 +00:00
|
|
|
result << yield(entity)
|
2017-04-19 12:52:18 +00:00
|
|
|
indices.last
|
|
|
|
end
|
2017-05-12 15:46:44 +00:00
|
|
|
|
2019-05-15 04:54:06 +00:00
|
|
|
result << encode(text[last_index..-1])
|
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
|
|
|
|
2019-02-02 18:01:18 +00:00
|
|
|
def utf8_friendly_extractor(text, options = {})
|
|
|
|
# Note: I couldn't obtain list_slug with @user/list-name format
|
|
|
|
# for mention so this requires additional check
|
2021-07-15 13:56:58 +00:00
|
|
|
special = Extractor.extract_urls_with_indices(text, options)
|
2019-02-02 18:01:18 +00:00
|
|
|
standard = Extractor.extract_entities_with_indices(text, options)
|
2020-01-23 20:27:26 +00:00
|
|
|
extra = Extractor.extract_extra_uris_with_indices(text, options)
|
2019-02-02 18:01:18 +00:00
|
|
|
|
2020-01-23 20:27:26 +00:00
|
|
|
Extractor.remove_overlapping_entities(special + standard + extra)
|
2019-02-02 18:01:18 +00:00
|
|
|
end
|
|
|
|
|
2021-11-14 08:59:38 +00:00
|
|
|
def class_append(c, items)
|
|
|
|
(c || '').split.concat(items).uniq.join(' ')
|
|
|
|
end
|
|
|
|
|
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])
|
2019-10-24 20:44:42 +00:00
|
|
|
html_attrs = { target: '_blank', rel: 'nofollow noopener noreferrer' }
|
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]
|
|
|
|
|
2022-03-17 14:25:16 +00:00
|
|
|
status = url_to_holding_status(url.normalize.to_s)
|
|
|
|
account = status&.account
|
|
|
|
account = url_to_holding_account(url.normalize.to_s) if status.nil?
|
2021-09-23 15:09:04 +00:00
|
|
|
|
2021-11-14 08:59:38 +00:00
|
|
|
if status.present? && account.present?
|
|
|
|
html_attrs[:class] = class_append(html_attrs[:class], ['status-url-link'])
|
|
|
|
html_attrs[:'data-status-id'] = status.id
|
2021-09-23 15:09:04 +00:00
|
|
|
html_attrs[:'data-status-account-acct'] = account.acct
|
2021-11-14 08:59:38 +00:00
|
|
|
elsif account.present?
|
|
|
|
html_attrs[:class] = class_append(html_attrs[:class], ['account-url-link'])
|
|
|
|
html_attrs[:'data-account-id'] = account.id
|
|
|
|
html_attrs[:'data-account-actor-type'] = account.actor_type
|
|
|
|
html_attrs[:'data-account-acct'] = account.acct
|
2021-09-23 15:09:04 +00:00
|
|
|
end
|
|
|
|
|
2021-03-02 11:02:56 +00:00
|
|
|
Twitter::TwitterText::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
|
|
|
|
|
2021-09-23 15:09:04 +00:00
|
|
|
def apply_inner_link(html)
|
|
|
|
doc = Nokogiri::HTML.parse(html, nil, 'utf-8')
|
|
|
|
doc.css('a').map do |x|
|
2022-03-17 14:25:16 +00:00
|
|
|
status = url_to_holding_status(x['href'])
|
|
|
|
account = status&.account
|
|
|
|
account = url_to_holding_account(x['href']) if status.nil?
|
2021-09-23 15:09:04 +00:00
|
|
|
|
2021-11-14 08:59:38 +00:00
|
|
|
if status.present? && account.present?
|
2021-09-23 15:09:04 +00:00
|
|
|
x.add_class('status-url-link')
|
2021-11-14 08:59:38 +00:00
|
|
|
x['data-status-id'] = status.id
|
2021-09-23 15:09:04 +00:00
|
|
|
x['data-status-account-acct'] = account.acct
|
2021-11-14 08:59:38 +00:00
|
|
|
elsif account.present?
|
|
|
|
x.add_class('account-url-link')
|
|
|
|
x['data-account-id'] = account.id
|
|
|
|
x['data-account-actor-type'] = account.actor_type
|
|
|
|
x['data-account-acct'] = account.acct
|
2021-09-23 15:09:04 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
html = doc.css('body')[0]&.inner_html || ''
|
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
|
|
|
end
|
|
|
|
|
2022-03-17 14:25:16 +00:00
|
|
|
def remove_reference_link(html)
|
|
|
|
doc = Nokogiri::HTML.parse(html, nil, 'utf-8')
|
|
|
|
doc.at_css('span.reference-link-inline')&.unlink
|
|
|
|
html = doc.at_css('body')&.inner_html || ''
|
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
|
|
|
end
|
|
|
|
|
|
|
|
def apply_reference_link(html, status)
|
|
|
|
doc = Nokogiri::HTML.parse(html, nil, 'utf-8')
|
|
|
|
|
|
|
|
reference_link_url = nil
|
|
|
|
|
|
|
|
doc.at_css('span.reference-link-inline').tap do |x|
|
|
|
|
if x.present?
|
|
|
|
reference_link_url = x.at_css('a')&.attr('href')
|
|
|
|
x.unlink
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if status.references.exists?
|
|
|
|
ref_span = Nokogiri::XML::Node.new("span", doc)
|
|
|
|
ref_anchor = Nokogiri::XML::Node.new("a", doc)
|
|
|
|
ref_anchor.add_class('status-link unhandled-link')
|
|
|
|
ref_anchor['href'] = reference_link_url || status.url
|
|
|
|
ref_anchor['target'] = '_blank'
|
|
|
|
ref_anchor['rel'] = 'noopener noreferrer'
|
|
|
|
ref_anchor['data-status-id'] = status.id
|
|
|
|
ref_anchor.content = I18n.t('status_references.link_text')
|
|
|
|
ref_span.content = ' '
|
|
|
|
ref_span.add_class('reference-link-inline')
|
|
|
|
ref_span.add_child(ref_anchor)
|
|
|
|
(doc.at_css('body > p:last-child') || doc.at_css('body'))&.add_child(ref_span)
|
|
|
|
end
|
|
|
|
|
|
|
|
html = doc.at_css('body')&.inner_html || ''
|
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
|
|
|
end
|
|
|
|
|
2022-12-14 17:46:37 +00:00
|
|
|
def normalize_url_without_fragment(url)
|
|
|
|
return if url.nil?
|
|
|
|
|
|
|
|
uri = Addressable::URI.parse(url).normalize
|
|
|
|
uri.fragment = nil
|
|
|
|
uri.to_s
|
|
|
|
end
|
|
|
|
|
2021-11-14 08:59:38 +00:00
|
|
|
def url_to_holding_account(url)
|
2022-12-14 17:46:37 +00:00
|
|
|
url = normalize_url_without_fragment(url)
|
2021-11-14 08:59:38 +00:00
|
|
|
|
|
|
|
return if url.nil?
|
|
|
|
|
|
|
|
EntityCache.instance.holding_account(url)
|
|
|
|
end
|
|
|
|
|
2022-03-17 14:25:16 +00:00
|
|
|
def url_to_holding_status(url)
|
2022-12-14 17:46:37 +00:00
|
|
|
url = normalize_url_without_fragment(url)
|
2021-09-23 15:09:04 +00:00
|
|
|
|
|
|
|
return if url.nil?
|
|
|
|
|
2022-03-17 14:25:16 +00:00
|
|
|
EntityCache.instance.holding_status(url)
|
2021-09-23 15:09:04 +00:00
|
|
|
end
|
|
|
|
|
2021-04-10 09:51:02 +00:00
|
|
|
def link_to_mention(entity, linkable_accounts, options = {})
|
2017-05-05 17:48:22 +00:00
|
|
|
acct = entity[:screen_name]
|
2017-05-12 15:46:44 +00:00
|
|
|
|
2021-04-10 09:51:02 +00:00
|
|
|
return link_to_account(acct, options) unless linkable_accounts
|
2017-05-12 15:46:44 +00:00
|
|
|
|
2021-04-10 09:51:02 +00:00
|
|
|
same_username_hits = 0
|
|
|
|
account = nil
|
|
|
|
username, domain = acct.split('@')
|
|
|
|
domain = nil if TagManager.instance.local_domain?(domain)
|
|
|
|
|
|
|
|
linkable_accounts.each do |item|
|
|
|
|
same_username = item.username.casecmp(username).zero?
|
2021-04-14 13:48:49 +00:00
|
|
|
same_domain = item.domain.nil? ? domain.nil? : item.domain.casecmp(domain)&.zero?
|
2021-04-10 09:51:02 +00:00
|
|
|
|
|
|
|
if same_username && !same_domain
|
|
|
|
same_username_hits += 1
|
|
|
|
elsif same_username && same_domain
|
|
|
|
account = item
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
account ? mention_html(account, with_domain: same_username_hits.positive? || options[:with_domain]) : "@#{encode(acct)}"
|
2017-05-05 17:48:22 +00:00
|
|
|
end
|
2017-03-28 12:16:08 +00:00
|
|
|
|
2021-04-10 09:51:02 +00:00
|
|
|
def link_to_account(acct, options = {})
|
2017-05-05 17:48:22 +00:00
|
|
|
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
|
|
|
|
2021-04-10 09:51:02 +00:00
|
|
|
account ? mention_html(account, with_domain: options[:with_domain]) : "@#{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
|
2020-01-11 01:15:25 +00:00
|
|
|
prefix = url.match(/\A(https?:\/\/(www\.)?|xmpp:)/).to_s
|
2017-01-24 16:05:44 +00:00
|
|
|
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)
|
2019-08-07 08:01:19 +00:00
|
|
|
"<a href=\"#{encode(tag_url(tag))}\" class=\"mention hashtag\" rel=\"tag\">#<span>#{encode(tag)}</span></a>"
|
2016-11-04 18:12:59 +00:00
|
|
|
end
|
|
|
|
|
2021-04-10 09:51:02 +00:00
|
|
|
def mention_html(account, with_domain: false)
|
2020-07-12 19:32:45 +00:00
|
|
|
"<span class=\"h-card\"><a href=\"#{encode(ActivityPub::TagManager.instance.url_for(account))}\" class=\"u-url mention#{account.actor_type == 'Group' ? ' group' : ''}\">@<span>#{encode(with_domain ? account.pretty_acct : account.username)}</span></a></span>"
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
end
|