dbot/modules/api
2013-05-17 13:58:44 +00:00
..
api.js i think adding a this.pages breaks it 2013-05-17 13:58:44 +00:00
README.md help for api module [#352] 2013-05-17 09:59:25 +00:00

API

Creates external REST APIs for module API functions.

Description

This module uses the web module to expose module API functionality externally through a REST API. As it stands, its only really useful for viewing various information returned by API functions, as there is no system for API keys or anything like that to protect against misuse of functionality which modifies data.

To externalise an API function, two properties must be set on a particular API function, like so:

api['resolveUser'].external = true;
api['resolveUser'].extMap = [ 'server', 'nick', 'callback' ];

The first, external flag simply lets the API module know that this function is intended to be exposed externally - and functions will always be considered not to be externally available unless this flag is explicitly set.

The second is a mapping of parameters to the module. This should match the function prototype given when the function is declared (unfortunately these cant be mapped automatically because the closure use means we get native code returned and cant scan the function headers for the parameter names).

Then, to access this function remotely we can simply make a GET request to the web counterpart to the internal API function path. So, internally youd access the resolveUser function at dbot.api.users.resolveUser, we can get to it externally with /api/users/resolveUser - supplying parameters as they are named in the extMap.

The response to the API call will be given in the form of JSON:

{
    err: Error, such as 'API function not enabled for external access'
    data: API call response
}

If there is a callback parameter named in the extMap, then the API module automatically hijacks this parameter and uses the data its called with to supply the response to the API call with data. If there is no callback parameter, then its a blocking API request and the response will be the return value of the call.