Skip to content
Permalink
005c1b1eca
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
66 lines (53 sloc) 5.58 KB

LuCI provides some of its libraries to external applications through a JSON-RPC API. This Howto shows how to use it and provides information about available functions.

Basics

LuCI comes with an efficient JSON De-/Encoder together with a JSON-RPC-Server which implements the JSON-RPC 1.0_' and 2.0 (partly) specifications. The LuCI JSON-RPC server offers several independent APIs. Therefore you have to use '_different URLs for every exported library. Assuming your LuCI-Installation can be reached through /cgi-bin/luci_' any exported library can be reached via '''/cgi-bin/luci/rpc/''LIBRARY_.

Authentication

Most exported libraries will require a valid authentication to be called with. If you get an HTTP 403 Forbidden_' status code you are probably missing a valid authentication token. To get such a token you have to call the function '''login''' of the RPC-Library '''auth'''. Following our example from above this login function would be provided at '_/cgi-bin/luci/rpc/auth. The function accepts 2 parameters: username and password (of a valid user account on the host system) and returns an authentication token.

If you want to call any exported library which requires an authentication token you have to append it as an URL parameter auth''''' to the RPC-Server URL. So instead of calling '''/cgi-bin/luci/rpc/''LIBRARY''''' you have to call '''/cgi-bin/luci/rpc/''LIBRARY''?auth=''TOKEN.

If your JSON-RPC client is Cookie-aware (like most browsers are) you will receive the authentication token also with a session cookie and probably don't have to append it to the RPC-Server URL.

Exported Libraries

uci

The UCI-Library /rpc/uci offers functionality to interact with the Universal Configuration Interface. Exported Functions:

uvl

The UVL-Library /rpc/uvl offers functionality to validate UCI files and get schemes describing UCI files. Exported Functions:

fs

The Filesystem library /rpc/fs offers functionality to interact with the filesystem on the host machine. Exported Functions:

  • Complete luci.fs library Note: All functions are exported as they are except for readfile'' which encodes its return value in base64 and ''writefile'' which only accepts base64 encoded data as second argument. Note that both functions will only be available when the ''luasocket packet is installed on the hostsystem.

sys

The System library /rpc/sys offers functionality to interact with the operating system on the host machine. Exported Functions:

ipkg

The IPKG library /rpc/ipkg offers functionality to interact with the package manager (IPKG or OPKG) on the host machine. Exported Functions: