2011-10-06 18:30:44 -07:00
|
|
|
using System;
|
2011-10-23 22:54:09 -07:00
|
|
|
using System.Diagnostics;
|
2011-10-07 21:51:35 -07:00
|
|
|
using System.IO;
|
|
|
|
using System.Reflection;
|
2011-10-06 18:30:44 -07:00
|
|
|
|
2011-10-22 22:26:43 -07:00
|
|
|
namespace NzbDrone.Common
|
2011-10-06 18:30:44 -07:00
|
|
|
{
|
|
|
|
public class EnviromentProvider
|
|
|
|
{
|
|
|
|
public virtual String LogPath
|
|
|
|
{
|
|
|
|
get { return Environment.CurrentDirectory; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public virtual bool IsUserInteractive
|
|
|
|
{
|
|
|
|
get { return Environment.UserInteractive; }
|
|
|
|
}
|
2011-10-07 21:51:35 -07:00
|
|
|
|
2011-10-23 22:54:09 -07:00
|
|
|
public static bool IsProduction
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (Debugger.IsAttached) return false;
|
|
|
|
|
|
|
|
var processName = Process.GetCurrentProcess().ProcessName.ToLower();
|
|
|
|
|
|
|
|
Console.WriteLine(processName);
|
|
|
|
if (processName.Contains("nunit")) return false;
|
|
|
|
if (processName.Contains("jetbrain")) return false;
|
|
|
|
if (processName.Contains("resharper")) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-07 21:51:35 -07:00
|
|
|
public virtual string ApplicationPath
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2011-10-12 19:24:30 -07:00
|
|
|
var dir = new FileInfo(Environment.CurrentDirectory).Directory;
|
2011-10-07 21:51:35 -07:00
|
|
|
|
2011-10-14 17:41:09 -07:00
|
|
|
while (!ContainsIIS(dir))
|
2011-10-07 21:51:35 -07:00
|
|
|
{
|
2011-10-12 19:24:30 -07:00
|
|
|
if (dir.Parent == null) break;
|
2011-10-07 21:51:35 -07:00
|
|
|
dir = dir.Parent;
|
|
|
|
}
|
|
|
|
|
2011-10-14 17:41:09 -07:00
|
|
|
if (ContainsIIS(dir)) return dir.FullName;
|
|
|
|
|
2011-10-12 19:24:30 -07:00
|
|
|
dir = new FileInfo(Assembly.GetExecutingAssembly().Location).Directory;
|
2011-10-13 18:22:51 -07:00
|
|
|
|
2011-10-14 17:41:09 -07:00
|
|
|
while (!ContainsIIS(dir))
|
2011-10-12 19:24:30 -07:00
|
|
|
{
|
|
|
|
if (dir.Parent == null) throw new ApplicationException("Can't fine IISExpress folder.");
|
|
|
|
dir = dir.Parent;
|
|
|
|
}
|
2011-10-13 18:22:51 -07:00
|
|
|
|
2011-10-07 21:51:35 -07:00
|
|
|
return dir.FullName;
|
|
|
|
}
|
|
|
|
}
|
2011-10-14 17:41:09 -07:00
|
|
|
|
2011-10-22 22:26:43 -07:00
|
|
|
public virtual string StartUpPath
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return new FileInfo(Assembly.GetExecutingAssembly().Location).Directory.FullName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-14 17:41:09 -07:00
|
|
|
private static bool ContainsIIS(DirectoryInfo dir)
|
|
|
|
{
|
|
|
|
return dir.GetDirectories("iisexpress").Length != 0;
|
|
|
|
}
|
2011-10-06 18:30:44 -07:00
|
|
|
}
|
2011-10-06 23:57:43 -07:00
|
|
|
}
|