about summary refs log tree commit diff
path: root/app/lib/entity_cache.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-04-06 21:44:34 +0200
committerGitHub <noreply@github.com>2020-04-06 21:44:34 +0200
commitc47be5bd864a1f5244f35122ba7fae31a149c73d (patch)
treec8e9e95a36ffb2346e3168d00364e4b614bee92a /app/lib/entity_cache.rb
parent6e426267a762f3cd1efa2c5fb120a13543567775 (diff)
parent9101254d0a70bc6f899c093f33300cffceb7c8ac (diff)
Merge pull request #1312 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/lib/entity_cache.rb')
-rw-r--r--app/lib/entity_cache.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/lib/entity_cache.rb b/app/lib/entity_cache.rb
index 35a3773d2..afdbd70f2 100644
--- a/app/lib/entity_cache.rb
+++ b/app/lib/entity_cache.rb
@@ -7,6 +7,10 @@ class EntityCache
 
   MAX_EXPIRATION = 7.days.freeze
 
+  def status(url)
+    Rails.cache.fetch(to_key(:status, url), expires_in: MAX_EXPIRATION) { FetchRemoteStatusService.new.call(url) }
+  end
+
   def mention(username, domain)
     Rails.cache.fetch(to_key(:mention, username, domain), expires_in: MAX_EXPIRATION) { Account.select(:id, :username, :domain, :url).find_remote(username, domain) }
   end