about summary refs log tree commit diff
path: root/app/channels/application_cable/channel.rb
blob: d27b058fb069f93a43aad11b3ddfe0830c9875b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module ApplicationCable
  class Channel < ActionCable::Channel::Base
    protected

    def hydrate_status(encoded_message)
      message = ActiveSupport::JSON.decode(encoded_message)
      status  = Status.find_by(id: message['id'])
      message['message'] = FeedManager.instance.inline_render(current_user.account, status)

      [status, message]
    end

    def filter?(status)
      status.nil? || current_user.account.blocking?(status.account) || (status.reblog? && current_user.account.blocking?(status.reblog.account))
    end
  end
end