Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Route controller and action in middleware

I am trying to retrieve the controller and action, I have tried to this point by using

var routeData = context.GetRouteData();

inside the middleware's Invoke method, but it yields null every time.

Is it possible at all to retrieve route data in middleware?

What I am trying to achieve is to check whether the requested action has a [RequireToken] attribute, and if so, it will check the incoming headers for a specific token.

like image 447
az4dan Avatar asked Sep 05 '16 18:09

az4dan


1 Answers

The action/controller context is very specific to the MVC portion of the middleware pipeline. It is not possible to retrieve the Route Data outside of the MVC pipeline itself.

In order to achieve the desired behaviour, you should look at implementing an ActionFilter instead: https://docs.asp.net/en/latest/mvc/controllers/filters.html

like image 197
Sock Avatar answered Nov 01 '22 01:11

Sock