1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-12 12:16:12 +02:00
Sonarr/NzbDrone.Common/EnvironmentProvider.cs

173 lines
5.0 KiB
C#
Raw Normal View History

using System;
2011-10-23 22:54:09 -07:00
using System.Diagnostics;
using System.IO;
using System.Reflection;
namespace NzbDrone.Common
{
public class EnvironmentProvider
{
public const string NZBDRONE_PATH = "NZBDRONE_PATH";
public const string NZBDRONE_PID = "NZBDRONE_PID";
2011-11-20 19:42:45 -08:00
public const string ROOT_MARKER = "NzbDrone.Web";
2012-10-12 22:35:47 -07:00
public static readonly char[] NewLineChars = Environment.NewLine.ToCharArray();
private static readonly string processName = Process.GetCurrentProcess().ProcessName.ToLower();
private static readonly EnvironmentProvider instance = new EnvironmentProvider();
2011-10-23 22:54:09 -07:00
public static bool IsProduction
{
get
{
2011-12-18 21:08:36 -08:00
if (IsDebug || Debugger.IsAttached) return false;
if (instance.Version.Revision > 10000) return false; //Official builds will never have such a high revision
var lowerProcessName = processName.ToLower();
if (lowerProcessName.Contains("vshost")) return false;
if (lowerProcessName.Contains("nunit")) return false;
if (lowerProcessName.Contains("jetbrain")) return false;
if (lowerProcessName.Contains("resharper")) return false;
2012-02-27 22:20:18 -08:00
if (instance.StartUpPath.ToLower().Contains("_rawpackage")) return false;
2011-10-23 22:54:09 -07:00
return true;
}
}
2011-12-18 21:08:36 -08:00
public static bool IsDebug
{
get
{
#if DEBUG
return true;
#else
return false;
#endif
}
}
public static Guid UGuid { get; set; }
public virtual bool IsUserInteractive
{
get { return Environment.UserInteractive; }
}
public virtual string ApplicationPath
{
get
{
2011-11-20 16:52:40 -08:00
string applicationPath;
2011-11-20 19:42:45 -08:00
applicationPath = CrawlToRoot(StartUpPath);
if (!string.IsNullOrWhiteSpace(applicationPath))
return applicationPath;
applicationPath = CrawlToRoot(Environment.CurrentDirectory);
2011-11-20 16:52:40 -08:00
if (!string.IsNullOrWhiteSpace(applicationPath))
return applicationPath;
2012-08-29 22:50:22 -07:00
applicationPath = CrawlToRoot(AppDomain.CurrentDomain.BaseDirectory);
2011-11-20 16:52:40 -08:00
if (!string.IsNullOrWhiteSpace(applicationPath))
return applicationPath;
applicationPath = CrawlToRoot(NzbDronePathFromEnvironment);
2011-11-20 16:52:40 -08:00
if (!string.IsNullOrWhiteSpace(applicationPath))
return applicationPath;
2012-08-29 22:50:22 -07:00
throw new ApplicationException("Can't finds IISExpress folder.");
2011-11-20 16:52:40 -08:00
}
}
2011-11-20 19:42:45 -08:00
public string CrawlToRoot(string dir)
2011-11-20 16:52:40 -08:00
{
2012-09-28 22:09:07 -07:00
if (String.IsNullOrWhiteSpace(dir))
return null;
2011-11-20 16:52:40 -08:00
var directoryInfo = new DirectoryInfo(dir);
2011-11-20 19:42:45 -08:00
while (!IsRoot(directoryInfo))
2011-11-20 16:52:40 -08:00
{
2011-11-20 19:42:45 -08:00
if (directoryInfo.Parent == null) return null;
2011-11-20 16:52:40 -08:00
directoryInfo = directoryInfo.Parent;
}
2011-11-20 16:52:40 -08:00
return directoryInfo.FullName;
}
2011-11-20 19:42:45 -08:00
private static bool IsRoot(DirectoryInfo dir)
2011-11-20 16:52:40 -08:00
{
2011-11-20 19:42:45 -08:00
return dir.GetDirectories(ROOT_MARKER).Length != 0;
}
public virtual string StartUpPath
{
get
{
2013-02-03 20:18:59 -08:00
var path = new FileInfo(Assembly.GetExecutingAssembly().Location).Directory.FullName;
if (path.StartsWith(Environment.GetFolderPath(Environment.SpecialFolder.Windows),
StringComparison.InvariantCultureIgnoreCase))
{
path = Directory.GetCurrentDirectory();
}
return path;
}
}
2011-11-12 23:27:16 -08: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 12:31:02 -08:00
}
public virtual int NzbDroneProcessIdFromEnviroment
{
get
{
var id = Convert.ToInt32(Environment.GetEnvironmentVariable(NZBDRONE_PID));
2011-11-13 12:31:02 -08:00
if (id == 0)
throw new InvalidOperationException("NZBDRONE_PID isn't a valid environment variable.");
return id;
}
}
public virtual string NzbDronePathFromEnvironment
{
2011-11-20 16:52:40 -08:00
get
{
return Environment.GetEnvironmentVariable(NZBDRONE_PATH);
}
}
2011-11-20 16:52:40 -08:00
public virtual Version GetOsVersion()
{
OperatingSystem os = Environment.OSVersion;
Version version = os.Version;
2011-11-20 19:42:45 -08:00
return version;
}
}
2011-10-06 23:57:43 -07:00
}