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