1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Web/Global.asax.cs

92 lines
2.8 KiB
C#
Raw Normal View History

2010-10-15 09:10:44 +02:00
using System;
using System.Diagnostics;
2011-03-30 08:18:35 +02:00
using System.Reflection;
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;
using Ninject;
using Ninject.Web.Mvc;
2010-10-15 09:10:44 +02:00
using NLog;
2010-09-23 05:19:47 +02:00
using NzbDrone.Core;
using NzbDrone.Core.Instrumentation;
using SubSonic.Repository;
2010-09-23 05:19:47 +02:00
namespace NzbDrone.Web
{
public class MvcApplication : NinjectHttpApplication
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2010-09-23 05:19:47 +02:00
public static void RegisterRoutes(RouteCollection routes)
{
2010-09-23 05:19:47 +02:00
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("{*robotstxt}", new { robotstxt = @"(.*/)?robots.txt(/.*)?" });
routes.IgnoreRoute("{*favicon}", new { favicon = @"(.*/)?favicon.ico(/.*)?" });
2010-09-23 05:19:47 +02:00
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Series", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
2010-09-23 05:19:47 +02:00
}
protected override void OnApplicationStarted()
{
2011-03-30 08:18:35 +02:00
base.OnApplicationStarted();
LogConfiguration.Setup();
Logger.Info("NZBDrone Starting up.");
CentralDispatch.DedicateToHost();
2011-03-30 08:18:35 +02:00
2010-09-23 05:19:47 +02:00
RegisterRoutes(RouteTable.Routes);
2011-03-30 08:18:35 +02:00
//base.OnApplicationStarted();
AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
//RegisterRoutes(RouteTable.Routes);
2010-09-29 19:19:18 +02:00
}
2010-09-23 05:19:47 +02:00
protected override IKernel CreateKernel()
{
var kernel = CentralDispatch.NinjectKernel;
2011-03-30 08:18:35 +02:00
// kernel.Bind<IRepository>().ToConstant(kernel.Get<IRepository>("LogDb"));
kernel.Load(Assembly.GetExecutingAssembly());
return kernel;
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)
{
var lastError = Server.GetLastError();
if (lastError is HttpException)
{
2011-03-29 07:50:18 +02:00
Logger.WarnException(String.Format("{0}. URL[{1}]", lastError.Message, Request.Path), lastError);
if (Request.Path.EndsWith(".aspx", StringComparison.InvariantCultureIgnoreCase))
{
Response.Redirect(Request.ApplicationPath);
}
}
else
{
2010-10-24 19:35:58 +02:00
Logger.FatalException(lastError.Message, lastError);
}
}
protected void Application_BeginRequest()
{
Thread.CurrentThread.Name = "UI";
2010-09-23 05:19:47 +02:00
}
2010-10-15 09:10:44 +02:00
2010-09-23 05:19:47 +02:00
}
}