[refactor] use hylang to fetch
All checks were successful
/ run-pytest (push) Successful in 1m33s

This commit is contained in:
SouthFox 2024-02-26 23:55:18 +08:00
parent 5937e71dc3
commit 3994213325
2 changed files with 17 additions and 2 deletions

View file

@ -1,11 +1,13 @@
#!/usr/bin/env python3
"""Actor stuff."""
import typing
import hy
from urllib.parse import urlparse
from sqlalchemy import select
from loguru import logger
import app.activitypub as ap
from app.hyap import fetch # type: ignore
from app import models
from app.database import AsyncSession
@ -31,7 +33,7 @@ async def fetch_actor(
if exist_actor:
return exist_actor
ap_object = await ap.fetch(actor_id)
ap_object = await fetch(actor_id)
exist_actor = await save_actor(ap_object, db_session)
return exist_actor

13
app/hyap.hy Normal file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env hy
(import httpx)
(import loguru [logger])
(import app [config])
(defn/a fetch
[url]
(.info logger url)
(return (.json
(with/a [client (.AsyncClient httpx)]
(await (.get client url :headers
{"User-Agent" config.USER_AGENT
"Accept" config.AP_CONTENT_TYPE}))))))