forked from whiteblock/hobbits
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathparser.rb
36 lines (29 loc) · 847 Bytes
/
parser.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
class Request
attr_reader :protocol, :version, :compression, :encoding, :headers, :body
def initialize(protocol, version, compression, encoding, headers, body)
@protocol = protocol
@version = version
@compression = compression
@encoding = encoding
#@head_only_indicator = head_only_indicator
@headers = headers
@body = body
end
end
class Parser
def self.parse_request(request)
lines = request.split("\n")
parts = lines[0].split(" ")
protocol = parts[0]
version = parts[1]
compression = parts[3]
encoding = parts[4]
#head_only_indicator = " "
headers = ""
if parts[5].to_i > 0
headers = lines[1][0..(parts[5].to_i-1)]
end
body = lines[1][parts[5].to_i..(parts[6].to_i-1)]
Request.new(protocol, version, compression, encoding, headers, body)
end
end