From 1f650d327d35bc48b897da99914c43750d8e5fd3 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 7 Oct 2016 16:00:11 +0200 Subject: Adding public timeline --- app/channels/public_channel.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/channels/public_channel.rb (limited to 'app/channels') diff --git a/app/channels/public_channel.rb b/app/channels/public_channel.rb new file mode 100644 index 000000000..870b5cc2e --- /dev/null +++ b/app/channels/public_channel.rb @@ -0,0 +1,19 @@ +# Be sure to restart your server when you modify this file. Action Cable runs in a loop that does not support auto reloading. +class PublicChannel < ApplicationCable::Channel + def subscribed + stream_from 'timeline:public', -> (encoded_message) do + message = ActiveSupport::JSON.decode(encoded_message) + + status = Status.find_by(id: message['id']) + next if status.nil? + + message['message'] = FeedManager.instance.inline_render(current_user.account, status) + + transmit message + end + end + + def unsubscribed + # Any cleanup needed when channel is unsubscribed + end +end -- cgit