You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
4.6 KiB
122 lines
4.6 KiB
using System;
|
|
using System.IO;
|
|
|
|
namespace NzbDrone.Common
|
|
{
|
|
public static class PathExtentions
|
|
{
|
|
private const string WEB_FOLDER = "NzbDrone.Web\\";
|
|
private const string APP_DATA = "App_Data\\";
|
|
public const string IIS_FOLDER = EnviromentProvider.IIS_FOLDER_NAME;
|
|
public const string IIS_EXE = "iisexpress.exe";
|
|
|
|
|
|
private const string LOG_CONFIG_FILE = "log.config";
|
|
private const string APP_CONFIG_FILE = "config.xml";
|
|
|
|
private const string NZBDRONE_DB_FILE = "nzbdrone.sdf";
|
|
private const string LOG_DB_FILE = "log.sdf";
|
|
|
|
private const string UPDATE_SANDBOX_FOLDER_NAME = "nzbdrone_update\\";
|
|
private const string UPDATE_PACKAGE_FOLDER_NAME = "nzbdrone\\";
|
|
private const string UPDATE_BACKUP_FOLDER_NAME = "nzbdrone_backup\\";
|
|
private const string UPDATE_CLIENT_EXE = "nzbdrone.update.exe";
|
|
private const string UPDATE_CLIENT_FOLDER_NAME = "NzbDrone.Update\\";
|
|
|
|
public static string NormalizePath(this string path)
|
|
{
|
|
if (String.IsNullOrWhiteSpace(path))
|
|
throw new ArgumentException("Path can not be null or empty");
|
|
|
|
var info = new FileInfo(path);
|
|
|
|
if (info.FullName.StartsWith(@"\\")) //UNC
|
|
{
|
|
return info.FullName.TrimEnd('/', '\\', ' ');
|
|
}
|
|
|
|
return info.FullName.Trim('/', '\\', ' ');
|
|
}
|
|
|
|
|
|
public static string GetIISFolder(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.ApplicationPath, IIS_FOLDER);
|
|
}
|
|
|
|
public static string GetIISExe(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetIISFolder(), IIS_EXE);
|
|
}
|
|
|
|
public static string GetIISConfigPath(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetIISFolder(), "AppServer", "applicationhost.config");
|
|
}
|
|
|
|
public static string GetWebRoot(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.ApplicationPath, WEB_FOLDER);
|
|
}
|
|
|
|
public static string GetAppDataPath(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetWebRoot(), APP_DATA);
|
|
}
|
|
|
|
public static string GetNlogConfigPath(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetWebRoot(), LOG_CONFIG_FILE);
|
|
}
|
|
|
|
public static string GetConfigPath(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.ApplicationPath, APP_CONFIG_FILE);
|
|
}
|
|
|
|
public static string GetNzbDronoeDbFile(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetAppDataPath(), NZBDRONE_DB_FILE);
|
|
}
|
|
|
|
public static string GetLogDbFileDbFile(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetAppDataPath(), LOG_DB_FILE);
|
|
}
|
|
|
|
public static string GetBannerPath(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetWebRoot(), "Content", "Images", "Banners");
|
|
}
|
|
|
|
public static string GetCacheFolder(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetWebRoot(), "Cache");
|
|
}
|
|
|
|
public static string GetUpdateSandboxFolder(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.SystemTemp, UPDATE_SANDBOX_FOLDER_NAME);
|
|
}
|
|
|
|
public static string GetUpdateBackUpFolder(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetUpdateSandboxFolder(), UPDATE_BACKUP_FOLDER_NAME);
|
|
}
|
|
|
|
public static string GetUpdatePackageFolder(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetUpdateSandboxFolder(), UPDATE_PACKAGE_FOLDER_NAME);
|
|
}
|
|
|
|
public static string GetUpdateClientFolder(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetUpdatePackageFolder(), UPDATE_CLIENT_FOLDER_NAME);
|
|
}
|
|
|
|
public static string GetUpdateClientExePath(this EnviromentProvider enviromentProvider)
|
|
{
|
|
return Path.Combine(enviromentProvider.GetUpdateClientFolder(), UPDATE_CLIENT_EXE);
|
|
}
|
|
}
|
|
} |