aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/rails/generators/channel/templates/application_cable/connection.rb
blob: be6fdf7ce4b3a90c25750decd3cb3ce930e2140f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
        if current_user = authenticate_with_cookies
          current_user
        else
          reject_unauthorized_connection
        end
      end

      def authenticate_with_cookies
        # User.find(cookies.signed[:user_id])
      end
  end
end