2021-09-24 13:02:50 -04:00
|
|
|
|
|
|
|
|
local vtc_port = 0
|
2021-10-28 09:57:33 -04:00
|
|
|
local vtc_port2 = 0
|
2021-11-24 09:38:17 -05:00
|
|
|
local vtc_port3 = 0
|
2021-09-24 13:02:50 -04:00
|
|
|
|
|
|
|
|
core.register_service("fakeserv", "http", function(applet)
|
|
|
|
|
vtc_port = applet.headers["vtcport"][0]
|
2021-10-28 09:57:33 -04:00
|
|
|
vtc_port2 = applet.headers["vtcport2"][0]
|
2021-11-24 09:38:17 -05:00
|
|
|
vtc_port3 = applet.headers["vtcport3"][0]
|
2021-09-24 13:02:50 -04:00
|
|
|
core.Info("APPLET START")
|
|
|
|
|
local response = "OK"
|
|
|
|
|
applet:add_header("Server", "haproxy/webstats")
|
|
|
|
|
applet:add_header("Content-Length", string.len(response))
|
|
|
|
|
applet:add_header("Content-Type", "text/html")
|
|
|
|
|
applet:start_response()
|
|
|
|
|
applet:send(response)
|
|
|
|
|
core.Info("APPLET DONE")
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
local function cron()
|
MEDIUM: httpclient/lua: allow multiple requests from a single core.httpclient() instance
Refactor the Lua HTTP client to defer initialization. core.httpclient()
no longer initializes the internal HTTP client immediately. Instead,
initialization now occurs within hlua_httpclient_send() when a request
method (e.g., get, put, head) is invoked.
The HTTPClient class now serves as a factory for accessing methods, while
a new class, HTTPClientRequest, has been introduced to represent individual
requests and manage the HTTP client lifecycle.
This change allows multiple requests to be executed using a single
HTTP client instance:
local hc = core.httpclient()
local res1 = hc:get({url = "...", headers = ...})
local res2 = hc:post({url = "...", headers = ...})
local res3 = hc:put({url = "...", headers = ...})
This refactor maintains backward compatibility, as existing scripts that
instantiate a new core.httpclient() for every request will continue to
work as expected.
2026-06-13 19:04:05 -04:00
|
|
|
local httpclient = core.httpclient()
|
|
|
|
|
|
2021-09-24 13:02:50 -04:00
|
|
|
-- wait for until the correct port is set through the c0 request..
|
|
|
|
|
while vtc_port == 0 do
|
|
|
|
|
core.msleep(1)
|
|
|
|
|
end
|
|
|
|
|
core.Debug('CRON port:' .. vtc_port)
|
|
|
|
|
|
2021-10-26 05:43:26 -04:00
|
|
|
local body = ""
|
|
|
|
|
|
2021-10-28 09:57:33 -04:00
|
|
|
for i = 0, 2000 do
|
2021-10-26 05:43:26 -04:00
|
|
|
body = body .. i .. ' ABCDEFGHIJKLMNOPQRSTUVWXYZ\n'
|
|
|
|
|
end
|
2021-10-28 09:57:33 -04:00
|
|
|
core.Info("First httpclient request")
|
2021-10-26 05:43:26 -04:00
|
|
|
local response = httpclient:post{url="http://127.0.0.1:" .. vtc_port, body=body}
|
2021-09-24 13:02:50 -04:00
|
|
|
core.Info("Received: " .. response.body)
|
2021-10-28 09:57:33 -04:00
|
|
|
|
|
|
|
|
body = response.body
|
|
|
|
|
|
|
|
|
|
core.Info("Second httpclient request")
|
MEDIUM: httpclient/lua: allow multiple requests from a single core.httpclient() instance
Refactor the Lua HTTP client to defer initialization. core.httpclient()
no longer initializes the internal HTTP client immediately. Instead,
initialization now occurs within hlua_httpclient_send() when a request
method (e.g., get, put, head) is invoked.
The HTTPClient class now serves as a factory for accessing methods, while
a new class, HTTPClientRequest, has been introduced to represent individual
requests and manage the HTTP client lifecycle.
This change allows multiple requests to be executed using a single
HTTP client instance:
local hc = core.httpclient()
local res1 = hc:get({url = "...", headers = ...})
local res2 = hc:post({url = "...", headers = ...})
local res3 = hc:put({url = "...", headers = ...})
This refactor maintains backward compatibility, as existing scripts that
instantiate a new core.httpclient() for every request will continue to
work as expected.
2026-06-13 19:04:05 -04:00
|
|
|
local response2 = httpclient:post{url="http://127.0.0.1:" .. vtc_port2, body=body}
|
2021-10-28 09:57:33 -04:00
|
|
|
|
2021-11-24 09:38:17 -05:00
|
|
|
core.Info("Third httpclient request")
|
MEDIUM: httpclient/lua: allow multiple requests from a single core.httpclient() instance
Refactor the Lua HTTP client to defer initialization. core.httpclient()
no longer initializes the internal HTTP client immediately. Instead,
initialization now occurs within hlua_httpclient_send() when a request
method (e.g., get, put, head) is invoked.
The HTTPClient class now serves as a factory for accessing methods, while
a new class, HTTPClientRequest, has been introduced to represent individual
requests and manage the HTTP client lifecycle.
This change allows multiple requests to be executed using a single
HTTP client instance:
local hc = core.httpclient()
local res1 = hc:get({url = "...", headers = ...})
local res2 = hc:post({url = "...", headers = ...})
local res3 = hc:put({url = "...", headers = ...})
This refactor maintains backward compatibility, as existing scripts that
instantiate a new core.httpclient() for every request will continue to
work as expected.
2026-06-13 19:04:05 -04:00
|
|
|
local response3 = httpclient:get{url="http://127.0.0.1", dst = vtc_port3, headers={ [ "Host" ] = { "foobar.haproxy.local" } }}
|
2021-11-24 09:38:17 -05:00
|
|
|
|
2021-09-24 13:02:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
core.register_task(cron)
|