Tip of the day: Connthrottle will limit the damage from big drone attacks. Check if the flood thresholds and exceptions are OK for your network. |
JSON-RPC:Technical documentation
This is the technical documentation for JSON-RPC for developers and people who want to interact with UnrealIRCd via the JSON-RPC API. It assumes you have read and configured your UnrealIRCd according to the JSON-RPC article.
Below we explain the transports that are available (domain sockets, HTTPS POST and websockets), the JSON-RPC protocol and finally all the methods / API calls that are available.
Transport[edit]
UNIX domain socket[edit]
This is for local connections only. On the server side you have this:
listen { file "/home/xyz/unrealircd/data/rpc.socket"; options { rpc; } }
NOTE: UnrealIRCd 6.0.6+ has this listen block by default when rpc.modules.default.conf
is included.
Then simply connect to the socket and you can issue JSON-RPC requests directly. Example:
$ nc -U ~/unrealircd/data/rpc.sock {"jsonrpc": "2.0", "method": "channel.list", "params": {}, "id": 123} {"jsonrpc": "2.0", "method": "channel.list", "id": 123, "response": {"list": []}}
There is no authentication being done, as only local users can use this and the socket is only readable/writable by the user running UnrealIRCd by default (rwx------).
You can issue multiple requests (even in parallel, no need to wait for the response). The connection is not closed. The connection is only closed if some fatal JSON parsing error is encountered such as a missing }
. Normally that should never happen. Other errors such as an unknown method being called, invalid parameter count, etc. are not fatal.
HTTPS POST[edit]
On the server side this requires you to open up a port (Listen block) and add at least one api user (Rpc-user block):
listen { ip *; port 8000; options { rpc; } } rpc-user apiuser { match { ip 192.168.*; } password "password"; }
Then do a POST
request to /api
with the JSON request. You must do this over https
.
Example:
curl -s --insecure -X POST -d '{"jsonrpc": "2.0", "method": "channel.list", "params": {}, "id": 123}' https://apiuser:password@127.0.0.1:8000/api
The connection is closed after processing the request. If you want to issue another API call then do a new HTTPS POST. If you want streaming requests/responses, use HTTPS Websocket (see next section).
HTTPS Websocket[edit]
On the server side the config is the same as for HTTPS POST. You open up a port (Listen block) and add at least one api user (Rpc-user block):
listen { ip *; port 8000; options { rpc; } } rpc-user apiuser { match { ip 192.168.*; } password "password"; }
Make a HTTPS websocket connection (not HTTP!) and then you can send JSON requests. Eg:
{"jsonrpc": "2.0", "method": "channel.list", "params": {}, "id": 123}
The connection is kept open so you can issue more JSON-RPC requests. You may also send multiple requests in parallel, you don't have to wait for a response. The connection is only closed upon:
- A fatal error, such as a JSON parsing error. Obviously this should never happen.
- When the client does not respond to a websocket PING in time (as required by the websocket specification). Note that browsers automatically PONG back upon PING, so you don't have to worry about it there.
JSON-RPC Protocol[edit]
The JSON request/responses that UnrealIRCd uses follow the JSON-RPC 2.0 specification.
Request[edit]
This is an example query. It calls the channel.list
method with empty parameters:
{"jsonrpc": "2.0", "method": "channel.list", "params": {}, "id": 123}
Response[edit]
If succesful, UnrealIRCd will reply with a response object. Here's an example if there are 0 channels:
{"jsonrpc": "2.0", "method": "channel.list", "id": 123, "response": {"list": []}}
The response will naturally be different for each method. And as you can see, the id
is included so the client application can track request/responses.
Error[edit]
A request may also result in an error instead of a response object. Here's an example error object that UnrealIRCd may send:
{"jsonrpc": "2.0", "method": "qwerty", "id": 123, "error": {"code": -32601, "message": "Unsupported method"}}
Error codes:
// Official JSON-RPC error codes: JSON_RPC_ERROR_PARSE_ERROR = -32700, /**< JSON parse error (fatal) */ JSON_RPC_ERROR_INVALID_REQUEST = -32600, /**< Invalid JSON-RPC Request */ JSON_RPC_ERROR_METHOD_NOT_FOUND = -32601, /**< Method not found */ JSON_RPC_ERROR_INVALID_PARAMS = -32602, /**< Method parameters invalid */ JSON_RPC_ERROR_INTERNAL_ERROR = -32603, /**< Internal server error */ // UnrealIRCd JSON-RPC server specific error codes: JSON_RPC_ERROR_API_CALL_DENIED = -32000, /**< The api user does not have enough permissions to do this call */ JSON_RPC_ERROR_SERVER_GONE = -32001, /**< The request was forwarded to a remote server, but this server went gone while processing the request */ JSON_RPC_ERROR_TIMEOUT = -32002, /**< The request was forwarded to a remote server, but the request/response timed out (15 seconds) */ JSON_RPC_ERROR_REMOTE_SERVER_NO_RPC = -32003, /**< The request was going to be forwarded to a remote server, but the remote server does not support JSON-RPC */ // UnrealIRCd specific application error codes: JSON_RPC_ERROR_NOT_FOUND = -1000, /**< Target not found (no such nick / channel / ..) */ JSON_RPC_ERROR_ALREADY_EXISTS = -1001, /**< Resource already exists by that name (eg on nickchange request, a gline, etc) */ JSON_RPC_ERROR_INVALID_NAME = -1002, /**< Name is not permitted (eg: nick, channel, ..) */ JSON_RPC_ERROR_USERNOTINCHANNEL = -1003, /**< The user is not in the channel */ JSON_RPC_ERROR_TOO_MANY_ENTRIES = -1004, /**< Too many entries (eg: banlist, ..) */ JSON_RPC_ERROR_DENIED = -1005, /**< Permission denied for user (unrelated to api user permissions) */
JSON-RPC Methods[edit]
The following methods are currently implemented in the git version (with links to documentation!):
- rpc:
rpc.info
- stats:
stats.get
- user:
user.list
,user.get
,user.set_nick
,user.set_username
,user.set_realname
,user.set_vhost
,user.set_mode
,user.set_snomask
,user.set_oper
- server:
server.list
,server.get
,server.rehash
,server.connect
,server.disconnect
- channel:
channel.list
,channel.get
,channel.set_mode
,channel.set_topic
,channel.kick
- server_ban:
server_ban.list
,server_ban.get
,server_ban.add
,server_ban.del
- server_ban_exception:
server_ban_exception.list
,server_ban_exception.get
,server_ban_exception.add
,server_ban_exception.del
- spamfilter:
spamfilter.list
,spamfilter.get
,spamfilter.add
,spamfilter.del
- name_ban:
name_ban.list
,name_ban.get
,name_ban.add
,name_ban.del
All the documentation for this is also viewable via the JSON-RPC Methods category