# coding: utf-8 #----------------------------- # 网站备份工具 #----------------------------- import sys import os import time import re if sys.platform != 'darwin': os.chdir('/www/server/mdserver-web') web_dir = os.getcwd() + "/web" if os.path.exists(web_dir): sys.path.append(web_dir) os.chdir(web_dir) import core.mw as mw import core.db as db ''' DEBUG: python3 /www/server/mdserver-web/plugins/mysql-yum/scripts/backup.py database admin 3 ''' class backupTools: def backupDatabase(self, name, count): db_path = mw.getServerDir() + '/mysql-yum' db_name = 'mysql' find_name = mw.M('databases').dbPos(db_path, 'mysql').where( 'name=?', (name,)).getField('name') startTime = time.time() if not find_name: endDate = time.strftime('%Y/%m/%d %X', time.localtime()) log = "数据库[" + name + "]不存在!" print("★[" + endDate + "] " + log) print( "----------------------------------------------------------------------------") return backup_path = mw.getFatherDir() + '/backup/database/mysql-yum' if not os.path.exists(backup_path): mw.execShell("mkdir -p " + backup_path) filename = backup_path + "/db_" + name + "_" + \ time.strftime('%Y%m%d_%H%M%S', time.localtime()) + ".sql.gz" mysql_root = mw.M('config').dbPos(db_path, db_name).where( "id=?", (1,)).getField('mysql_root') my_cnf = db_path + '/etc/my.cnf' mw.backFile(my_cnf) content = mw.readFile(my_cnf) rep = r"\[mysqldump\]\nuser=root" sea = "[mysqldump]\n" subStr = sea + "user=root\npassword=" + mysql_root + "\n" content = content.replace(sea, subStr) if len(content) > 100: mw.writeFile(my_cnf, content) cmd = db_path + "/bin/usr/bin/mysqldump --defaults-file=" + my_cnf + " --single-transaction -q --default-character-set=utf8mb4 " + \ name + " | gzip > " + filename mw.execShell(cmd) mw.restoreFile(my_cnf) if not os.path.exists(filename): endDate = time.strftime('%Y/%m/%d %X', time.localtime()) log = "数据库[" + name + "]备份失败!" print("★[" + endDate + "] " + log) print( "----------------------------------------------------------------------------") return endDate = time.strftime('%Y/%m/%d %X', time.localtime()) outTime = time.time() - startTime pid = mw.M('databases').dbPos(db_path, db_name).where('name=?', (name,)).getField('id') mw.M('backup').add('type,name,pid,filename,add_time,size', (1, os.path.basename(filename), pid, filename, endDate, os.path.getsize(filename))) log = "数据库[" + name + "]备份成功,用时[" + str(round(outTime, 2)) + "]秒" mw.writeLog('计划任务', log) print("★[" + endDate + "] " + log) print("|---保留最新的[" + count + "]份备份") print("|---文件名:" + filename) # 清理多余备份 backups = mw.M('backup').where('type=? and pid=?', ('1', pid)).field('id,filename').select() num = len(backups) - int(count) if num > 0: for backup in backups: mw.execShell("rm -f " + backup['filename']) mw.M('backup').where('id=?', (backup['id'],)).delete() num -= 1 print("|---已清理过期备份文件:" + backup['filename']) if num < 1: break def backupDatabaseAll(self, save): db_path = mw.getServerDir() + '/mysql-yum' db_name = 'mysql' databases = mw.M('databases').dbPos( db_path, db_name).field('name').select() for database in databases: self.backupDatabase(database['name'], save) if __name__ == "__main__": backup = backupTools() stype = sys.argv[1] if stype == 'database': if sys.argv[2] == 'ALL': backup.backupDatabaseAll(sys.argv[3]) else: backup.backupDatabase(sys.argv[2], sys.argv[3])