sysbot-net-api
v2.0.12
Published
A very simple and lightweight package that allows to subscribe to events coming from SysBot.ACNHOrders and make HTTP-like requests to it, via the bot's SocketAPIServer.
Downloads
158
Maintainers
Readme
SysBot.NET TypeScript API
A very simple and lightweight TypeScript package that allows to subscribe to events coming from SysBot.ACNHOrders and make HTTP-like requests to it, via SysBot's SocketAPIServer.
Installation
npm install -S sysbot-net-api
Usage
import { SocketAPIClient, SocketAPIRequest, SocketAPIMessage } from 'sysbot-net-api';
// Start the client
const _connected: boolean = await SocketAPIClient.start('127.0.0.1', 9001, {
reconnect: true,
reconnectMaxRetries: 10,
reconnectTimeout: 4000,
connectTimeout: 8000,
requestTimeout: 4000
});
SocketAPIClient.subscribe(message => {
console.log('Event received!', message); // Instance of `SocketAPIMessage`
});
// Take a look at request format below!
const request: SocketAPIRequest<{ myNum: number }> = new SocketAPIRequest<{ myNum: number }>('addOne', JSON.stringify({
myArg: 2
}));
const response: SocketAPIMessage<number> = await SocketAPIClient.sendRequest<number>(request, 2000);
// response: 3
Request format
id
: a unique identifier for the request. This can be either manually or automatically assigned: by accessing theid
property of yourSocketAPIRequest
instance or by passing it to the constructor. If none is passed to the constructor, a random UUID is generated and assigned to it.endpoint
: the endpoint name of the remote bot method to call. Case-sensitive.args
: a JSON-formatted object string that will be passed to the endpoint. If a non-JSON valid string is given, it will be first JSON encoded.
Response format - SocketAPIMessage<T>
status
: either "okay" or "error".id
: the ID that was provided by the request._type
: the type of response, can be eitherevent
orresponse
; used internally.value
: contains the response body, the actual value of the response;undefined
if the remote endpoint returnsVoid
.error
: if the remote endpoint catches or throws an error, this would contain the error message.
Heartbeats
The remote host periodically sends special packets to check against half-open connections and eventually handle and dispose the client's socket.
These packets contain a message that starts with hb
, followed by a space \s
and a UUID string that uniquely identifies the sent heartbeat. The client must reply to the remote host with exactly the same message it received.
Reconnection
By passing a SocketAPIOptions
object to the .start()
method as third parameter, it is possible for the client to automatically reconnect to the initially designated host.
Other options can be specified too:
{
reconnect: true, // Whether to enable auto-reconnect logic or not.
reconnectMaxRetries: 10, // The maximum number of reconnect retries.
reconnectTimeout: 4000, // The time that between a reconnection attempt and the next.
connectTimeout: 8000, // The time it takes for the first connection (.start()) attempt to be considered timed out.
requestTimeout: 4000 // The time it takes for a request to the host to be considered timed out.
}
debug
This package uses the npm debug
package to output useful debug info to console. Subscribe to the debug asyncSocket
and socketAPIClient
topics to show debug info to console.
License
GNU General Public License, see LICENSE
for details. Pull requests are more than welcome, help & suggestions are very much appreciated. :)