2020-05-24 23:13:21 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ApplicationCable
|
|
|
|
class Connection < ActionCable::Connection::Base
|
2020-06-23 00:09:42 +05:30
|
|
|
include Logging
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
identified_by :current_user
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
public :request
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
def connect
|
|
|
|
self.current_user = find_user_from_session_store
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_user_from_session_store
|
2021-01-03 14:25:43 +05:30
|
|
|
session = ActiveSession.sessions_from_ids(Array.wrap(session_id)).first
|
2020-05-24 23:13:21 +05:30
|
|
|
Warden::SessionSerializer.new('rack.session' => session).fetch(:user)
|
|
|
|
end
|
|
|
|
|
|
|
|
def session_id
|
2021-01-03 14:25:43 +05:30
|
|
|
session_cookie = cookies[Gitlab::Application.config.session_options[:key]]
|
|
|
|
|
|
|
|
Rack::Session::SessionId.new(session_cookie).private_id if session_cookie.present?
|
2020-05-24 23:13:21 +05:30
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
|
|
|
|
def notification_payload(_)
|
|
|
|
super.merge!(params: request.params)
|
|
|
|
end
|
2020-05-24 23:13:21 +05:30
|
|
|
end
|
|
|
|
end
|