This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/channels/application_cable/connection.rb

24 lines
441 B
Ruby
Raw Normal View History

2016-08-18 15:49:51 +02:00
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
2016-08-18 15:49:51 +02:00
verified_user
else
reject_unauthorized_connection
end
2016-10-03 19:10:56 +02:00
rescue :warden
reject_unauthorized_connection
2016-08-18 15:49:51 +02:00
end
end
end