0.8.0 • Published 9 years ago

xmpp-command-bot v0.8.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

xmpp-command-bot

An XMPP bot which takes messages from a chat room or a prescribed set of users and runs commands on the local server.

Build status: Build Status Coverage Status Dependency Status devDependency Status Donate to help support development

Setup

Copy config.example.js to config.js and modify as required.

XMPP Connection

An example XMPP configuration object is as follows:

{
    xmpp: {
        connection: {
            jid: 'bot@localhost',
            password: 'mysecretpassword'
        },
        muc: {
            room: 'chat',
            server: 'localhost',
            nick: 'commander',
            password: 'letmein',
         /* roles: [ 'moderator', 'participant', 'visitor' ] */
        },
        admins: [
            'fail@localhost',
            /lloyd@[^localhost]/,
            function(stanza, context) {
                return true
            }
        ]
    }
}

The connection key contains details for the bot to connect to the XMPP server. These values are passed directly to the constructor of the node-xmpp-client. For more connection choices please see the linked manual.

Setting allowed users

Using the admin key within xmpp section of the configuration to set what XMPP JIDs can make requests to the chat bot. There are three methods by which you can define allowed JIDs:

  • bare JID match
  • regular expression match
  • function match

The admin matching methods are called in order, if any of the methods provide a match then the command will be accepted.

Bare JID match

The bare JID of the sender is compared to the provided values.

Regular Expression match

The bare JID of the sender is compared to the provided value using a regular expression match.

Function match

The original stanza is passed to your provided function, return true or false in order tell the bot whether to accept this request.

Connecting to a chat room

By providing details under the muc key. The minimum keys are 'room', 'server', and 'nick' (nickname). If the room is password protected then adding the password to the 'password' key will allo you to connect. You can control which roles can send commands by setting the 'roles' key.

In MUC rooms the bot can be talked as follows:

bot-nick: do_stuff

Adding commands

{
    commands: {
        'cat': {
            command: 'cat',
            reply: true,
            summary: 'Cat a file',
            description: 'Return the contents of a file'
            arguments: /^[a-z0-9]*$/i,
            options: { timeout: 2000 }
        }
    }
}

Using the commands key of the bot configuration allows you to set up commands. It takes the form of a keyed object with the key being the command identifier.

Command (required)

The command to be run

Reply

If set to false then the command is run without any response returned.

Summary (required)

A summary of the command being run - included in the help response.

Description

A longer description of the command being run.

Arguments

If arguments are accepted for the command then they can be expected here:

  • false: Arguments aren't accepted
  • true: Blanket accept arguments - be very careful using this
  • regex: Match arguments using a regular expression
  • function: Passed the arguments object. Return false for 'failed to match' and return the processed arguments if provided arguments are ok

Options

Upstart script

There is an upstart script located in contrib/xmpp-command-bot.conf. Copy this to /etc/init/ then run:

sudo service xmpp-command-bot start

The script is set up to run out of /usr/share/xmpp-command-bot and as the user xmpp.

Testing

npm test

Debugging

DEBUG=* node index

Various values for debug can be used, currently the following are supported:

  • xmpp
  • commander

Licence

MIT

0.8.0

9 years ago

0.7.3

10 years ago

0.7.2

10 years ago

0.7.1

10 years ago

0.7.0

10 years ago

0.6.0

10 years ago

0.5.0

10 years ago

0.4.0

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago