mastodon/app/channels/application_cable/channel.rb

23 lines
523 B
Ruby
Raw Normal View History

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