summaryrefslogtreecommitdiff
path: root/app/channels/application_cable/connection.rb
blob: 87c833f3593c2bc034d2a530f7ffda68be8bf7a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module ApplicationCable
  class Connection < ActionCable::Connection::Base
    identified_by :current_user

    def connect
      self.current_user = find_user_from_session_store
    end

    private

    def find_user_from_session_store
      session = ActiveSession.sessions_from_ids([session_id]).first
      Warden::SessionSerializer.new('rack.session' => session).fetch(:user)
    end

    def session_id
      Rack::Session::SessionId.new(cookies[Gitlab::Application.config.session_options[:key]])
    end
  end
end