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