Should be called before any use of the session.
import popcorn
var app = new App
app.use_before("/*", new SessionInit)
# ... other middlewares
app.listen("localhost", 3000)
popcorn :: SessionInit :: defaultinit
popcorn $ SessionInit :: SELF
Type of this instance, automatically specialized in every classpopcorn $ SessionInit :: all
Handler to all kind of HTTP request methods.core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
popcorn :: Handler :: defaultinit
popcorn :: SessionInit :: defaultinit
core :: Object :: defaultinit
popcorn :: Handler :: deserialize_body
Deserialize the request bodycore :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
core :: Object :: output_class_name
Display class name on stdout (debug only).popcorn :: Handler :: validate_body
Validate body input withvalidator
popcorn :: Handler :: validator
Validator used to check body inputpopcorn :: Handler :: validator=
Validator used to check body input
# Initialize session in request if non existent.
#
# Should be called before any use of the session.
# ~~~
# import popcorn
#
# var app = new App
# app.use_before("/*", new SessionInit)
# # ... other middlewares
# app.listen("localhost", 3000)
# ~~~
class SessionInit
super Handler
redef fun all(req, res) do if req.session == null then req.session = new Session
end
lib/popcorn/pop_sessions.nit:57,1--72,3