mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-08 07:55:14 +00:00
24 lines
441 B
Ruby
24 lines
441 B
Ruby
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
|