about summary refs log tree commit diff
path: root/app/channels/application_cable/channel.rb
blob: f57bcc56aa03d1e0e608ee9cc76d63dd5dbb0809 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module ApplicationCable
  class Channel < ActionCable::Channel::Base
    protected

    def hydrate_status(encoded_message)
      message = OJ.load(encoded_message)

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

      status_json = OJ.load(message['payload'])
      status      = Status.find(status_json['id'])

      [status, message]
    end

    def filter?(status)
      !status.nil? && FeedManager.instance.filter?(:public, status, current_user.account)
    end
  end
end