adjustments to the filesystem storage method
This commit is contained in:
parent
451fabd371
commit
f251c26102
3 changed files with 11 additions and 44 deletions
|
@ -12,7 +12,7 @@
|
||||||
public string SftpBackupDirectoryPath { get; set; }
|
public string SftpBackupDirectoryPath { get; set; }
|
||||||
public string SftpTrustedHost { get; set; }
|
public string SftpTrustedHost { get; set; }
|
||||||
|
|
||||||
public string FileSystemPath { get; set; } = @"backups";
|
public string FileSystemPathV2 { get; set; }
|
||||||
|
|
||||||
public string MySqlDumpPathWindows { get; set; } = @"C:\Program Files\MariaDB 10.3\bin\mysqldump.exe";
|
public string MySqlDumpPathWindows { get; set; } = @"C:\Program Files\MariaDB 10.3\bin\mysqldump.exe";
|
||||||
public string MySqlDumpPath { get; set; } = @"mysqldump";
|
public string MySqlDumpPath { get; set; } = @"mysqldump";
|
||||||
|
|
|
@ -40,6 +40,10 @@ namespace BackupManager
|
||||||
CONFIG_NAME
|
CONFIG_NAME
|
||||||
);
|
);
|
||||||
|
|
||||||
|
public static string FSPath => string.IsNullOrWhiteSpace(Config.FileSystemPathV2)
|
||||||
|
? Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), @"Backups")
|
||||||
|
: Config.FileSystemPathV2;
|
||||||
|
|
||||||
private static object BackupStorage;
|
private static object BackupStorage;
|
||||||
|
|
||||||
private static SftpClient SFTP;
|
private static SftpClient SFTP;
|
||||||
|
@ -150,8 +154,8 @@ namespace BackupManager
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case StorageMethod.FileSystem:
|
case StorageMethod.FileSystem:
|
||||||
if (!Directory.Exists(Config.FileSystemPath))
|
if (!Directory.Exists(FSPath))
|
||||||
Directory.CreateDirectory(Config.FileSystemPath);
|
Directory.CreateDirectory(FSPath);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -179,12 +183,12 @@ namespace BackupManager
|
||||||
if (Directory.Exists(Config.MisuzuPath))
|
if (Directory.Exists(Config.MisuzuPath))
|
||||||
{
|
{
|
||||||
Log(@"Filesystem backup...");
|
Log(@"Filesystem backup...");
|
||||||
string mszConfig = GetMisuzuConfig();
|
string mszConfig = Path.Combine(Config.MisuzuPath, @"config/config.ini");
|
||||||
|
|
||||||
if (!File.Exists(mszConfig))
|
if (!File.Exists(mszConfig))
|
||||||
Error(@"Could not find Misuzu config.");
|
Error(@"Could not find Misuzu config.");
|
||||||
|
|
||||||
string mszStore = FindMisuzuStorageDir(mszConfig);
|
string mszStore = Path.Combine(Config.MisuzuPath, @"store");
|
||||||
|
|
||||||
if (!Directory.Exists(mszStore))
|
if (!Directory.Exists(mszStore))
|
||||||
Error(@"Could not find Misuzu storage directory.");
|
Error(@"Could not find Misuzu storage directory.");
|
||||||
|
@ -273,43 +277,6 @@ namespace BackupManager
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string GetMisuzuConfig()
|
|
||||||
{
|
|
||||||
return Path.Combine(Config.MisuzuPath, @"config/config.ini");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static string FindMisuzuStorageDir(string config)
|
|
||||||
{
|
|
||||||
Log(@"Finding storage directory...");
|
|
||||||
|
|
||||||
string[] configLines = File.ReadAllLines(config);
|
|
||||||
bool storageSectionFound = false;
|
|
||||||
string path = string.Empty;
|
|
||||||
|
|
||||||
foreach (string line in configLines)
|
|
||||||
{
|
|
||||||
if (!string.IsNullOrEmpty(path))
|
|
||||||
break;
|
|
||||||
if (line.StartsWith('['))
|
|
||||||
storageSectionFound = line == @"[Storage]";
|
|
||||||
if (!storageSectionFound)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
string[] split = line.Split('=', StringSplitOptions.RemoveEmptyEntries);
|
|
||||||
|
|
||||||
if (split.Length < 2 || split[0] != @"path")
|
|
||||||
continue;
|
|
||||||
|
|
||||||
path = string.Join('=', split.Skip(1));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(path))
|
|
||||||
path = Path.Combine(Config.MisuzuPath, @"store");
|
|
||||||
|
|
||||||
return path;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static string CreateMisuzuDataBackup(string configPath, string storePath)
|
public static string CreateMisuzuDataBackup(string configPath, string storePath)
|
||||||
{
|
{
|
||||||
Log(@"Creating Zip archive containing non-volatile Misuzu data...");
|
Log(@"Creating Zip archive containing non-volatile Misuzu data...");
|
||||||
|
@ -407,7 +374,7 @@ namespace BackupManager
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case StorageMethod.FileSystem:
|
case StorageMethod.FileSystem:
|
||||||
BackupStorage = name ?? Config.FileSystemPath;
|
BackupStorage = name ?? FSPath;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,6 @@
|
||||||
{
|
{
|
||||||
//GoogleDrive = 1,
|
//GoogleDrive = 1,
|
||||||
Sftp = 2,
|
Sftp = 2,
|
||||||
FileSystem = 4, // for debugging mysqldump
|
FileSystem = 4,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue