tomo/examples/http/http.tm

114 lines
3.5 KiB
Plaintext
Raw Permalink Normal View History

2024-09-12 00:29:04 -07:00
# A simple HTTP library built using CURL
use -lcurl
2024-09-12 00:29:04 -07:00
use <curl/curl.h>
struct HTTPResponse(code:Int, body:Text)
enum _Method(GET, POST, PUT, PATCH, DELETE)
func _send(method:_Method, url:Text, data:Text?, headers=[:Text] -> HTTPResponse):
2024-09-12 00:29:04 -07:00
chunks := @[:Text]
save_chunk := func(chunk:CString, size:Int64, n:Int64):
chunks:insert(inline C:Text {
Text$format("%.*s", _$size*_$n, _$chunk)
})
2024-09-12 00:29:04 -07:00
return n*size
inline C {
CURL *curl = curl_easy_init();
struct curl_slist *chunk = NULL;
curl_easy_setopt(curl, CURLOPT_URL, Text$as_c_string(_$url));
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, _$save_chunk.fn);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, _$save_chunk.userdata);
2024-09-12 00:29:04 -07:00
}
2025-02-04 12:32:01 -08:00
defer:
inline C {
if (chunk)
curl_slist_free_all(chunk);
curl_easy_cleanup(curl);
}
2024-09-12 00:29:04 -07:00
when method is POST:
inline C {
curl_easy_setopt(curl, CURLOPT_POST, 1L);
}
if posting := data:
inline C {
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, Text$as_c_string(_$posting));
2024-09-12 00:29:04 -07:00
}
is PUT:
inline C {
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "PUT");
}
if putting := data:
inline C {
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, Text$as_c_string(_$putting));
2024-09-12 00:29:04 -07:00
}
2024-10-28 11:37:30 -07:00
is PATCH:
inline C {
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "PATCH");
}
if patching := data:
inline C {
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, Text$as_c_string(_$patching));
2024-10-28 11:37:30 -07:00
}
2024-09-12 00:29:04 -07:00
is DELETE:
inline C {
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "DELETE");
}
else:
pass
for header in headers:
inline C {
chunk = curl_slist_append(chunk, Text$as_c_string(_$header));
2024-09-12 00:29:04 -07:00
}
inline C {
if (chunk)
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, chunk);
}
code := Int64(0)
2024-09-12 00:29:04 -07:00
inline C {
CURLcode res = curl_easy_perform(curl);
if (res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res));
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &_$code);
2024-09-12 00:29:04 -07:00
}
return HTTPResponse(Int(code), "":join(chunks))
2024-09-12 00:29:04 -07:00
func get(url:Text, headers=[:Text] -> HTTPResponse):
2024-12-07 13:04:25 -08:00
return _send(GET, url, none, headers)
2024-09-12 00:29:04 -07:00
func post(url:Text, data="", headers=["Content-Type: application/json", "Accept: application/json"] -> HTTPResponse):
2024-09-12 00:29:04 -07:00
return _send(POST, url, data, headers)
func put(url:Text, data="", headers=["Content-Type: application/json", "Accept: application/json"] -> HTTPResponse):
2024-09-12 00:29:04 -07:00
return _send(PUT, url, data, headers)
2024-10-28 11:37:30 -07:00
func patch(url:Text, data="", headers=["Content-Type: application/json", "Accept: application/json"] -> HTTPResponse):
return _send(PATCH, url, data, headers)
2024-12-07 13:04:25 -08:00
func delete(url:Text, data=none:Text, headers=["Content-Type: application/json", "Accept: application/json"] -> HTTPResponse):
2024-09-12 00:29:04 -07:00
return _send(DELETE, url, data, headers)
func main():
!! GET:
say(get("https://httpbin.org/get").body)
!! Waiting 1sec...
sleep(1)
!! POST:
say(post("https://httpbin.org/post", `{"key": "value"}`).body)
!! Waiting 1sec...
sleep(1)
!! PUT:
say(put("https://httpbin.org/put", `{"key": "value"}`).body)
!! Waiting 1sec...
sleep(1)
!! DELETE:
say(delete("https://httpbin.org/delete").body)