Asp.Net Web Api и Autofac с проблемой атрибута Custom Authorization (внедрение свойства)
Я использую Autofac, чтобы внедрить все мои зависимости проекта, который работает отлично. Теперь я добавил атрибут Custom Authorization (мне не нужны очень сложные функции, такие как OWIN и Identity). Настраиваемый атрибут авторизации зависит от уровня данных, и поэтому я пытаюсь внедрить его как внедрение свойства. Однако свойство всегда имеет значение Null. Код ниже:
public class CustomAuthorizationFilterAttribute : AuthorizeAttribute, IAutofacAuthorizationFilter
{
public IAuthorisationHelper AuthorisationHelper { get; set; }
public override void OnAuthorization(HttpActionContext actionContext)
{
**... removed for brevity**
**// TODO: this should be injected by autofac and is always null??**
if (AuthorisationHelper.IsValidUser(username, password, out roleOfUser))
{
var principal =
new GenericPrincipal((new GenericIdentity(username)),
(new[] { roleOfUser }));
Thread.CurrentPrincipal = principal;
return;
}
... removed for brevity
}
}
Код, который внедряет AuthorizationHelper:
public static IContainer Container()
{
var builder = new ContainerBuilder();
var assemblies = new List<Assembly>();
assemblies.Add(Assembly.Load("Kids.Math.Interfaces"));
assemblies.Add(Assembly.Load("Kids.Math.Data"));
assemblies.Add(Assembly.Load("Kids.Math.Business"));
assemblies.Add(Assembly.Load("Kids.Math.ImportExport"));
assemblies.Add(Assembly.Load("Kids.Math.Common"));
assemblies.Add(Assembly.Load("Kids.Math.Api"));
builder.RegisterAssemblyTypes(assemblies.ToArray()).
AsImplementedInterfaces();
builder.RegisterType(typeof(MathContext)).As(typeof (DbContext)).InstancePerRequest();
// Register web API controllers.
builder.RegisterApiControllers(Assembly.GetExecutingAssembly());
// TODO: this is not working, also this should be generic to register it for all controllers
// inject the authorisation filter
builder.RegisterType<AuthorisationHelper>().As<IAuthorisationHelper>();
builder.Register(c => new CustomAuthorizationFilterAttribute()).PropertiesAutowired()
.AsWebApiAuthorizationFilterFor<QuestionsImportController>()
.InstancePerRequest();
// Set the dependency resolver to be Autofac.
var container = builder.Build();
return container;
}
Атрибут зарегистрирован в FilterConfig как filters.Add(new CustomAuthorizationFilterAttribute());
Вся проводка работает, но AuthorisationHelper всегда имеет значение null.
Любые комментарии будут оценены.
2 ответа
Похоже, это известная ошибка в autofac:
Вы не пропустили некоторые шаги регистрации ключа здесь? Обратитесь к Autofac Doco
// OPTIONAL: Register the Autofac filter provider.
builder.RegisterWebApiFilterProvider(config);
// Set the dependency resolver to be Autofac.
var container = builder.Build();
config.DependencyResolver = new AutofacWebApiDependencyResolver(container);
РЕДАКТИРОВАТЬ: После того, как вам сказали, что конфигурация была настроена правильно, вы пытались зарегистрировать свой фильтр, как это?
builder.RegisterType<CustomAuthorizationFilterAttribute>().PropertiesAutowired()
.AsWebApiAuthorizationFilterFor<QuestionsImportController>()
.InstancePerRequest();