Files
core/main.py

53 lines
1.6 KiB
Python
Raw Normal View History

2023-01-17 22:07:44 +01:00
import os
2022-09-03 13:50:14 +03:00
from importlib import import_module
2022-11-23 00:51:29 +01:00
from os.path import exists
2023-12-17 23:30:20 +03:00
2024-02-19 11:58:02 +03:00
from ariadne import load_schema_from_path, make_executable_schema
2022-09-03 13:50:14 +03:00
from ariadne.asgi import GraphQL
from starlette.applications import Starlette
2023-11-29 00:19:33 +03:00
from starlette.routing import Route
2023-11-28 22:07:53 +03:00
2024-06-04 09:07:46 +03:00
from services.exception import ExceptionHandlerMiddleware
2024-02-19 14:45:55 +03:00
from services.schema import resolvers
2024-05-18 11:28:38 +03:00
from services.search import search_service
2024-05-09 08:32:25 +03:00
from services.sentry import start_sentry
2023-12-22 12:09:24 +03:00
from services.viewed import ViewedStorage
2024-02-02 15:03:44 +03:00
from services.webhook import WebhookEndpoint
2024-08-07 08:57:56 +03:00
from cache.precache import precache_data
2024-08-07 09:51:09 +03:00
from services.redis import redis
2024-08-07 08:57:56 +03:00
from cache.revalidator import revalidation_manager
2024-02-16 12:34:39 +03:00
from settings import DEV_SERVER_PID_FILE_NAME, MODE
2024-01-25 22:41:27 +03:00
2024-04-17 18:32:23 +03:00
import_module("resolvers")
schema = make_executable_schema(load_schema_from_path("schema/"), resolvers)
2024-02-19 11:58:02 +03:00
2022-09-03 13:50:14 +03:00
2024-02-19 10:14:14 +03:00
async def start():
2024-04-17 18:32:23 +03:00
if MODE == "development":
2024-02-19 10:14:14 +03:00
if not exists(DEV_SERVER_PID_FILE_NAME):
# pid file management
2024-04-17 18:32:23 +03:00
with open(DEV_SERVER_PID_FILE_NAME, "w", encoding="utf-8") as f:
2024-02-19 10:14:14 +03:00
f.write(str(os.getpid()))
2024-04-17 18:32:23 +03:00
print(f"[main] process started in {MODE} mode")
2024-02-21 10:27:16 +03:00
2022-09-03 13:50:14 +03:00
2024-02-16 12:40:41 +03:00
# main starlette app object with ariadne mounted in root
app = Starlette(
routes=[
2024-04-17 18:32:23 +03:00
Route("/", GraphQL(schema, debug=True)),
Route("/new-author", WebhookEndpoint),
2024-02-16 12:40:41 +03:00
],
on_startup=[
2024-02-16 12:34:39 +03:00
redis.connect,
2024-05-30 14:25:35 +03:00
precache_data,
2024-02-16 12:34:39 +03:00
ViewedStorage.init,
2024-05-18 11:28:38 +03:00
search_service.info,
2024-05-09 08:32:25 +03:00
start_sentry,
2024-02-21 10:27:16 +03:00
start,
2024-08-07 08:42:59 +03:00
revalidation_manager.start,
2024-02-16 12:40:41 +03:00
],
2024-02-21 10:27:16 +03:00
on_shutdown=[redis.disconnect],
debug=True,
2024-04-08 09:17:05 +03:00
)
2024-06-04 08:15:59 +03:00
app.add_middleware(ExceptionHandlerMiddleware)