nitc :: APICommand
nitc :: APICommand :: command
Return the doc command to apply for selfnitc :: APICommand :: defaultinit
nitc $ APICommand :: SELF
Type of this instance, automatically specialized in every classpopcorn :: Handler :: _body_type
popcorn :: Handler :: _validator
Validator used to check body inputpopcorn :: Handler :: body_type=
core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
nitc :: APICommand :: command
Return the doc command to apply for selfpopcorn :: Handler :: defaultinit
nitc :: APIHandler :: defaultinit
core :: Object :: defaultinit
nitc :: APICommand :: defaultinit
popcorn :: Handler :: deserialize_body
Deserialize the request bodynitc :: APIHandler :: find_mentity
Find the MEntitywith
full_name`.
all(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.
nitc :: APIHandler :: mentity_from_uri
Try to load the mentity from uri with/:id
.
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).nitc :: APIHandler :: paginate
Paginate a json arraypopcorn :: Handler :: validate_body
Validate body input withvalidator
popcorn :: Handler :: validator
Validator used to check body inputpopcorn :: Handler :: validator=
Validator used to check body inputnitc :: APICatalogContributing
Get the list of mpackages contributed by a personnitc :: APIEntityLinearization
Linearize super definitions of a MClassDef or a MPropDef if any.nitc :: APIIniContribFileContent
Get the package contrib file contentnitc :: APIIniLicenseFileContent
Get the package license file content
# An API Handler that use a DocCommand to respond
abstract class APICommand
super APIHandler
# Return the doc command to apply for self
fun command: DocCommand is abstract
redef fun get(req, res) do
var command = self.command
var status = command.http_init(req)
if status isa CmdError then
res.api_error(status.http_status_code, status.to_s)
return
end
res.api_json(req, command.to_json)
end
end
src/doc/api/api_model.nit:66,1--82,3