Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to map a 1 or 0 in an ASP.Net MVC route segment into a Boolean action method input parameter

We have some PHP and Javascript apps that call into some ASP.NET MVC endpoints. Let's say we have this endpoint:

public ActionResult DoSomething(bool flag)
{

}

I want it to match the value for flag whether I pass in an integer of 1 or 0, or pass in a string of "true" or "false". What part of the framework do I need to implement in order to match that up?

like image 655
Micah Avatar asked Feb 22 '13 15:02

Micah


People also ask

Can we map multiple URLs to the same action in MVC?

Yes, We can use multiple URLs to the same action with the use of a routing table. foreach(string url in urls)routes. MapRoute("RouteName-" + url, url, new { controller = "Page", action = "Index" });

Which is the correct default route mapping within MVC?

The Default route maps the first segment of a URL to a controller name, the second segment of a URL to a controller action, and the third segment to a parameter named id. The Default route maps this URL to the following parameters: controller = Home. action = Index.

How you can define a route in ASP.NET MVC?

Routing in ASP.NET MVC cs file in App_Start Folder, You can define Routes in that file, By default route is: Home controller - Index Method. routes. MapRoute has attributes like name, url and defaults like controller name, action and id (optional).

How routing is done in the MVC pattern?

In MVC, routing is a process of mapping the browser request to the controller action and return response back. Each MVC application has default routing for the default HomeController. We can set custom routing for newly created controller. The RouteConfig.


1 Answers

The best way to do this is using a custom value provider. While you can do this using a complete custom model binder, that is overkill based on your requirements, and it is much easier simply to implement a custom value provider.

For some guidance on when you use a custom model binder and when to use a custom value provider, see here and here.

You can just create a custom value provider to handle route values having a key of "flag" and handle the int to bool conversion in the value provider. The code to do this looks something like this:

public class IntToBoolValueProvider : IValueProvider
{
    public IntToBoolValueProvider(ControllerContext context)
    {
        if (context == null)
            throw new ArgumentNullException("context");

        this._context = context;
    }
    public bool ContainsPrefix(string prefix)
    {
        return prefix.ToLower().IndexOf("flag") > -1;
    }
    public ValueProviderResult GetValue(string key)
    {
        if (ContainsPrefix(key))
        {
            int value = 0;
            int.TryParse(_context.RouteData.Values[key].ToString(), out value);
            bool result = value > 0;
            return new ValueProviderResult(result, result.ToString(), CultureInfo.InvariantCulture);
        }
        else
        {
            return null;
        }
    }
    ControllerContext _context;
}

public class IntToBoolValueProviderFactory : ValueProviderFactory
{
    public override IValueProvider GetValueProvider(ControllerContext controllerContext)
    {
        return new IntToBoolValueProvider(controllerContext);
    }
}

In the value provider, you implement the ContainsPrefix method to return true for the route value keys you are interested in, in this case the key "flag". In the GetValue flag, you convert the value of the "flag" route data entry to an int, and then to a boolean, depending if the int is greater than zero. For all other route data keys that are not "flag", you just return null, which tells the MVC framework to ignore this ValueProvider and move on to other value providers.

To wire this up, you need to implement a subclass of ValueProviderFactory which creates the custom IntToBoolValueProvider provider. Also, you need to register this factory with the MVC framework. You do this in global.asax using the static ValueProviderFactories class:

protected void Application_Start()
{
    ValueProviderFactories.Factories.Insert(0, new IntToBoolValueProviderFactory());
}

If you then have a route set up as follows:

routes.MapRoute("", "{controller}/foo/{flag}", new { action = "Foo" });

this route will direct requests to

http://localhost:60286/Home/Foo/{flag}

to the action method

    public ActionResult Foo(bool flag)
    {
        //Implement action method
        return View("Index");
    }

When the {flag} segment is greater than 0, the bool flag input parameter will be true, and when it is zero, the flag parameter will be false.

More on MVC custom value providers can be found here.

like image 82
Joe Alfano Avatar answered Oct 19 '22 19:10

Joe Alfano