mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.httpserver: Catch errors thrown in HTTP handlers.
This commit is contained in:
parent
b3cc9f42df
commit
fc6149a695
1 changed files with 8 additions and 0 deletions
|
@ -17,6 +17,8 @@ local listener;
|
|||
|
||||
local t_insert, t_concat = table.insert, table.concat;
|
||||
local tonumber, tostring, pairs, ipairs, type = tonumber, tostring, pairs, ipairs, type;
|
||||
local xpcall = xpcall;
|
||||
local debug_traceback = debug.traceback;
|
||||
|
||||
local urlencode = function (s) return s and (s:gsub("%W", function (c) return ("%%%02x"):format(c:byte()); end)); end
|
||||
|
||||
|
@ -86,6 +88,12 @@ local function call_callback(request, err)
|
|||
callback = (request.server and request.server.handlers[base]) or default_handler;
|
||||
end
|
||||
if callback then
|
||||
local _callback = callback;
|
||||
function callback(a, b, c)
|
||||
local status, result = xpcall(function() _callback(a, b, c) end, debug_traceback);
|
||||
if status then return result; end
|
||||
log("error", "Error in HTTP server handler: %s", result);
|
||||
end
|
||||
if err then
|
||||
log("debug", "Request error: "..err);
|
||||
if not callback(nil, err, request) then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue