summaryrefslogtreecommitdiffstats
path: root/lem/http/server.lua
blob: cafab39ca7e975d5b7bf345e5a8076763d1d0b81 (plain) (blame)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
--
-- This file is part of LEM, a Lua Event Machine.
-- Copyright 2011-2013 Emil Renner Berthing
-- Copyright 2013      Halfdan Mouritzen
--
-- LEM is free software: you can redistribute it and/or modify it
-- under the terms of the GNU Lesser General Public License as
-- published by the Free Software Foundation, either version 3 of
-- the License, or (at your option) any later version.
--
-- LEM is distributed in the hope that it will be useful, but
-- WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-- GNU Lesser General Public License for more details.
--
-- You should have received a copy of the GNU Lesser General Public
-- License along with LEM.  If not, see <http://www.gnu.org/licenses/>.
--

local setmetatable = setmetatable
local tostring = tostring
local tonumber = tonumber
local pairs = pairs
local type = type
local date = os.date
local format = string.format
local concat = table.concat
local remove = table.remove

local io       = require 'lem.io'
                 require 'lem.http'
local response = require 'lem.http.response'

local M = {}

function M.debug() end

do
	local gsub, char, tonumber = string.gsub, string.char, tonumber

	local function tochar(str)
		return char(tonumber(str, 16))
	end

	function M.urldecode(str)
		return gsub(gsub(str, '+', ' '), '%%(%x%x)', tochar)
	end
end

local function check_match(entry, req, res, ok, ...)
	if not ok then return false end
	local handler = entry[req.method]
	if handler then
		handler(req, res, ok, ...)
	else
		response.method_not_allowed(req, res)
	end
	return true
end

do
	local urldecode = M.urldecode
	local newresponse = response.new

	local function handleHTTP(self, client)
		repeat
			local req, err = client:read('HTTPRequest')
			if not req then self.debug('read', err) break end
			local method, uri, version = req.method, req.uri, req.version

			req.path = urldecode(uri:match('^([^?]*)'))

			local res = newresponse(req)

			if version ~= '1.0' and version ~= '1.1' then
				response.version_not_supported(req, res)
				version = '1.1'
			else
				local expect = req.headers['expect']
				if expect and expect ~= '100-continue' then
					response.expectation_failed(req, res)
				else
					self.handler(req, res)
				end
			end

			local headers = res.headers
			local file, close = res.file, false
			if type(file) == 'string' then
				file, err = io.open(file)
				if file then
					close = true
				else
					self.debug('open', err)
					res = rewresponse(req)
					headers = res.headers
					response.not_found(req, res)
				end
			end

			if not res.status then
				if #res == 0 and file == nil then
					res.status = 204
				else
					res.status = 200
				end
			end

			if headers['Content-Length'] == nil and res.status ~= 204 then
				local len
				if file then
					len = file:size()
				else
					len = 0
					for i = 1, #res do
						len = len + #res[i]
					end
				end

				headers['Content-Length'] = len
			end

			if headers['Date'] == nil then
				headers['Date'] = date('!%a, %d %b %Y %T GMT')
			end

			if headers['Server'] == nil then
				headers['Server'] = 'Hathaway/0.1 LEM/0.3'
			end

			if req.headers['connection'] == 'close' and headers['Connection'] == nil then
				headers['Connection'] = 'close'
			end

			local rope = {}
			do
				local status = res.status
				if type(status) == 'number' then
					status = response.status_string[status]
				end

				rope[1] = format('HTTP/%s %s\r\n', version, status)
			end

			res:appendheader(rope, 1)

			client:cork()

			local ok, err = client:write(concat(rope))
			if not ok then self.debug('write', err) break end

			if method ~= 'HEAD' then
				if file then
					ok, err = client:sendfile(file, headers['Content-Length'])
					if close then file:close() end
				else
					local body = concat(res)
					if #body > 0 then
						ok, err = client:write(body)
					end
				end
				if not ok then self.debug('write', err) break end
			end

			client:uncork()

		until version == '1.0'
		   or headers['Connection'] == 'close'

		client:close()
	end

	local Server = {}
	Server.__index = Server
	M.Server = Server

	function Server:run()
		return self.socket:autospawn(function(...) return handleHTTP(self, ...) end)
	end

	function Server:close()
		return self.socket:close()
	end

	local type, setmetatable = type, setmetatable

	function M.new(host, port, handler)
		local socket, err
		if type(host) == 'string' then
			socket, err = io.tcp.listen(host, port)
			if not socket then
				return nil, err
			end
		else
			socket = host
			handler = port
		end

		return setmetatable({
			socket = socket,
			handler = handler,
			debug = M.debug
		}, Server)
	end
end

return M

-- vim: ts=2 sw=2 noet: