Fixed crash

This commit is contained in:
Jonas Widen 2025-03-16 18:37:14 +01:00
parent 9d3f4c8bff
commit cc5b5f4e13

View File

@ -12,99 +12,88 @@ end
-- Async HTTP request function
local function async_request(url, payload, callback)
-- Parse URL properly
local host = url:match("^https://([^/]+)")
local path = url:match("^https://[^/]+(.*)$")
-- Create a temporary file for the response
local temp_file = vim.fn.tempname()
if not host or not path then
vim.schedule(function()
callback(nil, "Invalid URL format")
end)
return
end
-- Resolve hostname to IP
vim.loop.getaddrinfo(host, "443", {
family = "inet",
socktype = "stream",
protocol = "tcp"
}, function(err, res)
if err then
vim.schedule(function()
callback(nil, "DNS resolution error: " .. err)
end)
return
end
if not res or #res == 0 then
vim.schedule(function()
callback(nil, "Could not resolve hostname")
end)
return
end
local client = vim.loop.new_tcp()
client:connect(res[1].addr, res[1].port, function(err)
if err then
vim.schedule(function()
callback(nil, "Connection error: " .. err)
end)
return
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
-- 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)
)
local response = ""
-- Create job
local stdout = vim.loop.new_pipe()
local stderr = vim.loop.new_pipe()
tls_client:write(request, function(err)
if err then
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()
callback(nil, "Write error: " .. err)
callback(nil, "Failed to start curl")
end)
return
end
tls_client:read_start(function(err, chunk)
local response = ""
local error_msg = ""
stdout: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)
end
end)
stderr:read_start(function(err, chunk)
if err then
vim.schedule(function()
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)
return
end
-- Try to parse the response
local success, decoded = pcall(vim.json.decode, response)
vim.schedule(function()
if success then
callback(decoded)
else
callback(nil, "JSON decode error: " .. body)
callback(nil, "JSON decode error: " .. response)
end
end)
tls_client:close()
client:close()
end
end)
end)
end)
end)
end