791d90c6b7
At present, the websocket pubsub tokens are present at the contact objects in chatwoot. A better approach would be to have these tokens at the contact_inbox object instead. This helps chatwoot to deliver the websocket events targetted to the specific widget connection, stop contact events from leaking into other chat sessions from the same contact. Fixes #1682 Fixes #1664 Co-authored-by: Pranav Raj S <pranav@chatwoot.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
47 lines
1.4 KiB
Ruby
47 lines
1.4 KiB
Ruby
class RoomChannel < ApplicationCable::Channel
|
|
def subscribed
|
|
ensure_stream
|
|
current_user
|
|
current_account
|
|
update_subscription
|
|
broadcast_presence
|
|
end
|
|
|
|
def update_presence
|
|
update_subscription
|
|
broadcast_presence
|
|
end
|
|
|
|
private
|
|
|
|
def broadcast_presence
|
|
data = { account_id: @current_account.id, users: ::OnlineStatusTracker.get_available_users(@current_account.id) }
|
|
data[:contacts] = ::OnlineStatusTracker.get_available_contacts(@current_account.id) if @current_user.is_a? User
|
|
ActionCable.server.broadcast(@pubsub_token, { event: 'presence.update', data: data })
|
|
end
|
|
|
|
def ensure_stream
|
|
@pubsub_token = params[:pubsub_token]
|
|
stream_from @pubsub_token
|
|
end
|
|
|
|
def update_subscription
|
|
::OnlineStatusTracker.update_presence(@current_account.id, @current_user.class.name, @current_user.id)
|
|
end
|
|
|
|
def current_user
|
|
@current_user ||= if params[:user_id].blank?
|
|
ContactInbox.find_by!(pubsub_token: @pubsub_token).contact
|
|
else
|
|
User.find_by!(pubsub_token: @pubsub_token, id: params[:user_id])
|
|
end
|
|
end
|
|
|
|
def current_account
|
|
@current_account ||= if @current_user.is_a? Contact
|
|
@current_user.account
|
|
else
|
|
@current_user.accounts.find(params[:account_id])
|
|
end
|
|
end
|
|
end
|