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;
|
2013-05-20 04:35:48 +02:00
|
|
|
|
using System.Security.Principal;
|
|
|
|
|
using NLog;
|
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
|
|
|
|
{
|
2013-05-11 01:53:50 +02:00
|
|
|
|
public interface IEnvironmentProvider
|
|
|
|
|
{
|
|
|
|
|
bool IsUserInteractive { get; }
|
2013-05-20 04:35:48 +02:00
|
|
|
|
bool IsAdmin { get; }
|
2013-05-11 01:53:50 +02:00
|
|
|
|
string WorkingDirectory { get; }
|
2013-05-16 02:52:54 +02:00
|
|
|
|
string SystemTemp { get; }
|
2013-05-11 01:53:50 +02:00
|
|
|
|
Version Version { get; }
|
|
|
|
|
DateTime BuildDateTime { get; }
|
2013-05-20 03:19:10 +02:00
|
|
|
|
string StartUpPath { get; }
|
2013-05-11 01:53:50 +02:00
|
|
|
|
Version GetOsVersion();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class EnvironmentProvider : IEnvironmentProvider
|
2011-10-07 03:30:44 +02:00
|
|
|
|
{
|
2013-05-20 04:35:48 +02:00
|
|
|
|
private readonly Logger _logger;
|
2013-03-30 22:29:02 +01:00
|
|
|
|
private static readonly string ProcessName = Process.GetCurrentProcess().ProcessName.ToLower();
|
2011-11-14 04:37:36 +01:00
|
|
|
|
|
2013-05-11 01:53:50 +02:00
|
|
|
|
private static readonly IEnvironmentProvider Instance = new EnvironmentProvider();
|
2012-10-13 07:35:47 +02:00
|
|
|
|
|
2013-05-20 04:35:48 +02:00
|
|
|
|
|
|
|
|
|
public EnvironmentProvider()
|
|
|
|
|
{
|
|
|
|
|
_logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
2013-03-30 22:29:02 +01:00
|
|
|
|
if (Instance.Version.Revision > 10000) return false; //Official builds will never have such a high revision
|
2012-02-18 01:27:32 +01:00
|
|
|
|
|
2013-03-30 22:29:02 +01:00
|
|
|
|
var lowerProcessName = ProcessName.ToLower();
|
2012-02-18 01:27:32 +01: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 07:54:09 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-17 00:29:21 +01:00
|
|
|
|
public static bool IsMono
|
|
|
|
|
{
|
2013-02-17 20:19:38 +01:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Type.GetType("Mono.Runtime") != null;
|
|
|
|
|
}
|
2013-02-17 00:29:21 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-18 05:13:23 +01:00
|
|
|
|
public static bool IsLinux
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
int p = (int)Environment.OSVersion.Platform;
|
|
|
|
|
return (p == 4) || (p == 6) || (p == 128);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-20 04:35:48 +02:00
|
|
|
|
public bool IsAdmin
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var principal = new WindowsPrincipal(WindowsIdentity.GetCurrent());
|
|
|
|
|
return principal.IsInRole(WindowsBuiltInRole.Administrator);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.WarnException("Error checking if the current user is an administrator.", ex);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-30 22:29:02 +01:00
|
|
|
|
public virtual string WorkingDirectory
|
2011-10-08 06:51:35 +02:00
|
|
|
|
{
|
2013-05-16 02:52:54 +02:00
|
|
|
|
get { return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "NzbDrone"); }
|
2011-11-21 01:52:40 +01:00
|
|
|
|
}
|
2011-10-14 03:22:51 +02:00
|
|
|
|
|
2011-10-23 07:26:43 +02:00
|
|
|
|
public virtual string StartUpPath
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2013-02-04 05:18:59 +01:00
|
|
|
|
var path = new FileInfo(Assembly.GetExecutingAssembly().Location).Directory.FullName;
|
|
|
|
|
return path;
|
2011-10-23 07:26:43 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
}
|