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

    def hydrate_status(encoded_message)
      message = ActiveSupport::JSON.decode(encoded_message)

      return [nil, message] if message['type'] == 'delete'

      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? && FeedManager.instance.filter?(:public, status, current_user.account)
    end
  end
end