Class: Webmachine::Adapters::Reel

Inherits:
Webmachine::Adapter show all
Defined in:
lib/webmachine/adapters/reel.rb

Instance Attribute Summary

Attributes inherited from Webmachine::Adapter

#configuration, #dispatcher

Instance Method Summary collapse

Methods inherited from Webmachine::Adapter

#initialize, run

Constructor Details

This class inherits a constructor from Webmachine::Adapter

Instance Method Details

#fixup_callable_encoder(response) ⇒ Object



106
107
108
109
110
# File 'lib/webmachine/adapters/reel.rb', line 106

def fixup_callable_encoder(response)
  if response.body.is_a?(Streaming::CallableEncoder)
    response.body = [response.body.call]
  end
end

#fixup_headers(response) ⇒ Object



98
99
100
101
102
103
104
# File 'lib/webmachine/adapters/reel.rb', line 98

def fixup_headers(response)
  response.headers.each do |key, value|
    if value.is_a?(Array)
      response.headers[key] = value.join(", ")
    end
  end
end

#process(connection) ⇒ Object



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
# File 'lib/webmachine/adapters/reel.rb', line 36

def process(connection)
  while request = connection.request
    # Users of the adapter can configure a custom WebSocket handler
    if request.is_a? ::Reel::WebSocket
      if handler = @options[:websocket_handler]
        handler.call(request)
      else
        # Pretend we don't know anything about the WebSocket protocol
        # FIXME: This isn't strictly what RFC 6455 would have us do
        request.respond :bad_request, "WebSockets not supported"
      end

      next
    end

    # Optional support for e.g. WebDAV verbs not included in Webmachine's
    # state machine. Do the "Railsy" thing and handle them like POSTs
    # with a magical parameter
    if @extra_verbs.include?(request.method)
      method = "POST"
      param  = "_method=#{request.method}"
      uri    = request_uri(request.url, request.headers, param)
    else
      method = request.method
      uri    = request_uri(request.url, request.headers)
    end

    wm_headers  = Webmachine::Headers[request.headers.dup]
    wm_request  = Webmachine::Request.new(method, uri, wm_headers,
                                          LazyRequestBody.new(request))
    wm_response = Webmachine::Response.new
    @dispatcher.dispatch(wm_request, wm_response)

    fixup_headers(wm_response)
    fixup_callable_encoder(wm_response)

    request.respond ::Reel::Response.new(wm_response.code,
                                         wm_response.headers,
                                         wm_response.body)
  end
end

#request_uri(path, headers, extra_query_params = nil) ⇒ Object



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/webmachine/adapters/reel.rb', line 78

def request_uri(path, headers, extra_query_params = nil)
  host_parts = headers.fetch('Host').split(':')
  path_parts = path.split('?')

  uri_hash = {host: host_parts.first, path: path_parts.first}

  uri_hash[:port]  = host_parts.last.to_i if host_parts.length == 2
  uri_hash[:query] = path_parts.last      if path_parts.length == 2

  if extra_query_params
    if uri_hash[:query]
      uri_hash[:query] << "&#{extra_query_params}"
    else
      uri_hash[:query] = extra_query_params
    end
  end

  URI::HTTP.build(uri_hash)
end

#runObject



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/webmachine/adapters/reel.rb', line 13

def run
  @options = {
    :port => configuration.port,
    :host => configuration.ip
  }.merge(configuration.adapter_options)

  if extra_verbs = configuration.adapter_options[:extra_verbs]
    @extra_verbs = Set.new(extra_verbs.map(&:to_s).map(&:upcase))
  else
    @extra_verbs = Set.new
  end

  @server = ::Reel::Server.supervise(@options[:host], @options[:port], &method(:process))

  # FIXME: this will no longer work on Ruby 2.0. We need Celluloid.trap
  trap("INT") { @server.terminate; exit 0 }
  Celluloid::Actor.join(@server)
end

#shutdownObject



32
33
34
# File 'lib/webmachine/adapters/reel.rb', line 32

def shutdown
  @server.terminate! if @server
end