nit: Added link to `CONTRIBUTING.md` from the README
[nit.git] / lib / nitcorn / http_request.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2013 Frederic Sevillano
4 # Copyright 2013 Jean-Philippe Caissy <jpcaissy@piji.ca>
5 # Copyright 2014 Alexis Laferrière <alexis.laf@xymus.net>
6 # Copyright 2014 Alexandre Terrasa <alexandre@moz-code.org>
7 #
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 # http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19
20 # Provides the `HttpRequest` class and services to create it
21 module http_request
22
23 import core
24
25 # A request received over HTTP, is build by `HttpRequestParser`
26 class HttpRequest
27 private init do end
28
29 # HTTP protocol version
30 var http_version: String
31
32 # Method of this request (GET or POST)
33 var method: String
34
35 # The host targetter by this request (usually the server)
36 var host: String
37
38 # The full URL requested by the client (including the `query_string`)
39 var url: String
40
41 # The resource requested by the client (only the page, not the `query_string`)
42 var uri: String
43
44 # The string following `?` in the requested URL
45 var query_string = ""
46
47 # The header of this request
48 var header = new HashMap[String, String]
49
50 # The raw body of the request.
51 var body = ""
52
53 # The content of the cookie of this request
54 var cookie = new HashMap[String, String]
55
56 # The arguments passed with the GET method,
57 var get_args = new HashMap[String, String]
58
59 # The arguments passed with the POST method
60 var post_args = new HashMap[String, String]
61
62 # The arguments passed with the POST or GET method (with a priority on POST)
63 var all_args = new HashMap[String, String]
64
65 # Returns argument `arg_name` in the request as a String
66 # or null if it was not found.
67 # Also cleans the String by trimming it.
68 # If the Strings happens to be empty after trimming,
69 # the method will return `null`
70 #
71 # NOTE: Prioritizes POST before GET
72 fun string_arg(arg_name: String): nullable String do
73 if not all_args.has_key(arg_name) then return null
74 var s = all_args[arg_name].trim
75 if s.is_empty then return null
76 return s
77 end
78
79 # Returns argument `arg_name` as an Int or `null` if not found or not a number.
80 #
81 # NOTE: Prioritizes POST before GET
82 fun int_arg(arg_name: String): nullable Int do
83 if not all_args.has_key(arg_name) then return null
84 var i = all_args[arg_name]
85 if not i.is_numeric then return null
86 return i.to_i
87 end
88
89 # Returns argument `arg_name` as a Bool or `null` if not found or not a boolean.
90 #
91 # NOTE: Prioritizes POST before GET
92 fun bool_arg(arg_name: String): nullable Bool do
93 if not all_args.has_key(arg_name) then return null
94 var i = all_args[arg_name]
95 if i == "true" then return true
96 if i == "false" then return false
97 return null
98 end
99 end
100
101 # Utility class to parse a request string and build a `HttpRequest`
102 #
103 # The main method is `parse_http_request`.
104 class HttpRequestParser
105 # The current `HttpRequest` under construction
106 private var http_request: HttpRequest is noinit
107
108 # Untreated body
109 private var body = ""
110
111 # Lines of the header
112 private var header_fields = new Array[String]
113
114 # Words of the first line
115 private var first_line = new Array[String]
116
117 fun parse_http_request(full_request: String): nullable HttpRequest
118 do
119 clear_data
120
121 var http_request = new HttpRequest
122 self.http_request = http_request
123
124 segment_http_request(full_request)
125
126 # Parse first line, looks like "GET dir/index.html?user=xymus HTTP/1.0"
127 if first_line.length < 3 then
128 print "HTTP error: request first line apprears invalid: {first_line}"
129 return null
130 end
131 http_request.method = first_line[0]
132 http_request.url = first_line[1]
133 http_request.http_version = first_line[2]
134
135 # GET args
136 if http_request.url.has('?') then
137 http_request.uri = first_line[1].substring(0, first_line[1].index_of('?'))
138 http_request.query_string = first_line[1].substring_from(first_line[1].index_of('?')+1)
139
140 var parse_url = parse_url
141 http_request.get_args = parse_url
142 http_request.all_args.add_all parse_url
143 else
144 http_request.uri = first_line[1]
145 end
146
147 # POST args
148 if http_request.method == "POST" then
149 http_request.body = body
150 var lines = body.split_with('&')
151 for line in lines do if not line.trim.is_empty then
152 var parts = line.split_once_on('=')
153 if parts.length > 1 then
154 var decoded = parts[1].replace('+', " ").from_percent_encoding
155 http_request.post_args[parts[0]] = decoded
156 http_request.all_args[parts[0]] = decoded
157 else
158 print "POST Error: {line} format error on {line}"
159 end
160 end
161 end
162
163 # Headers
164 for i in header_fields do
165 var temp_field = i.split_with(": ")
166
167 if temp_field.length == 2 then
168 http_request.header[temp_field[0]] = temp_field[1]
169 end
170 end
171
172 # Cookies
173 if http_request.header.keys.has("Cookie") then
174 var cookie = http_request.header["Cookie"]
175 for couple in cookie.split_with(';') do
176 var words = couple.trim.split_with('=')
177 if words.length != 2 then continue
178 http_request.cookie[words[0]] = words[1]
179 end
180 end
181
182 return http_request
183 end
184
185 private fun clear_data
186 do
187 first_line.clear
188 header_fields.clear
189 end
190
191 private fun segment_http_request(http_request: String): Bool
192 do
193 var header_end = http_request.search("\r\n\r\n")
194
195 if header_end == null then
196 header_fields = http_request.split_with("\r\n")
197 else
198 header_fields = http_request.substring(0, header_end.from).split_with("\r\n")
199 body = http_request.substring(header_end.after, http_request.length-1)
200 end
201
202 # If a line of the http_request is long it may change line, it has " " at the
203 # end to indicate this. This section turns them into 1 line.
204 if header_fields.length > 1 and header_fields[0].has_suffix(" ") then
205 var temp_req = header_fields[0].substring(0, header_fields[0].length-1) + header_fields[1]
206
207 first_line = temp_req.split_with(' ')
208 header_fields.shift
209 header_fields.shift
210
211 if first_line.length != 3 then return false
212 else
213 first_line = header_fields[0].split_with(' ')
214 header_fields.shift
215
216 if first_line.length != 3 then return false
217 end
218
219 # Cut off the header in lines
220 var pos = 0
221 while pos < header_fields.length do
222 if pos < header_fields.length-1 and header_fields[pos].has_suffix(" ") then
223 header_fields[pos] = header_fields[pos].substring(0, header_fields[pos].length-1) + header_fields[pos+1]
224 header_fields.remove_at(pos+1)
225 pos = pos-1
226 end
227 pos = pos+1
228 end
229
230 return true
231 end
232
233 # Extract args from the URL
234 private fun parse_url: HashMap[String, String]
235 do
236 var query_strings = new HashMap[String, String]
237
238 if http_request.url.has('?') then
239 var get_args = http_request.query_string.split_with("&")
240 for param in get_args do
241 var key_value = param.split_with("=")
242 if key_value.length < 2 then continue
243 query_strings[key_value[0]] = key_value[1]
244 end
245 end
246
247 return query_strings
248 end
249 end