Следуя советам, которые мне дали в этой теме [шаблон Ninject UOW, новый ConnectionString после аутентификации пользователя Теперь я понимаю, что я не должен использовать следующую строку...
var applicationConfiguration =
(IApplicationConfiguration)
DependencyResolver.Current.GetService(typeof(IApplicationConfiguration));
... как локатор сервисов - это анти-шаблон.
Но в случае следующей процедуры, как я могу создать экземпляр моего конкретного объекта, который реализует " IApplicationConfiguration", чтобы я мог использовать этот объект для получения имени неизвестной роли пользователя или использовать его для назначения к свойству ApplicationConfiguration "моего принципа?
Global.asax
public class MvcApplication : NinjectHttpApplication
{
/// <summary>
/// Handles the PostAuthenticateRequest event of the Application control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
protected void Application_PostAuthenticateRequest(Object sender, EventArgs e)
{
String[] roles;
var applicationConfiguration =
(IApplicationConfiguration)
DependencyResolver.Current.GetService(typeof(IApplicationConfiguration));
var identity = HttpContext.Current.User.Identity;
if (Request.IsAuthenticated)
{
roles = Roles.GetRolesForUser(identity.Name);
}
else
{
roles = new[] { applicationConfiguration.UnknownUserRoleName };
}
var webIdentity = new WebIdentity(identity, roles);
var principal = new WebsitePrincipal(webIdentity)
{
ApplicationConfiguration = applicationConfiguration
};
HttpContext.Current.User = principal;
}
.
.
.
}
Код отображения соответствия
public class ApplicationConfigurationContractMapping : NinjectModule
{
public override void Load()
{
Bind<IApplicationConfiguration>()
.To<ApplicationConfiguration>();
}
}
ApplicationConfiguration
public class ApplicationConfiguration : IApplicationConfiguration
{
.
.
.
.
}
Я использую Ninject как свою инфраструктуру Injection Dependency. Любые предложения оценили.
EDIT: Полный код можно увидеть здесь: https://github.com/dibley1973/Dibware.Template.Presentation.Web