1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
|
# frozen_string_literal: true
require 'singleton'
require_relative './sanitize_config'
class HTMLRenderer < Redcarpet::Render::HTML
def block_code(code, language)
"<pre><code>#{encode(code).gsub("\n", "<br/>")}</code></pre>"
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
BBCODE_TAGS = {
url: {
html_open: '<a href="%url%" rel="noopener nofollow" target="_blank">', html_close: '</a>',
description: '', example: '',
require_between: true,
allow_quick_param: true, allow_between_as_param: true,
quick_param_format: %r{^(\S+://\S+|/\S+)$},
quick_param_format_description: '',
param_tokens: [{token: :url}]
},
list: {
html_open: '<ul>', html_close: '</ul>',
description: '', example: '',
only_allow: [:li, '*'.to_sym],
block_tag: true,
},
ul: {
html_open: '<ul>', html_close: '</ul>',
description: '', example: '',
only_allow: [:li, '*'.to_sym],
block_tag: true,
},
ol: {
html_open: '<ol>', html_close: '</ol>',
description: '', example: '',
only_allow: [:li, '*'.to_sym],
block_tag: true,
},
li: {
html_open: '<li>', html_close: '</li>',
description: '', example: '',
block_tag: true,
only_in: %i[list ul ol]
},
'*': {
html_open: '<li>', html_close: '</li>',
description: '', example: '',
self_closable: true, block_tag: true,
only_in: %i[list ul ol]
},
sub: {
html_open: '<sub>', html_close: '</sub>',
description: '', example: '',
},
sup: {
html_open: '<sup>', html_close: '</sup>',
description: '', example: '',
},
h1: {
html_open: '<h1>', html_close: '</h1>',
description: '', example: '',
},
h2: {
html_open: '<h2>', html_close: '</h2>',
description: '', example: '',
},
h3: {
html_open: '<h3>', html_close: '</h3>',
description: '', example: '',
},
h4: {
html_open: '<h4>', html_close: '</h4>',
description: '', example: '',
},
h5: {
html_open: '<h5>', html_close: '</h5>',
description: '', example: '',
},
h6: {
html_open: '<h6>', html_close: '</h6>',
description: '', example: '',
},
abbr: {
html_open: '<abbr>', html_close: '</abbr>',
description: '', example: '',
},
hr: {
html_open: '<hr>', html_close: '</hr>',
description: '', example: '',
},
b: {
html_open: '<strong>', html_close: '</strong>',
description: '', example: '',
},
i: {
html_open: '<em>', html_close: '</em>',
description: '', example: '',
},
flip: {
html_open: '<span class="bbcode__flip-%direction%">', html_close: '</span>',
description: '', example: '',
allow_quick_param: true, allow_between_as_param: false,
quick_param_format: /(h|v)/,
param_tokens: [{token: :direction}]
},
size: {
html_open: '<span class="bbcode__size-%size%">', html_close: '</span>',
description: '', example: '',
allow_quick_param: true, allow_between_as_param: false,
quick_param_format: /([1-6])/,
param_tokens: [{token: :size}]
},
quote: {
html_open: '<blockquote>', html_close: '</blockquote>',
description: '', example: '',
block_tag: true,
},
kbd: {
html_open: '<pre><code>', html_close: '</code></pre>',
description: '', example: '',
},
code: {
html_open: '<pre><code>', html_close: '</code></pre>',
description: '', example: '',
block_tag: true,
},
u: {
html_open: '<u>', html_close: '</u>',
description: '', example: '',
},
s: {
html_open: '<s>', html_close: '</s>',
description: '', example: '',
},
del: {
html_open: '<del>', html_close: '</del>',
description: '', example: '',
},
left: {
html_open: '<span class="bbcode__left">', html_close: '</span>',
description: '', example: '',
},
center: {
html_open: '<span class="bbcode__center">', html_close: '</span>',
description: '', example: '',
},
right: {
html_open: '<span class="bbcode__right">', html_close: '</span>',
description: '', example: '',
},
lfloat: {
html_open: '<span class="bbcode__lfloat">', html_close: '</span>',
description: '', example: '',
},
rfloat: {
html_open: '<span class="bbcode__rfloat">', html_close: '</span>',
description: '', example: '',
},
spoiler: {
html_open: '<span class="bbcode__spoiler-wrapper"><span class="bbcode__spoiler">', html_close: '</span></span>',
description: '', example: '',
},
}
def format(status, **options)
if status.reblog?
prepend_reblog = status.reblog.account.acct
status = status.proper
else
prepend_reblog = false
end
raw_content = status.text
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 = "RT @#{prepend_reblog} #{html}" if prepend_reblog
case status.content_type
when 'text/markdown'
html = format_markdown(html)
when 'text/x-bbcode'
html = format_bbcode(html)
when 'text/x-bbcode+markdown'
html = format_bbdown(html)
end
html = format_screenreader(html)
html = encode_and_link_urls(html, linkable_accounts, keep_html: %w(text/markdown text/x-bbcode text/x-bbcode+markdown text/html).include?(status.content_type))
html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify]
if %w(text/markdown text/x-bbcode text/x-bbcode+markdown text/html).include?(status.content_type)
html = reformat(html)
else
html = simple_format(html, {}, sanitize: false)
html = html.delete("\n")
html = format_console(html) if status.content_type == 'text/console'
end
unless status.footer.blank?
footer = status.footer
footer = encode_and_link_urls(footer)
footer = encode_custom_emojis(footer, status.emojis, options[:autoplay]) if options[:custom_emojify]
html = "#{html.strip}\n<p class=\"signature\">— #{footer}</p>"
end
unless status.tags.blank?
tags = status.tags.pluck(:name).reject { |t| t.end_with?('.') }.map{ |t| "##{t}" }
tags = encode_and_link_urls(tags.join(' '))
html = "#{html.strip}\n<p class=\"tags\">#{tags} \xf0\x9f\x8f\xb7</p>"
end
html.html_safe # rubocop:disable Rails/OutputSafety
end
def format_screenreader(html)
html.gsub(/\uf333(.*)\uf334/m, '<span aria-hidden="true">\1</span>')
end
def format_console(html)
cursor = '<span class="cursor"></span>'
"<pre><code>#{html.strip.sub(/<\/p>\Z/, cursor)}</p></code></pre>"
end
def format_markdown(html)
html = markdown_formatter.render(html)
end
def format_bbcode(html)
html = bbcode_formatter(html)
html.gsub(/<hr>.*<\/hr>/im, '<hr />')
end
def format_bbdown(html)
html = format_bbcode(html)
html = html.gsub(/<br *\/>|<br>/, '')
format_markdown(html)
end
def reformat(html)
sanitize(html, Sanitize::Config::MASTODON_STRICT).delete("\r").delete("\n")
end
def plaintext(status)
return status.text if status.local?
text = status.text.gsub(/(<br \/>|<br>|<\/p>)+/) { |match| "#{match}\n" }
strip_tags(text)
end
def simplified_format(account, **options)
return reformat(account.note) unless account.local?
html = format_bbdown(account.note)
html = encode_and_link_urls(html, keep_html: true)
html = reformat(html)
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)
return reformat(str).html_safe unless account.local? # rubocop:disable Rails/OutputSafety
html = encode_and_link_urls(str, me: true)
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)
"<a href=\"#{encode(url)}\" target=\"blank\" rel=\"nofollow noopener\">#{link_html(url)}</a>"
end
private
def bbcode_formatter(html)
begin
html.gsub!(/\[(?=[^\w\/])/, "\uf666")
html = html.bbcode_to_html(false, BBCODE_TAGS, :enable, *BBCODE_TAGS.keys)
html.gsub!("\uf666", '[')
rescue Exception => e
end
html
end
def markdown_formatter
return @markdown_formatter if defined?(@markdown_formatter)
extensions = {
autolink: true,
no_intra_emphasis: true,
fenced_code_blocks: true,
disable_indented_code_blocks: true,
strikethrough: true,
lax_spacing: true,
space_after_headers: true,
superscript: true,
underline: true,
highlight: true,
footnotes: false,
}
renderer = HTMLRenderer.new({
filter_html: false,
escape_html: false,
no_images: true,
no_styles: true,
safe_links_only: true,
hard_wrap: true,
link_attributes: { target: '_blank', rel: 'nofollow noopener' },
})
@markdown_formatter = 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 = {})
if accounts.is_a?(Hash)
options = accounts
accounts = nil
end
entities = options[:keep_html] ? html_friendly_extractor(html) : utf8_friendly_extractor(html, extract_url_without_protocol: false)
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[:screen_name]
link = link_to_pseudo(entity[:screen_name])
link.nil? ? link_to_mention(entity, accounts) : link
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 = "<img draggable=\"false\" class=\"emojione\" alt=\":#{encode(shortcode)}:\" title=\":#{encode(shortcode)}:\" src=\"#{encode(emoji)}\" />"
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 == '<span class="invisible">'
invisible_depth = 1
end
elsif html[i] == '<'
tag_open_index = i
inside_shortname = false
elsif !tag_open_index && html[i] == ':'
inside_shortname = true
shortname_start_index = i
end
end
html
end
def rewrite(text, entities, keep_html = false)
text = text.to_s
# 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|
indices = entity.respond_to?(:indices) ? entity.indices : entity[:indices]
result << (keep_html ? text[index...indices.first] : encode(text[index...indices.first]))
result << yield(entity)
indices.last
end
result << (keep_html ? text[last_index..-1] : encode(text[last_index..-1]))
result.flatten.join
end
UNICODE_ESCAPE_BLACKLIST_RE = /\p{Z}|\p{P}/
def utf8_friendly_extractor(text, options = {})
old_to_new_index = [0]
escaped = text.chars.map do |c|
output = begin
if c.ord.to_s(16).length > 2 && UNICODE_ESCAPE_BLACKLIST_RE.match(c).nil?
CGI.escape(c)
else
c
end
end
old_to_new_index << old_to_new_index.last + output.length
output
end.join
# Note: I couldn't obtain list_slug with @user/list-name format
# for mention so this requires additional check
special = Extractor.extract_urls_with_indices(escaped, options).map do |extract|
new_indices = [
old_to_new_index.find_index(extract[:indices].first),
old_to_new_index.find_index(extract[:indices].last),
]
next extract.merge(
indices: new_indices,
url: text[new_indices.first..new_indices.last - 1]
)
end
standard = Extractor.extract_entities_with_indices(text, options)
Extractor.remove_overlapping_entities(special + standard)
end
def html_friendly_extractor(html, options = {})
gaps = []
total_offset = 0
escaped = html.gsub(/<[^>]*>/) do |match|
total_offset += match.length - 1
end_offset = Regexp.last_match.end(0)
gaps << [end_offset - total_offset, total_offset]
"\u200b"
end
entities = Extractor.extract_hashtags_with_indices(escaped, :check_url_overlap => false) +
Extractor.extract_mentions_or_lists_with_indices(escaped)
Extractor.remove_overlapping_entities(entities).map do |extract|
pos = extract[:indices].first
offset_idx = gaps.rindex { |gap| gap.first <= pos }
offset = offset_idx.nil? ? 0 : gaps[offset_idx].last
next extract.merge(
:indices => [extract[:indices].first + offset, extract[:indices].last + offset]
)
end
end
def link_to_url(entity, options = {})
url = Addressable::URI.parse(entity[:url])
html_attrs = { target: '_blank', rel: 'nofollow noopener' }
html_attrs[:rel] = "me #{html_attrs[:rel]}" if options[:me]
Twitter::Autolink.send(:link_to_text, entity, link_html(entity[:url]), url, html_attrs)
rescue Addressable::URI::InvalidURIError, IDN::Idna::IdnaError
encode(entity[:url])
end
def link_to_mention(entity, linkable_accounts)
acct = entity[:screen_name]
return link_to_account(acct) unless linkable_accounts
account = linkable_accounts.find { |item| TagManager.instance.same_acct?(item.acct, acct) }
username, domain = acct.split('@', 2)
domain = (Rails.configuration.x.web_domain || Rails.configuration.x.local_domain) if domain.nil?
account ? mention_html(account) : anchor_html("@#{acct}", "https://#{domain}/@#{username}")
end
def link_to_account(acct)
username, domain = acct.split('@', 2)
domain = nil if TagManager.instance.local_domain?(domain)
account = EntityCache.instance.mention(username, domain)
domain = (Rails.configuration.x.web_domain || Rails.configuration.x.local_domain) if domain.nil?
account ? mention_html(account) : anchor_html("@#{acct}", "https://#{domain}/@#{username}")
end
def link_to_hashtag(entity)
hashtag_html(entity[:hashtag])
end
def link_html(url)
url = Addressable::URI.parse(url).to_s
prefix = url.match(/\Ahttps?:\/\/(www\.)?/).to_s
text = url[prefix.length, 30]
suffix = url[prefix.length + 30..-1]
cutoff = url[prefix.length..-1].length > 30
"<span class=\"invisible\">#{encode(prefix)}</span><span class=\"#{cutoff ? 'ellipsis' : ''}\">#{encode(text)}</span><span class=\"invisible\">#{encode(suffix)}</span>"
end
def hashtag_html(tag)
"<a href=\"#{encode(tag_url(tag.downcase))}\" class=\"mention hashtag\" rel=\"tag\">#<span>#{encode(tag)}</span></a>"
end
def mention_html(account)
"<span class=\"h-card\"><a href=\"#{encode(TagManager.instance.url_for(account))}\" class=\"u-url mention\">@<span>#{encode(account.username)}</span></a></span>"
end
def anchor_html(text, url)
"<a href=\"#{encode(url)}\" rel=\"noopener noreferrer\"><span>#{encode(text)}</span></a>"
end
def link_to_pseudo(acct)
username, domain = acct.split('@', 2)
case domain
when 'twitter', 'twitter.com'
anchor_html("@#{username}@twitter.com", "https://twitter.com/#{username}")
when 'tumblr', 'tumblr.com'
anchor_html("#{username}@tumblr.com", "https://#{username}.tumblr.com")
when 'weasyl', 'weasyl.com'
anchor_html("#{username}@weasyl.com", "https://weasyl.com/~#{username}")
when 'furaffinity', 'fa', 'furaffinity.net'
anchor_html("#{username}@furaffinity.net", "https://furaffinity.net/user/#{username}")
when 'furrynetwork', 'fn', 'furrynetwork.com', 'beta.furrynetwork.com'
anchor_html("#{username}@furrynetwork.com", "https://furrynetwork.com/#{username}")
when 'sofurry', 'sf', 'sofurry.com'
anchor_html("#{username}@sofurry.com", "https://#{username}.sofurry.com")
when 'inkbunny', 'ib', 'inkbunny.net'
anchor_html("#{username}@inkbunny.net", "https://inkbunny.net/#{username}")
when 'e621', 'e6', 'e621.net'
anchor_html("#{username}@e621.net", "https://e621.net/user/show/#{username}")
when 'e926', 'e9', 'e926.net'
anchor_html("#{username}@e926.net", "https://e926.net/user/show/#{username}")
when 'f-list', 'flist', 'fl', 'f-list.net'
anchor_html("#{username}@f-list.net", "https://f-list.net/c/#{username}")
when 'deviantart', 'da', 'deviantart.com'
anchor_html("#{username}@deviantart.com", "https://#{username}.deviantart.com")
when 'artstation', 'as', 'artstation.com'
anchor_html("#{username}@artstation.com", "https://www.artstation.com/#{username}")
when 'github', 'gh', 'github.com'
anchor_html("#{username}@github.com", "https://github.com/#{username}")
when 'gitlab', 'gl', 'gitlab.com'
anchor_html("#{username}@gitlab.com", "https://gitlab.com/#{username}")
else
nil
end
end
end
|