2010-10-15 07:10:44 +00:00
|
|
|
|
using System;
|
2011-05-30 07:05:45 +00:00
|
|
|
|
using System.Data.Common;
|
2011-09-04 03:05:44 +00:00
|
|
|
|
using System.Linq;
|
2011-03-30 06:18:35 +00:00
|
|
|
|
using System.Reflection;
|
2010-10-17 17:22:48 +00:00
|
|
|
|
using System.Threading;
|
2010-10-15 07:10:44 +00:00
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Web.Mvc;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
using System.Web.Routing;
|
2012-10-15 00:53:34 +00:00
|
|
|
|
using LowercaseRoutesMVC;
|
2011-11-14 00:22:18 +00:00
|
|
|
|
using NLog.Config;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
using Ninject;
|
2012-11-03 18:23:47 +00:00
|
|
|
|
using Ninject.Web.Common;
|
2010-10-15 07:10:44 +00:00
|
|
|
|
using NLog;
|
2012-11-03 18:23:47 +00:00
|
|
|
|
using NzbDrone.Api;
|
2011-11-14 00:22:18 +00:00
|
|
|
|
using NzbDrone.Common;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
using NzbDrone.Core;
|
2012-11-02 07:35:49 +00:00
|
|
|
|
using ServiceStack.CacheAccess;
|
|
|
|
|
using ServiceStack.CacheAccess.Providers;
|
2012-11-13 16:27:48 +00:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
|
using NzbDrone.Web.Helpers.Binders;
|
2012-11-02 07:35:49 +00:00
|
|
|
|
using ServiceStack.ServiceInterface;
|
2012-12-19 01:40:47 +00:00
|
|
|
|
using SignalR;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web
|
|
|
|
|
{
|
|
|
|
|
public class MvcApplication : NinjectHttpApplication
|
|
|
|
|
{
|
2010-10-17 17:22:48 +00:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
|
|
|
|
public static void RegisterRoutes(RouteCollection routes)
|
|
|
|
|
{
|
2012-11-02 07:35:49 +00:00
|
|
|
|
routes.IgnoreRoute("api/{*pathInfo}");
|
2010-09-23 03:19:47 +00:00
|
|
|
|
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
|
2011-04-19 00:12:06 +00:00
|
|
|
|
routes.IgnoreRoute("{*robotstxt}", new { robotstxt = @"(.*/)?robots.txt(/.*)?" });
|
|
|
|
|
routes.IgnoreRoute("{*favicon}", new { favicon = @"(.*/)?favicon.ico(/.*)?" });
|
2012-11-02 07:35:49 +00:00
|
|
|
|
|
2012-10-22 07:05:27 +00:00
|
|
|
|
routes.MapRouteLowercase(
|
|
|
|
|
name: "WithSeasonNumber",
|
2012-10-26 04:20:50 +00:00
|
|
|
|
url: "{controller}/{action}/{seriesId}/{seasonNumber}"
|
2012-10-22 07:05:27 +00:00
|
|
|
|
);
|
2011-03-31 01:42:27 +00:00
|
|
|
|
|
2012-10-15 00:53:34 +00:00
|
|
|
|
routes.MapRouteLowercase(
|
2012-10-22 07:05:27 +00:00
|
|
|
|
name: "SeriesId",
|
|
|
|
|
url: "{controller}/{action}/{seriesId}",
|
|
|
|
|
defaults: new { controller = "Series", action = "Index", seriesId = UrlParameter.Optional }
|
|
|
|
|
);
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnApplicationStarted()
|
2012-11-03 18:23:47 +00:00
|
|
|
|
{
|
2011-03-30 06:18:35 +00:00
|
|
|
|
base.OnApplicationStarted();
|
2012-11-03 18:23:47 +00:00
|
|
|
|
|
2010-09-23 03:19:47 +00:00
|
|
|
|
RegisterRoutes(RouteTable.Routes);
|
2011-03-30 06:18:35 +00:00
|
|
|
|
AreaRegistration.RegisterAllAreas();
|
2011-07-04 00:19:05 +00:00
|
|
|
|
|
2011-11-22 06:55:09 +00:00
|
|
|
|
var razor = ViewEngines.Engines.Single(e => e is RazorViewEngine);
|
2011-07-04 00:19:05 +00:00
|
|
|
|
ViewEngines.Engines.Clear();
|
|
|
|
|
ViewEngines.Engines.Add(razor);
|
|
|
|
|
|
2012-11-13 16:27:48 +00:00
|
|
|
|
ModelBinders.Binders.Add(typeof(QualityTypes), new QualityTypesBinder());
|
|
|
|
|
|
2011-03-30 06:18:35 +00:00
|
|
|
|
RegisterGlobalFilters(GlobalFilters.Filters);
|
2011-11-03 05:04:14 +00:00
|
|
|
|
|
2011-10-24 05:54:09 +00:00
|
|
|
|
Logger.Info("Fully initialized and ready.");
|
2010-09-29 17:19:18 +00:00
|
|
|
|
}
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
|
|
|
|
protected override IKernel CreateKernel()
|
|
|
|
|
{
|
2011-11-08 17:48:34 +00:00
|
|
|
|
Logger.Info("NzbDrone Starting up.");
|
2012-01-23 02:24:16 +00:00
|
|
|
|
var dispatch = new CentralDispatch();
|
2011-11-08 20:12:54 +00:00
|
|
|
|
dispatch.DedicateToHost();
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
2011-11-08 20:12:54 +00:00
|
|
|
|
dispatch.Kernel.Load(Assembly.GetExecutingAssembly());
|
2012-11-02 07:35:49 +00:00
|
|
|
|
|
2012-12-19 01:40:47 +00:00
|
|
|
|
//SignalR
|
|
|
|
|
RouteTable.Routes.MapHubs();
|
|
|
|
|
|
2012-11-02 07:35:49 +00:00
|
|
|
|
//ServiceStack
|
|
|
|
|
dispatch.Kernel.Bind<ICacheClient>().To<MemoryCacheClient>().InSingletonScope();
|
|
|
|
|
dispatch.Kernel.Bind<ISessionFactory>().To<SessionFactory>().InSingletonScope();
|
2012-11-03 18:23:47 +00:00
|
|
|
|
new AppHost(dispatch.Kernel).Init();
|
2012-11-02 07:35:49 +00:00
|
|
|
|
|
2011-11-08 20:12:54 +00:00
|
|
|
|
return dispatch.Kernel;
|
2010-10-15 07:10:44 +00:00
|
|
|
|
}
|
2010-10-10 19:00:07 +00:00
|
|
|
|
|
2011-03-30 06:18:35 +00:00
|
|
|
|
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
|
|
|
|
|
{
|
|
|
|
|
filters.Add(new HandleErrorAttribute());
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-15 07:10:44 +00:00
|
|
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
|
protected void Application_Error(object sender, EventArgs e)
|
|
|
|
|
{
|
2010-10-17 17:22:48 +00:00
|
|
|
|
var lastError = Server.GetLastError();
|
2011-04-22 02:23:31 +00:00
|
|
|
|
|
|
|
|
|
if (lastError is HttpException && lastError.InnerException == null)
|
2010-10-17 17:22:48 +00:00
|
|
|
|
{
|
2011-03-29 05:50:18 +00:00
|
|
|
|
Logger.WarnException(String.Format("{0}. URL[{1}]", lastError.Message, Request.Path), lastError);
|
2011-04-10 02:28:54 +00:00
|
|
|
|
return;
|
2010-10-17 17:22:48 +00:00
|
|
|
|
}
|
2011-04-10 02:28:54 +00:00
|
|
|
|
|
2011-04-19 00:12:06 +00:00
|
|
|
|
Logger.FatalException(lastError.Message + Environment.NewLine + Request.Url.PathAndQuery, lastError);
|
2011-04-10 02:28:54 +00:00
|
|
|
|
|
2011-05-30 07:05:45 +00:00
|
|
|
|
if (lastError is DbException)
|
2010-10-17 17:22:48 +00:00
|
|
|
|
{
|
2011-04-10 02:28:54 +00:00
|
|
|
|
Logger.Warn("Restarting application");
|
|
|
|
|
HttpRuntime.UnloadAppDomain();
|
2010-10-17 17:22:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void Application_BeginRequest()
|
|
|
|
|
{
|
2011-11-24 05:50:41 +00:00
|
|
|
|
Thread.CurrentThread.Name = "WEB_THREAD";
|
2011-06-14 01:35:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void Application_EndRequest()
|
|
|
|
|
{
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|