Added first graphene models
This commit is contained in:
parent
9c466733fb
commit
5455a6b359
@ -28,7 +28,9 @@
|
|||||||
"Flask-SocketIO==5.3.2",
|
"Flask-SocketIO==5.3.2",
|
||||||
"eventlet==0.33.2",
|
"eventlet==0.33.2",
|
||||||
"requests-oauthlib==1.3.1",
|
"requests-oauthlib==1.3.1",
|
||||||
"icmplib==3.0.3"
|
"icmplib==3.0.3",
|
||||||
|
"graphene==3.2.1",
|
||||||
|
"graphql-server==3.0.0b5"
|
||||||
],
|
],
|
||||||
"DevDependencies": [
|
"DevDependencies": [
|
||||||
"cpl-cli==2022.12.0"
|
"cpl-cli==2022.12.0"
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit f15e3ff82709bbd274b0645c2b13a482f67f75ff
|
Subproject commit 64a551bcee7fbfb06ee724355b48baec1c8e8e3e
|
@ -12,6 +12,7 @@ from eventlet import wsgi
|
|||||||
from flask import Flask, request, jsonify, Response
|
from flask import Flask, request, jsonify, Response
|
||||||
from flask_cors import CORS
|
from flask_cors import CORS
|
||||||
from flask_socketio import SocketIO
|
from flask_socketio import SocketIO
|
||||||
|
from graphql_server.flask import GraphQLView
|
||||||
from werkzeug.exceptions import NotFound
|
from werkzeug.exceptions import NotFound
|
||||||
|
|
||||||
from bot_api.configuration.api_settings import ApiSettings
|
from bot_api.configuration.api_settings import ApiSettings
|
||||||
@ -22,6 +23,7 @@ from bot_api.exception.service_exception import ServiceException
|
|||||||
from bot_api.logging.api_logger import ApiLogger
|
from bot_api.logging.api_logger import ApiLogger
|
||||||
from bot_api.model.error_dto import ErrorDTO
|
from bot_api.model.error_dto import ErrorDTO
|
||||||
from bot_api.route.route import Route
|
from bot_api.route.route import Route
|
||||||
|
from bot_data.graphql.schema import schema
|
||||||
|
|
||||||
|
|
||||||
class Api(Flask):
|
class Api(Flask):
|
||||||
@ -62,6 +64,15 @@ class Api(Flask):
|
|||||||
|
|
||||||
self._requests = {}
|
self._requests = {}
|
||||||
|
|
||||||
|
self.add_url_rule(
|
||||||
|
'/api/graphql',
|
||||||
|
view_func=GraphQLView.as_view(
|
||||||
|
'graphql',
|
||||||
|
schema=schema,
|
||||||
|
graphiql=True # for having the GraphiQL interface
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _get_methods_from_registered_route() -> Union[list[str], str]:
|
def _get_methods_from_registered_route() -> Union[list[str], str]:
|
||||||
methods = ['Unknown']
|
methods = ['Unknown']
|
||||||
|
@ -47,6 +47,7 @@ class ApiModule(ModuleABC):
|
|||||||
services.add_transient(GuiController)
|
services.add_transient(GuiController)
|
||||||
services.add_transient(DiscordService)
|
services.add_transient(DiscordService)
|
||||||
services.add_transient(ServerController)
|
services.add_transient(ServerController)
|
||||||
|
#services.add_transient(GraphQLController)
|
||||||
|
|
||||||
# cpl-discord
|
# cpl-discord
|
||||||
self._dc.add_event(DiscordEventTypesEnum.on_ready.value, BotApiOnReadyEvent)
|
self._dc.add_event(DiscordEventTypesEnum.on_ready.value, BotApiOnReadyEvent)
|
||||||
|
32
kdb-bot/src/bot_api/controller/graphql_controller.py
Normal file
32
kdb-bot/src/bot_api/controller/graphql_controller.py
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import os
|
||||||
|
|
||||||
|
from cpl_core.configuration import ConfigurationABC
|
||||||
|
from cpl_core.environment import ApplicationEnvironmentABC
|
||||||
|
from cpl_core.mailing import EMail, EMailClientABC, EMailClientSettings
|
||||||
|
from cpl_translation import TranslatePipe
|
||||||
|
from flask import jsonify, request
|
||||||
|
|
||||||
|
from bot_api.api import Api
|
||||||
|
from bot_api.configuration.authentication_settings import AuthenticationSettings
|
||||||
|
from bot_api.logging.api_logger import ApiLogger
|
||||||
|
from bot_api.model.settings_dto import SettingsDTO
|
||||||
|
from bot_api.model.version_dto import VersionDTO
|
||||||
|
from bot_api.route.route import Route
|
||||||
|
|
||||||
|
|
||||||
|
class GraphQLController:
|
||||||
|
BasePath = f'/api/graphql'
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
config: ConfigurationABC,
|
||||||
|
env: ApplicationEnvironmentABC,
|
||||||
|
logger: ApiLogger,
|
||||||
|
):
|
||||||
|
self._config = config
|
||||||
|
self._env = env
|
||||||
|
self._logger = logger
|
||||||
|
|
||||||
|
@Route.get(f'{BasePath}')
|
||||||
|
async def graphql(self):
|
||||||
|
return '', 200
|
0
kdb-bot/src/bot_data/graphql/query/__init__.py
Normal file
0
kdb-bot/src/bot_data/graphql/query/__init__.py
Normal file
19
kdb-bot/src/bot_data/graphql/query/client_query.py
Normal file
19
kdb-bot/src/bot_data/graphql/query/client_query.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import graphene
|
||||||
|
from cpl_core.dependency_injection import ServiceProviderABC
|
||||||
|
from graphene import ObjectType
|
||||||
|
|
||||||
|
from bot_data.graphql.types.client_query_type import ClientQueryType
|
||||||
|
from bot_data.service.client_repository_service import ClientRepositoryService
|
||||||
|
|
||||||
|
|
||||||
|
class ClientQuery(ObjectType):
|
||||||
|
clients = graphene.List(ClientQueryType)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
@ServiceProviderABC.inject
|
||||||
|
def _get_clients(clients: ClientRepositoryService):
|
||||||
|
return clients.get_clients()
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def resolve_clients(root, info):
|
||||||
|
return ClientQuery._get_clients()
|
19
kdb-bot/src/bot_data/graphql/query/server_query.py
Normal file
19
kdb-bot/src/bot_data/graphql/query/server_query.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import graphene
|
||||||
|
from cpl_core.dependency_injection import ServiceProviderABC
|
||||||
|
from graphene import ObjectType
|
||||||
|
|
||||||
|
from bot_data.graphql.types.server_query_type import ServerQueryType
|
||||||
|
from bot_data.service.server_repository_service import ServerRepositoryService
|
||||||
|
|
||||||
|
|
||||||
|
class ServerQuery(ObjectType):
|
||||||
|
servers = graphene.List(ServerQueryType)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
@ServiceProviderABC.inject
|
||||||
|
def _get_servers(servers: ServerRepositoryService):
|
||||||
|
return servers.get_servers()
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def resolve_servers(root, info):
|
||||||
|
return ServerQuery._get_servers()
|
12
kdb-bot/src/bot_data/graphql/root_query.py
Normal file
12
kdb-bot/src/bot_data/graphql/root_query.py
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
from graphene import ObjectType, relay
|
||||||
|
|
||||||
|
from bot_data.graphql.query.client_query import ClientQuery
|
||||||
|
from bot_data.graphql.query.server_query import ServerQuery
|
||||||
|
|
||||||
|
|
||||||
|
class RootQuery(
|
||||||
|
ServerQuery,
|
||||||
|
ClientQuery,
|
||||||
|
ObjectType
|
||||||
|
):
|
||||||
|
node = relay.Node.Field()
|
5
kdb-bot/src/bot_data/graphql/schema.py
Normal file
5
kdb-bot/src/bot_data/graphql/schema.py
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import graphene
|
||||||
|
|
||||||
|
from bot_data.graphql.root_query import RootQuery
|
||||||
|
|
||||||
|
schema = graphene.Schema(query=RootQuery)
|
17
kdb-bot/src/bot_data/graphql/types/client_query_type.py
Normal file
17
kdb-bot/src/bot_data/graphql/types/client_query_type.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
from graphene import ObjectType, Int
|
||||||
|
|
||||||
|
from bot_data.model.client import Client
|
||||||
|
|
||||||
|
|
||||||
|
class ClientQueryType(ObjectType):
|
||||||
|
id = Int()
|
||||||
|
discord_client_id = Int()
|
||||||
|
sent_message_count = Int()
|
||||||
|
received_message_count = Int()
|
||||||
|
deleted_message_count = Int()
|
||||||
|
received_command_count = Int()
|
||||||
|
moved_users_count = Int()
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def resolve_id(client: Client, info):
|
||||||
|
return client.client_id
|
30
kdb-bot/src/bot_data/graphql/types/server_query_type.py
Normal file
30
kdb-bot/src/bot_data/graphql/types/server_query_type.py
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
from cpl_core.dependency_injection import ServiceProviderABC
|
||||||
|
from graphene import ObjectType, Int, DateTime, String, Field
|
||||||
|
|
||||||
|
from bot_data.graphql.types.client_query_type import ClientQueryType
|
||||||
|
from bot_data.model.server import Server
|
||||||
|
from bot_data.service.client_repository_service import ClientRepositoryService
|
||||||
|
|
||||||
|
|
||||||
|
class ServerQueryType(ObjectType):
|
||||||
|
id = Int()
|
||||||
|
discord_server_id = String()
|
||||||
|
|
||||||
|
created_at = DateTime()
|
||||||
|
modified_at = DateTime()
|
||||||
|
|
||||||
|
client = Field(ClientQueryType)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def resolve_id(server: Server, info):
|
||||||
|
return server.server_id
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
@ServiceProviderABC.inject
|
||||||
|
def _get_clients(clients: ClientRepositoryService):
|
||||||
|
return clients
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def resolve_client(server: Server, info):
|
||||||
|
clients: ClientRepositoryService = ServerQueryType._get_clients()
|
||||||
|
return clients.find_client_by_server_id(server.server_id)
|
@ -33,6 +33,8 @@ class ClientRepositoryService(ClientRepositoryABC):
|
|||||||
result[5],
|
result[5],
|
||||||
result[6],
|
result[6],
|
||||||
self._servers.get_server_by_id(result[7]),
|
self._servers.get_server_by_id(result[7]),
|
||||||
|
result[8],
|
||||||
|
result[9],
|
||||||
id=result[0]
|
id=result[0]
|
||||||
))
|
))
|
||||||
|
|
||||||
@ -49,6 +51,8 @@ class ClientRepositoryService(ClientRepositoryABC):
|
|||||||
result[5],
|
result[5],
|
||||||
result[6],
|
result[6],
|
||||||
self._servers.get_server_by_id(result[7]),
|
self._servers.get_server_by_id(result[7]),
|
||||||
|
result[8],
|
||||||
|
result[9],
|
||||||
id=result[0]
|
id=result[0]
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -63,6 +67,8 @@ class ClientRepositoryService(ClientRepositoryABC):
|
|||||||
result[5],
|
result[5],
|
||||||
result[6],
|
result[6],
|
||||||
self._servers.get_server_by_id(result[7]),
|
self._servers.get_server_by_id(result[7]),
|
||||||
|
result[8],
|
||||||
|
result[9],
|
||||||
id=result[0]
|
id=result[0]
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -82,6 +88,8 @@ class ClientRepositoryService(ClientRepositoryABC):
|
|||||||
result[5],
|
result[5],
|
||||||
result[6],
|
result[6],
|
||||||
self._servers.get_server_by_id(result[7]),
|
self._servers.get_server_by_id(result[7]),
|
||||||
|
result[8],
|
||||||
|
result[9],
|
||||||
id=result[0]
|
id=result[0]
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -101,6 +109,8 @@ class ClientRepositoryService(ClientRepositoryABC):
|
|||||||
result[5],
|
result[5],
|
||||||
result[6],
|
result[6],
|
||||||
self._servers.get_server_by_id(result[7]),
|
self._servers.get_server_by_id(result[7]),
|
||||||
|
result[8],
|
||||||
|
result[9],
|
||||||
id=result[0]
|
id=result[0]
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -120,6 +130,8 @@ class ClientRepositoryService(ClientRepositoryABC):
|
|||||||
result[5],
|
result[5],
|
||||||
result[6],
|
result[6],
|
||||||
self._servers.get_server_by_id(result[7]),
|
self._servers.get_server_by_id(result[7]),
|
||||||
|
result[8],
|
||||||
|
result[9],
|
||||||
id=result[0]
|
id=result[0]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -25,6 +25,8 @@ class ServerRepositoryService(ServerRepositoryABC):
|
|||||||
for result in results:
|
for result in results:
|
||||||
servers.append(Server(
|
servers.append(Server(
|
||||||
result[1],
|
result[1],
|
||||||
|
result[2],
|
||||||
|
result[3],
|
||||||
id=result[0]
|
id=result[0]
|
||||||
))
|
))
|
||||||
|
|
||||||
@ -55,6 +57,8 @@ class ServerRepositoryService(ServerRepositoryABC):
|
|||||||
result = self._context.select(Server.get_select_by_id_string(server_id))[0]
|
result = self._context.select(Server.get_select_by_id_string(server_id))[0]
|
||||||
return Server(
|
return Server(
|
||||||
result[1],
|
result[1],
|
||||||
|
result[2],
|
||||||
|
result[3],
|
||||||
id=result[0]
|
id=result[0]
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -63,6 +67,8 @@ class ServerRepositoryService(ServerRepositoryABC):
|
|||||||
result = self._context.select(Server.get_select_by_discord_id_string(discord_id))[0]
|
result = self._context.select(Server.get_select_by_discord_id_string(discord_id))[0]
|
||||||
return Server(
|
return Server(
|
||||||
result[1],
|
result[1],
|
||||||
|
result[2],
|
||||||
|
result[3],
|
||||||
id=result[0]
|
id=result[0]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user