|
|
@ -338,7 +338,7 @@ class Updater(threading.Thread):
|
|
|
|
def reduce_files(self, remove_items, exclude_items):
|
|
|
|
def reduce_files(self, remove_items, exclude_items):
|
|
|
|
rf = []
|
|
|
|
rf = []
|
|
|
|
for item in remove_items:
|
|
|
|
for item in remove_items:
|
|
|
|
if not item in exclude_items:
|
|
|
|
if not item.startswith(exclude_items):
|
|
|
|
rf.append(item)
|
|
|
|
rf.append(item)
|
|
|
|
return rf
|
|
|
|
return rf
|
|
|
|
|
|
|
|
|
|
|
@ -347,15 +347,14 @@ class Updater(threading.Thread):
|
|
|
|
if sys.platform == "win32" or sys.platform == "darwin":
|
|
|
|
if sys.platform == "win32" or sys.platform == "darwin":
|
|
|
|
change_permissions = False
|
|
|
|
change_permissions = False
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
app.logger.debug('Update on OS-System : ' + sys.platform)
|
|
|
|
logging.getLogger('cps.web').debug('Update on OS-System : ' + sys.platform)
|
|
|
|
# print('OS-System: '+sys.platform )
|
|
|
|
|
|
|
|
new_permissions = os.stat(root_dst_dir)
|
|
|
|
new_permissions = os.stat(root_dst_dir)
|
|
|
|
# print new_permissions
|
|
|
|
# print new_permissions
|
|
|
|
for src_dir, dirs, files in os.walk(root_src_dir):
|
|
|
|
for src_dir, dirs, files in os.walk(root_src_dir):
|
|
|
|
dst_dir = src_dir.replace(root_src_dir, root_dst_dir, 1)
|
|
|
|
dst_dir = src_dir.replace(root_src_dir, root_dst_dir, 1)
|
|
|
|
if not os.path.exists(dst_dir):
|
|
|
|
if not os.path.exists(dst_dir):
|
|
|
|
os.makedirs(dst_dir)
|
|
|
|
os.makedirs(dst_dir)
|
|
|
|
# print('Create-Dir: '+dst_dir)
|
|
|
|
logging.getLogger('cps.web').debug('Create-Dir: '+dst_dir)
|
|
|
|
if change_permissions:
|
|
|
|
if change_permissions:
|
|
|
|
# print('Permissions: User '+str(new_permissions.st_uid)+' Group '+str(new_permissions.st_uid))
|
|
|
|
# print('Permissions: User '+str(new_permissions.st_uid)+' Group '+str(new_permissions.st_uid))
|
|
|
|
os.chown(dst_dir, new_permissions.st_uid, new_permissions.st_gid)
|
|
|
|
os.chown(dst_dir, new_permissions.st_uid, new_permissions.st_gid)
|
|
|
@ -365,27 +364,28 @@ class Updater(threading.Thread):
|
|
|
|
if os.path.exists(dst_file):
|
|
|
|
if os.path.exists(dst_file):
|
|
|
|
if change_permissions:
|
|
|
|
if change_permissions:
|
|
|
|
permission = os.stat(dst_file)
|
|
|
|
permission = os.stat(dst_file)
|
|
|
|
# print('Remove file before copy: '+dst_file)
|
|
|
|
logging.getLogger('cps.web').debug('Remove file before copy: '+dst_file)
|
|
|
|
os.remove(dst_file)
|
|
|
|
os.remove(dst_file)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
if change_permissions:
|
|
|
|
if change_permissions:
|
|
|
|
permission = new_permissions
|
|
|
|
permission = new_permissions
|
|
|
|
shutil.move(src_file, dst_dir)
|
|
|
|
shutil.move(src_file, dst_dir)
|
|
|
|
# print('Move File '+src_file+' to '+dst_dir)
|
|
|
|
logging.getLogger('cps.web').debug('Move File '+src_file+' to '+dst_dir)
|
|
|
|
if change_permissions:
|
|
|
|
if change_permissions:
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
os.chown(dst_file, permission.st_uid, permission.st_uid)
|
|
|
|
os.chown(dst_file, permission.st_uid, permission.st_uid)
|
|
|
|
# print('Permissions: User '+str(new_permissions.st_uid)+' Group '+str(new_permissions.st_uid))
|
|
|
|
# print('Permissions: User '+str(new_permissions.st_uid)+' Group '+str(new_permissions.st_uid))
|
|
|
|
except:
|
|
|
|
except:
|
|
|
|
e = sys.exc_info()
|
|
|
|
e = sys.exc_info()
|
|
|
|
# print('Fail '+str(dst_file)+' error: '+str(e))
|
|
|
|
logging.getLogger('cps.web').debug('Fail '+str(dst_file)+' error: '+str(e))
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
def update_source(self, source, destination):
|
|
|
|
def update_source(self, source, destination):
|
|
|
|
# destination files
|
|
|
|
# destination files
|
|
|
|
old_list = list()
|
|
|
|
old_list = list()
|
|
|
|
exclude = (
|
|
|
|
exclude = (
|
|
|
|
['vendor' + os.sep + 'kindlegen.exe', 'vendor' + os.sep + 'kindlegen', '/app.db', 'vendor', '/update.py'])
|
|
|
|
'vendor' + os.sep + 'kindlegen.exe', 'vendor' + os.sep + 'kindlegen', os.sep + 'app.db',
|
|
|
|
|
|
|
|
os.sep + 'vendor',os.sep + 'calibre-web.log')
|
|
|
|
for root, dirs, files in os.walk(destination, topdown=True):
|
|
|
|
for root, dirs, files in os.walk(destination, topdown=True):
|
|
|
|
for name in files:
|
|
|
|
for name in files:
|
|
|
|
old_list.append(os.path.join(root, name).replace(destination, ''))
|
|
|
|
old_list.append(os.path.join(root, name).replace(destination, ''))
|
|
|
@ -410,12 +410,14 @@ class Updater(threading.Thread):
|
|
|
|
for item in remove_items:
|
|
|
|
for item in remove_items:
|
|
|
|
item_path = os.path.join(destination, item[1:])
|
|
|
|
item_path = os.path.join(destination, item[1:])
|
|
|
|
if os.path.isdir(item_path):
|
|
|
|
if os.path.isdir(item_path):
|
|
|
|
app.logger.debug("Delete dir " + item_path)
|
|
|
|
logging.getLogger('cps.web').debug("Delete dir " + item_path)
|
|
|
|
shutil.rmtree(item_path)
|
|
|
|
shutil.rmtree(item_path)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
app.logger.debug("Delete file " + item_path)
|
|
|
|
logging.getLogger('cps.web').debug("Delete file " + item_path)
|
|
|
|
|
|
|
|
log_from_thread("Delete file " + item_path)
|
|
|
|
os.remove(item_path)
|
|
|
|
os.remove(item_path)
|
|
|
|
except:
|
|
|
|
except:
|
|
|
|
app.logger.debug("Could not remove:" + item_path)
|
|
|
|
logging.getLogger('cps.web').debug("Could not remove:" + item_path)
|
|
|
|
shutil.rmtree(source, ignore_errors=True)
|
|
|
|
shutil.rmtree(source, ignore_errors=True)
|
|
|
|
|
|
|
|
|
|
|
|