2011-10-07 01:30:44 +00:00
|
|
|
|
using System;
|
2011-10-24 05:54:09 +00:00
|
|
|
|
using System.Diagnostics;
|
2011-10-08 04:51:35 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Reflection;
|
2011-10-07 01:30:44 +00:00
|
|
|
|
|
2011-10-23 05:26:43 +00:00
|
|
|
|
namespace NzbDrone.Common
|
2011-10-07 01:30:44 +00:00
|
|
|
|
{
|
|
|
|
|
public class EnviromentProvider
|
|
|
|
|
{
|
|
|
|
|
public virtual String LogPath
|
|
|
|
|
{
|
|
|
|
|
get { return Environment.CurrentDirectory; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual bool IsUserInteractive
|
|
|
|
|
{
|
|
|
|
|
get { return Environment.UserInteractive; }
|
|
|
|
|
}
|
2011-10-08 04:51:35 +00:00
|
|
|
|
|
2011-10-24 05:54:09 +00: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-08 04:51:35 +00:00
|
|
|
|
public virtual string ApplicationPath
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2011-10-13 02:24:30 +00:00
|
|
|
|
var dir = new FileInfo(Environment.CurrentDirectory).Directory;
|
2011-10-08 04:51:35 +00:00
|
|
|
|
|
2011-10-15 00:41:09 +00:00
|
|
|
|
while (!ContainsIIS(dir))
|
2011-10-08 04:51:35 +00:00
|
|
|
|
{
|
2011-10-13 02:24:30 +00:00
|
|
|
|
if (dir.Parent == null) break;
|
2011-10-08 04:51:35 +00:00
|
|
|
|
dir = dir.Parent;
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-15 00:41:09 +00:00
|
|
|
|
if (ContainsIIS(dir)) return dir.FullName;
|
|
|
|
|
|
2011-10-13 02:24:30 +00:00
|
|
|
|
dir = new FileInfo(Assembly.GetExecutingAssembly().Location).Directory;
|
2011-10-14 01:22:51 +00:00
|
|
|
|
|
2011-10-15 00:41:09 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
2011-10-14 01:22:51 +00:00
|
|
|
|
|
2011-10-08 04:51:35 +00:00
|
|
|
|
return dir.FullName;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-10-15 00:41:09 +00:00
|
|
|
|
|
2011-10-23 05:26:43 +00:00
|
|
|
|
public virtual string StartUpPath
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new FileInfo(Assembly.GetExecutingAssembly().Location).Directory.FullName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-15 00:41:09 +00:00
|
|
|
|
private static bool ContainsIIS(DirectoryInfo dir)
|
|
|
|
|
{
|
|
|
|
|
return dir.GetDirectories("iisexpress").Length != 0;
|
|
|
|
|
}
|
2011-10-07 01:30:44 +00:00
|
|
|
|
}
|
2011-10-07 06:57:43 +00:00
|
|
|
|
}
|