Lidarr/NzbDrone.Common/EnviromentProvider.cs

156 lines
4.1 KiB
C#
Raw Normal View History

using System;
2011-10-24 05:54:09 +00:00
using System.Diagnostics;
using System.IO;
using System.Reflection;
namespace NzbDrone.Common
{
public class EnviromentProvider
{
public const string NZBDRONE_PATH = "NZBDRONE_PATH";
public const string NZBDRONE_PID = "NZBDRONE_PID";
2011-11-21 03:42:45 +00:00
public const string ROOT_MARKER = "NzbDrone.Web";
private static readonly string processName = Process.GetCurrentProcess().ProcessName.ToLower();
2011-10-24 05:54:09 +00:00
public static bool IsProduction
{
get
{
2011-12-19 05:08:36 +00:00
if (IsDebug || Debugger.IsAttached) return false;
2011-10-24 05:54:09 +00:00
if (processName.Contains("nunit")) return false;
if (processName.Contains("jetbrain")) return false;
if (processName.Contains("resharper")) return false;
return true;
}
}
2011-12-19 05:08:36 +00:00
public static bool IsDebug
{
get
{
#if DEBUG
return true;
#else
return false;
#endif
}
}
2012-01-25 03:09:49 +00:00
public static bool IsNewInstall { get; set; }
public virtual bool IsUserInteractive
{
get { return Environment.UserInteractive; }
}
public virtual string ApplicationPath
{
get
{
2011-11-21 00:52:40 +00:00
string applicationPath;
2011-11-21 03:42:45 +00:00
applicationPath = CrawlToRoot(StartUpPath);
if (!string.IsNullOrWhiteSpace(applicationPath))
return applicationPath;
applicationPath = CrawlToRoot(Environment.CurrentDirectory);
2011-11-21 00:52:40 +00:00
if (!string.IsNullOrWhiteSpace(applicationPath))
return applicationPath;
2011-11-21 03:42:45 +00:00
applicationPath = CrawlToRoot(StartUpPath);
2011-11-21 00:52:40 +00:00
if (!string.IsNullOrWhiteSpace(applicationPath))
return applicationPath;
2011-11-21 03:42:45 +00:00
applicationPath = CrawlToRoot(NzbDronePathFromEnviroment);
2011-11-21 00:52:40 +00:00
if (!string.IsNullOrWhiteSpace(applicationPath))
return applicationPath;
2011-11-21 00:52:40 +00:00
throw new ApplicationException("Can't fine IISExpress folder.");
}
}
2011-11-21 03:42:45 +00:00
public string CrawlToRoot(string dir)
2011-11-21 00:52:40 +00:00
{
var directoryInfo = new DirectoryInfo(dir);
2011-11-21 03:42:45 +00:00
while (!IsRoot(directoryInfo))
2011-11-21 00:52:40 +00:00
{
2011-11-21 03:42:45 +00:00
if (directoryInfo.Parent == null) return null;
2011-11-21 00:52:40 +00:00
directoryInfo = directoryInfo.Parent;
}
2011-11-21 00:52:40 +00:00
return directoryInfo.FullName;
}
2011-11-21 03:42:45 +00:00
private static bool IsRoot(DirectoryInfo dir)
2011-11-21 00:52:40 +00:00
{
2011-11-21 03:42:45 +00:00
return dir.GetDirectories(ROOT_MARKER).Length != 0;
}
2011-11-13 20:31:02 +00:00
public virtual string StartUpPath
{
get
{
return new FileInfo(Assembly.GetExecutingAssembly().Location).Directory.FullName;
}
}
2011-11-13 07:27:16 +00:00
public virtual String SystemTemp
{
get
{
return Path.GetTempPath();
}
}
public virtual Version Version
{
get { return Assembly.GetExecutingAssembly().GetName().Version; }
}
public virtual DateTime BuildDateTime
{
get
{
var fileLocation = Assembly.GetCallingAssembly().Location;
return new FileInfo(fileLocation).CreationTime;
}
2011-11-13 20:31:02 +00:00
}
public virtual int NzbDroneProcessIdFromEnviroment
{
get
{
var id = Convert.ToInt32(Environment.GetEnvironmentVariable(NZBDRONE_PID));
2011-11-13 20:31:02 +00:00
if (id == 0)
throw new InvalidOperationException("NZBDRONE_PID isn't a valid environment variable.");
return id;
}
}
2011-11-21 00:52:40 +00:00
public virtual string NzbDronePathFromEnviroment
{
2011-11-21 00:52:40 +00:00
get
{
return Environment.GetEnvironmentVariable(NZBDRONE_PATH);
}
}
2011-11-21 00:52:40 +00:00
public virtual Version GetOsVersion()
{
OperatingSystem os = Environment.OSVersion;
Version version = os.Version;
2011-11-21 03:42:45 +00:00
return version;
}
}
2011-10-07 06:57:43 +00:00
}