mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
32 lines
770 B
Python
32 lines
770 B
Python
import json
|
|
|
|
from httpx import Response
|
|
|
|
JSON_CONTENT_TYPES = [
|
|
"application/json",
|
|
"application/ld+json",
|
|
"application/activity+json",
|
|
]
|
|
|
|
|
|
def json_from_response(response: Response) -> dict | None:
|
|
content_type, *parameters = (
|
|
response.headers.get("Content-Type", "invalid").lower().split(";")
|
|
)
|
|
|
|
if content_type not in JSON_CONTENT_TYPES:
|
|
return None
|
|
|
|
charset = None
|
|
|
|
for parameter in parameters:
|
|
key, value = parameter.split("=")
|
|
if key.strip() == "charset":
|
|
charset = value.strip()
|
|
|
|
if charset:
|
|
return json.loads(response.content.decode(charset))
|
|
else:
|
|
# if no charset informed, default to
|
|
# httpx json for encoding inference
|
|
return response.json()
|