mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
105 lines
3.3 KiB
C#
105 lines
3.3 KiB
C#
using System;
|
|
using System.Data.Common;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using System.Web.Routing;
|
|
using NLog.Config;
|
|
using Ninject;
|
|
using Ninject.Web.Mvc;
|
|
using NLog;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core;
|
|
|
|
namespace NzbDrone.Web
|
|
{
|
|
public class MvcApplication : NinjectHttpApplication
|
|
{
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
public static void RegisterRoutes(RouteCollection routes)
|
|
{
|
|
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
|
|
routes.IgnoreRoute("{*robotstxt}", new { robotstxt = @"(.*/)?robots.txt(/.*)?" });
|
|
routes.IgnoreRoute("{*favicon}", new { favicon = @"(.*/)?favicon.ico(/.*)?" });
|
|
|
|
|
|
routes.MapRoute(
|
|
"Default", // Route name
|
|
"{controller}/{action}/{id}", // URL with parameters
|
|
new { controller = "Series", action = "Index", id = UrlParameter.Optional } // Parameter defaults
|
|
);
|
|
}
|
|
|
|
protected override void OnApplicationStarted()
|
|
{
|
|
base.OnApplicationStarted();
|
|
RegisterRoutes(RouteTable.Routes);
|
|
AreaRegistration.RegisterAllAreas();
|
|
|
|
var razor = ViewEngines.Engines.Single(e => e is RazorViewEngine);
|
|
ViewEngines.Engines.Clear();
|
|
ViewEngines.Engines.Add(razor);
|
|
|
|
RegisterGlobalFilters(GlobalFilters.Filters);
|
|
|
|
Logger.Info("Fully initialized and ready.");
|
|
}
|
|
|
|
protected override IKernel CreateKernel()
|
|
{
|
|
LogManager.Configuration = new XmlLoggingConfiguration(new EnviromentProvider().GetNlogConfigPath(), false);
|
|
|
|
LogConfiguration.RegisterUdpLogger();
|
|
LogConfiguration.RegisterExceptioneer();
|
|
LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Web.MvcApplication");
|
|
LogConfiguration.RegisterConsoleLogger(LogLevel.Info, "NzbDrone.Core.CentralDispatch");
|
|
|
|
|
|
var dispatch = new CentralDispatch();
|
|
Logger.Info("NzbDrone Starting up.");
|
|
|
|
dispatch.DedicateToHost();
|
|
|
|
dispatch.Kernel.Load(Assembly.GetExecutingAssembly());
|
|
return dispatch.Kernel;
|
|
}
|
|
|
|
|
|
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
|
|
{
|
|
filters.Add(new HandleErrorAttribute());
|
|
}
|
|
|
|
// ReSharper disable InconsistentNaming
|
|
protected void Application_Error(object sender, EventArgs e)
|
|
{
|
|
var lastError = Server.GetLastError();
|
|
|
|
if (lastError is HttpException && lastError.InnerException == null)
|
|
{
|
|
Logger.WarnException(String.Format("{0}. URL[{1}]", lastError.Message, Request.Path), lastError);
|
|
return;
|
|
}
|
|
|
|
Logger.FatalException(lastError.Message + Environment.NewLine + Request.Url.PathAndQuery, lastError);
|
|
|
|
if (lastError is DbException)
|
|
{
|
|
Logger.Warn("Restarting application");
|
|
HttpRuntime.UnloadAppDomain();
|
|
}
|
|
}
|
|
|
|
protected void Application_BeginRequest()
|
|
{
|
|
Thread.CurrentThread.Name = "WEB_THREAD";
|
|
}
|
|
|
|
protected void Application_EndRequest()
|
|
{
|
|
}
|
|
}
|
|
} |