mirror of
https://git.shadowkat.net/izaya/OC-PsychOS2.git
synced 2024-11-15 17:18:08 -05:00
made fserv able to serve http(s)
This commit is contained in:
parent
bc1f7d7c6c
commit
fbef63f9b0
@ -48,11 +48,28 @@ local function fileHandler(socket,rtype,path)
|
|||||||
else
|
else
|
||||||
socket:write("fUnknown request type")
|
socket:write("fUnknown request type")
|
||||||
end
|
end
|
||||||
socket:close()
|
|
||||||
end
|
end
|
||||||
local function httpHandler(socket,rtype,path)
|
local function httpHandler(socket,rtype,path)
|
||||||
socket:write("fHTTP requests are not yet implemented.")
|
local tPath = fs.segments(path)
|
||||||
socket:close()
|
local proto = table.remove(tPath,1)
|
||||||
|
local url = string.format("%s://%s",proto,table.concat(tPath,"/"))
|
||||||
|
local request = component.invoke(component.list("internet")(),"request",url)
|
||||||
|
repeat
|
||||||
|
coroutine.yield()
|
||||||
|
until request.finishConnect()
|
||||||
|
local code, message, headers = request.response()
|
||||||
|
if code < 200 or code > 299 then
|
||||||
|
socket:write(string.format("f%d\n%s",code,message))
|
||||||
|
else
|
||||||
|
local data = ""
|
||||||
|
repeat
|
||||||
|
coroutine.yield()
|
||||||
|
data = request.read()
|
||||||
|
if data then
|
||||||
|
socket:write(data)
|
||||||
|
end
|
||||||
|
until not data
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function socketHandler(socket)
|
local function socketHandler(socket)
|
||||||
@ -63,7 +80,7 @@ local function socketHandler(socket)
|
|||||||
line = socket:read()
|
line = socket:read()
|
||||||
until line
|
until line
|
||||||
local rtype, path = line:match("(.)(.+)")
|
local rtype, path = line:match("(.)(.+)")
|
||||||
if path:sub(1,6) == "/http/" or path:sub(1,5) == "http/" then
|
if fs.segments(path)[1] == "http" or fs.segments(path)[1] == "https" then
|
||||||
httpHandler(socket,rtype,path)
|
httpHandler(socket,rtype,path)
|
||||||
else
|
else
|
||||||
path = (cfg.path .. "/" .. path:gsub("../","")):gsub("/+","/")
|
path = (cfg.path .. "/" .. path:gsub("../","")):gsub("/+","/")
|
||||||
@ -74,5 +91,5 @@ local function socketHandler(socket)
|
|||||||
end
|
end
|
||||||
|
|
||||||
while true do
|
while true do
|
||||||
os.spawn(socketHandler(minitel.listen(70)))
|
os.spawn(socketHandler(minitel.listen(70)),"fserv worker process")
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user