Nenhum dos exemplos acima funcionou para minhas necessidades pessoais. A seguir, é o que acabei fazendo.
public class ContainsConstraint : IHttpRouteConstraint
{
public string[] array { get; set; }
public bool match { get; set; }
/// <summary>
/// Check if param contains any of values listed in array.
/// </summary>
/// <param name="param">The param to test.</param>
/// <param name="array">The items to compare against.</param>
/// <param name="match">Whether we are matching or NOT matching.</param>
public ContainsConstraint(string[] array, bool match)
{
this.array = array;
this.match = match;
}
public bool Match(System.Net.Http.HttpRequestMessage request, IHttpRoute route, string parameterName, IDictionary<string, object> values, HttpRouteDirection routeDirection)
{
if (values == null) // shouldn't ever hit this.
return true;
if (!values.ContainsKey(parameterName)) // make sure the parameter is there.
return true;
if (string.IsNullOrEmpty(values[parameterName].ToString())) // if the param key is empty in this case "action" add the method so it doesn't hit other methods like "GetStatus"
values[parameterName] = request.Method.ToString();
bool contains = array.Contains(values[parameterName]); // this is an extension but all we are doing here is check if string array contains value you can create exten like this or use LINQ or whatever u like.
if (contains == match) // checking if we want it to match or we don't want it to match
return true;
return false;
}
Para usar o acima em sua rota, use:
config.Routes.MapHttpRoute("Default", "{controller}/{action}/{id}", new { action = RouteParameter.Optional, id = RouteParameter.Optional}, new { action = new ContainsConstraint( new string[] { "GET", "PUT", "DELETE", "POST" }, true) });
O que acontece é o tipo de restrição de falhas no método, para que essa rota corresponda apenas aos métodos padrão GET, POST, PUT e DELETE. O "true" diz que queremos verificar se há uma correspondência dos itens na matriz. Se fosse falso, você estaria dizendo excluir aqueles no strVocê pode usar rotas acima deste método padrão, como:
config.Routes.MapHttpRoute("GetStatus", "{controller}/status/{status}", new { action = "GetStatus" });
No exemplo acima, ele está basicamente procurando o seguinte URL => http://www.domain.com/Account/Status/Active
ou algo parecido.
Além do exposto, não tenho certeza se ficaria louco demais. No final do dia, deve ser por recurso. Mas vejo a necessidade de mapear URLs amigáveis por vários motivos. Estou me sentindo bastante certo, à medida que a Web Api evolui, haverá algum tipo de provisão. Se tiver tempo vou construir uma solução mais permanente e postar.