Added presence #56
This commit is contained in:
		| @@ -16,7 +16,7 @@ class AdminModule(ModuleABC): | ||||
|     def configure_configuration(self, config: ConfigurationABC, env: ApplicationEnvironmentABC): | ||||
|         pass | ||||
|  | ||||
|     def configure_services(self, service: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|     def configure_services(self, services: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|         # commands | ||||
|         self._dc.add_command(RestartCommand) | ||||
|         self._dc.add_command(ShutdownCommand) | ||||
|   | ||||
| @@ -1,3 +1,6 @@ | ||||
| import asyncio | ||||
|  | ||||
| import discord | ||||
| from cpl_core.configuration import ConfigurationABC | ||||
| from cpl_discord.command import DiscordCommandABC | ||||
| from cpl_discord.service import DiscordBotServiceABC | ||||
| @@ -7,6 +10,7 @@ from discord.ext.commands import Context | ||||
|  | ||||
| from bot_core.abc.client_utils_service_abc import ClientUtilsServiceABC | ||||
| from bot_core.abc.message_service_abc import MessageServiceABC | ||||
| from bot_core.configuration.bot_settings import BotSettings | ||||
| from bot_core.logging.command_logger import CommandLogger | ||||
| from modules.permission.abc.permission_service_abc import PermissionServiceABC | ||||
|  | ||||
| @@ -22,6 +26,7 @@ class RestartCommand(DiscordCommandABC): | ||||
|             client_utils: ClientUtilsServiceABC, | ||||
|             translate: TranslatePipe, | ||||
|             permissions: PermissionServiceABC, | ||||
|             settings: BotSettings | ||||
|     ): | ||||
|         DiscordCommandABC.__init__(self) | ||||
|  | ||||
| @@ -32,6 +37,7 @@ class RestartCommand(DiscordCommandABC): | ||||
|         self._client_utils = client_utils | ||||
|         self._t = translate | ||||
|         self._permissions = permissions | ||||
|         self._settings = settings | ||||
|  | ||||
|         self._logger.trace(__name__, f'Loaded command service: {type(self).__name__}') | ||||
|  | ||||
| @@ -50,6 +56,8 @@ class RestartCommand(DiscordCommandABC): | ||||
|             return | ||||
|  | ||||
|         self._config.add_configuration('IS_RESTART', 'true') | ||||
|         await self._client_utils.presence_game('common.presence.restart') | ||||
|         await asyncio.sleep(self._settings.wait_for_restart) | ||||
|         await self._message_service.send_ctx_msg(ctx, self._t.transform('modules.admin.restart_message')) | ||||
|         await self._bot.stop_async() | ||||
|  | ||||
|   | ||||
| @@ -1,3 +1,6 @@ | ||||
| import asyncio | ||||
|  | ||||
| import discord | ||||
| from cpl_core.configuration import ConfigurationABC | ||||
| from cpl_discord.command import DiscordCommandABC | ||||
| from cpl_discord.service import DiscordBotServiceABC | ||||
| @@ -7,6 +10,7 @@ from discord.ext.commands import Context | ||||
|  | ||||
| from bot_core.abc.client_utils_service_abc import ClientUtilsServiceABC | ||||
| from bot_core.abc.message_service_abc import MessageServiceABC | ||||
| from bot_core.configuration.bot_settings import BotSettings | ||||
| from bot_core.logging.command_logger import CommandLogger | ||||
| from modules.permission.abc.permission_service_abc import PermissionServiceABC | ||||
|  | ||||
| @@ -22,6 +26,7 @@ class ShutdownCommand(DiscordCommandABC): | ||||
|             client_utils: ClientUtilsServiceABC, | ||||
|             translate: TranslatePipe, | ||||
|             permissions: PermissionServiceABC, | ||||
|             settings: BotSettings | ||||
|     ): | ||||
|         DiscordCommandABC.__init__(self) | ||||
|  | ||||
| @@ -32,6 +37,7 @@ class ShutdownCommand(DiscordCommandABC): | ||||
|         self._client_utils = client_utils | ||||
|         self._t = translate | ||||
|         self._permissions = permissions | ||||
|         self._settings = settings | ||||
|  | ||||
|         self._logger.trace(__name__, f'Loaded command service: {type(self).__name__}') | ||||
|  | ||||
| @@ -49,6 +55,8 @@ class ShutdownCommand(DiscordCommandABC): | ||||
|             self._logger.trace(__name__, f'Finished shutdown command') | ||||
|             return | ||||
|  | ||||
|         await self._client_utils.presence_game('common.presence.shutdown') | ||||
|         await asyncio.sleep(self._settings.wait_for_shutdown) | ||||
|         await self._message_service.send_ctx_msg(ctx, self._t.transform('modules.admin.shutdown_message')) | ||||
|         await self._bot.stop_async() | ||||
|  | ||||
|   | ||||
| @@ -5,6 +5,7 @@ from cpl_discord.discord_event_types_enum import DiscordEventTypesEnum | ||||
| from cpl_discord.service.discord_collection_abc import DiscordCollectionABC | ||||
|  | ||||
| from bot_core.abc.module_abc import ModuleABC | ||||
| from modules.base.abc.base_helper_abc import BaseHelperABC | ||||
| from modules.base.command.afk_command import AFKCommand | ||||
| from modules.base.command.help_command import HelpCommand | ||||
| from modules.base.command.info_command import InfoCommand | ||||
| @@ -16,6 +17,7 @@ from modules.base.events.base_on_member_join_event import BaseOnMemberJoinEvent | ||||
| from modules.base.events.base_on_member_remove_event import BaseOnMemberRemoveEvent | ||||
| from modules.base.events.base_on_message_event import BaseOnMessageEvent | ||||
| from modules.base.events.base_on_voice_state_update_event import BaseOnVoiceStateUpdateEvent | ||||
| from modules.base.service.base_helper_service import BaseHelperService | ||||
|  | ||||
|  | ||||
| class BaseModule(ModuleABC): | ||||
| @@ -26,7 +28,8 @@ class BaseModule(ModuleABC): | ||||
|     def configure_configuration(self, config: ConfigurationABC, env: ApplicationEnvironmentABC): | ||||
|         pass | ||||
|  | ||||
|     def configure_services(self, service: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|     def configure_services(self, services: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|         services.add_transient(BaseHelperABC, BaseHelperService) | ||||
|         # commands | ||||
|         self._dc.add_command(AFKCommand) | ||||
|         self._dc.add_command(HelpCommand) | ||||
|   | ||||
| @@ -60,7 +60,9 @@ class InfoCommand(DiscordCommandABC): | ||||
|         embed.add_field(name=self._t.transform('modules.base.info.fields.deleted_message_count'), value=client.deleted_message_count, inline=False) | ||||
|         embed.add_field(name=self._t.transform('modules.base.info.fields.received_command_count'), value=client.received_command_count) | ||||
|         embed.add_field(name=self._t.transform('modules.base.info.fields.moved_users_count'), value=client.moved_users_count) | ||||
|         modules = ['Admin', 'Base', 'BootLog', 'Database', 'Moderator', 'Permission'] | ||||
|         from bot.module_list import ModuleList | ||||
|         modules = ModuleList.get_modules() | ||||
|         modules = modules.select(lambda x: x.replace('Module', '')) | ||||
|         embed.add_field(name=self._t.transform('modules.base.info.fields.modules'), value='\n'.join(modules), inline=False) | ||||
|  | ||||
|         await self._message_service.send_ctx_msg(ctx, embed, wait_before_delete=wait) | ||||
|   | ||||
| @@ -16,7 +16,7 @@ class BootLogModule(ModuleABC): | ||||
|     def configure_configuration(self, config: ConfigurationABC, env: ApplicationEnvironmentABC): | ||||
|         pass | ||||
|  | ||||
|     def configure_services(self, service: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|     def configure_services(self, services: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|         # commands | ||||
|         # events | ||||
|         self._dc.add_event(DiscordEventTypesEnum.on_ready.value, BootLogOnReadyEvent) | ||||
|   | ||||
| @@ -16,7 +16,7 @@ class DatabaseModule(ModuleABC): | ||||
|     def configure_configuration(self, config: ConfigurationABC, env: ApplicationEnvironmentABC): | ||||
|         pass | ||||
|  | ||||
|     def configure_services(self, service: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|     def configure_services(self, services: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|         # commands | ||||
|         # events | ||||
|         self._dc.add_event(DiscordEventTypesEnum.on_ready.value, DatabaseOnReadyEvent) | ||||
|   | ||||
| @@ -15,7 +15,7 @@ class ModeratorModule(ModuleABC): | ||||
|     def configure_configuration(self, config: ConfigurationABC, env: ApplicationEnvironmentABC): | ||||
|         pass | ||||
|  | ||||
|     def configure_services(self, service: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|     def configure_services(self, services: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|         # commands | ||||
|         self._dc.add_command(PurgeCommand) | ||||
|         # events | ||||
|   | ||||
| @@ -5,8 +5,10 @@ from cpl_discord.discord_event_types_enum import DiscordEventTypesEnum | ||||
| from cpl_discord.service.discord_collection_abc import DiscordCollectionABC | ||||
|  | ||||
| from bot_core.abc.module_abc import ModuleABC | ||||
| from modules.permission.abc.permission_service_abc import PermissionServiceABC | ||||
| from modules.permission.events.permission_on_member_update_event import PermissionOnMemberUpdateEvent | ||||
| from modules.permission.events.permission_on_ready_event import PermissionOnReadyEvent | ||||
| from modules.permission.service.permission_service import PermissionService | ||||
|  | ||||
|  | ||||
| class PermissionModule(ModuleABC): | ||||
| @@ -17,7 +19,8 @@ class PermissionModule(ModuleABC): | ||||
|     def configure_configuration(self, config: ConfigurationABC, env: ApplicationEnvironmentABC): | ||||
|         pass | ||||
|  | ||||
|     def configure_services(self, service: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|     def configure_services(self, services: ServiceCollectionABC, env: ApplicationEnvironmentABC): | ||||
|         services.add_singleton(PermissionServiceABC, PermissionService) | ||||
|         # commands | ||||
|         # events | ||||
|         self._dc.add_event(DiscordEventTypesEnum.on_ready.value, PermissionOnReadyEvent) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user