chinwagsocial/app/channels/application_cable/channel.rb

23 lines
523 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-18 23:49:51 +10:00
module ApplicationCable
class Channel < ActionCable::Channel::Base
2016-11-06 01:20:05 +11:00
protected
def hydrate_status(encoded_message)
2017-02-03 02:57:09 +11:00
message = Oj.load(encoded_message)
return [nil, message] if message['event'] == 'delete'
2017-02-03 02:57:09 +11:00
status_json = Oj.load(message['payload'])
status = Status.find(status_json['id'])
2016-11-06 01:20:05 +11:00
[status, message]
end
def filter?(status)
!status.nil? && FeedManager.instance.filter?(:public, status, current_user.account)
2016-11-06 01:20:05 +11:00
end
2016-08-18 23:49:51 +10:00
end
end