mirror of
https://github.com/kevinveenbirkenbach/splitted-secret.git
synced 2024-11-01 09:03:11 +01:00
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
from .Paths import Paths
|
|
|
|
class Cleanup():
|
|
def __init__(self,cli,paths):
|
|
self.cli = cli
|
|
self.paths = paths
|
|
|
|
def getAllFilePaths(self,file_type):
|
|
all_file_paths = [
|
|
self.paths.getGroupFilesFolderPath(file_type),
|
|
self.paths.getUserFilesPath(file_type),
|
|
self.paths.getAccumulatedFilePath(file_type)
|
|
]
|
|
if file_type == Paths.TYPE_DECRYPTED:
|
|
all_file_paths.append(self.paths.getDecryptedMainDataStandartFolder())
|
|
return all_file_paths
|
|
|
|
def deleteAllFilesInFolder(self,folder_path):
|
|
try:
|
|
self.cli.executeCommand('rm -r ' + folder_path + '*')
|
|
except Exception as error:
|
|
print(error)
|
|
|
|
def cleanupFiles(self,file_type):
|
|
for folder_path in self.getAllFilePaths(file_type):
|
|
self.deleteAllFilesInFolder(folder_path)
|
|
|
|
def cleanupForUser(self,user):
|
|
try:
|
|
self.cli.executeCommand('find "' + self.paths.getDataFolderPath(Paths.TYPE_ENCRYPTED) + '" -not -name "*' + str(user) +'*" -type f -print | xargs rm -v')
|
|
except Exception as error:
|
|
print(error)
|
|
self.cleanupFiles(Paths.TYPE_DECRYPTED)
|
|
|
|
def deleteAll(self):
|
|
self.cleanupFiles(Paths.TYPE_ENCRYPTED)
|
|
self.cleanupFiles(Paths.TYPE_DECRYPTED) |