Fred Gleason abe2bece9f 2024-11-05 Fred Gleason <fredg@paravelsystems.com>
* Modified rdautoback(8) so as to be able to take multiple mount
	point arguments.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2024-11-05 17:45:47 -05:00

119 lines
3.9 KiB
Python
Executable File

#!%PYTHON_BANGPATH%
# rdautoback.py
#
# Unattended backup script for Rivendell
#
# (C) Copyright 2024 Fred Gleason <fredg@paravelsystems.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
import configparser
import datetime
import MySQLdb
import os
from pathlib import Path
import sys
import syslog
def BackupMountpoint(mntpt):
#
# Mount backup device
#
Path(mntpt).mkdir(parents=True,exist_ok=True)
result=os.WEXITSTATUS(os.system(command='mount '+mntpt+" 2> /dev/null"))
if((result!=0)and(result!=64)):
print(mntpt+': [not found]')
print()
return
os.system(command='sleep 5')
syslog.syslog(syslog.LOG_INFO,'Starting Rivendell backup to "'+mntpt+'"')
#
# Dump database
#
cmd='mysqldump -h '+rd_config.get('mySQL','Hostname')+' -u '+rd_config.get('mySQL','Loginname')+' -p'+rd_config.get('mySQL','Password')+' '+rd_config.get('mySQL','Database')+' | gzip > '+mntpt+'/db.sql.gz'
os.system(command=cmd)
#
# Copy Audio Store
#
cmd='rsync -av --delete /var/snd '+mntpt
os.system(command=cmd)
#
# Generate Info File
#
with open(mntpt+'/INFO.txt','w') as f:
f.write('[Backup]\n')
f.write('Name='+mntpt+'\n')
with os.popen('date --iso-8601=seconds',mode='r') as f1:
f.write('DateTime='+f1.read())
f1.close()
try:
db=MySQLdb.connect(user=rd_config.get('mySQL','Loginname'),
passwd=rd_config.get('mySQL','Password'),
host=rd_config.get('mySQL','Hostname'),
database=rd_config.get('mySQL','Database'),
charset='utf8mb4')
except TypeError:
db=MySQLdb.connect(user=rd_config.get('mySQL','Loginname'),
password=rd_config.get('mySQL','Password'),
host=rd_config.get('mySQL','Hostname'),
database=rd_config.get('mySQL','Database'),
charset='utf8mb4')
cursor=db.cursor()
cursor.execute('select `REALM_NAME` from `SYSTEM`')
f.write('RealmName='+cursor.fetchone()[0]+'\n')
cursor.execute('select `DB` from `VERSION`')
f.write('DatabaseSchema='+str(cursor.fetchone()[0])+'\n')
db.close()
with os.popen('du -h '+mntpt+'/snd',mode='r') as f1:
values=f1.read().split('\t')
f.write('AudioStorage='+values[0]+'\n')
f1.close()
with os.popen('ls -1 '+mntpt+'/snd | wc -l') as f1:
f.write('AudioFiles='+f1.read())
f1.close()
f.close()
#
# Unmount backup device
#
os.system(command='umount '+mntpt)
os.rmdir(mntpt)
syslog.syslog(syslog.LOG_INFO,'Completed Rivendell backup to "'+mntpt+'"')
USAGE='rdbackup.py <backup-mntpt1> [<backup-mntpt2>] [...]'
if(len(sys.argv)<2):
print(USAGE)
exit(1)
#
# Load rd.conf(5)
#
rd_config=configparser.ConfigParser(interpolation=None)
rd_config.read_file(open('/etc/rd.conf'))
#
# Open the syslog
#
syslog.openlog('rdautoback.py',logoption=syslog.LOG_PERROR,facility=int(rd_config.get('Identity','SyslogFacility',fallback=syslog.LOG_USER)))
for arg in range(1,len(sys.argv)):
BackupMountpoint(sys.argv[arg])