2011-11-21 01:35:29 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
2011-11-13 06:19:19 +01:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common
|
|
|
|
|
{
|
|
|
|
|
public static class PathExtentions
|
|
|
|
|
{
|
|
|
|
|
private const string WEB_FOLDER = "NzbDrone.Web\\";
|
|
|
|
|
private const string APP_DATA = "App_Data\\";
|
2011-11-21 04:42:45 +01:00
|
|
|
|
public const string IIS_FOLDER = "IISExpress";
|
2011-11-13 08:27:16 +01:00
|
|
|
|
public const string IIS_EXE = "iisexpress.exe";
|
|
|
|
|
|
2011-11-13 06:19:19 +01:00
|
|
|
|
|
|
|
|
|
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\\";
|
2011-11-14 01:22:18 +01:00
|
|
|
|
private const string UPDATE_CLIENT_EXE = "nzbdrone.update.exe";
|
2011-11-14 02:27:11 +01:00
|
|
|
|
private const string UPDATE_CLIENT_FOLDER_NAME = "NzbDrone.Update\\";
|
2011-11-21 05:18:40 +01:00
|
|
|
|
private const string UPDATE_LOG_FOLDER_NAME = "UpdateLogs\\";
|
2011-11-13 08:27:16 +01:00
|
|
|
|
|
2011-11-21 01:35:29 +01:00
|
|
|
|
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('/', '\\', ' ');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-11-13 08:27:16 +01:00
|
|
|
|
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)
|
2011-11-13 06:19:19 +01:00
|
|
|
|
{
|
2011-11-13 08:27:16 +01:00
|
|
|
|
return Path.Combine(enviromentProvider.GetAppDataPath(), LOG_DB_FILE);
|
2011-11-13 06:19:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-02 08:07:18 +01:00
|
|
|
|
public static string GetMediaCoverPath(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(enviromentProvider.GetWebRoot(), "MediaCover");
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 08:27:16 +01:00
|
|
|
|
public static string GetBannerPath(this EnviromentProvider enviromentProvider)
|
2011-11-13 06:19:19 +01:00
|
|
|
|
{
|
2011-12-02 08:20:33 +01:00
|
|
|
|
return Path.Combine(enviromentProvider.GetMediaCoverPath(), "Banners");
|
2011-12-02 08:07:18 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string GetFanArthPath(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
2011-12-02 08:20:33 +01:00
|
|
|
|
return Path.Combine(enviromentProvider.GetMediaCoverPath(), "Fanarts");
|
2011-11-13 06:19:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 08:27:16 +01:00
|
|
|
|
public static string GetCacheFolder(this EnviromentProvider enviromentProvider)
|
2011-11-13 06:19:19 +01:00
|
|
|
|
{
|
2011-11-13 08:27:16 +01:00
|
|
|
|
return Path.Combine(enviromentProvider.GetWebRoot(), "Cache");
|
2011-11-13 06:19:19 +01:00
|
|
|
|
}
|
2011-11-14 01:22:18 +01:00
|
|
|
|
|
2011-11-21 03:13:10 +01:00
|
|
|
|
public static string GetUpdateLogFolder(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(enviromentProvider.ApplicationPath, UPDATE_LOG_FOLDER_NAME);
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-14 01:22:18 +01:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-14 02:27:11 +01:00
|
|
|
|
public static string GetUpdateClientFolder(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(enviromentProvider.GetUpdatePackageFolder(), UPDATE_CLIENT_FOLDER_NAME);
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-14 01:22:18 +01:00
|
|
|
|
public static string GetUpdateClientExePath(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
2011-11-22 05:02:14 +01:00
|
|
|
|
return Path.Combine(enviromentProvider.GetUpdateSandboxFolder(), UPDATE_CLIENT_EXE);
|
2011-11-14 01:22:18 +01:00
|
|
|
|
}
|
2011-11-21 03:13:10 +01:00
|
|
|
|
|
|
|
|
|
public static string GetSandboxLogFolder(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(enviromentProvider.GetUpdateSandboxFolder(), UPDATE_LOG_FOLDER_NAME);
|
|
|
|
|
}
|
2011-11-13 06:19:19 +01:00
|
|
|
|
}
|
|
|
|
|
}
|