2011-10-07 01:30:44 +00:00
|
|
|
|
using System;
|
2011-10-24 05:54:09 +00:00
|
|
|
|
using System.Diagnostics;
|
2011-10-08 04:51:35 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Reflection;
|
2011-10-07 01:30:44 +00:00
|
|
|
|
|
2011-10-23 05:26:43 +00:00
|
|
|
|
namespace NzbDrone.Common
|
2011-10-07 01:30:44 +00:00
|
|
|
|
{
|
2013-05-10 23:53:50 +00:00
|
|
|
|
public interface IEnvironmentProvider
|
|
|
|
|
{
|
|
|
|
|
bool IsUserInteractive { get; }
|
|
|
|
|
string WorkingDirectory { get; }
|
2013-05-16 00:52:54 +00:00
|
|
|
|
string SystemTemp { get; }
|
2013-05-10 23:53:50 +00:00
|
|
|
|
Version Version { get; }
|
|
|
|
|
DateTime BuildDateTime { get; }
|
|
|
|
|
Version GetOsVersion();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class EnvironmentProvider : IEnvironmentProvider
|
2011-10-07 01:30:44 +00:00
|
|
|
|
{
|
2013-03-30 21:29:02 +00:00
|
|
|
|
private static readonly string ProcessName = Process.GetCurrentProcess().ProcessName.ToLower();
|
2011-11-14 03:37:36 +00:00
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
private static readonly IEnvironmentProvider Instance = new EnvironmentProvider();
|
2012-10-13 05:35:47 +00:00
|
|
|
|
|
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;
|
2013-03-30 21:29:02 +00:00
|
|
|
|
if (Instance.Version.Revision > 10000) return false; //Official builds will never have such a high revision
|
2012-02-18 00:27:32 +00:00
|
|
|
|
|
2013-03-30 21:29:02 +00:00
|
|
|
|
var lowerProcessName = ProcessName.ToLower();
|
2012-02-18 00:27:32 +00:00
|
|
|
|
if (lowerProcessName.Contains("vshost")) return false;
|
|
|
|
|
if (lowerProcessName.Contains("nunit")) return false;
|
|
|
|
|
if (lowerProcessName.Contains("jetbrain")) return false;
|
|
|
|
|
if (lowerProcessName.Contains("resharper")) return false;
|
|
|
|
|
|
2011-10-24 05:54:09 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-16 23:29:21 +00:00
|
|
|
|
public static bool IsMono
|
|
|
|
|
{
|
2013-02-17 19:19:38 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Type.GetType("Mono.Runtime") != null;
|
|
|
|
|
}
|
2013-02-16 23:29:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-18 04:13:23 +00:00
|
|
|
|
public static bool IsLinux
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
int p = (int)Environment.OSVersion.Platform;
|
|
|
|
|
return (p == 4) || (p == 6) || (p == 128);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-19 05:08:36 +00:00
|
|
|
|
public static bool IsDebug
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
#if DEBUG
|
|
|
|
|
return true;
|
|
|
|
|
#else
|
|
|
|
|
return false;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-05 06:34:36 +00:00
|
|
|
|
public static Guid UGuid { get; set; }
|
|
|
|
|
|
2011-10-28 05:13:56 +00:00
|
|
|
|
public virtual bool IsUserInteractive
|
|
|
|
|
{
|
|
|
|
|
get { return Environment.UserInteractive; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-30 21:29:02 +00:00
|
|
|
|
public virtual string WorkingDirectory
|
2011-10-08 04:51:35 +00:00
|
|
|
|
{
|
2013-05-16 00:52:54 +00:00
|
|
|
|
get { return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "NzbDrone"); }
|
2011-11-21 00:52:40 +00:00
|
|
|
|
}
|
2011-10-14 01:22:51 +00:00
|
|
|
|
|
2011-10-23 05:26:43 +00:00
|
|
|
|
public virtual string StartUpPath
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2013-02-04 04:18:59 +00:00
|
|
|
|
var path = new FileInfo(Assembly.GetExecutingAssembly().Location).Directory.FullName;
|
|
|
|
|
return path;
|
2011-10-23 05:26:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 07:27:16 +00:00
|
|
|
|
public virtual String SystemTemp
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Path.GetTempPath();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-29 04:54:33 +00: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 20:31:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 07:17:00 +00:00
|
|
|
|
public virtual Version GetOsVersion()
|
|
|
|
|
{
|
|
|
|
|
OperatingSystem os = Environment.OSVersion;
|
|
|
|
|
Version version = os.Version;
|
2011-11-21 03:42:45 +00:00
|
|
|
|
|
2012-01-17 07:17:00 +00:00
|
|
|
|
return version;
|
|
|
|
|
}
|
2011-10-07 01:30:44 +00:00
|
|
|
|
}
|
2011-10-07 06:57:43 +00:00
|
|
|
|
}
|