WickrIO API Addon
Wickr's Node.js C++ Addon for a JavaScript API interface
Description:
This is the Node.js C++ Addon that provides access to Wickr's bot client. This WickrIO addon interface supports a set of Wickr client functionality that you can access via your Javascript code. You will be able to do the following Wickr operations:
- Send and receive messages and files
- Create, modify, leave, delete and configure secure rooms
- Create and leave group conversations
For full documentation please visit: https://wickrinc.github.io/wickrio-docs/#developing-integrations-node-js-addon-api
Before you can use the WickrIO addon, you will need to have Wickr's bot client. The WickrIO bot packages contain several sample bots that use this addon.
NOTE: versions 5.38.17 and older will require version 8 of node. Versions 5.44.2 and newer will require version 10 of node.
Usage and example:
Interaction with the WickrIO Node.js addon has the following sequence of operations:
- You will need a "require('wickrio_addon') statement at the beginning of your javascript.
- You will need to initialize the WickrIO Node.js addon interface, but calling the API's clientInit() function. This API requires the name of the WickrIO client as an argument. This identifies which client the addon will interact with.
- Interact with the WickrIO client using the WickrIO Node.js addon APIs.
The following is an example of how to interact with the WickrIO bot client using the WickrIO Node.js addon and Bot API toolkit:
const WickrIOAPI = require('wickrio_addon');
const WickrIOBotAPI = require('wickrio-bot-api');
const WickrUser = WickrIOBotAPI.WickrUser;
process.stdin.resume();
var bot, tokens, bot_username, bot_client_port, bot_client_server;
var tokens = JSON.parse(process.env.tokens);
async function exitHandler(options, err) {
var closed = await bot.close();
console.log(closed);
if (err) {
console.log("Exit Error:", err);
process.exit();
}
if (options.exit) {
process.exit();
} else if (options.pid) {
process.kill(process.pid);
}
}
process.on('SIGINT', exitHandler.bind(null, {
exit: true
}));
process.on('SIGUSR1', exitHandler.bind(null, {
pid: true
}));
process.on('SIGUSR2', exitHandler.bind(null, {
pid: true
}));
process.on('uncaughtException', exitHandler.bind(null, {
exit: true
}));
async function main() {
try {
var status;
if (process.argv[2] === undefined) {
bot_username = tokens.BOT_USERNAME.value;
bot = new WickrIOBotAPI.WickrIOBot();
status = await bot.start(bot_username)
} else {
bot = new WickrIOBotAPI.WickrIOBot();
status = await bot.start(process.argv[2])
}
console.log(status)
if (!status)
exitHandler(null, {
exit: true,
reason: 'Client not able to start'
});
await bot.startListening(listen);
} catch (err) {
console.log(err);
}
}
async function listen(message) {
try {
var parsedMessage = bot.parseMessage(message);
if (!parsedMessage) {
return;
}
console.log('parsedMessage:', parsedMessage);
var wickrUser;
var command = parsedMessage.command;
var message = parsedMessage.message;
var argument = parsedMessage.argument;
var userEmail = parsedMessage.userEmail;
var vGroupID = parsedMessage.vgroupid;
var convoType = parsedMessage.convoType;
var personal_vGroupID = "";
if (convoType === 'personal')
personal_vGroupID = vGroupID;
var found = bot.getUser(userEmail);
if (!found) {
wickrUser = new WickrUser(userEmail, {
index: 0,
personal_vGroupID: personal_vGroupID,
command: "",
argument: ""
});
var added = bot.addUser(wickrUser);
console.log(added);
}
var user = bot.getUser(userEmail);
user.token = "example_token_A1234";
if (command === '/help') {
var reply = "What can I help you with?";
var sMessage = WickrIOAPI.cmdSendRoomMessage(vGroupID, reply);
var users = [userEmail];
var sMessage = WickrIOAPI.cmdSend1to1Message(users, reply);
console.log(sMessage);
}
} catch (err) {
console.log(err);
}
}
main();
License
This software is distributed under the Apache License, version 2.0
Copyright 2021 Wickr, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.