mirror of https://github.com/lidarr/Lidarr
137 lines
3.7 KiB
C#
137 lines
3.7 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
|
|
namespace NzbDrone.Common
|
|
{
|
|
public class EnviromentProvider
|
|
{
|
|
public const string IIS_FOLDER_NAME = "iisexpress";
|
|
|
|
public const string NZBDRONE_PATH = "NZBDRONE_PATH";
|
|
public const string NZBDRONE_PID = "NZBDRONE_PID";
|
|
|
|
#if DEBUG
|
|
private static readonly bool isInDebug = true;
|
|
#else
|
|
private static readonly bool isInDebug = false;
|
|
#endif
|
|
|
|
private static readonly string processName = Process.GetCurrentProcess().ProcessName.ToLower();
|
|
|
|
public static bool IsProduction
|
|
{
|
|
get
|
|
{
|
|
if (isInDebug || Debugger.IsAttached) return false;
|
|
|
|
Console.WriteLine(processName);
|
|
if (processName.Contains("nunit")) return false;
|
|
if (processName.Contains("jetbrain")) return false;
|
|
if (processName.Contains("resharper")) return false;
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public virtual bool IsUserInteractive
|
|
{
|
|
get { return Environment.UserInteractive; }
|
|
}
|
|
|
|
public virtual string ApplicationPath
|
|
{
|
|
get
|
|
{
|
|
string applicationPath;
|
|
|
|
applicationPath = GetApplicationPath(Environment.CurrentDirectory);
|
|
if (!string.IsNullOrWhiteSpace(applicationPath))
|
|
return applicationPath;
|
|
|
|
applicationPath = GetApplicationPath(StartUpPath);
|
|
if (!string.IsNullOrWhiteSpace(applicationPath))
|
|
return applicationPath;
|
|
|
|
applicationPath = GetApplicationPath(NzbDronePathFromEnviroment);
|
|
if (!string.IsNullOrWhiteSpace(applicationPath))
|
|
return applicationPath;
|
|
|
|
throw new ApplicationException("Can't fine IISExpress folder.");
|
|
}
|
|
}
|
|
|
|
private string GetApplicationPath(string dir)
|
|
{
|
|
var directoryInfo = new DirectoryInfo(dir);
|
|
|
|
while (!ContainsIIS(directoryInfo))
|
|
{
|
|
if (directoryInfo.Parent == null) break;
|
|
directoryInfo = directoryInfo.Parent;
|
|
}
|
|
|
|
return directoryInfo.FullName;
|
|
}
|
|
|
|
private static bool ContainsIIS(DirectoryInfo dir)
|
|
{
|
|
return dir.GetDirectories(IIS_FOLDER_NAME).Length != 0;
|
|
}
|
|
|
|
|
|
public virtual string StartUpPath
|
|
{
|
|
get
|
|
{
|
|
return new FileInfo(Assembly.GetExecutingAssembly().Location).Directory.FullName;
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
public virtual int NzbDroneProcessIdFromEnviroment
|
|
{
|
|
get
|
|
{
|
|
var id = Convert.ToInt32(Environment.GetEnvironmentVariable(NZBDRONE_PID));
|
|
|
|
if (id == 0)
|
|
throw new InvalidOperationException("NZBDRONE_PID isn't a valid environment variable.");
|
|
|
|
return id;
|
|
}
|
|
}
|
|
|
|
public virtual string NzbDronePathFromEnviroment
|
|
{
|
|
get
|
|
{
|
|
return Environment.GetEnvironmentVariable(NZBDRONE_PATH);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
} |