bitbot-3.11-fork/modules/database_backup.py

30 lines
880 B
Python
Raw Normal View History

import datetime, glob, os, shutil, time
from src import ModuleManager, utils
BACKUP_INTERVAL = 60*60 # 1 hour
BACKUP_COUNT = 5
class Module(ModuleManager.BaseModule):
def on_load(self):
now = datetime.datetime.now()
until_next_hour = 60-now.second
until_next_hour += ((60-(now.minute+1))*60)
self.timers.add("database-backup", self._backup, BACKUP_INTERVAL,
2018-09-28 15:51:36 +00:00
time.time()+until_next_hour)
def _backup(self, timer):
location = self.bot.database.location
2019-10-14 17:13:43 +00:00
files = glob.glob("%s.*.back" % location)
files = sorted(files)
while len(files) > 4:
os.remove(files[-1])
files.pop(-1)
suffix = datetime.datetime.now().strftime("%y-%m-%d.%H:%M:%S")
2019-10-14 17:13:43 +00:00
backup_file = "%s.%s.back" % (location, suffix)
shutil.copy2(location, backup_file)
2019-10-08 16:03:57 +00:00
timer.redo()