Requests
Requests
Introduction
The Request class is initialized when the server first starts and is modified on every request. This means that the Request class acts as a singleton and is not reinitialized on every request. This presents both pros and cons during developing Masonite. It's great to not have to worry about a new object being instantiated every time but the con is that some attributes need to be reset at the end of the request.
The Request class is loaded into the IOC container first so any Service Provider will have access to it. The IOC container allows all parts of the framework to be resolved by the IOC container and auto inject any dependencies they need.
Read more about the IOC container in the Service Container documentation.
Getting Started
The Request class is bound into the IOC container once when the server is first started. This takes the WSGI environment variables generated by your WSGI server as a parameter. Because of this, we reload the WSGI values on every request but the actual Request object does not change. In other words, the memory address of the Request object is always the same but the class attributes will change of every request. This is done already for you by the Masonite framework itself. This Request class is bound and initialized inside the AppProvider
Service Provider. We grab this request object by simply passing in Request
into the parameters of anything resolved by the Service Container such as middleware, drivers and controller methods like so:
Masonite is smart enough to know that we need the Request
class and it will inject it into our method for us.
Helper Function
Masonite ships with a HelpersProvider
Service Provider which adds several helper functions. One of these helper functions is the request()
function. This function will return the request object. Because of this, these two pieces of code are identical:
Notice we didn't import anything at the top of our file and also didn't retrieve any objects from the IOC container. Masonite helper functions act just like any other built in Python function.
Read more about helper functions in the Helper Functions documentation.
Usage
The Request
has several helper methods attached to it in order to interact with various aspects of the request.
In order to get the current request input variables such as the form data during a POST
request or the query string during a GET
request looks like:
There is no difference between any HTTP methods (GET, POST, PUT, etc) when it comes to getting input data. They are all retrieved through this .input()
method so there is no need to make a distinction if the request is GET
or POST
Input Data
We can get all the request input variables such as input data from a form request or GET data from a query string. Note that it does not matter what HTTP method you are using, the input method will know what input data to get dependent on the current HTTP method (GET
, POST
, PUT
, etc)
This will return all the available request input variables for that request as a dictionary.
This method will get all of the request input variables to include any internal framework variables completely handled internally such as __token and __method. You can exclude them by passing in False into the method or specifying it explicitly:
To get a specific input:
Query Strings
Sometimes you want to only get the query strings or access the query strings. These can be times where you are posting to POST: /dashboard?firstname=Joe
and want to access both the POST input AND the URL query strings.
You can do so simply:
There may be times you have multiple parameters you need to fetch. By default Masonite will only fetch the first one but you may have an example like this:
You may also get all the query params:
Input Cleaning
Input data will be cleaned of HTML tags and other security measures. This may cause unwanted return values if you are expecting something like a JSON string. If you want to opt to not clean the input you can specify that as a keyword argument:
Quotes
By default, Masonite will clean quotes in order to sanitize the input. If you would to preserve quotes you can set whether you would like quotes to be cleaned. A value of False
will keep the quotes:
To check if some request input data exists:
Getting Dictionary Input
If your input is a dictionary you have two choices how you want to access the dictionary. You can either access it normally:
Or you can use dot notation to fetch the value for simplicity:
You can also use a * wildcard to get all values from a dictionary list. Take this code example:
You may also use list indexes to fetch data:
Only
You can only get a certain set of parameters if you have a need to do so. This can be used like:
Without
We can specify a set of parameters to exclude from the inputs returned. For example:
Notice it returned everything besides lastname
.
URL Parameters
To get the request parameter retrieved from the url. This is used to get variables inside: /dashboard/@firstname
for example.
JSON Payloads
Sometimes you may want to handle incoming JSON requests. This could be form external API's like Github.
Masonite will detect that an incoming request is a JSON request and put the cast the JSON to a dictionary and load it into the payload request input. For example if you have an incoming request of:
Then we can fetch this input in a controller using the normal input()
method like so:
Cookies
You may also set a cookie in the browser. The below code will set a cookie named key
to the value of value
.
By default, all cookies are encrypted with your secret key which is generated in your .env
file when you installed Masonite. This is a security measure to ensure malicious Javascript code cannot fetch cookies if they are somehow retrieved. All cookies are set with the HTTP_ONLY flag meaning that Javascript cannot read them although you can turn this off using a parameter.
Creating
Not Encrypting
If you choose to not encrypt your values and create cookies with the plain text value then you can pass a third value of True
or False
. You can also be more explicit if you like:
Expirations
All cookies are set as session cookies. This means that when the user closes out the browser completely, all cookies will be deleted.
This will set a cookie thats expires 5 minutes from the current time.
HttpOnly
Again, as a security measure, all cookies automatically are set with the HttpOnly
flag which makes it unavailable to any Javascript code. You can turn this off:
This will now allow Javascript to read the cookie.
Secure
You can set secure cookies in by setting the SECURE_COOKIES
environment variable to True
Reading
You can get all the cookies set from the browser
You can get a specific cookie set from the browser
Again, all cookies are encrypted by default so if you set a cookie with encryption then this method will decrypt the cookie. If you set a cookie in plain text then you should pass the False
as the second parameter here to tell Masonite not to decrypt your plain text cookie value.:
This will return the plain text version of the cookie.
If Masonite attempts to decrypt a cookie but cannot then Masonite will assume that the secret key that encrypted it was changed or the cookie has been tampered with and will delete the cookie completely.
If your secret key has been compromised then you may change the key at anytime and all cookies set on your server will be removed.
Deleting
You may also delete a cookie. This will remove it from the browser.
User
You can also get the current user from the request. This requires the LoadUserMiddleware
middleware which is in Masonite by default. This will return an instance of the current user.
Routes
You can also get a route URL via the route name. Let's say we have a route like this:
We can get the URL from the route name like so:
Route Parsing
if we have route parameters like this:
then we can pass in a dictionary:
You may also pass a list if that makes more sense to you:
This will inject that value for each parameter in order. For example if we have this route:
then we can use:
Contains
We can also check if a route contains a specific pattern:
You can also use this in a template and pass in a show
parameter to return a string instead. This is useful if you want to show active status classes depending on the current route:
Current URL
We can get the current url with:
Redirection
You can specify a url to redirect to
If the url contains http
than the route will redirect to the external website
You can redirect to a named route
You can also use the name parameter on the redirect method:
You can also redirect to a specific controller. This will find the URL that is attached to the controller method
Sometimes your routes may require parameters passed to it such as redirecting to a route that has a url like: /url/@firstname:string/@lastname:string
.
Redirecting to a named route with URL parameters:
Redirecting to a url in your application with URL parameters:
Form Back Redirection
Masonite will check for a __back
input and redirect to that route. We can specify one using the back()
view helper function:
By default the back
helper will return the current path so you can easily go back to the previous page after the form is submitted.
You can also specify a path to go back to:
Redirecting Back
After submitting the form you can redirect back to wherever the back
template method was pointing to using the back()
method:
This will also flash the current inputs to the session. You can then get the inputs using the {{ old('key') }}
template helper:
Redirecting Back To Intended Routes
There are times where you want your user to visit a page where they must be logged in. You may have a check in your controller to redirect a user to the login page if they are not authenticated. You may easily redirect them back to the intended page after they login.
To activate the intended route you simply need to append .then_back()
after the redirection. For example you may have this:
Assume the current URL is /dashboard
When you go to your login page you'll need to have the normal {{ back() }}
form helper:
In your LoginController
(or wherever this form submits to) you simply need to use the redirect_intended
method on the request class:
This will redirect to the /dashboard
route (because that was the intended route). If no route is intended then it will simply redirect to the default you specify (which is /home
).
Redirecting Back With Errors
You can redirect back with validation error message or redirect back with input value:
Redirecting Back With Success
You can redirect back with success message:
You can also simply use the base helper with_flash(key, value)
to redirect with other session data.
Redirecting Back With Inputs
When redirecting back there are times where you will also want to flash the inputs to the session. With this you can simply use the back()
method but if you want a bit more control you can use the with_input()
method.
You can then get the inputs using the {{ old('key') }}
template helper:
Default Back URL
We can also specify a default route just in case a form submitted does not specify one using a form helper:
This will check for the __back
input and if it doesn't exist it will use this default route. This is the same as a redirect if you don't use the back()
helper.
Encryption Key
You can load a specific secret key into the request by using:
This will load a secret key into the request which will be used for encryptions purposes throughout your Masonite project.
Note that by default, the secret key is pulled from your configuration file so you do NOT need to supply a secret key, but the option is there if you need to change it for testing and development purposes.
Headers
You can also get and set any headers that the request has.
NOTE that any headers set on the request class will be attached on the request class and will not return on the response. If you would like to see how to set response headers please see the Response documentation
You can get all WSGI information by printing:
This will print the environment setup by the WSGI server. Use this for development or debugging purposes.
You can also get a specific header:
This will return whatever the HTTP_AUTHORIZATION
header is if one exists. If that does not exist then the AUTHORIZATION
header will be returned. If that does not exist then None
will be returned.
Fetching headers is not case sensitive. This will match any variation of AUTHORIZATION
or Authorization
or authorization
headers.
Get Request Method Type
You can get the request method simply:
Changing Request Methods in Forms and URLs
Typically, forms only have support for GET
and POST
. You may want to change what HTTP method is used when submitting a form such as PATCH
.
This will look like:
or you can optionally use a helper method:
When the form is submitted, it will process as a PATCH request instead of a POST request.
This will allow this form to hit a route like this:
You can also specify the request method in the query string of the url to change it on a link:
This link will use the same route as above.
Changing the request method on a link from the default GET
method should be done with caution. It can be useful while testing, but is not typically recommended. Adding rel="nofollow"
may prevent search engines from following the link and causing data corruption.
Request Information
You can get information related to the request like the scheme, domain and other attribute by accessing them right from the request class:
Getting Domain Information
You can get different parts of the domain using the below methods:
Path Information
You can easily get the current path and query string information:
Validation
There is a convenient helper method you can use the validate the request. You can import the Validator
class and use validation like so:
Last updated