Custom route handlers in ASP.Net WebAPI

前端 未结 1 1282
悲哀的现实
悲哀的现实 2020-12-30 05:22

I\'m able to successfully register a custom route handler (deriving from IRouteHandler) inside global.asax.cs for a Web API route ala:

        routes.MapHttp         


        
相关标签:
1条回答
  • 2020-12-30 05:35

    You are very right. Self host returns IHttpRoute and takes HttpMessageHandler as a parameter. There seems no inbuilt way to specificity a route handler.

    Update: To be a bit clearer

    You should almost certainly have a go at using a HttpControllerSelector and implementing a custom one... An example being. http://netmvc.blogspot.co.uk/

    What follows is a bit of experimentation if the HttpControllerSelector is not sufficent for your requirements for what ever reason...

    But, as you can see the MapHttpRoute does have an overload for HttpMessageHandler so you can experiment with this... if the handler is NULL then it defaults to IHttpController but you can implement your own and use this to direct to the correct controller... The MVC framework appears to use [HttpControllerDispatcher] here, so borrowing some code you can place your own controller / route selection code here too - you have access to the route and selector and can swap it in and out yourself.

    This CustomHttpControllerDispatcher code is for DEMO only... look for the line

    //DO SOMETHING CUSTOM HERE TO PICK YOUR CONTROLLER

    And perhaps have a play with that...

    Example route:

            config.Routes.MapHttpRoute(
                name: "DefaultApi",
                routeTemplate: "api/{controller}/{id}",
                defaults: new { id = RouteParameter.Optional },
                constraints: null,
                handler: new CustomHttpControllerDispatcher(config)
            );
    

    Example CustomHttpControllerDispatcher:

    public class CustomHttpControllerDispatcher : HttpMessageHandler
    {
            private IHttpControllerSelector _controllerSelector;
            private readonly HttpConfiguration _configuration;
    
            public CustomHttpControllerDispatcher(HttpConfiguration configuration)
            {
                _configuration = configuration;
            }
    
            public HttpConfiguration Configuration
            {
                get { return _configuration; }
            }
    
            private IHttpControllerSelector ControllerSelector
            {
                get
                {
                    if (_controllerSelector == null)
                    {
                        _controllerSelector = _configuration.Services.GetHttpControllerSelector();
                    }
                    return _controllerSelector;
                }
            }
    
            protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
            {
                    return SendAsyncInternal(request, cancellationToken);
            }
    
            private Task<HttpResponseMessage> SendAsyncInternal(HttpRequestMessage request, CancellationToken cancellationToken)
            {
    
                IHttpRouteData routeData = request.GetRouteData();
                Contract.Assert(routeData != null);
    
                //DO SOMETHING CUSTOM HERE TO PICK YOUR CONTROLLER
                HttpControllerDescriptor httpControllerDescriptor = ControllerSelector.SelectController(request);
                IHttpController httpController = httpControllerDescriptor.CreateController(request);
    
                // Create context
                HttpControllerContext controllerContext = new HttpControllerContext(_configuration, routeData, request);
                controllerContext.Controller = httpController;
                controllerContext.ControllerDescriptor = httpControllerDescriptor;
    
                return httpController.ExecuteAsync(controllerContext, cancellationToken);
            }
    }
    
    0 讨论(0)
提交回复
热议问题