2011-11-21 00:35:29 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
2011-11-13 05:19:19 +00: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 03:42:45 +00:00
|
|
|
|
public const string IIS_FOLDER = "IISExpress";
|
2011-11-13 07:27:16 +00:00
|
|
|
|
public const string IIS_EXE = "iisexpress.exe";
|
|
|
|
|
|
2011-11-13 05:19:19 +00:00
|
|
|
|
|
|
|
|
|
private const string LOG_CONFIG_FILE = "log.config";
|
|
|
|
|
private const string APP_CONFIG_FILE = "config.xml";
|
|
|
|
|
|
2012-01-15 05:47:13 +00:00
|
|
|
|
public const string NZBDRONE_DB_FILE = "nzbdrone.sdf";
|
|
|
|
|
public const string LOG_DB_FILE = "log.sdf";
|
2011-11-13 05:19:19 +00:00
|
|
|
|
|
2012-01-27 05:05:09 +00:00
|
|
|
|
private const string BACKUP_ZIP_FILE = "NzbDrone_Backup.zip";
|
|
|
|
|
|
2011-11-13 05:19:19 +00:00
|
|
|
|
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 00:22:18 +00:00
|
|
|
|
private const string UPDATE_CLIENT_EXE = "nzbdrone.update.exe";
|
2011-11-14 01:27:11 +00:00
|
|
|
|
private const string UPDATE_CLIENT_FOLDER_NAME = "NzbDrone.Update\\";
|
2011-11-21 04:18:40 +00:00
|
|
|
|
private const string UPDATE_LOG_FOLDER_NAME = "UpdateLogs\\";
|
2011-11-13 07:27:16 +00:00
|
|
|
|
|
2011-11-21 00:35:29 +00: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 07:27:16 +00: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 05:19:19 +00:00
|
|
|
|
{
|
2011-11-13 07:27:16 +00:00
|
|
|
|
return Path.Combine(enviromentProvider.GetAppDataPath(), LOG_DB_FILE);
|
2011-11-13 05:19:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-02 07:07:18 +00:00
|
|
|
|
public static string GetMediaCoverPath(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(enviromentProvider.GetWebRoot(), "MediaCover");
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 07:27:16 +00:00
|
|
|
|
public static string GetBannerPath(this EnviromentProvider enviromentProvider)
|
2011-11-13 05:19:19 +00:00
|
|
|
|
{
|
2011-12-02 07:20:33 +00:00
|
|
|
|
return Path.Combine(enviromentProvider.GetMediaCoverPath(), "Banners");
|
2011-12-02 07:07:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string GetFanArthPath(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
2011-12-02 07:20:33 +00:00
|
|
|
|
return Path.Combine(enviromentProvider.GetMediaCoverPath(), "Fanarts");
|
2011-11-13 05:19:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 07:27:16 +00:00
|
|
|
|
public static string GetCacheFolder(this EnviromentProvider enviromentProvider)
|
2011-11-13 05:19:19 +00:00
|
|
|
|
{
|
2011-11-13 07:27:16 +00:00
|
|
|
|
return Path.Combine(enviromentProvider.GetWebRoot(), "Cache");
|
2011-11-13 05:19:19 +00:00
|
|
|
|
}
|
2011-11-14 00:22:18 +00:00
|
|
|
|
|
2011-11-21 02:13:10 +00:00
|
|
|
|
public static string GetUpdateLogFolder(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(enviromentProvider.ApplicationPath, UPDATE_LOG_FOLDER_NAME);
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-14 00:22:18 +00: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 01:27:11 +00:00
|
|
|
|
public static string GetUpdateClientFolder(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(enviromentProvider.GetUpdatePackageFolder(), UPDATE_CLIENT_FOLDER_NAME);
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-14 00:22:18 +00:00
|
|
|
|
public static string GetUpdateClientExePath(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
2011-11-22 04:02:14 +00:00
|
|
|
|
return Path.Combine(enviromentProvider.GetUpdateSandboxFolder(), UPDATE_CLIENT_EXE);
|
2011-11-14 00:22:18 +00:00
|
|
|
|
}
|
2011-11-21 02:13:10 +00:00
|
|
|
|
|
|
|
|
|
public static string GetSandboxLogFolder(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(enviromentProvider.GetUpdateSandboxFolder(), UPDATE_LOG_FOLDER_NAME);
|
|
|
|
|
}
|
2012-01-23 02:24:16 +00:00
|
|
|
|
|
|
|
|
|
public static string GetLogFileName(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(enviromentProvider.ApplicationPath, "nzbdrone.log.txt");
|
|
|
|
|
}
|
2012-01-27 05:05:09 +00:00
|
|
|
|
|
2012-01-23 02:24:16 +00:00
|
|
|
|
public static string GetArchivedLogFileName(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(enviromentProvider.ApplicationPath, "nzbdrone.log.0.txt");
|
|
|
|
|
}
|
2012-01-27 05:05:09 +00:00
|
|
|
|
|
|
|
|
|
public static string GetConfigBackupFile(this EnviromentProvider enviromentProvider)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(enviromentProvider.GetAppDataPath(), BACKUP_ZIP_FILE);
|
|
|
|
|
}
|
2011-11-13 05:19:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|