import xbmc import xbmcaddon import xbmcgui import resources.lib.vfs as vfs import os class FileManager: walk_path = '' addonDir = '' fileArray = None def __init__(self,path,addon_dir): self.walk_path = path self.addonDir = addon_dir #create the addon folder if it doesn't exist if(not os.path.exists(unicode(xbmc.translatePath(self.addonDir),'utf-8'))): os.makedirs(unicode(xbmc.translatePath(self.addonDir),'utf-8')) def createFileList(self,Addon): self.fileArray = [] #figure out which syncing options to run if(Addon.getSetting('backup_addons') == 'true'): self.addFile("-addons") self.walkTree(self.walk_path + "addons/") self.addFile("-userdata") if(Addon.getSetting('backup_addon_data') == 'true'): self.addFile("-userdata/addon_data") self.walkTree(self.walk_path + "userdata/addon_data/") if(Addon.getSetting('backup_database') == 'true'): self.addFile("-userdata/Database") self.walkTree(self.walk_path + "userdata/Database") if(Addon.getSetting("backup_playlists") == 'true'): self.addFile("-userdata/playlists") self.walkTree(self.walk_path + "userdata/playlists") if(Addon.getSetting("backup_thumbnails") == "true"): self.addFile("-userdata/Thumbnails") self.walkTree(self.walk_path + "userdata/Thumbnails") if(Addon.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 configFiles = vfs.listdir(self.walk_path + "userdata/",extra_metadata=True) for aFile in configFiles: xbmc.log(aFile['file'][len(self.walk_path):]) if(aFile['file'].endswith(".xml")): self.addFile(aFile['file'][len(self.walk_path):]) def walkTree(self,directory): for (path, dirs, files) in vfs.walk(directory): #create all the subdirs first for aDir in dirs: self.addFile("-" + aDir[len(self.walk_path):]) #copy all the files for aFile in files: filePath = aFile[len(self.walk_path):] self.addFile(filePath) def addFile(self,filename): #write the full remote path name of this file self.fileArray.append(filename) def getFileList(self): return self.fileArray class XbmcBackup: __addon_id__ = 'script.xbmcbackup' Addon = xbmcaddon.Addon(__addon_id__) local_path = '' remote_path = '' restoreFile = None #for the progress bar progressBar = None filesLeft = 0 filesTotal = 1 fileManager = None def __init__(self): self.local_path = xbmc.translatePath("special://home") if(self.Addon.getSetting('remote_selection') == '1' and vfs.exists(self.Addon.getSetting('remote_path_2'))): xbmc.log(str(self.Addon.getSetting('remote_path_2'))) self.remote_path = self.Addon.getSetting('remote_path_2') self.Addon.setSetting("remote_path","") elif(self.Addon.getSetting('remote_selection') == '0' and vfs.exists(self.Addon.getSetting("remote_path"))): self.remote_path = self.Addon.getSetting("remote_path") if(self.Addon.getSetting("backup_name") != '' and self.remote_path != ''): self.remote_path = self.remote_path + self.Addon.getSetting("backup_name") + "/" else: self.remote_path = "" self.log("Starting") self.log('Local Dir: ' + self.local_path) self.log('Remote Dir: ' + self.remote_path) def run(self): #check if we should use the progress bar if(self.Addon.getSetting('run_silent') == 'false'): self.progressBar = xbmcgui.DialogProgress() self.progressBar.create('XBMC Backup','Gathering file list.....') #check what mode were are in if(int(self.Addon.getSetting('addon_mode')) == 0): self.fileManager = FileManager(self.local_path,self.Addon.getAddonInfo('profile')) self.syncFiles() else: self.fileManager = FileManager(self.remote_path,self.Addon.getAddonInfo('profile')) self.restoreFiles() def syncFiles(self): if(vfs.exists(self.remote_path)): #this will fail - need a disclaimer here self.log("Remote Path exists - may have old files in it!") #make the remote directory vfs.mkdir(self.remote_path) self.fileManager.createFileList(self.Addon) 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(self.Addon) 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): self.filesTotal = len(fileList) self.filesLeft = self.filesTotal #write each file from source to destination for aFile in fileList: if(not self.checkCancel()): self.updateProgress(aFile) if (aFile.startswith("-")): vfs.mkdir(dest + aFile[1:]) else: vfs.copy(source + aFile,dest + aFile) if(self.Addon.getSetting('run_silent') == 'false'): self.progressBar.close() 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 log(self,message): xbmc.log(self.__addon_id__ + ": " + message) def isReady(self): return True if self.remote_path != '' else False #run the profile backup backup = XbmcBackup() if(backup.isReady()): backup.run() else: xbmcgui.Dialog().ok('XBMC Backup','Error: Remote path cannot be empty')