2011-02-10 04:39:59 +00:00
|
|
|
|
using System.Web.Mvc;
|
2011-02-09 03:50:45 +00:00
|
|
|
|
using System.Web.Routing;
|
2011-02-10 04:39:59 +00:00
|
|
|
|
using Microsoft.Practices.Unity;
|
|
|
|
|
using Portoa.Web;
|
2011-02-13 09:55:01 +00:00
|
|
|
|
using Portoa.Web.Models;
|
2011-02-10 04:39:59 +00:00
|
|
|
|
using Portoa.Web.Unity;
|
2011-02-12 23:53:43 +00:00
|
|
|
|
using UnityGenerics;
|
2011-02-10 04:39:59 +00:00
|
|
|
|
using VideoGameQuotes.Api;
|
|
|
|
|
using VideoGameQuotes.Api.Persistence;
|
|
|
|
|
using VideoGameQuotes.Web.Security;
|
2011-02-12 23:53:43 +00:00
|
|
|
|
using VideoGameQuotes.Web.Services;
|
2011-02-09 03:50:45 +00:00
|
|
|
|
|
|
|
|
|
namespace VideoGameQuotes.Web {
|
2011-02-13 09:55:01 +00:00
|
|
|
|
public class MvcApplication : MvcApplicationBase {
|
|
|
|
|
|
|
|
|
|
protected override void ConfigureModelBinders(ModelBinderDictionary binders) {
|
|
|
|
|
binders.Add<Region, FlagEnumModelBinder>();
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-10 04:39:59 +00:00
|
|
|
|
protected override void ConfigureUnity() {
|
|
|
|
|
Container
|
|
|
|
|
.AddNewExtension<ConfigureLog4Net>()
|
|
|
|
|
.Configure<ILog4NetConfigurator>()
|
2011-02-10 20:34:55 +00:00
|
|
|
|
.SetName("VideoGameQuotes.Web")
|
|
|
|
|
.UseXml();
|
2011-02-10 04:39:59 +00:00
|
|
|
|
|
|
|
|
|
Container
|
|
|
|
|
.AddNewExtension<LogAllMethodCalls>()
|
2011-02-10 21:04:13 +00:00
|
|
|
|
.RegisterType<ICurrentUserProvider, SessionBasedUserProvider>()
|
2011-02-12 23:53:43 +00:00
|
|
|
|
.RegisterType<IsValidUserAttribute>(new InjectionProperty<IsValidUserAttribute>(attr => attr.UserProvider))
|
2011-02-10 04:39:59 +00:00
|
|
|
|
.RegisterType<IUserService, UserService>()
|
2011-02-12 23:53:43 +00:00
|
|
|
|
.RegisterType<IQuoteService, QuoteService>()
|
2011-02-10 04:39:59 +00:00
|
|
|
|
.RegisterType<IUserRepository, UserRepository>();
|
|
|
|
|
}
|
2011-02-09 03:50:45 +00:00
|
|
|
|
|
2011-02-10 04:39:59 +00:00
|
|
|
|
protected override void RegisterRoutes(RouteCollection routes) {
|
2011-02-09 03:50:45 +00:00
|
|
|
|
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
|
2011-02-10 04:39:59 +00:00
|
|
|
|
routes.IgnoreRoute("media/{*anything}");
|
2011-02-09 03:50:45 +00:00
|
|
|
|
|
2011-02-14 19:19:15 +00:00
|
|
|
|
routes.MapRoute("home", "{action}", new { controller = "Home", action = "Index" }, new { action = "about|contact" });
|
2011-02-14 19:48:36 +00:00
|
|
|
|
routes.MapRoute("best", "best/{start}-{end}/", new { controller = "Quote", action = "Best" }, new { start = @"\d+", end = @"\d+" });
|
2011-02-14 19:19:15 +00:00
|
|
|
|
routes.MapRoute("quote", "{action}", new { controller = "Quote" }, new { action = "submit|search|recent|random|best" });
|
2011-02-14 07:39:45 +00:00
|
|
|
|
routes.MapRoute("individual-quote", "quote/{id}/{*text}", new { controller = "Quote", action = "Quote" }, new { id = @"\d+" });
|
2011-02-14 19:19:15 +00:00
|
|
|
|
routes.MapRoute("create-category", "category/create", new { controller = "Quote", action = "CreateCategory" });
|
|
|
|
|
|
2011-02-11 05:21:31 +00:00
|
|
|
|
routes.MapRoute("Default", "{controller}/{action}/{id}", new { controller = "Home", action = "Index", id = UrlParameter.Optional });
|
2011-02-09 03:50:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|