Get rid of curl

This commit is contained in:
Jonas Widen 2025-03-16 19:05:40 +01:00
parent c532849cbf
commit 39147fb21e

View File

@ -12,36 +12,63 @@ function Request.new(url, payload)
end end
function Request:execute(callback) function Request:execute(callback)
local headers = { local client = vim.uv.new_tcp()
['Content-Type'] = 'application/json', local headers = table.concat({
} string.format("POST %s HTTP/1.1", self.url),
"Host: generativelanguage.googleapis.com",
"Content-Type: application/json",
string.format("Content-Length: %d", #self.payload),
"Connection: close",
"",
self.payload
}, "\r\n")
vim.loop.http_request({ local response_data = ""
url = self.url,
method = 'POST', client:connect("generativelanguage.googleapis.com", 443, function(err)
headers = headers,
body = self.payload
}, function(err, response)
if err then if err then
vim.schedule(function() vim.schedule(function()
callback(nil, "HTTP request failed: " .. err) callback(nil, "Connection failed: " .. err)
end) end)
client:close()
return return
end end
if response.status ~= 200 then client:write(headers)
vim.schedule(function()
callback(nil, "HTTP request failed with status " .. response.status) client:read_start(function(err, chunk)
end) if err then
return vim.schedule(function()
end callback(nil, "Read error: " .. err)
end)
client:close()
return
end
local success, decoded = pcall(vim.json.decode, response.body) if chunk then
vim.schedule(function() response_data = response_data .. chunk
if success then
callback(decoded)
else else
callback(nil, "JSON decode error: " .. response.body) -- 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
callback(decoded)
else
callback(nil, "JSON decode error: " .. body)
end
end)
else
vim.schedule(function()
callback(nil, "Invalid response format")
end)
end
end end
end) end)
end) end)