Lidarr/NzbDrone.Common/EnviromentProvider.cs

127 lines
3.2 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;
namespace NzbDrone.Common
{
public class EnviromentProvider
{
#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();
2011-10-24 05:54:09 +00:00
public static bool IsProduction
{
get
{
if (isInDebug || Debugger.IsAttached) return false;
2011-10-24 05:54:09 +00:00
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 String LogPath
{
get { return Environment.CurrentDirectory; }
}
public virtual bool IsUserInteractive
{
get { return Environment.UserInteractive; }
}
public virtual string ApplicationPath
{
get
{
2011-10-13 02:24:30 +00:00
var dir = new FileInfo(Environment.CurrentDirectory).Directory;
while (!ContainsIIS(dir))
{
2011-10-13 02:24:30 +00:00
if (dir.Parent == null) break;
dir = dir.Parent;
}
if (ContainsIIS(dir)) return dir.FullName;
2011-10-13 02:24:30 +00:00
dir = new FileInfo(Assembly.GetExecutingAssembly().Location).Directory;
while (!ContainsIIS(dir))
2011-10-13 02:24:30 +00:00
{
if (dir.Parent == null) throw new ApplicationException("Can't fine IISExpress folder.");
dir = dir.Parent;
}
return dir.FullName;
}
}
public virtual string WebRoot
{
get
{
return Path.Combine(ApplicationPath, "NzbDrone.Web");
}
}
public virtual string AppDataPath
{
get
{
var path = Path.Combine(WebRoot, "App_data");
if (!Directory.Exists(path))
Directory.CreateDirectory(path);
return path;
}
}
public virtual string StartUpPath
{
get
{
return new FileInfo(Assembly.GetExecutingAssembly().Location).Directory.FullName;
}
}
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 String TempPath
{
get
{
return Path.GetTempPath();
}
}
private static bool ContainsIIS(DirectoryInfo dir)
{
return dir.GetDirectories("iisexpress").Length != 0;
}
}
2011-10-07 06:57:43 +00:00
}