From bb641b08709c3e6177729121010bc02692600360 Mon Sep 17 00:00:00 2001 From: jesopo Date: Mon, 24 Sep 2018 15:26:31 +0100 Subject: Move log and database files to their own folders --- databases/.keep | 0 logs/.keep | 0 modules/database_backup.py | 7 ++++--- src/Database.py | 2 +- start.py | 6 ++++-- 5 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 databases/.keep create mode 100644 logs/.keep diff --git a/databases/.keep b/databases/.keep new file mode 100644 index 00000000..e69de29b diff --git a/logs/.keep b/logs/.keep new file mode 100644 index 00000000..e69de29b diff --git a/modules/database_backup.py b/modules/database_backup.py index eeddbdf2..f842fa70 100644 --- a/modules/database_backup.py +++ b/modules/database_backup.py @@ -15,14 +15,15 @@ class Module(object): next_due=time.time()+until_next_hour) def backup(self, event): - files = glob.glob("%s.*" % self.bot.args.database) + full_location = self.bot.database.full_location + files = glob.glob("%s.*" % full_location) files = sorted(files) if len(files) == 5: os.remove(files[0]) suffix = datetime.datetime.now().strftime("%y-%m-%d.%H:%M:%S") - backup_file = "%s.%s" % (self.bot.args.database, suffix) - shutil.copy2(self.bot.args.database, backup_file) + backup_file = "%s.%s" % (full_location, suffix) + shutil.copy2(fulllocation, backup_file) event["timer"].redo() diff --git a/src/Database.py b/src/Database.py index dc87b004..3bf3fe90 100644 --- a/src/Database.py +++ b/src/Database.py @@ -239,7 +239,7 @@ class UserChannelSettings(Table): [user_id, channel_id, setting.lower()]) class Database(object): - def __init__(self, bot, directory, filename="bot.db"): + def __init__(self, bot, directory, filename): self.bot = bot self.filename = filename self.full_location = os.path.join(directory, filename) diff --git a/start.py b/start.py index 53b08023..b105b49c 100755 --- a/start.py +++ b/start.py @@ -12,8 +12,10 @@ arg_parser = argparse.ArgumentParser( description="Python3 event-driven asynchronous modular IRC bot") arg_parser.add_argument("--config", "-c", default="bot.conf", help="Location of the JSON config file") -arg_parser.add_argument("--database", "-d", default="bot.db", +arg_parser.add_argument("--database", "-d", default="databases/bot.db", help="Location of the sqlite3 database file") +arg_parser.add_argument("--log", "-l", default="logs/bot.log", + help="Location of the main log file") arg_parser.add_argument("--verbose", "-v", action="store_true") args = arg_parser.parse_args() @@ -27,7 +29,7 @@ bot._exports = exports = Exports.Exports() bot.modules = modules = ModuleManager.ModuleManager(bot, events, exports, os.path.join(directory, "modules")) bot.line_handler = IRCLineHandler.LineHandler(bot, bot._events) -bot.log = Logging.Log(bot, directory, "bot.log") +bot.log = Logging.Log(bot, directory, args.log) bot.database = Database.Database(bot, directory, args.database) bot.config = Config.Config(bot, directory, args.config).load_config() bot.args = args -- cgit v1.3.1-10-gc9f91