Lidarr/NzbDrone.Common/IEnvironmentProvider.cs

149 lines
3.9 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;
using System.Security.Principal;
using NLog;
namespace NzbDrone.Common
{
2013-05-10 23:53:50 +00:00
public interface IEnvironmentProvider
{
bool IsUserInteractive { get; }
bool IsAdmin { get; }
2013-05-10 23:53:50 +00:00
string WorkingDirectory { get; }
string SystemTemp { get; }
2013-05-10 23:53:50 +00:00
Version Version { get; }
DateTime BuildDateTime { get; }
string StartUpPath { get; }
2013-05-10 23:53:50 +00:00
Version GetOsVersion();
}
public class EnvironmentProvider : IEnvironmentProvider
{
private readonly Logger _logger;
private static readonly string ProcessName = Process.GetCurrentProcess().ProcessName.ToLower();
2013-05-10 23:53:50 +00:00
private static readonly IEnvironmentProvider Instance = new EnvironmentProvider();
2012-10-13 05:35:47 +00:00
public EnvironmentProvider()
{
_logger = LogManager.GetCurrentClassLogger();
}
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;
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;
2011-10-24 05:54:09 +00:00
return true;
}
}
2013-02-16 23:29:21 +00:00
public static bool IsMono
{
get
{
return Type.GetType("Mono.Runtime") != null;
}
2013-02-16 23:29:21 +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
}
}
public static Guid UGuid { get; set; }
public virtual bool IsUserInteractive
{
get { return Environment.UserInteractive; }
}
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;
}
}
}
public virtual string WorkingDirectory
{
get { return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "NzbDrone"); }
2011-11-21 00:52:40 +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-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 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
}