使用ASP.NET WebApi,如何使路由排除一组控制器?

时间:2014-10-16 15:47:25

标签: c# asp.net regex asp.net-mvc asp.net-web-api

我创建了两个用于导出类型模式和wadl的控制器,其他一切都是api的一部分

所以我创建了三个路由,两个用于特殊控制器(Schema和Wadl),另一个用于“其他所有”:

        config.Routes.MapHttpRoute(
            name: "Schemas",
            routeTemplate: "api/{controller}/{typeName}/{subType}",
            defaults: new { subtype = RouteParameter.Optional },
            constraints: new { controller = @"Schemas" }
        );

        config.Routes.MapHttpRoute(
            name: "Wadl",
            routeTemplate: "api/{controller}",
            defaults: null,
            constraints: new { controller = @"Wadl" }
        );

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

我尝试过以下页面:http://stephenwalther.com/archive/2008/08/07/asp-net-mvc-tip-30-create-custom-route-constraints

并在NotEquals班级创建了一个变体:

public class NotEqual : IRouteConstraint
{
    private IEnumerable<string> Matches;

    public NotEqual(IEnumerable<string> matches)
    {
        Matches = matches;
    }

    public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection)
    {
        bool output = true;
        var name = values[parameterName].ToString();
        foreach (var match in Matches)
        {
            if (name.Contains(match))
            {
                output = false;
                break;
            }
        }
        return output;
    }
}

并将第3条路线改为:

        config.Routes.MapHttpRoute(
            name: "api",
            routeTemplate: "api/{controller}/{id}",
            defaults: new { id = RouteParameter.Optional },
            constraints: new { controller = new NotEqual(new List<string> { "Schemas", "Wadl" }) }
        );

public class NotEqual : IRouteConstraint
{
    private IEnumerable<string> Matches;

    public NotEqual(IEnumerable<string> matches)
    {
        Matches = matches;
    }

    public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection)
    {
        bool output = true;
        var name = values[parameterName].ToString();
        foreach (var match in Matches)
        {
            if (name.Contains(match))
            {
                output = false;
                break;
            }
        }
        return output;
    }
}

不起作用,它仍适用于所有三个控制器

它可以在一条路线上正常工作,但自动帮助页面很难看并且误导。

如果我在Match暂停,它就不会达到断点。

正则表达式约束完美无缺,只有“其他一切”无法正常工作

为什么不起作用?

3 个答案:

答案 0 :(得分:3)

这是我自己的其他答案组合:

在Register()中有以下内容:

        config.Routes.MapHttpRoute(
            name: "default",
            routeTemplate: "api/{controller}/{id}",
            defaults: new { id = RouteParameter.Optional },
            constraints: new { controller = @"^(?:(?!Wadl|Schemas).)*$" }
        );

        config.MapHttpAttributeRoutes();
        <snip>
        config.EnsureInitialized();

这为您提供了控制器的默认路由,您可以通过添加更多|来排除它们对那里的正则表达式的陈述。

然后,要执行自定义路由而不必担心优先级,请按以下方式标记操作:

    [Route("schemas/{typeName}")]
    public XmlSchema GetSchema(string typeName) {}

    [Route("schemas/{typeName}/{subType}")]
    public XmlSchema GetSchema(string typeName, int subType)

这些控制器中没有标记的方法将没有路由到它们,就像它们是私有的一样。

    public string Test(int id)

答案 1 :(得分:1)

第二条路线比最后一条路线更通用,因为它在ID匹配之前注册了它。只需将第二个移到底部并构建应该工作的应用程序。对于约束,您可以使用类似new {id = @"\d+" }之类的内容,但这只适用于您在网址中使用不同类型数据的相同格式,例如api / myController / 123,api / myController /我的名字。等。

答案 2 :(得分:1)

老实说,如果可以的话,你应该使用AttributeRouting代码更清晰,对项目新手来说更容易看到什么路线达到什么目的。

http://www.asp.net/web-api/overview/web-api-routing-and-actions/attribute-routing-in-web-api-2