inbox/services/core.py

56 lines
1.6 KiB
Python
Raw Normal View History

2023-12-17 17:13:17 +00:00
from typing import Any, List
2023-12-19 15:31:31 +00:00
import requests
2023-11-22 12:09:24 +00:00
from models.member import ChatMember
2023-12-17 17:13:17 +00:00
from settings import API_BASE
2023-10-04 20:42:39 +00:00
2023-10-11 19:12:55 +00:00
headers = {"Content-Type": "application/json"}
2023-12-19 08:25:06 +00:00
authors_by_user = {}
authors_by_id = {}
2023-11-14 18:25:55 +00:00
2023-10-04 20:42:39 +00:00
2023-12-19 15:31:31 +00:00
def _request_endpoint(query_name, body) -> Any:
response = requests.post(API_BASE, headers=headers, json=body)
print(f"[services.core] {query_name} response: <{response.status_code}> {response.text[:65]}..")
if response.status_code == 200:
r = response.json()
if r:
return r.get("data", {}).get(query_name, {})
return []
2023-11-28 09:05:39 +00:00
2023-12-19 15:31:31 +00:00
def get_all_authors() -> List[ChatMember]:
2023-12-19 08:25:06 +00:00
if len(authors_by_user.keys()) == 0:
2023-12-19 15:31:31 +00:00
print("[services.core] precaching authors...")
2023-12-19 08:25:06 +00:00
query_name = "get_authors_all"
2023-11-06 16:25:28 +00:00
2023-12-19 08:25:06 +00:00
# Check if authors are already cached
if "authors" in authors_by_user:
return authors_by_user["authors"]
gql = {
2023-12-19 08:51:36 +00:00
"query": "query { " + query_name + "{ id slug pic name user } }",
2023-12-19 08:25:06 +00:00
"variables": None,
}
# Make a request to load authors
2023-12-19 15:31:31 +00:00
authors = _request_endpoint(query_name, gql)
2023-11-22 12:09:24 +00:00
2023-12-19 15:31:31 +00:00
for a in list(authors):
authors_by_user.__setitem__(a["user"], a)
authors_by_id.__setitem__(a["id"], a)
print(f"[services.core] {len(authors)} authors precached")
2023-12-19 08:25:06 +00:00
2023-12-19 08:31:37 +00:00
return list(authors_by_id.values())
2023-10-04 20:42:39 +00:00
2023-10-11 19:12:55 +00:00
2023-12-19 15:31:31 +00:00
def get_my_followed() -> List[ChatMember]:
2023-11-28 08:33:50 +00:00
query_name = "get_my_followed"
2023-10-11 19:12:55 +00:00
gql = {
2023-12-18 07:24:42 +00:00
"query": "query { " + query_name + " { authors { id slug pic name } } }",
2023-11-14 18:20:45 +00:00
"variables": None,
2023-10-11 19:12:55 +00:00
}
2023-11-22 12:09:24 +00:00
2023-12-19 15:31:31 +00:00
return _request_endpoint(query_name, gql) or []