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-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-18 06:49:51 -07:00
|
|
|
module ApplicationCable
|
|
|
|
class Connection < ActionCable::Connection::Base
|
|
|
|
identified_by :current_user
|
|
|
|
|
|
|
|
def connect
|
|
|
|
self.current_user = find_verified_user
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def find_verified_user
|
2016-10-03 10:19:03 -07:00
|
|
|
catch :warden do
|
|
|
|
verified_user = env['warden'].user
|
|
|
|
return verified_user if verified_user
|
2016-08-18 06:49:51 -07:00
|
|
|
end
|
2016-10-03 10:19:03 -07:00
|
|
|
|
2016-10-03 10:10:56 -07:00
|
|
|
reject_unauthorized_connection
|
2016-08-18 06:49:51 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|