Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I use Dependency Injection in a .Net Core ActionFilterAttribute?

AuthenticationRequiredAttribute Class

public class AuthenticationRequiredAttribute : ActionFilterAttribute {     ILoginTokenKeyApi _loginTokenKeyApi;     IMemoryCache _memoryCache;      public AuthenticationRequiredAttribute(IMemoryCache memoryCache)     {         _memoryCache = memoryCache;          _loginTokenKeyApi = new LoginTokenKeyController(new UnitOfWork());     }      public override void OnActionExecuting(ActionExecutingContext filterContext)     {         var memory = _memoryCache.Get(Constants.KEYNAME_FOR_AUTHENTICATED_PAGES);          string requestedPath = filterContext.HttpContext.Request.Path;          string tokenKey = filterContext.HttpContext.Session.GetString("TokenKey")?.ToString();          bool? isLoggedIn = _loginTokenKeyApi.IsLoggedInByTokenKey(tokenKey).Data;          if (isLoggedIn == null ||             !((bool)isLoggedIn) ||             !Constants.AUTHENTICATED_PAGES_FOR_NORMAL_USERS.Contains(requestedPath))         {             filterContext.Result = new JsonResult(new { HttpStatusCode.Unauthorized });         }     }     public override void OnActionExecuted(ActionExecutedContext filterContext)     {     } } 

HomeController

public class HomeController : Controller {     IUserApi _userApi;     ILoginTokenKeyApi _loginTokenKey;     IMemoryCache _memoryCache;      public HomeController(IUserApi userApi, ILoginTokenKeyApi loginTokenKey, IMemoryCache memoryCache)     {         _loginTokenKey = loginTokenKey;         _userApi = userApi;          _memoryCache = memoryCache;     }      [AuthenticationRequired] // There is AN ERROR !!     public IActionResult Example()     {         return View();     } } 

ERROR :

Error CS7036 There is no argument given that corresponds to the required formal parameter 'memoryCache' of 'AuthenticationRequiredAttribute.AuthenticationRequiredAttribute(IMemoryCache)' Project.Ground.WebUI

My problem is actually : I cant use dependency injection in attribute classes.

I want to use that attribute without any parameter. Is there any solution to solve it? I use dependency injection but it cant be used for attributes. How I can use it?

like image 245
canmustu Avatar asked Oct 09 '18 15:10

canmustu


People also ask

How can dependency injection be implemented in C#?

Using dependency injection, we modify the constructor of Runner to accept an interface ILogger, instead of a concrete object. We change the Logger class to implement ILogger. This allows us to pass an instance of the Logger class to the Runner's constructor.

How can we inject the service dependency into the controller in ASP.NET Core?

How can we inject the service dependency into the controller C# Asp.net Core? ASP.NET Core injects objects of dependency classes through constructor or method by using built-in IoC container. The built-in container is represented by IServiceProvider implementation that supports constructor injection by default.

How many types of dependency injection are there in ASP.NET Core?

NET Core provides three kinds of dependency injection, based in your lifetimes: Transient: services that will be created each time they are requested. Scoped: services that will be created once per client request (connection) Singleton: services that will be created only at the first time they are requested.


1 Answers

As per the documentation, you have a few options here:

If your filters have dependencies that you need to access from DI, there are several supported approaches. You can apply your filter to a class or action method using one of the following:

  • ServiceFilterAttribute
  • TypeFilterAttribute
  • IFilterFactory implemented on your attribute

ServiceFilter or TypeFilter attributes

If you just want to get this working quickly, you can just use one of the first two options to apply your filter to a controller or a controller action. When doing this, your filter does not need to be an attribute itself:

[TypeFilter(typeof(ExampleActionFilter))] public IActionResult Example()     => View(); 

The ExampleActionFilter can then just implement e.g. IAsyncActionFilter and you can directly depend on things using constructor injection:

public class ExampleActionFilter : IAsyncActionFilter {     private readonly IMemoryCache _memoryCache;     public ExampleActionFilter(IMemoryCache memoryCache)     {         _memoryCache = memoryCache;     }      public async Task OnActionExecutionAsync(ActionExecutingContext context, ActionExecutionDelegate next)     { … } } 

You can also use the [ServiceFilter] attribute instead to get the same effect but then you will also need to register your ExampleActionFilter with the dependency injection container in your Startup.

Filter factory

If you need more flexibility, you can implement your own filter factory. This allows you to write the factory code to create the actual filter instance yourself. A possible implementation for the above ExampleActionFilter could look like this:

[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public class ExampleActionFilterAttribute : Attribute, IFilterFactory {     public bool IsReusable => false;      public IFilterMetadata CreateInstance(IServiceProvider serviceProvider)     {         return serviceProvider.GetService<ExampleActionFilter>();     } } 

You can then use that [ExampleActionFilter] attribute to make the MVC framework create an instance of the ExampleActionFilter for you, using the DI container.

Note that this implementation is basically the same thing that ServiceFilterAttribute does. It’s just that implementing it yourself avoids having to use the ServiceFilterAttribute directly and allows you to have your own attribute.

Using service locator

Finally, there is another quick option that allows you to avoid constructor injection completely. This uses the service locator pattern to resolve services dynamically when your filter actually runs. So instead of injecting the dependency and using it directly, you retrieve it explicitly from the context:

public class ExampleActionFilter : ActionFilterAttribute {     public async Task OnActionExecutionAsync(ActionExecutingContext context, ActionExecutionDelegate next)     {         var memoryCache = context.HttpContext.RequestServices.GetService<IMemoryCache>();          // …     } } 
like image 97
poke Avatar answered Sep 21 '22 14:09

poke