Session Middleware
Last updated
Was this helpful?
Last updated
Was this helpful?
Mandarine contains a Session Core (Part of Mandarine Security Module) that allows your web-application to make use of the concept of sessions.
Sessions are states (in variables) that can be distributed across your web-application and they contain information that can be updated at request-time.
Sessions are unique per requester, it is a way to tell your web server who is requesting your endpoints.
Some use cases that may help you understand what a session is are: They can store the user Id of someone, and then that user Id can be used across your web-application to retrieve the information of the user in different pages.
Mandarine Session Cookie
A encrypted cookie that is created at request-time. This cookie contains a signature to verify that the it has not been manipulated & contains the session id that will be used to retrieve the information of the session.
A request is made to an endpoint by someone.
Before the request gets to the & , it is intercepted by the session middleware
The session middleware verifies that the request contains a mandarine session cookie
If the request does not contain a mandarine session cookie, then a new cookie is created along with a new session. Otherwise, the mandarine session cookie works as the key for the Mandarine Session Container & the current session is retrieved.
After the session is retrieved or created, three variables are injected in the request context (request object)
request.sessionContext: Contains all the information about the session.
request.sessionID: Contains the key of the session (UUID).
request.session: Contains the data that the session holds.
When information is added/removed to this object, the session container receives a signal that the current session context must be updated.
After the session variables are injected in the request, the session is ready to be used in the and/or the .
After the HTTP handlers & post-request middleware are called, the session is then saved and its context is updated.
As described above, the session object is part of the request object when a request is made to an endpoint. The session object is accessible via the use of , by using the decorator @Session()
. Please, refer to the link in order to understand this concept.
For examples of this please and then click on @Session tab.