Я был обманут этим поведением, я не совсем уверен, почему так оно и есть.
У нас есть клиент Lua HTTP, который HTTP
обращается к одному из наших бэкэнд-услуг. После запуска скрипта я обнаружил, что клиент не передает port
информацию в заголовок HOST.
Вот посмотрите наш HTTP-клиент
local ltn12 = assert(require('ltn12'))
local cjson = assert(require('cjson'))
local http = assert(require('socket.http'))
local debugger = assert(require('debugger'))
http.TIMEOUT = 120
local function execute()
print('-- COMMANDER: Starting... ----------')
os.execute('sleep 1')
local ivy_url = 'http://localhost:3000'
if(ivy_url == nil) then
print('-- COMMANDER: Error :: ivy_url not set ----------')
execute()
end
local _heartbeat = 0
local last_timestamp = nil
local url = nil
while true do
-- _heartbeat used to inform that loop is executing properly.
if _heartbeat % 3 == 0 then
_heartbeat = 0
print('-- COMMANDER: Heartbeat... ----------')
end
_heartbeat = _heartbeat + 1
local response = {}
local since = last_timestamp
last_timestamp = os.date("%Y-%m-%dT%H:%M:%S")
if (since == nil) then
url = ivy_url .. "/switch/sites"
else
url = ivy_url .. "/switch/sites?since=" .. since
end
local one, code, headers, status = http.request {
method = "GET",
url = url,
headers = { Authorization = "Basic " .. tostring("abcd")},
sink = ltn12.sink.table(response)
}
if(code == 200) then
response_data = cjson.decode(response[1])
for i, site_desc in pairs(response_data['data']) do
print(site_desc)
end
print('-- COMMANDER: Sent API request to Ivy to get site info updated_at ' .. tostring(since) .. ' ----------')
elseif(code == 400) then
last_timestamp = since
response_data = cjson.decode(response[1])
print('-- COMMANDER: Got error in API response : ' .. tostring(response_data['error']) .. ' at ' .. os.date("%Y-%m-%dT%H:%M:%S") .. ' ----------')
else
last_timestamp = since
print('-- COMMANDER: Got error in API response : ' .. tostring(code) .. ' at ' .. os.date("%Y-%m-%dT%H:%M:%S") .. ' ----------')
end
os.execute('sleep 10')
end
end
execute()
В наших вспомогательных службах мы принимаем хост localhost
вместоlocalhost:3000
Мой вопрос, учитывая, что спецификация RFC говорит, что [: port]
это необязательная вещь, но все же почти все клиенты, которых я знаю, завиток, почтальон, ад, даже браузер, передают их.
Поэтому мой вопрос ...
Почему API luasocket игнорирует их?
Я был обманут этим поведением, я не совсем уверен, почему так оно и есть.
У нас есть клиент Lua HTTP, который HTTP
обращается к одному из наших бэкэнд-услуг. После запуска скрипта я обнаружил, что клиент не передает port
информацию в заголовок HOST.
Вот посмотрите наш HTTP-клиент
local ltn12 = assert(require('ltn12'))
local cjson = assert(require('cjson'))
local http = assert(require('socket.http'))
local debugger = assert(require('debugger'))
http.TIMEOUT = 120
local function execute()
print('-- COMMANDER: Starting... ----------')
os.execute('sleep 1')
local ivy_url = 'http://localhost:3000'
if(ivy_url == nil) then
print('-- COMMANDER: Error :: ivy_url not set ----------')
execute()
end
local _heartbeat = 0
local last_timestamp = nil
local url = nil
while true do
-- _heartbeat used to inform that loop is executing properly.
if _heartbeat % 3 == 0 then
_heartbeat = 0
print('-- COMMANDER: Heartbeat... ----------')
end
_heartbeat = _heartbeat + 1
local response = {}
local since = last_timestamp
last_timestamp = os.date("%Y-%m-%dT%H:%M:%S")
if (since == nil) then
url = ivy_url .. "/switch/sites"
else
url = ivy_url .. "/switch/sites?since=" .. since
end
local one, code, headers, status = http.request {
method = "GET",
url = url,
headers = { Authorization = "Basic " .. tostring("abcd")},
sink = ltn12.sink.table(response)
}
if(code == 200) then
response_data = cjson.decode(response[1])
for i, site_desc in pairs(response_data['data']) do
print(site_desc)
end
print('-- COMMANDER: Sent API request to Ivy to get site info updated_at ' .. tostring(since) .. ' ----------')
elseif(code == 400) then
last_timestamp = since
response_data = cjson.decode(response[1])
print('-- COMMANDER: Got error in API response : ' .. tostring(response_data['error']) .. ' at ' .. os.date("%Y-%m-%dT%H:%M:%S") .. ' ----------')
else
last_timestamp = since
print('-- COMMANDER: Got error in API response : ' .. tostring(code) .. ' at ' .. os.date("%Y-%m-%dT%H:%M:%S") .. ' ----------')
end
os.execute('sleep 10')
end
end
execute()
В наших вспомогательных службах мы принимаем хост localhost
вместоlocalhost:3000
Мой вопрос, учитывая, что спецификация RFC говорит, что [: port]
это необязательная вещь, но все же почти все клиенты, которых я знаю, завиток, почтальон, ад, даже браузер, передают их.
Поэтому мой вопрос ...
Почему API luasocket игнорирует их?
00принять luasocket,