Fixed crash
This commit is contained in:
parent
9d3f4c8bff
commit
cc5b5f4e13
@ -12,98 +12,87 @@ end
|
|||||||
|
|
||||||
-- Async HTTP request function
|
-- Async HTTP request function
|
||||||
local function async_request(url, payload, callback)
|
local function async_request(url, payload, callback)
|
||||||
-- Parse URL properly
|
-- Create a temporary file for the response
|
||||||
local host = url:match("^https://([^/]+)")
|
local temp_file = vim.fn.tempname()
|
||||||
local path = url:match("^https://[^/]+(.*)$")
|
|
||||||
|
|
||||||
if not host or not path then
|
-- Construct curl command
|
||||||
|
local curl_cmd = string.format(
|
||||||
|
'curl -s -X POST -H "Content-Type: application/json" -d %s %s',
|
||||||
|
vim.fn.shellescape(payload),
|
||||||
|
vim.fn.shellescape(url)
|
||||||
|
)
|
||||||
|
|
||||||
|
-- Create job
|
||||||
|
local stdout = vim.loop.new_pipe()
|
||||||
|
local stderr = vim.loop.new_pipe()
|
||||||
|
|
||||||
|
local handle
|
||||||
|
handle = vim.loop.spawn('curl', {
|
||||||
|
args = {
|
||||||
|
'-s',
|
||||||
|
'-X', 'POST',
|
||||||
|
'-H', 'Content-Type: application/json',
|
||||||
|
'-d', payload,
|
||||||
|
url
|
||||||
|
},
|
||||||
|
stdio = {nil, stdout, stderr}
|
||||||
|
}, function(code)
|
||||||
|
stdout:close()
|
||||||
|
stderr:close()
|
||||||
|
handle:close()
|
||||||
|
end)
|
||||||
|
|
||||||
|
if not handle then
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
callback(nil, "Invalid URL format")
|
callback(nil, "Failed to start curl")
|
||||||
end)
|
end)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Resolve hostname to IP
|
local response = ""
|
||||||
vim.loop.getaddrinfo(host, "443", {
|
local error_msg = ""
|
||||||
family = "inet",
|
|
||||||
socktype = "stream",
|
stdout:read_start(function(err, chunk)
|
||||||
protocol = "tcp"
|
|
||||||
}, function(err, res)
|
|
||||||
if err then
|
if err then
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
callback(nil, "DNS resolution error: " .. err)
|
callback(nil, "Read error: " .. err)
|
||||||
end)
|
end)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
if chunk then
|
||||||
|
response = response .. chunk
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
if not res or #res == 0 then
|
stderr:read_start(function(err, chunk)
|
||||||
|
if err then
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
callback(nil, "Could not resolve hostname")
|
callback(nil, "Error reading stderr: " .. err)
|
||||||
|
end)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if chunk then
|
||||||
|
error_msg = error_msg .. chunk
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
|
-- When everything is done
|
||||||
|
handle:on('exit', function(code)
|
||||||
|
if code ~= 0 then
|
||||||
|
vim.schedule(function()
|
||||||
|
callback(nil, "Curl failed: " .. error_msg)
|
||||||
end)
|
end)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local client = vim.loop.new_tcp()
|
-- Try to parse the response
|
||||||
|
local success, decoded = pcall(vim.json.decode, response)
|
||||||
client:connect(res[1].addr, res[1].port, function(err)
|
vim.schedule(function()
|
||||||
if err then
|
if success then
|
||||||
vim.schedule(function()
|
callback(decoded)
|
||||||
callback(nil, "Connection error: " .. err)
|
else
|
||||||
end)
|
callback(nil, "JSON decode error: " .. response)
|
||||||
return
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Create TLS wrapper
|
|
||||||
local tls_client = vim.loop.new_tls_wrap(client)
|
|
||||||
|
|
||||||
local request = string.format(
|
|
||||||
"POST %s HTTP/1.1\r\n" ..
|
|
||||||
"Host: %s\r\n" ..
|
|
||||||
"Content-Type: application/json\r\n" ..
|
|
||||||
"Content-Length: %d\r\n" ..
|
|
||||||
"\r\n" ..
|
|
||||||
"%s",
|
|
||||||
path, host, #payload, payload
|
|
||||||
)
|
|
||||||
|
|
||||||
local response = ""
|
|
||||||
|
|
||||||
tls_client:write(request, function(err)
|
|
||||||
if err then
|
|
||||||
vim.schedule(function()
|
|
||||||
callback(nil, "Write error: " .. err)
|
|
||||||
end)
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
tls_client:read_start(function(err, chunk)
|
|
||||||
if err then
|
|
||||||
vim.schedule(function()
|
|
||||||
callback(nil, "Read error: " .. err)
|
|
||||||
end)
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
if chunk then
|
|
||||||
response = response .. chunk
|
|
||||||
else
|
|
||||||
-- Connection closed, process response
|
|
||||||
local body = response:match("\r\n\r\n(.+)$")
|
|
||||||
local success, decoded = pcall(vim.json.decode, body)
|
|
||||||
|
|
||||||
vim.schedule(function()
|
|
||||||
if success then
|
|
||||||
callback(decoded)
|
|
||||||
else
|
|
||||||
callback(nil, "JSON decode error: " .. body)
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
tls_client:close()
|
|
||||||
client:close()
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
end)
|
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user