Files
fizzy/app/channels/application_cable/connection.rb
T
2025-11-17 09:12:40 -05:00

22 lines
599 B
Ruby

module ApplicationCable
class Connection < ActionCable::Connection::Base
identified_by :current_user
def connect
set_current_user || reject_unauthorized_connection
end
private
def set_current_user
if session = find_session_by_cookie
account = Account.find_by(external_account_id: request.env["fizzy.external_account_id"])
self.current_user = session.identity.users.find_by!(account: account) if account
end
end
def find_session_by_cookie
Session.find_signed(cookies.signed[:session_token])
end
end
end