about summary refs log tree commit diff
path: root/app/workers/push_update_worker.rb
diff options
context:
space:
mode:
authorKurtis Rainbolt-Greene <kurtis@rainbolt-greene.online>2017-04-04 20:16:53 -0700
committerKurtis Rainbolt-Greene <kurtis@rainbolt-greene.online>2017-04-04 20:23:40 -0700
commit1e96ce378e2aa35ed7287a4a88e5165c2ee20101 (patch)
treeccab59988d593f6be4d3c747b6cb1354e8d3b686 /app/workers/push_update_worker.rb
parentccb6a658fd1a2e596c95d5b8e7a39f72a5f5b14b (diff)
By pushing this into a worker we can reduce the amount of time the feed manager using workers eat up a connection
Diffstat (limited to 'app/workers/push_update_worker.rb')
-rw-r--r--app/workers/push_update_worker.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/workers/push_update_worker.rb b/app/workers/push_update_worker.rb
new file mode 100644
index 000000000..3d398b5ac
--- /dev/null
+++ b/app/workers/push_update_worker.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+class PushUpdateWorker
+  include Sidekiq::Worker
+
+  def perform(timeline, account_id, status_id)
+    account = Account.find(account_id)
+    status = Status.find(status_id)
+    message = inline_render(account, 'api/v1/statuses/show', status)
+
+    broadcast(account_id, type: 'update', timeline: timeline, message: message)
+  end
+end