Serves the collected data in JSON format.
popcorn :: PopTrackerAPI :: config=
Config used to access tracker dbpopcorn :: PopTrackerAPI :: defaultinit
popcorn $ PopTrackerAPI :: SELF
Type of this instance, automatically specialized in every classpopcorn $ PopTrackerAPI :: init
popcorn :: Handler :: _body_type
popcorn :: Router :: _post_handlers
List of handlers to match after every other.popcorn :: Router :: _pre_handlers
List of handlers to match before every other.popcorn :: Handler :: _validator
Validator used to check body inputpopcorn :: Handler :: body_type=
popcorn :: Router :: build_route
core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
popcorn :: PopTrackerAPI :: config=
Config used to access tracker dbpopcorn :: PopTrackerAPI :: defaultinit
popcorn :: Handler :: defaultinit
popcorn :: Router :: defaultinit
core :: Object :: defaultinit
popcorn :: Handler :: deserialize_body
Deserialize the request bodyall(req, res)
if route
matches uri
.
popcorn :: Router :: handle_post
popcorn :: Router :: handle_pre
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.
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 :: Router :: post_handlers
List of handlers to match after every other.popcorn :: Router :: post_handlers=
List of handlers to match after every other.popcorn :: Router :: pre_handlers
List of handlers to match before every other.popcorn :: Router :: pre_handlers=
List of handlers to match before every other.popcorn :: Router :: use_before
Register a pre-handler for a routepath
.
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
# JSON API of the PopTracker
#
# Serves the collected data in JSON format.
class PopTrackerAPI
super Router
# Config used to access tracker db
var config: AppConfig
init do
use("/entries", new PopTrackerEntries(config))
use("/queries", new PopTrackerQueries(config))
use("/browsers", new PopTrackerBrowsers(config))
use("/times", new PopTrackerResponseTime(config))
end
end
lib/popcorn/pop_tracker.nit:61,1--76,3