49 lines
1.7 KiB
Python
49 lines
1.7 KiB
Python
from importlib import import_module
|
|
|
|
from ariadne import load_schema_from_path, make_executable_schema
|
|
from ariadne.asgi import GraphQL
|
|
from starlette.applications import Starlette
|
|
from starlette.middleware import Middleware
|
|
from starlette.middleware.authentication import AuthenticationMiddleware
|
|
from starlette.middleware.sessions import SessionMiddleware
|
|
from starlette.routing import Route
|
|
|
|
from auth.authenticate import JWTAuthenticate
|
|
from auth.oauth import oauth_login, oauth_authorize
|
|
from auth.email import email_authorize
|
|
from redis import redis
|
|
from resolvers.base import resolvers
|
|
from resolvers.zine import GitTask, ShoutsCache
|
|
|
|
from orm.shout import ShoutViewStorage, TopicStat, ShoutAuthorStorage
|
|
|
|
import asyncio
|
|
|
|
import_module('resolvers')
|
|
schema = make_executable_schema(load_schema_from_path("schema.graphql"), resolvers)
|
|
|
|
middleware = [
|
|
Middleware(AuthenticationMiddleware, backend=JWTAuthenticate()),
|
|
Middleware(SessionMiddleware, secret_key="!secret")
|
|
]
|
|
|
|
async def start_up():
|
|
await redis.connect()
|
|
git_task = asyncio.create_task(GitTask.git_task_worker())
|
|
shouts_cache_task = asyncio.create_task(ShoutsCache.worker())
|
|
view_storage_task = asyncio.create_task(ShoutViewStorage.worker())
|
|
shout_author_task = asyncio.create_task(ShoutAuthorStorage.worker())
|
|
topic_stat_task = asyncio.create_task(TopicStat.worker())
|
|
|
|
async def shutdown():
|
|
await redis.disconnect()
|
|
|
|
routes = [
|
|
Route("/oauth/{provider}", endpoint=oauth_login),
|
|
Route("/oauth_authorize", endpoint=oauth_authorize),
|
|
Route("/email_authorize", endpoint=email_authorize)
|
|
]
|
|
|
|
app = Starlette(debug=True, on_startup=[start_up], on_shutdown=[shutdown], middleware=middleware, routes=routes)
|
|
app.mount("/", GraphQL(schema, debug=True))
|