about summary refs log tree commit diff
path: root/app/lib
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-09-02 04:31:57 -0500
committermultiple creatures <dev@multiple-creature.party>2019-09-02 04:31:57 -0500
commit0700eaf38d1b08fd787d29027dd26b5015fd1d66 (patch)
tree47e688cdb7c05f2942771e819cda9ad8a80cdc10 /app/lib
parentb0c4ca2f767861ee00b6622778733bae0a885db5 (diff)
cache results of text formatting to save resources
Diffstat (limited to 'app/lib')
-rw-r--r--app/lib/formatter.rb57
1 files changed, 46 insertions, 11 deletions
diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb
index 272dc7222..88c502715 100644
--- a/app/lib/formatter.rb
+++ b/app/lib/formatter.rb
@@ -185,6 +185,9 @@ class Formatter
 	}
 
   def format(status, **options)
+    cached = Rails.cache.fetch("formatted_status:#{status.id}")
+    return cached unless cached.nil?
+
     if status.reblog?
       prepend_reblog = status.reblog.account.acct
       status         = status.proper
@@ -203,7 +206,10 @@ class Formatter
     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
+      html = html.html_safe # rubocop:disable Rails/OutputSafety
+
+      Rails.cache.write("formatted_status:#{status.id}", html, expires_in: 30.minutes)
+      return html
     end
 
     linkable_accounts = status.active_mentions.map(&:account)
@@ -247,7 +253,9 @@ class Formatter
       html = "#{html.strip}\n<p class=\"tags\">#{tags} \xf0\x9f\x8f\xb7</p>"
     end
 
-    html.html_safe # rubocop:disable Rails/OutputSafety
+    html = html.html_safe # rubocop:disable Rails/OutputSafety
+    Rails.cache.write("formatted_status:#{status.id}", html, expires_in: 30.minutes)
+    html
   end
 
   def format_screenreader(html)
@@ -286,12 +294,21 @@ class Formatter
   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
+    cached = Rails.cache.fetch("formatted_account:#{account.id}")
+    return cached unless cached.nil?
+
+    if 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.html_safe # rubocop:disable Rails/OutputSafety
+    else
+      html = reformat(account.note)
+    end
+
+    Rails.cache.write("formatted_account:#{account.id}", html, expires_in: 30.minutes)
+    html
   end
 
   def sanitize(html, config)
@@ -299,21 +316,39 @@ class Formatter
   end
 
   def format_spoiler(status, **options)
+    cached = Rails.cache.fetch("formatted_spoiler:#{status.id}")
+    return cached unless cached.nil?
+
     html = encode(status.spoiler_text)
     html = encode_custom_emojis(html, status.emojis, options[:autoplay])
-    html.html_safe # rubocop:disable Rails/OutputSafety
+    html = html.html_safe # rubocop:disable Rails/OutputSafety
+
+    Rails.cache.write("formatted_spoiler:#{status.id}", html, expires_in: 30.minutes)
+    html
   end
 
   def format_poll_option(status, option, **options)
+    cached = Rails.cache.fetch("formatted_poll:#{status.id}:#{option.id}")
+    return cached unless cached.nil?
+
     html = encode(option.title)
     html = encode_custom_emojis(html, status.emojis, options[:autoplay])
-    html.html_safe # rubocop:disable Rails/OutputSafety
+    html = html.html_safe # rubocop:disable Rails/OutputSafety
+
+    Rails.cache.write("formatted_poll:#{status.id}:#{option.id}", html, expires_in: 30.minutes)
+    html
   end
 
   def format_display_name(account, **options)
+    cached = Rails.cache.fetch("formatted_display_name:#{account.id}")
+    return cached unless cached.nil?
+
     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
+    html = html.html_safe # rubocop:disable Rails/OutputSafety
+
+    Rails.cache.write("formatted_display_name:#{account.id}", html, expires_in: 30.minutes)
+    html
   end
 
   def format_field(account, str, **options)