This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-10-07 07:00:11 -07:00
|
|
|
# Be sure to restart your server when you modify this file. Action Cable runs in a loop that does not support auto reloading.
|
|
|
|
class PublicChannel < ApplicationCable::Channel
|
|
|
|
def subscribed
|
2016-10-23 02:56:04 -07:00
|
|
|
stream_from 'timeline:public', lambda { |encoded_message|
|
2016-10-07 07:00:11 -07:00
|
|
|
message = ActiveSupport::JSON.decode(encoded_message)
|
|
|
|
|
|
|
|
status = Status.find_by(id: message['id'])
|
2016-10-09 06:05:07 -07:00
|
|
|
next if status.nil? || current_user.account.blocking?(status.account) || (status.reblog? && current_user.account.blocking?(status.reblog.account))
|
2016-10-07 07:00:11 -07:00
|
|
|
|
|
|
|
message['message'] = FeedManager.instance.inline_render(current_user.account, status)
|
|
|
|
|
|
|
|
transmit message
|
2016-10-23 02:56:04 -07:00
|
|
|
}
|
2016-10-07 07:00:11 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def unsubscribed
|
|
|
|
# Any cleanup needed when channel is unsubscribed
|
|
|
|
end
|
|
|
|
end
|