Class: Faye::RackAdapter
- Inherits:
-
Object
show all
- Extended by:
- Forwardable
- Includes:
- Logging
- Defined in:
- lib/faye/adapters/rack_adapter.rb
Constant Summary
collapse
- ASYNC_RESPONSE =
[-1, {}, []].freeze
- DEFAULT_ENDPOINT =
'/bayeux'
- SCRIPT_PATH =
'faye-browser-min.js'
- TYPE_JSON =
{'Content-Type' => 'application/json; charset=utf-8'}
- TYPE_SCRIPT =
{'Content-Type' => 'text/javascript; charset=utf-8'}
- TYPE_TEXT =
{'Content-Type' => 'text/plain; charset=utf-8'}
- HTTP_X_NO_CONTENT_LENGTH =
This header is passed by Rack::Proxy during testing. Rack::Proxy seems to set content-length for you, and setting it in here really slows the tests down. Better suggestions welcome.
'HTTP_X_NO_CONTENT_LENGTH'
Constants included
from Logging
Logging::DEFAULT_LOG_LEVEL, Logging::LOG_LEVELS
Instance Attribute Summary
Attributes included from Logging
#log_level
Instance Method Summary
collapse
Methods included from Logging
#log
Constructor Details
#initialize(app = nil, options = nil) ⇒ RackAdapter
Returns a new instance of RackAdapter.
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# File 'lib/faye/adapters/rack_adapter.rb', line 23
def initialize(app = nil, options = nil)
@app = app if app.respond_to?(:call)
@options = [app, options].grep(Hash).first || {}
@endpoint = @options[:mount] || DEFAULT_ENDPOINT
@endpoint_re = Regexp.new('^' + @endpoint.gsub(/\/$/, '') + '(/[^/]+)*(\\.[^\\.]+)?$')
@server = Server.new(@options)
@static = StaticServer.new(ROOT, /\.(?:js|map)$/)
@static.map(File.basename(@endpoint) + '.js', SCRIPT_PATH)
@static.map('client.js', SCRIPT_PATH)
return unless extensions = @options[:extensions]
[*extensions].each { |extension| add_extension(extension) }
end
|
Instance Method Details
#add_extension(extension) ⇒ Object
39
40
41
|
# File 'lib/faye/adapters/rack_adapter.rb', line 39
def add_extension(extension)
@server.add_extension(extension)
end
|
#call(env) ⇒ Object
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# File 'lib/faye/adapters/rack_adapter.rb', line 72
def call(env)
Faye.ensure_reactor_running!
request = Rack::Request.new(env)
unless request.path_info =~ @endpoint_re
env['faye.client'] = get_client
return @app ? @app.call(env) :
[404, TYPE_TEXT, ["Sure you're not looking for #{@endpoint} ?"]]
end
if env['REQUEST_METHOD'] == 'OPTIONS' or env['HTTP_ACCESS_CONTROL_REQUEST_METHOD'] == 'POST'
return handle_options(request)
end
return @static.call(env) if @static =~ request.path_info
return handle_websocket(env) if Faye::WebSocket.websocket?(env)
return handle_eventsource(env) if Faye::EventSource.eventsource?(env)
handle_request(request)
end
|
#get_client ⇒ Object
47
48
49
|
# File 'lib/faye/adapters/rack_adapter.rb', line 47
def get_client
@client ||= Client.new(@server)
end
|
#listen(port, ssl_options = nil) ⇒ Object
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# File 'lib/faye/adapters/rack_adapter.rb', line 51
def listen(port, ssl_options = nil)
Faye::WebSocket.load_adapter('thin')
handler = Rack::Handler.get('thin')
handler.run(self, :Port => port) do |s|
if ssl_options
s.ssl = true
s.ssl_options = {
:private_key_file => ssl_options[:key],
:cert_chain_file => ssl_options[:cert]
}
end
@thin_server = s
end
end
|
#remove_extension(extension) ⇒ Object
43
44
45
|
# File 'lib/faye/adapters/rack_adapter.rb', line 43
def remove_extension(extension)
@server.remove_extension(extension)
end
|
#stop ⇒ Object
66
67
68
69
70
|
# File 'lib/faye/adapters/rack_adapter.rb', line 66
def stop
return unless @thin_server
@thin_server.stop
@thin_server = nil
end
|