popcorn :: TrackerHandler :: _config
Config used to access tracker dbpopcorn :: TrackerHandler :: config=
Config used to access tracker dbpopcorn :: TrackerHandler :: defaultinit
popcorn :: TrackerHandler :: limit
Get thelimit
GET argument from req
popcorn $ TrackerHandler :: SELF
Type of this instance, automatically specialized in every classpopcorn :: Handler :: _body_type
popcorn :: TrackerHandler :: _config
Config used to access tracker dbpopcorn :: Handler :: _validator
Validator used to check body inputpopcorn :: Handler :: body_type=
core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
popcorn :: TrackerHandler :: config=
Config used to access tracker dbcore :: Object :: defaultinit
popcorn :: Handler :: defaultinit
popcorn :: TrackerHandler :: defaultinit
popcorn :: Handler :: deserialize_body
Deserialize the request bodyall(req, res)
if route
matches uri
.
core :: 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.
popcorn :: TrackerHandler :: limit
Get thelimit
GET argument from req
core :: Object :: native_class_name
The class name of the object in CString format.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
# Base tracker handler
abstract class TrackerHandler
super Handler
# Config used to access tracker db
var config: AppConfig
# Get the `limit` GET argument from `req`
#
# Return `10` by default.
fun limit(req: HttpRequest): Int do return req.int_arg("limit") or else 10
end
lib/popcorn/pop_tracker.nit:78,1--89,3