2016-10-07 10:00:11 -04:00
|
|
|
# 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
|
2016-10-22 13:38:47 -04:00
|
|
|
stream_from 'timeline:public', lambda do |encoded_message|
|
2016-10-07 10:00:11 -04:00
|
|
|
message = ActiveSupport::JSON.decode(encoded_message)
|
|
|
|
|
|
|
|
status = Status.find_by(id: message['id'])
|
2016-10-09 09:05:07 -04:00
|
|
|
next if status.nil? || current_user.account.blocking?(status.account) || (status.reblog? && current_user.account.blocking?(status.reblog.account))
|
2016-10-07 10:00:11 -04:00
|
|
|
|
|
|
|
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
|