Get rid of curl

This commit is contained in:
Jonas Widen 2025-03-16 19:07:53 +01:00
parent 2fbcf6c33e
commit df304a280e

View File

@ -12,85 +12,89 @@ function Request.new(url, payload)
end end
function Request:execute(callback) function Request:execute(callback)
local client = vim.uv.new_tcp() local stdout = vim.loop.new_pipe()
local headers = table.concat({ local stderr = vim.loop.new_pipe()
string.format("POST %s HTTP/1.1", self.url), local handle
"Host: generativelanguage.googleapis.com", local output = ""
"Content-Type: application/json", local error_output = ""
string.format("Content-Length: %d", #self.payload),
"Connection: close",
"",
self.payload
}, "\r\n")
local response_data = "" local function cleanup()
if handle then
vim.loop.close(handle)
handle = nil
end
stdout:close()
stderr:close()
end
vim.loop.getaddrinfo("generativelanguage.googleapis.com", "443", { -- Print the curl command for debugging
family = "inet", local curl_args = {
socktype = "stream", "-s", -- silent mode
protocol = "tcp" "-X", "POST",
}, function(err, res) "-H", "Content-Type: application/json",
if err then "-d", self.payload,
self.url
}
handle = vim.loop.spawn("curl", {
args = curl_args,
stdio = {nil, stdout, stderr}
}, function(code)
vim.schedule(function() vim.schedule(function()
callback(nil, "DNS resolution failed: " .. err) if code ~= 0 then
end) callback(nil, "Curl failed with code " .. code .. ": " .. error_output)
return return
end end
if not res or #res == 0 then -- Debug output
vim.schedule(function() if output == "" then
callback(nil, "Could not resolve hostname") callback(nil, "Empty response received")
end)
return return
end end
client:connect(res[1].addr, res[1].port, function(err) local success, decoded = pcall(vim.json.decode, output)
if err then
vim.schedule(function()
callback(nil, "Connection failed: " .. err)
end)
client:close()
return
end
client:write(headers)
client:read_start(function(err, chunk)
if err then
vim.schedule(function()
callback(nil, "Read error: " .. err)
end)
client:close()
return
end
if chunk then
response_data = response_data .. chunk
else
-- End of response
client:close()
-- Parse response
local headers_end = response_data:find("\r\n\r\n")
if headers_end then
local body = response_data:sub(headers_end + 4)
local success, decoded = pcall(vim.json.decode, body)
vim.schedule(function()
if success then if success then
callback(decoded) callback(decoded)
else else
callback(nil, "JSON decode error: " .. body) -- Include the raw output in the error for debugging
callback(nil, string.format("JSON decode error. Raw output: %s", output))
end end
end) end)
else cleanup()
end)
if not handle then
vim.schedule(function() vim.schedule(function()
callback(nil, "Invalid response format") callback(nil, "Failed to spawn curl process")
end) end)
cleanup()
return
end end
stdout:read_start(function(err, data)
if err then
vim.schedule(function()
callback(nil, "Error reading stdout: " .. err)
end)
cleanup()
return
end
if data then
output = output .. data
end end
end) end)
stderr:read_start(function(err, data)
if err then
vim.schedule(function()
callback(nil, "Error reading stderr: " .. err)
end) end)
cleanup()
return
end
if data then
error_output = error_output .. data
end
end) end)
end end