xbmcbackup/resources/lib/backup.py

256 lines
8.9 KiB
Python
Raw Normal View History

import xbmc
import xbmcgui
import xbmcvfs
2012-09-12 22:34:13 +02:00
import utils as utils
import os
import time
2012-11-02 21:59:40 +01:00
from vfs import XBMCFilesystem,DropboxFilesystem
2012-10-22 22:02:30 +02:00
class FileManager:
walk_path = ''
fileArray = None
verbose_log = False
not_dir = ['.zip','.xsp','.rar']
2012-11-02 21:59:40 +01:00
vfs = None
2012-11-02 21:59:40 +01:00
def __init__(self,path,vfs):
self.walk_path = path
2012-11-02 21:59:40 +01:00
self.vfs = vfs
def createFileList(self):
self.fileArray = []
self.verbose_log = utils.getSetting("verbose_log") == 'true'
#figure out which syncing options to run
if(utils.getSetting('backup_addons') == 'true'):
self.addFile("-addons")
self.walkTree(self.walk_path + "addons/")
self.addFile("-userdata")
if(utils.getSetting('backup_addon_data') == 'true'):
self.addFile("-userdata/addon_data")
self.walkTree(self.walk_path + "userdata/addon_data/")
if(utils.getSetting('backup_database') == 'true'):
self.addFile("-userdata/Database")
self.walkTree(self.walk_path + "userdata/Database")
if(utils.getSetting("backup_playlists") == 'true'):
self.addFile("-userdata/playlists")
self.walkTree(self.walk_path + "userdata/playlists")
if(utils.getSetting("backup_thumbnails") == "true"):
self.addFile("-userdata/Thumbnails")
self.walkTree(self.walk_path + "userdata/Thumbnails")
if(utils.getSetting("backup_config") == "true"):
self.addFile("-userdata/keymaps")
self.walkTree(self.walk_path + "userdata/keymaps")
self.addFile("-userdata/peripheral_data")
self.walkTree(self.walk_path + "userdata/peripheral_data")
#this part is an oddity
2012-11-02 21:59:40 +01:00
dirs,configFiles = self.vfs.listdir(self.walk_path + "userdata/")
for aFile in configFiles:
if(aFile.endswith(".xml")):
self.addFile("userdata/" + aFile)
def walkTree(self,directory):
2012-11-02 21:59:40 +01:00
dirs,files = self.vfs.listdir(directory)
#create all the subdirs first
for aDir in dirs:
dirPath = xbmc.translatePath(directory + "/" + aDir)
file_ext = aDir.split('.')[-1]
self.addFile("-" + dirPath[len(self.walk_path):].decode("UTF-8"))
#catch for "non directory" type files
if (not any(file_ext in s for s in self.not_dir)):
self.walkTree(dirPath)
#copy all the files
for aFile in files:
filePath = xbmc.translatePath(directory + "/" + aFile)
self.addFile(filePath[len(self.walk_path):].decode("UTF-8"))
def addFile(self,filename):
#write the full remote path name of this file
utils.log("Add File: " + filename,xbmc.LOGDEBUG)
self.fileArray.append(filename)
def getFileList(self):
return self.fileArray
class XbmcBackup:
#constants for initiating a back or restore
Backup = 0
Restore = 1
2012-11-02 21:59:40 +01:00
#remote file system
vfs = None
local_path = ''
2012-09-19 18:43:36 +02:00
remote_root = ''
remote_path = ''
restoreFile = None
#for the progress bar
progressBar = None
filesLeft = 0
filesTotal = 1
fileManager = None
def __init__(self):
self.local_path = xbmc.makeLegalFilename(xbmc.translatePath("special://home"),False);
2012-11-02 21:59:40 +01:00
self.configureVFS()
utils.log(utils.getString(30046))
def configureVFS(self):
if(utils.getSetting('remote_selection') == '1'):
2012-09-19 18:43:36 +02:00
self.remote_root = utils.getSetting('remote_path_2')
utils.setSetting("remote_path","")
2012-11-02 21:59:40 +01:00
self.vfs = XBMCFilesystem()
elif(utils.getSetting('remote_selection') == '0'):
2012-09-19 18:43:36 +02:00
self.remote_root = utils.getSetting("remote_path")
2012-11-02 21:59:40 +01:00
self.vfs = XBMCFilesystem()
elif(utils.getSetting('remote_selection') == '2'):
self.remote_root = '/xbmc'
#fix slashes
2012-09-19 18:43:36 +02:00
self.remote_root = self.remote_root.replace("\\","/")
#check if trailing slash is included
2012-09-19 18:43:36 +02:00
if(self.remote_root[-1:] != "/"):
self.remote_root = self.remote_root + "/"
2012-11-02 21:59:40 +01:00
def run(self,mode=-1,runSilent=False):
#check if we should use the progress bar
if(utils.getSetting('run_silent') == 'false' and not runSilent):
self.progressBar = xbmcgui.DialogProgress()
self.progressBar.create(utils.getString(30010),utils.getString(30049) + "......")
#determine backup mode
if(mode == -1):
mode = int(utils.getSetting('addon_mode'))
#append backup folder name
2012-09-19 18:43:36 +02:00
if(mode == self.Backup and self.remote_root != ''):
2012-11-02 21:59:40 +01:00
self.remote_path = self.remote_root + time.strftime("%Y%m%d") + "/"
2012-09-19 18:43:36 +02:00
elif(mode == self.Restore and utils.getSetting("backup_name") != '' and self.remote_root != ''):
self.remote_path = self.remote_root + utils.getSetting("backup_name") + "/"
else:
self.remote_path = ""
utils.log(utils.getString(30047) + ": " + self.local_path)
utils.log(utils.getString(30048) + ": " + self.remote_path)
2012-11-02 21:59:40 +01:00
#run the correct mode
if(mode == self.Backup):
utils.log(utils.getString(30023) + " - " + utils.getString(30016))
2012-11-02 21:59:40 +01:00
self.fileManager = FileManager(self.local_path,XBMCFileSystem())
#for backups check if remote path exists
2012-11-02 21:59:40 +01:00
if(self.vfs.exists(self.remote_path)):
#this will fail - need a disclaimer here
utils.log(utils.getString(30050))
self.syncFiles()
2012-09-19 18:43:36 +02:00
#remove old backups
total_backups = int(utils.getSetting('backup_rotation'))
if(total_backups > 0):
2012-11-02 21:59:40 +01:00
dirs,files = self.vfs.listdir(self.remote_root)
2012-09-19 18:43:36 +02:00
if(len(dirs) > total_backups):
#remove backups to equal total wanted
2012-11-02 21:24:45 +01:00
dirs.sort()
2012-09-19 18:43:36 +02:00
remove_num = len(dirs) - total_backups - 1
self.filesTotal = self.filesTotal + remove_num + 1
#update the progress bar if it is available
while(remove_num >= 0 and not self.checkCancel()):
self.updateProgress(utils.getString(30054) + " " + dirs[remove_num])
utils.log("Removing backup " + dirs[remove_num])
2012-11-02 21:59:40 +01:00
self.vfs.rmdir(self.remote_root + dirs[remove_num] + "/")
2012-09-19 18:43:36 +02:00
remove_num = remove_num - 1
else:
utils.log(utils.getString(30023) + " - " + utils.getString(30017))
2012-11-02 21:59:40 +01:00
self.fileManager = FileManager(self.remote_path,self.vfs)
#for restores remote path must exist
2012-11-02 21:59:40 +01:00
if(self.vfs.exists(self.remote_path)):
self.restoreFiles()
else:
xbmcgui.Dialog().ok(utils.getString(30010),utils.getString(30045),self.remote_path)
if(utils.getSetting('run_silent') == 'false' and not runSilent):
self.progressBar.close()
def syncFiles(self):
#make the remote directory
2012-11-02 21:59:40 +01:00
self.vfs.mkdir(self.remote_path)
utils.log(utils.getString(30051))
self.fileManager.createFileList()
allFiles = self.fileManager.getFileList()
#write list from local to remote
self.writeFiles(allFiles,self.local_path,self.remote_path)
def restoreFiles(self):
self.fileManager.createFileList()
utils.log(utils.getString(30051))
allFiles = self.fileManager.getFileList()
#write list from remote to local
self.writeFiles(allFiles,self.remote_path,self.local_path)
#call update addons to refresh everything
xbmc.executebuiltin('UpdateLocalAddons')
def writeFiles(self,fileList,source,dest):
utils.log("Writing files to: " + dest)
self.filesTotal = len(fileList)
self.filesLeft = self.filesTotal
#write each file from source to destination
for aFile in fileList:
if(not self.checkCancel()):
utils.log('Writing file: ' + source + aFile,xbmc.LOGDEBUG)
self.updateProgress(aFile)
if (aFile.startswith("-")):
xbmcvfs.mkdir(xbmc.makeLegalFilename(dest + aFile[1:],False))
else:
xbmcvfs.copy(xbmc.makeLegalFilename(source + aFile),xbmc.makeLegalFilename(dest + aFile,False))
def updateProgress(self,message=''):
self.filesLeft = self.filesLeft - 1
#update the progress bar
if(self.progressBar != None):
self.progressBar.update(int((float(self.filesTotal - self.filesLeft)/float(self.filesTotal)) * 100),message)
def checkCancel(self):
result = False
if(self.progressBar != None):
result = self.progressBar.iscanceled()
return result
def isReady(self):
2012-09-19 18:43:36 +02:00
return True if self.remote_root != '' else False