From ac25330f70ee6f9fd19a538322cfdeadfe0a6dd4 Mon Sep 17 00:00:00 2001 From: Joshua Arulsamy Date: Sun, 26 Jul 2020 22:08:00 -0600 Subject: [PATCH] :loud_sound: Add basic logging --- PlexBot/__init__.py | 34 +++++++++++++++++++++++++++++++--- PlexBot/__main__.py | 10 ++++++++++ PlexBot/bot.py | 31 ++++++++++++++++++++++++++----- sample-config.yaml | 4 ++++ 4 files changed, 71 insertions(+), 8 deletions(-) diff --git a/PlexBot/__init__.py b/PlexBot/__init__.py index b809c0b..e7b1f22 100644 --- a/PlexBot/__init__.py +++ b/PlexBot/__init__.py @@ -1,8 +1,36 @@ import yaml +from pathlib import Path +from typing import Dict +import logging +import sys + +FORMAT = "%(asctime)s %(levelname)s: [%(filename)s:%(lineno)s - %(funcName)20s() ] %(message)s" + +logging.basicConfig(format=FORMAT) +logger = logging.getLogger("PlexBot") -def load_config(filename: str) -> None: - with open(filename, "r") as f: - config = yaml.safe_load(f) +def load_config(filename: str) -> Dict[str, str]: + + # All config files should be in /config + # for docker deployment. + filename = Path("/config", filename) + try: + with open(filename, "r") as f: + config = yaml.safe_load(f) + except FileNotFoundError: + logging.fatal("Configuration file not found.") + sys.exit(-1) + + # Convert str level type to logging constant + levels = { + "DEBUG": logging.DEBUG, + "INFO": logging.INFO, + "WARNING": logging.WARNING, + "ERROR": logging.ERROR, + "CRITICAL": logging.CRITICAL, + } + level = config["general"]["log_level"] + config["general"]["log_level"] = levels[level.upper()] return config diff --git a/PlexBot/__main__.py b/PlexBot/__main__.py index 5e365a4..8901ad7 100644 --- a/PlexBot/__main__.py +++ b/PlexBot/__main__.py @@ -3,7 +3,11 @@ from discord.ext.commands import Bot from .bot import General from .bot import Plex from PlexBot import load_config +from . import FORMAT +import logging + +# Load config from file config = load_config("config.yaml") BOT_PREFIX = config["discord"]["prefix"] @@ -12,6 +16,12 @@ TOKEN = config["discord"]["token"] BASE_URL = config["plex"]["base_url"] PLEX_TOKEN = config["plex"]["token"] LIBRARY_NAME = config["plex"]["library_name"] +LOG_LEVEL = config["general"]["log_level"] + +# Set appropiate log level +logger = logging.getLogger("PlexBot") +logging.basicConfig(format=FORMAT) +logger.setLevel(LOG_LEVEL) bot = Bot(command_prefix=BOT_PREFIX) bot.add_cog(General(bot)) diff --git a/PlexBot/bot.py b/PlexBot/bot.py index 8484647..8e1c06f 100644 --- a/PlexBot/bot.py +++ b/PlexBot/bot.py @@ -7,6 +7,10 @@ from discord.ext.commands import command from fuzzywuzzy import fuzz from plexapi.server import PlexServer +import logging + +logger = logging.getLogger("PlexBot") + class General(commands.Cog): def __init__(self, bot): @@ -16,6 +20,7 @@ class General(commands.Cog): async def kill(self, ctx): await ctx.send(f"Stopping upon the request of {ctx.author.mention}") await self.bot.close() + logger.info(f"Stopping upon the request of {ctx.author.mention}") class Plex(commands.Cog): @@ -29,7 +34,11 @@ class Plex(commands.Cog): self.music = self.pms.library.section(self.library_name) self.vc = None + self.current_track = None self.play_queue = Queue() + + logger.info("Started bot successfully") + # self.callback_ctx = None def _search_tracks(self, title): @@ -51,10 +60,14 @@ class Plex(commands.Cog): await ctx.send(f"Hello {member}") async def _after_callback(self, error=None): - track = self.play_queue.get() - audio_stream = FFmpegPCMAudio(track.getStreamURL()) - self.vc.play(audio_stream) - await self.callback_ctx.send(f"Playing {track.title}") + if self.play_queue.empty(): + self.current_track = None + else: + track = self.play_queue.get() + audio_stream = FFmpegPCMAudio(track.getStreamURL()) + self.vc.play(audio_stream) + self.current_track = track + await self.callback_ctx.send(f"Playing {track.title}") @command() async def play(self, ctx, *args): @@ -67,16 +80,21 @@ class Plex(commands.Cog): return if not self.vc: self.vc = await ctx.author.voice.channel.connect() + logger.debug("Connected to vc") if self.vc.is_playing(): self.play_queue.put(track) self.callback_ctx = ctx await ctx.send(f"Added {track.title} to queue.") + logger.debug(f"Added {track.title} to queue.") else: audio_stream = FFmpegPCMAudio(track_url) self.vc.play(audio_stream, after=self._after_callback) + self.current_track = track + logger.debug(f"Playing {track.title}") await ctx.send(f"Playing {track.title}") else: + logger.debug(f"{title} was not found.") await ctx.send("Song not found!") @command() @@ -85,7 +103,6 @@ class Plex(commands.Cog): self.vc.stop() await self.vc.disconnect() self.vc = None - await ctx.send("Stopped") @command() @@ -106,3 +123,7 @@ class Plex(commands.Cog): await self.vc.stop() if not self.play_queue.empty(): await self._after_callback() + + @command() + async def np(self, ctx): + await ctx.send(f"Currently playing: {self.current_track.title}") diff --git a/sample-config.yaml b/sample-config.yaml index b01ad15..22273fd 100644 --- a/sample-config.yaml +++ b/sample-config.yaml @@ -1,3 +1,7 @@ +general: + # Options: debug, info, warning, error, critical + log_level: "info" + discord: prefix: "?" token: ""