forked from websocket-rails/websocket-rails
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconnection_manager.rb
115 lines (86 loc) · 2.89 KB
/
connection_manager.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
require 'faye/websocket'
require 'rack'
if defined?(::Puma)
Faye::WebSocket.load_adapter('puma')
elsif defined?(::Thin)
Faye::WebSocket.load_adapter('thin')
elsif defined?(::Unicorn)
Faye::WebSocket.load_adapter('unicorn')
else
#raise 'No suitable websocket adapter found'
end
module WebsocketRails
def self.connection_manager
@connection_manager ||= ConnectionManager.new
end
# The +ConnectionManager+ class implements the core Rack application that handles
# incoming WebSocket connections.
class ConnectionManager
include Logging
delegate :sync, to: Synchronization
BadRequestResponse = [400,{'Content-Type' => 'text/plain'},['invalid']].freeze
ExceptionResponse = [500,{'Content-Type' => 'text/plain'},['exception']].freeze
# Contains a Hash of currently open connections.
# @return [Hash]
attr_reader :connections
# Contains the {Dispatcher} instance for the active server.
# @return [Dispatcher]
attr_reader :dispatcher
# Contains the {Synchronization} instance for the active server.
# @return [Synchronization]
attr_reader :synchronization
def initialize
@connections = {}
@dispatcher = Dispatcher.new(self)
@dispatcher.process_inbound
if WebsocketRails.synchronize?
@sync_worker = Thread.new do
sync.synchronize!
at_exit { sync.shutdown! }
end
end
end
def inspect
"websocket_rails"
end
# Primary entry point for the Rack application
def call(env)
request = ActionDispatch::Request.new(env)
response = open_connection(request)
response
rescue InvalidConnectionError => ex
error "Invalid connection attempt: #{ex.message}"
BadRequestResponse
rescue Exception => ex
error "Exception occurred while opening connection: #{ex.message}"
ExceptionResponse
end
private
def open_connection(request)
raise InvalidConnectionError unless Connection.websocket?(request.env)
connection = Connection.new(request, dispatcher)
register_user_connection connection
connections[connection.id.to_s] = connection
info "Connection opened: #{connection}"
connection.rack_response
end
def close_connection(connection)
WebsocketRails.channel_manager.unsubscribe connection
destroy_user_connection connection
connections.delete connection.id.to_s
info "Connection closed: #{connection}"
connection = nil
end
public :close_connection
def register_user_connection(connection)
return unless connection.user_connection?
WebsocketRails.users[connection.user_identifier] = connection
end
public :register_user_connection
def destroy_user_connection(connection)
return unless connection.user_connection?
WebsocketRails.users.delete(connection)
end
public :destroy_user_connection
end
end