2010-10-15 09:10:44 +02:00
|
|
|
|
using System;
|
2011-05-30 09:05:45 +02:00
|
|
|
|
using System.Data.Common;
|
2011-09-04 05:05:44 +02:00
|
|
|
|
using System.Linq;
|
2010-10-17 19:22:48 +02:00
|
|
|
|
using System.Threading;
|
2010-10-15 09:10:44 +02:00
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Web.Mvc;
|
2010-09-23 05:19:47 +02:00
|
|
|
|
using System.Web.Routing;
|
2013-01-03 02:09:13 +01:00
|
|
|
|
using Autofac;
|
|
|
|
|
using Autofac.Integration.Mvc;
|
2012-10-15 02:53:34 +02:00
|
|
|
|
using LowercaseRoutesMVC;
|
2010-10-15 09:10:44 +02:00
|
|
|
|
using NLog;
|
2010-09-23 05:19:47 +02:00
|
|
|
|
using NzbDrone.Core;
|
2012-11-13 17:27:48 +01:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
|
using NzbDrone.Web.Helpers.Binders;
|
2012-12-19 02:40:47 +01:00
|
|
|
|
using SignalR;
|
2010-09-23 05:19:47 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web
|
|
|
|
|
{
|
2013-01-03 02:09:13 +01:00
|
|
|
|
public class MvcApplication : HttpApplication
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2010-10-17 19:22:48 +02:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2010-09-23 05:19:47 +02:00
|
|
|
|
|
|
|
|
|
public static void RegisterRoutes(RouteCollection routes)
|
|
|
|
|
{
|
2012-11-02 08:35:49 +01:00
|
|
|
|
routes.IgnoreRoute("api/{*pathInfo}");
|
2010-09-23 05:19:47 +02:00
|
|
|
|
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
|
2011-04-19 02:12:06 +02:00
|
|
|
|
routes.IgnoreRoute("{*robotstxt}", new { robotstxt = @"(.*/)?robots.txt(/.*)?" });
|
|
|
|
|
routes.IgnoreRoute("{*favicon}", new { favicon = @"(.*/)?favicon.ico(/.*)?" });
|
2012-11-02 08:35:49 +01:00
|
|
|
|
|
2012-10-22 09:05:27 +02:00
|
|
|
|
routes.MapRouteLowercase(
|
|
|
|
|
name: "WithSeasonNumber",
|
2012-10-26 06:20:50 +02:00
|
|
|
|
url: "{controller}/{action}/{seriesId}/{seasonNumber}"
|
2012-10-22 09:05:27 +02:00
|
|
|
|
);
|
2011-03-31 03:42:27 +02:00
|
|
|
|
|
2012-10-15 02:53:34 +02:00
|
|
|
|
routes.MapRouteLowercase(
|
2012-10-22 09:05:27 +02:00
|
|
|
|
name: "SeriesId",
|
|
|
|
|
url: "{controller}/{action}/{seriesId}",
|
|
|
|
|
defaults: new { controller = "Series", action = "Index", seriesId = UrlParameter.Optional }
|
|
|
|
|
);
|
2010-09-23 05:19:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-03 02:09:13 +01:00
|
|
|
|
protected void Application_Start()
|
2012-11-03 19:23:47 +01:00
|
|
|
|
{
|
2013-01-03 02:09:13 +01:00
|
|
|
|
InitContainer();
|
2012-11-03 19:23:47 +01:00
|
|
|
|
|
2010-09-23 05:19:47 +02:00
|
|
|
|
RegisterRoutes(RouteTable.Routes);
|
2011-03-30 08:18:35 +02:00
|
|
|
|
AreaRegistration.RegisterAllAreas();
|
2011-07-04 02:19:05 +02:00
|
|
|
|
|
2011-11-22 07:55:09 +01:00
|
|
|
|
var razor = ViewEngines.Engines.Single(e => e is RazorViewEngine);
|
2011-07-04 02:19:05 +02:00
|
|
|
|
ViewEngines.Engines.Clear();
|
|
|
|
|
ViewEngines.Engines.Add(razor);
|
|
|
|
|
|
2012-11-13 17:27:48 +01:00
|
|
|
|
ModelBinders.Binders.Add(typeof(QualityTypes), new QualityTypesBinder());
|
|
|
|
|
|
2011-03-30 08:18:35 +02:00
|
|
|
|
RegisterGlobalFilters(GlobalFilters.Filters);
|
2011-11-03 06:04:14 +01:00
|
|
|
|
|
2011-10-24 07:54:09 +02:00
|
|
|
|
Logger.Info("Fully initialized and ready.");
|
2010-09-29 19:19:18 +02:00
|
|
|
|
}
|
2010-09-23 05:19:47 +02:00
|
|
|
|
|
2013-01-03 02:09:13 +01:00
|
|
|
|
private void InitContainer()
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
2011-11-08 18:48:34 +01:00
|
|
|
|
Logger.Info("NzbDrone Starting up.");
|
2012-01-23 03:24:16 +01:00
|
|
|
|
var dispatch = new CentralDispatch();
|
2011-11-08 21:12:54 +01:00
|
|
|
|
dispatch.DedicateToHost();
|
2010-10-24 09:46:58 +02:00
|
|
|
|
|
2013-01-03 02:09:13 +01:00
|
|
|
|
dispatch.ContainerBuilder.RegisterAssemblyTypes(typeof(MvcApplication).Assembly).SingleInstance();
|
|
|
|
|
dispatch.ContainerBuilder.RegisterAssemblyTypes(typeof(MvcApplication).Assembly).AsImplementedInterfaces().SingleInstance();
|
|
|
|
|
|
|
|
|
|
MVCRegistration(dispatch.ContainerBuilder);
|
|
|
|
|
|
2013-01-03 04:04:42 +01:00
|
|
|
|
var container = dispatch.BuildContainer();
|
2013-01-03 02:09:13 +01:00
|
|
|
|
|
|
|
|
|
DependencyResolver.SetResolver(new AutofacDependencyResolver(container));
|
2012-11-02 08:35:49 +01:00
|
|
|
|
|
2012-12-19 02:40:47 +01:00
|
|
|
|
//SignalR
|
|
|
|
|
RouteTable.Routes.MapHubs();
|
|
|
|
|
|
2013-01-03 02:09:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void MVCRegistration(ContainerBuilder builder)
|
|
|
|
|
{
|
|
|
|
|
builder.RegisterModule(new AutofacWebTypesModule());
|
|
|
|
|
|
|
|
|
|
builder.RegisterControllers(typeof(MvcApplication).Assembly).InjectActionInvoker();
|
|
|
|
|
builder.RegisterModelBinders(typeof(MvcApplication).Assembly).SingleInstance();
|
2012-11-02 08:35:49 +01:00
|
|
|
|
|
2013-01-03 02:09:13 +01:00
|
|
|
|
builder.RegisterType<ControllerActionInvoker>().As<IActionInvoker>();
|
2010-10-15 09:10:44 +02:00
|
|
|
|
}
|
2010-10-10 21:00:07 +02:00
|
|
|
|
|
2011-03-30 08:18:35 +02:00
|
|
|
|
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
|
|
|
|
|
{
|
|
|
|
|
filters.Add(new HandleErrorAttribute());
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-15 09:10:44 +02:00
|
|
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
|
protected void Application_Error(object sender, EventArgs e)
|
|
|
|
|
{
|
2010-10-17 19:22:48 +02:00
|
|
|
|
var lastError = Server.GetLastError();
|
2011-04-22 04:23:31 +02:00
|
|
|
|
|
|
|
|
|
if (lastError is HttpException && lastError.InnerException == null)
|
2010-10-17 19:22:48 +02:00
|
|
|
|
{
|
2011-03-29 07:50:18 +02:00
|
|
|
|
Logger.WarnException(String.Format("{0}. URL[{1}]", lastError.Message, Request.Path), lastError);
|
2011-04-10 04:28:54 +02:00
|
|
|
|
return;
|
2010-10-17 19:22:48 +02:00
|
|
|
|
}
|
2011-04-10 04:28:54 +02:00
|
|
|
|
|
2011-04-19 02:12:06 +02:00
|
|
|
|
Logger.FatalException(lastError.Message + Environment.NewLine + Request.Url.PathAndQuery, lastError);
|
2011-04-10 04:28:54 +02:00
|
|
|
|
|
2011-05-30 09:05:45 +02:00
|
|
|
|
if (lastError is DbException)
|
2010-10-17 19:22:48 +02:00
|
|
|
|
{
|
2011-04-10 04:28:54 +02:00
|
|
|
|
Logger.Warn("Restarting application");
|
|
|
|
|
HttpRuntime.UnloadAppDomain();
|
2010-10-17 19:22:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void Application_BeginRequest()
|
|
|
|
|
{
|
2011-11-24 06:50:41 +01:00
|
|
|
|
Thread.CurrentThread.Name = "WEB_THREAD";
|
2011-06-14 03:35:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void Application_EndRequest()
|
|
|
|
|
{
|
2010-09-23 05:19:47 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|