2011-10-07 03:30:44 +02:00
|
|
|
|
using System;
|
2011-10-24 07:54:09 +02:00
|
|
|
|
using System.Diagnostics;
|
2011-10-08 06:51:35 +02:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Reflection;
|
2011-10-07 03:30:44 +02:00
|
|
|
|
|
2011-10-23 07:26:43 +02:00
|
|
|
|
namespace NzbDrone.Common
|
2011-10-07 03:30:44 +02:00
|
|
|
|
{
|
2012-03-07 03:59:43 +01:00
|
|
|
|
public class EnvironmentProvider
|
2011-10-07 03:30:44 +02:00
|
|
|
|
{
|
2011-11-14 04:37:36 +01:00
|
|
|
|
public const string NZBDRONE_PATH = "NZBDRONE_PATH";
|
|
|
|
|
public const string NZBDRONE_PID = "NZBDRONE_PID";
|
2011-11-21 04:42:45 +01:00
|
|
|
|
public const string ROOT_MARKER = "NzbDrone.Web";
|
2011-11-14 04:37:36 +01:00
|
|
|
|
|
2011-10-28 07:13:56 +02:00
|
|
|
|
private static readonly string processName = Process.GetCurrentProcess().ProcessName.ToLower();
|
2011-10-08 06:51:35 +02:00
|
|
|
|
|
2012-03-07 03:59:43 +01:00
|
|
|
|
private static readonly EnvironmentProvider instance = new EnvironmentProvider();
|
2012-02-18 01:27:32 +01:00
|
|
|
|
|
2011-10-24 07:54:09 +02:00
|
|
|
|
public static bool IsProduction
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2011-12-19 06:08:36 +01:00
|
|
|
|
if (IsDebug || Debugger.IsAttached) return false;
|
2012-02-18 01:27:32 +01:00
|
|
|
|
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-28 07:20:18 +01:00
|
|
|
|
if (instance.StartUpPath.ToLower().Contains("_rawpackage")) return false;
|
2011-10-24 07:54:09 +02:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-19 06:08:36 +01:00
|
|
|
|
public static bool IsDebug
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
|
return true;
|
|
|
|
|
#else
|
|
|
|
|
return false;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-05 07:34:36 +01:00
|
|
|
|
public static Guid UGuid { get; set; }
|
|
|
|
|
|
2011-10-28 07:13:56 +02:00
|
|
|
|
public virtual bool IsUserInteractive
|
|
|
|
|
{
|
|
|
|
|
get { return Environment.UserInteractive; }
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-08 06:51:35 +02:00
|
|
|
|
public virtual string ApplicationPath
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2011-11-21 01:52:40 +01:00
|
|
|
|
string applicationPath;
|
2011-10-08 06:51:35 +02:00
|
|
|
|
|
2011-11-21 04:42:45 +01:00
|
|
|
|
applicationPath = CrawlToRoot(StartUpPath);
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(applicationPath))
|
|
|
|
|
return applicationPath;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
applicationPath = CrawlToRoot(Environment.CurrentDirectory);
|
2011-11-21 01:52:40 +01:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(applicationPath))
|
|
|
|
|
return applicationPath;
|
2011-10-08 06:51:35 +02:00
|
|
|
|
|
2011-11-21 04:42:45 +01:00
|
|
|
|
applicationPath = CrawlToRoot(StartUpPath);
|
2011-11-21 01:52:40 +01:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(applicationPath))
|
|
|
|
|
return applicationPath;
|
2011-10-15 02:41:09 +02:00
|
|
|
|
|
2011-11-21 04:42:45 +01:00
|
|
|
|
applicationPath = CrawlToRoot(NzbDronePathFromEnviroment);
|
2011-11-21 01:52:40 +01:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(applicationPath))
|
|
|
|
|
return applicationPath;
|
2011-10-14 03:22:51 +02:00
|
|
|
|
|
2011-11-21 01:52:40 +01:00
|
|
|
|
throw new ApplicationException("Can't fine IISExpress folder.");
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-10-14 03:22:51 +02:00
|
|
|
|
|
2011-11-21 04:42:45 +01:00
|
|
|
|
public string CrawlToRoot(string dir)
|
2011-11-21 01:52:40 +01:00
|
|
|
|
{
|
|
|
|
|
var directoryInfo = new DirectoryInfo(dir);
|
|
|
|
|
|
2011-11-21 04:42:45 +01:00
|
|
|
|
while (!IsRoot(directoryInfo))
|
2011-11-21 01:52:40 +01:00
|
|
|
|
{
|
2011-11-21 04:42:45 +01:00
|
|
|
|
if (directoryInfo.Parent == null) return null;
|
2011-11-21 01:52:40 +01:00
|
|
|
|
directoryInfo = directoryInfo.Parent;
|
2011-10-08 06:51:35 +02:00
|
|
|
|
}
|
2011-11-21 01:52:40 +01:00
|
|
|
|
|
|
|
|
|
return directoryInfo.FullName;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-21 04:42:45 +01:00
|
|
|
|
private static bool IsRoot(DirectoryInfo dir)
|
2011-11-21 01:52:40 +01:00
|
|
|
|
{
|
2011-11-21 04:42:45 +01:00
|
|
|
|
return dir.GetDirectories(ROOT_MARKER).Length != 0;
|
2011-10-08 06:51:35 +02:00
|
|
|
|
}
|
2011-10-15 02:41:09 +02:00
|
|
|
|
|
2011-10-23 07:26:43 +02:00
|
|
|
|
public virtual string StartUpPath
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new FileInfo(Assembly.GetExecutingAssembly().Location).Directory.FullName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 08:27:16 +01:00
|
|
|
|
public virtual String SystemTemp
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Path.GetTempPath();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-29 06:54:33 +02:00
|
|
|
|
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 21:31:02 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual int NzbDroneProcessIdFromEnviroment
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2011-11-14 04:37:36 +01:00
|
|
|
|
var id = Convert.ToInt32(Environment.GetEnvironmentVariable(NZBDRONE_PID));
|
2011-10-29 06:54:33 +02:00
|
|
|
|
|
2011-11-13 21:31:02 +01:00
|
|
|
|
if (id == 0)
|
|
|
|
|
throw new InvalidOperationException("NZBDRONE_PID isn't a valid environment variable.");
|
|
|
|
|
|
|
|
|
|
return id;
|
|
|
|
|
}
|
2011-10-29 06:54:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-21 01:52:40 +01:00
|
|
|
|
public virtual string NzbDronePathFromEnviroment
|
2011-10-15 02:41:09 +02:00
|
|
|
|
{
|
2011-11-21 01:52:40 +01:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Environment.GetEnvironmentVariable(NZBDRONE_PATH);
|
|
|
|
|
}
|
2011-10-15 02:41:09 +02:00
|
|
|
|
}
|
2011-11-21 01:52:40 +01:00
|
|
|
|
|
2012-01-17 08:17:00 +01:00
|
|
|
|
public virtual Version GetOsVersion()
|
|
|
|
|
{
|
|
|
|
|
OperatingSystem os = Environment.OSVersion;
|
|
|
|
|
Version version = os.Version;
|
2011-11-21 04:42:45 +01:00
|
|
|
|
|
2012-01-17 08:17:00 +01:00
|
|
|
|
return version;
|
|
|
|
|
}
|
2011-10-07 03:30:44 +02:00
|
|
|
|
}
|
2011-10-07 08:57:43 +02:00
|
|
|
|
}
|