# frozen_string_literal: true require 'singleton' require_relative './sanitize_config' class HTMLRenderer < Redcarpet::Render::HTML def block_code(code, language) "
#{encode(code).gsub("\n", "
")}
" end def block_quote(quote) "
#{quote}
" end def codespan(code) "#{encode(code).gsub("\n", "
")}
" end def double_emphasis(text) "#{text}" end def emphasis(text) "#{text}" end def header(text, header_level) "

#{text}

" end def paragraph(text) "

#{text}

" end def triple_emphasis(text) "#{text}" end def strikethrough(text) "#{text}" end def underline(text) "#{text}" end def list(contents, list_type) if list_type == :ordered "
    #{contents}
" elsif list_type == :unordered "" else content end end def list_item(text, list_type) "
  • #{text}
  • " end def autolink(link, link_type) return link if link_type == :email Formatter.instance.link_url(link) end private def html_entities @html_entities ||= HTMLEntities.new end def encode(html) html_entities.encode(html) end end class Formatter include Singleton include RoutingHelper include ActionView::Helpers::TextHelper def chatMessageText(chatMessage) raw_content = chatMessage.text return '' if raw_content.blank? html = raw_content html = encode_and_link_urls(html, nil, keep_html: false) html = reformat(html, true) html = encode_custom_emojis(html, chatMessage.emojis) html.html_safe # rubocop:disable Rails/OutputSafety html end def format(status, **options) if options[:use_markdown] raw_content = status.markdown return '' if raw_content.blank? else raw_content = status.text end raw_content = ActionController::Base.helpers.strip_tags(raw_content) if status.id <= 11063737261633602 # #TODO: Migration fix if status.reblog? status = status.proper end if options[:inline_poll_options] && status.preloadable_poll raw_content = raw_content + "\n\n" + status.preloadable_poll.options.map { |title| "[ ] #{title}" }.join("\n") end return '' if raw_content.blank? unless status.local? html = reformat(raw_content) html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify] return html.html_safe # rubocop:disable Rails/OutputSafety end linkable_accounts = status.active_mentions.map(&:account) linkable_accounts << status.account html = raw_content html = format_markdown(html) if options[:use_markdown] html = encode_and_link_urls(html, linkable_accounts, keep_html: options[:use_markdown]) html = reformat(html, true) unless options[:use_markdown] html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify] unless options[:use_markdown] html = html.gsub(/(?:\n\r?|\r\n?)/, '
    ') html = html.delete("\n") end html.html_safe # rubocop:disable Rails/OutputSafety html end def formatGroupDescription(raw_content) return '' if raw_content.blank? html = raw_content html = format_markdown(html) html = encode_and_link_urls(html, nil, keep_html: true) html = html.gsub(/(?:\n\r?|\r\n?)/, '
    ') html = html.delete("\n") html.html_safe # rubocop:disable Rails/OutputSafety html end def format_markdown(html) html = markdown_formatter.render(html) html = html.gsub(/\n/, '
    ') html.delete("\r").delete("\n") html end def reformat(html, outgoing = false) sanitize(html, Sanitize::Config::GABSOCIAL_STRICT.merge(outgoing: outgoing)) rescue ArgumentError '' end def plaintext(status) return status.text if status.local? text = status.text.gsub(/(
    |
    |<\/p>)+/) { |match| "#{match}\n" } strip_tags(text) end def simplified_format(account, **options) html = account.local? ? linkify(account.note) : reformat(account.note) html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify] html.html_safe # rubocop:disable Rails/OutputSafety end def sanitize(html, config) Sanitize.fragment(html, config) end def format_spoiler(status, **options) html = encode(status.spoiler_text) html = encode_custom_emojis(html, status.emojis, options[:autoplay]) html.html_safe # rubocop:disable Rails/OutputSafety end 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 def format_display_name(account, **options) html = encode(account.display_name.presence || account.username) html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify] html.html_safe # rubocop:disable Rails/OutputSafety end def format_field(account, str, **options) html = account.local? ? encode_and_link_urls(str, me: true) : reformat(str) html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify] html.html_safe # rubocop:disable Rails/OutputSafety end 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 def link_url(url) "#{link_html(url)}" end private def markdown_formatter extensions = { autolink: false, no_intra_emphasis: true, fenced_code_blocks: true, disable_indented_code_blocks: true, strikethrough: true, lax_spacing: true, space_after_headers: true, superscript: false, underline: true, highlight: false, footnotes: false, } renderer = HTMLRenderer.new({ filter_html: false, escape_html: false, no_images: true, no_styles: true, safe_links_only: false, hard_wrap: false, no_links: true, with_toc_data: false, prettify: false, link_attributes: nil }) Redcarpet::Markdown.new(renderer, extensions) end def html_entities @html_entities ||= HTMLEntities.new end def encode(html) html_entities.encode(html) end def encode_and_link_urls(html, accounts = nil, options = {}) entities = utf8_friendly_extractor(html, extract_url_without_protocol: false) if accounts.is_a?(Hash) options = accounts accounts = nil end rewrite(html.dup, entities, options[:keep_html]) do |entity| if entity[:url] link_to_url(entity, options) elsif entity[:hashtag] link_to_hashtag(entity) elsif entity[:cashtag] link_to_cashtag(entity) elsif entity[:screen_name] link_to_mention(entity, accounts) end end end def count_tag_nesting(tag) if tag[1] == '/' then -1 elsif tag[-2] == '/' then 0 else 1 end end def encode_custom_emojis(html, emojis, animate = false) return html if emojis.empty? emoji_map = if animate emojis.each_with_object({}) { |e, h| h[e.shortcode] = full_asset_url(e.image.url) } else emojis.each_with_object({}) { |e, h| h[e.shortcode] = full_asset_url(e.image.url(:static)) } end i = -1 tag_open_index = nil inside_shortname = false shortname_start_index = -1 invisible_depth = 0 while i + 1 < html.size i += 1 if invisible_depth.zero? && inside_shortname && html[i] == ':' shortcode = html[shortname_start_index + 1..i - 1] emoji = emoji_map[shortcode] if emoji replacement = "\":#{encode(shortcode)}:\"" 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 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 == '