22 lines
599 B
Ruby
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
|