using System; using System.IO; using System.Text.RegularExpressions; using NzbDrone.Common.EnsureThat; using NzbDrone.Common.EnvironmentInfo; namespace NzbDrone.Common.Extensions { public static class PathExtensions { private const string APP_CONFIG_FILE = "config.xml"; private const string NZBDRONE_DB = "nzbdrone.db"; private const string NZBDRONE_LOG_DB = "logs.db"; private const string NLOG_CONFIG_FILE = "nlog.config"; private const string UPDATE_CLIENT_EXE = "NzbDrone.Update.exe"; private const string BACKUP_FOLDER = "Backups"; private static readonly string UPDATE_SANDBOX_FOLDER_NAME = "nzbdrone_update" + Path.DirectorySeparatorChar; private static readonly string UPDATE_PACKAGE_FOLDER_NAME = "NzbDrone" + Path.DirectorySeparatorChar; private static readonly string UPDATE_BACKUP_FOLDER_NAME = "nzbdrone_backup" + Path.DirectorySeparatorChar; private static readonly string UPDATE_BACKUP_APPDATA_FOLDER_NAME = "nzbdrone_appdata_backup" + Path.DirectorySeparatorChar; private static readonly string UPDATE_CLIENT_FOLDER_NAME = "NzbDrone.Update" + Path.DirectorySeparatorChar; private static readonly string UPDATE_LOG_FOLDER_NAME = "UpdateLogs" + Path.DirectorySeparatorChar; public static string CleanFilePath(this string path) { Ensure.That(path, () => path).IsNotNullOrWhiteSpace(); Ensure.That(path, () => path).IsValidPath(); var info = new FileInfo(path.Trim()); if (OsInfo.IsWindows && info.FullName.StartsWith(@"\\")) //UNC { return info.FullName.TrimEnd('/', '\\', ' '); } return info.FullName.TrimEnd('/').Trim('\\', ' '); } public static bool PathNotEquals(this string firstPath, string secondPath, StringComparison? comparison = null) { return !PathEquals(firstPath, secondPath, comparison); } public static bool PathEquals(this string firstPath, string secondPath, StringComparison? comparison = null) { if (!comparison.HasValue) { comparison = OsInfo.PathStringComparison; } if (firstPath.Equals(secondPath, comparison.Value)) return true; return string.Equals(firstPath.CleanFilePath(), secondPath.CleanFilePath(), comparison.Value); } public static string GetRelativePath(this string parentPath, string childPath) { if (!parentPath.IsParentPath(childPath)) { throw new Exceptions.NotParentException("{0} is not a child of {1}", childPath, parentPath); } return childPath.Substring(parentPath.Length).Trim(Path.DirectorySeparatorChar); } public static string GetParentPath(this string childPath) { var parentPath = childPath.TrimEnd('\\', '/'); var index = parentPath.LastIndexOfAny(new[] { '\\', '/' }); if (index != -1) { return parentPath.Substring(0, index); } return null; } public static bool IsParentPath(this string parentPath, string childPath) { if (parentPath != "/") { parentPath = parentPath.TrimEnd(Path.DirectorySeparatorChar); } if (childPath != "/") { childPath = childPath.TrimEnd(Path.DirectorySeparatorChar); } var parent = new DirectoryInfo(parentPath); var child = new DirectoryInfo(childPath); while (child.Parent != null) { if (child.Parent.FullName.Equals(parent.FullName, OsInfo.PathStringComparison)) { return true; } child = child.Parent; } return false; } private static readonly Regex WindowsPathWithDriveRegex = new Regex(@"^[a-zA-Z]:\\", RegexOptions.Compiled); public static bool IsPathValid(this string path) { if (path.ContainsInvalidPathChars() || string.IsNullOrWhiteSpace(path)) { return false; } if (OsInfo.IsNotWindows) { return path.StartsWith(Path.DirectorySeparatorChar.ToString()); } if (path.StartsWith("\\") || WindowsPathWithDriveRegex.IsMatch(path)) { return true; } return false; } public static bool ContainsInvalidPathChars(this string text) { return text.IndexOfAny(Path.GetInvalidPathChars()) >= 0; } private static string GetProperCapitalization(DirectoryInfo dirInfo) { var parentDirInfo = dirInfo.Parent; if (parentDirInfo == null) { //Drive letter return dirInfo.Name.ToUpper(); } var folderName = dirInfo.Name; if (dirInfo.Exists) { folderName = parentDirInfo.GetDirectories(dirInfo.Name)[0].Name; } return Path.Combine(GetProperCapitalization(parentDirInfo), folderName); } public static string GetActualCasing(this string path) { if (OsInfo.IsNotWindows || path.StartsWith("\\")) { return path; } if (Directory.Exists(path) && (File.GetAttributes(path) & FileAttributes.Directory) == FileAttributes.Directory) { return GetProperCapitalization(new DirectoryInfo(path)); } var fileInfo = new FileInfo(path); var dirInfo = fileInfo.Directory; var fileName = fileInfo.Name; if (dirInfo != null && fileInfo.Exists) { fileName = dirInfo.GetFiles(fileInfo.Name)[0].Name; } return Path.Combine(GetProperCapitalization(dirInfo), fileName); } public static string GetAppDataPath(this IAppFolderInfo appFolderInfo) { return appFolderInfo.AppDataFolder; } public static string GetLogFolder(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetAppDataPath(appFolderInfo), "logs"); } public static string GetConfigPath(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetAppDataPath(appFolderInfo), APP_CONFIG_FILE); } public static string GetMediaCoverPath(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetAppDataPath(appFolderInfo), "MediaCover"); } public static string GetUpdateLogFolder(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetAppDataPath(appFolderInfo), UPDATE_LOG_FOLDER_NAME); } public static string GetUpdateSandboxFolder(this IAppFolderInfo appFolderInfo) { return Path.Combine(appFolderInfo.TempFolder, UPDATE_SANDBOX_FOLDER_NAME); } public static string GetUpdateBackUpFolder(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetUpdateSandboxFolder(appFolderInfo), UPDATE_BACKUP_FOLDER_NAME); } public static string GetUpdateBackUpAppDataFolder(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetUpdateSandboxFolder(appFolderInfo), UPDATE_BACKUP_APPDATA_FOLDER_NAME); } public static string GetUpdateBackupConfigFile(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetUpdateBackUpAppDataFolder(appFolderInfo), APP_CONFIG_FILE); } public static string GetUpdateBackupDatabase(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetUpdateBackUpAppDataFolder(appFolderInfo), NZBDRONE_DB); } public static string GetUpdatePackageFolder(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetUpdateSandboxFolder(appFolderInfo), UPDATE_PACKAGE_FOLDER_NAME); } public static string GetUpdateClientFolder(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetUpdatePackageFolder(appFolderInfo), UPDATE_CLIENT_FOLDER_NAME); } public static string GetUpdateClientExePath(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetUpdateSandboxFolder(appFolderInfo), UPDATE_CLIENT_EXE); } public static string GetBackupFolder(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetAppDataPath(appFolderInfo), BACKUP_FOLDER); } public static string GetNzbDroneDatabase(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetAppDataPath(appFolderInfo), NZBDRONE_DB); } public static string GetLogDatabase(this IAppFolderInfo appFolderInfo) { return Path.Combine(GetAppDataPath(appFolderInfo), NZBDRONE_LOG_DB); } public static string GetNlogConfigPath(this IAppFolderInfo appFolderInfo) { return Path.Combine(appFolderInfo.StartUpFolder, NLOG_CONFIG_FILE); } } }