view http/src/luan/modules/http/dump.luan @ 500:ab9c2afefb47

add response.binary_writer
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 18 May 2015 20:59:30 -0600
parents fa4af530697f
children 40e18d335da9
line wrap: on
line source

local Luan = require "luan:Luan"
local pairs = Luan.pairs
local ipairs = Luan.ipairs
local Io = require "luan:Io"
local Http = require "luan:http/Http"
java()
local HttpServicer = require "java:luan.modules.http.HttpServicer"


to_http_header_name = HttpServicer.toHttpHeaderName

function respond()
	Http.response.header.content_type = "text/plain"
	Io.stdout = Http.response.text_writer()

	local method = Http.request.method
	local path = Http.request.path
	local query = Http.request.query_string()
	if method ~= "POST" and query ~= nil then
		path = path.."?"..query
	end
%>
<%=method%> <%=path%> <%=Http.request.protocol%> 
<%
	dump_headers(Http.request.headers)
%>

<%
	if method == "POST" and query ~= nil then
%>
<%=query%>
<%
	end
end


function dump_headers(headers)
	for name, values in pairs(headers) do
		local header_name = to_http_header_name(name)
		for _, value in ipairs(values) do
%>
<%=header_name%>: <%=value%>
<%
		end
	end
end