Proper case for set of predefined parts

Ref: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers
This commit is contained in:
johnd0e 2025-01-04 17:07:39 +01:00
parent d4bc6b545c
commit 4160ef1835

View File

@ -7,11 +7,37 @@ local socket = require("socket")
socket.headers = {}
local _M = socket.headers
local parts = {
ch="CH",
dns="DNS",
ect="ECT",
etag="ETag",
gpc="GPC",
id="ID",
md5="MD5",
mime="MIME",
mta="MTA",
nel="NEL",
rtt="RTT",
smtp="SMTP",
sourcemap="SourceMap",
te="TE",
ua="UA",
websocket="WebSocket",
wow64="WoW64",
www="WWW",
xss="XSS",
}
_M.canonic = setmetatable({},{
__index=function (t,k)
t[k] = string.gsub(k, "%f[%w]%l", string.upper)
t[k] = string.gsub(k, "%f[%w]%l", function (part)
return parts[part] or string.upper(part)
end)
return t[k]
end;
})
_M.parts = parts
return _M