Giter VIP home page Giter VIP logo

mvcontact-bot's Introduction

mvcontact-bot

A chat bot module that currently works with Resonite. This allows you to create your own chat bots.

(Currently unfinished. Although most functionality is already implemented.)

Usage

(There are usage examples in the examples folder)

  • Include the module in your code
    • npm install github:Lexevolution/mvcontact-bot
  • Set up your config (explained below)
  • Create a new instance of the MVContactBot, with the config as the parameter (you can have multiple bots):
let myBot = new MVContactBot(config);
  • Make the bot login and start it up afterwards:
async function runBot() {
    await myBot.login()
        .catch(err => {console.error(err);}
    );

    await myBot.start()
        .catch(err => {console.error(err);}
    );
}

runBot();
  • The bot will emit events on messages, so listen to any of these events (explanation for each of these events and the data returned below)
    • receiveRawMessage
    • receiveTextMessage
    • receiveSoundMessage
    • receiveObjectMessage
    • receiveSessionInviteMessage
myBot.on('receiveTextMessage', (sendingUser, message) => {
    ...
});
  • You can also send messages (further explained below)
    • sendRawMessage(messageData)
    • sendTextMessage(user, message)

Config Schema

The config used for the constructor of the MVContactBot is an object and has a few parameters, many of which are optional and have defaults:

  • username (required, string): The Resonite account username that the bot will use.
  • password (required, string): The Resonite account password that the bot will use.
  • TOTP (optional, string): If the Resonite account has TOTP enabled for login, supply the 6 digit code here.
  • autoAcceptFriendRequests (optional, enum as string, default: "all"): Can be "all", "list" or "none".
    • "all": The bot will automatically accept all contact requests.
    • "list": The bot will only accept an incoming contact request if the User ID of that request is in the bot's data.whitelist list. This list can only be added to when the bot is created, so you will need another form of storage to keep a non-volatile whitelist.
    • "none": The bot will do nothing with incoming contact requests.
  • autoExtendLogin (optional, bool, default: true): If true, will keep extending the login session of the associated Resonite account, so it doesn't automatically logout.
  • updateStatus (optional, bool, default: true): If true, will make the associated Resonite account show as Online and will display the version name from the versionName parameter. If using this bot on the same Resonite account as a Resonite headless client, it is recommended to set this to false.
  • readMessagesOnReceive (optional, bool, default: true): If true, will automatically mark all messages that it receives as read. This is useful to indicate to a user if a bot is receiving their message.
  • versionName (optional, string, default: "Resonite Contact Bot"): When updateStatus is true, will display this as the version used. This can be programatically changed on the fly.
  • logToFile (optional, bool, default: true): Determines whether the log messages from the bot will also output to a file.
  • logPath (optional, filepath/directory as string, default: "."): The relative or absolute directory or file path that the bot will log to (if logToFile is set to true). If it is a directory, the bot will create a named and timestamped log file on each run in that directory. If it is a filename, it will log to that file. The directory/file needs to exist beforehand.

Sending Messages

These are the current methods provided to send messages:

  • sendTextMessage(user, message)
    • user (string): The Resonite User ID that the message will be sent to.
    • message (string): The text message that will be sent.
# Example
myBot.sendTextMessage("U-Lexevo", "Hello there!");
  • sendRawMessage(messageData)
    • messageData (object): A Resonite message object to be sent. More info on the schema of the message object here.

Receiving Messages

These are the details for the events that get emitted when a message is received.

  • receiveRawMessage: This event gets emitted on all received messages, even ones that aren't categorised by this bot.
myBot.on('receiveRawMessage', (messageData) => {
    ...
});
  • receiveTextMessage: This event gets emitted when a text message is received.
    • senderId (string): The Resonite user ID of the user who sent the text message.
    • content (string): The text message itself.
myBot.on('receiveTextMessage', (senderId, content) => {
    ...
});
  • receiveSoundMessage: This event gets emitted whenever an audio message is received.
    • senderId (string): The Resonite user ID of the user who sent the audio message.
    • audioUrl (string): The url which points to the audio from the audio message.
myBot.on('receiveSoundMessage', (senderId, audioUrl) => {
    ...
});
  • receiveObjectMessage: This event gets emitted whenever an object/item is received.
    • senderId (string): The Resonite user ID of the user who sent the object.
    • name (string): The name of the object that was sent.
    • objectAssetUrl (string): The url which points to the asset of the object. If you need more info from the object (e.g. tags), use receiveRawMessage.
myBot.on('receiveObjectMessage', (senderId, name, objectAssetUrl) => {
    ...
});
  • receiveSessionInviteMessage: This event gets emitted whenever a session invite from a user is received.
    • senderId (string): The Resonite user ID of the user who sent the session invite.
    • name (string): The name of the session associated with the invite.
    • sessionId (string): The ID of the session associated with the invite.
myBot.on('receiveSessionInviteMessage', (senderId, name, sessionId) => {
    ...
});

Other bot functions

  • removeFriend(friendId): Removes a contact off of the list of contacts.
    • friendId (string): The User ID of the contact you want to remove.
await myBot.removeFriend("U-Example")
    .catch((err) => {console.log(`Error removing contact: ${err}`)});
  • addFriend(friendId): Sends a contact request to a user.
    • friendId (string): The User ID of the user you want to request contact.
await myBot.addFriend("U-Example")
    .catch((err) => {console.log(`Error requesting contact: ${err}`)});

mvcontact-bot's People

Contributors

lexevolution avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.