about summary refs log tree commit diff
path: root/app/channels/public_channel.rb
blob: 578cdc001b426ef4e3bdff8f8d3295d3386a07b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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', lambda do |encoded_message|
      message = ActiveSupport::JSON.decode(encoded_message)

      status = Status.find_by(id: message['id'])
      next if status.nil? || current_user.account.blocking?(status.account) || (status.reblog? && current_user.account.blocking?(status.reblog.account))

      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