3868910dde
* actioncable needs puma not webrick * add framework * remove the old way * send events from server to client * get all events working * clean up receivable * map is polymorphic on message * add the moved event * make todo comments clear * verify before streaming from map channel * rubocop fixes * wasn't set up correctly for nodejs realtime
22 lines
551 B
Ruby
22 lines
551 B
Ruby
# frozen_string_literal: true
|
|
module ApplicationCable
|
|
class Connection < ActionCable::Connection::Base
|
|
identified_by :current_user
|
|
|
|
def connect
|
|
self.current_user = find_verified_user
|
|
logger.add_tags 'ActionCable', current_user.name
|
|
end
|
|
|
|
protected
|
|
|
|
def find_verified_user
|
|
verified_user = User.find_by(id: cookies.signed['user.id'])
|
|
if verified_user && cookies.signed['user.expires_at'] > Time.now.getlocal
|
|
verified_user
|
|
else
|
|
reject_unauthorized_connection
|
|
end
|
|
end
|
|
end
|
|
end
|