foxhole/app/hyap.hy
SouthFox d7a02db9ab
All checks were successful
/ run-pytest (push) Successful in 38s
[fix] missing content type for inbox post
2024-03-10 02:11:07 +08:00

25 lines
725 B
Hy

#!/usr/bin/env hy
(import httpx)
(import loguru [logger])
(import app [config])
(import app.httpsig [auth])
(defn/a fetch
[url]
(.info logger url)
(return (.json
(with/a [client (.AsyncClient httpx)]
(let [headers {"User-Agent" config.USER_AGENT
"Accept" config.AP_CONTENT_TYPE}]
(await (.get client url :headers headers :timeout 15)))))))
(defn/a post
[url payload]
(with/a [client (.AsyncClient httpx)]
(let [headers {"User-Agent" config.USER_AGENT
"Content-Type" config.AP_CONTENT_TYPE}]
(setv resp
(await (.post client url :headers headers :json payload :auth auth :timeout 15)))
(.raise_for_status resp)
(return resp))))