Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

How To Filter Laravel Routes With Regular Expressions

One thing Laravel is really great for is the ability to run over Regex rules on parameters before returning a view. This, of course, has many benefits, one of which is to stop unethical users from trying to submit, potentially dangerous data to the backend of your system.

In Laravel, you can apply regular expression queries to make sure the parameters submitted via HTTP requests have the right data within them. Chaining function calls to our standard routes can enable strict regex filtering and prevent unwanted URL requests. Learn how to apply regex patterns in the following sections.

So how do we do it?

The magical function that allows this excellence is ->where()

Let’s assume we have a Store website, it sells a variety of products that have their own relevant categories. The store allows a single string parameter to identify the category of the store. For example, mystore.com/store/toys

We know that this parameter needs to be a string and therefore, no numeric or special characters are allowed.

Let’s define our route to handle these rules

Route::get('/store/{category?}', 'StoreController@index')
     ->where('category', '[A-Za-z]+');
  • This specific route will now only render the view if the URL is something like – mystore.com/toys
  • If we tried mystore.com/store/toys+ or mystore.com/store/1234, Laravel will render the 404 page.
  • This is because the regex applied to the routes parameter will only match lowercase a through to z.

Now let’s enhance this route by allowing a product ID to be part of the URL too. So for example, mystore.com/store/toys/3

Route::get('/store/{category?}/{id?}', 'StoreController@index')
    ->where('category', '[a-z]+')
    ->where('id', '[0-9]+');
  • This enhanced route will now only render the view if the parameter for the category is alpha characters and the product ID is numeric like the example earlier – mystore.com/store/toys/3.
  • If we tried mystore.com/store/toys/33%%% or mystore.com/store/toys/12myProducts, Laravel will render the 404 page.
  • This is because, in addition to the category parameter rules, a regex is applied to the ID, making sure it is only numeric characters.

Summary

With these basic examples, you can see how you could apply a vast array of rules to parameters that are being submitted via URL’s. This removes the need to handle these pieces of data within your controller, keeping your controllers slim and clean. The examples shown in the above routes are only simple regex patterns, these could be expanded to your leisure and accept/deny all sorts of types of URL requests.

The post How To Filter Laravel Routes With Regular Expressions appeared first on Code Wall.



This post first appeared on Code Wall - Web Development & Programming, please read the originial post: here

Share the post

How To Filter Laravel Routes With Regular Expressions

×

Subscribe to Code Wall - Web Development & Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×