2010-09-23 05:19:47 +02:00
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
using System.Web.Routing;
|
|
|
|
|
using Ninject;
|
|
|
|
|
using Ninject.Web.Mvc;
|
|
|
|
|
using NzbDrone.Core;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web
|
|
|
|
|
{
|
|
|
|
|
public class MvcApplication : NinjectHttpApplication
|
|
|
|
|
{
|
|
|
|
|
private StandardKernel _kernel;
|
|
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
{
|
2010-10-05 08:21:18 +02:00
|
|
|
|
CentralDispatch.ConfigureNlog();
|
2010-09-23 05:19:47 +02:00
|
|
|
|
AreaRegistration.RegisterAllAreas();
|
|
|
|
|
RegisterRoutes(RouteTable.Routes);
|
|
|
|
|
base.OnApplicationStarted();
|
2010-09-29 19:19:18 +02:00
|
|
|
|
}
|
2010-09-23 05:19:47 +02:00
|
|
|
|
|
|
|
|
|
protected override IKernel CreateKernel()
|
|
|
|
|
{
|
|
|
|
|
_kernel = new StandardKernel();
|
2010-10-05 08:21:18 +02:00
|
|
|
|
CentralDispatch.BindKernel(_kernel);
|
2010-09-23 05:19:47 +02:00
|
|
|
|
return _kernel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|