about summary refs log tree commit diff
path: root/app/channels/application_cable/connection.rb
blob: bdbf528bec3bdf7c203bcb11f36b5fef307892ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
      verified_user = env['warden'].user

      if verified_user
        verified_user
      else
        reject_unauthorized_connection
      end
    rescue :warden
      reject_unauthorized_connection
    end
  end
end