A node module for making bots that use the slack rtm api.
The object you require is a session, to create a session all you need is a bot token, or a user token if the bot will be acting as that user.
var Session = require('slackr-bot');
var session = new Session(token);
Unfortunately bot's currently cannot send attachments, so built in is the ability to use an incoming webhook to send then automatically. You just have to configure it:
var session = new Session({
token: token,
devChannel: '#bottest',
webhookClient: {
token: 'xxxxxxxxxxxxxxxxxxxx',
team: 'tumblr',
username: 'ghbot',
icon_url: 'http://michaelsharman.com/static/images/github_metro.png'
}
});
All the data in the webhook client can be used but the only required ones are token and team.
The other option seen in this session instantiation is the dev channel. With this the bot will ignore anything in
that channel unless NODE_ENV=development
is set. In which case it will only listen to that channel.
To send a message over rtm just call session.send(obj)
. If you want to send a message there's a helper that allows
you to call
session.sendMessage({
channel: '#foo',
text: 'omg'
});
To react to messages there are some helper matchers to let you match only certain strings being passed.
session.on('exact string match', cb);
session.on('.prefix *', cb);
session.on('*wildcard*', cb);
session.on(/regex/i, cb);
session.on('/regex string/i', cb);
The callback receives these arguments:
- Message - message object see section describing
- string - the matched string
The callback receives these arguments:
- Message - message object see section describing
- prefix - the prefix it matched on
- rest - the string that comes after the prfix
arguments[2] + arguments[3] === message.text
The callback receives these arguments:
- Message - message object see section describing
- string - the matched string
The callback receives these arguments:
- Message - message object see section describing
- match - the match object that came back from the successufl regex match
The message object is passed to message callbacks. It has all the data passed in the message, as well as some helpers.
Simple usage:
session.on('.gh help', function(msg) {
msg.reply('.gh team( <team name>)( cnt), .gh <user> recent( cnt)');
});
The message has a reply method that can be used. It can take a string or an object like shown in the advanced object
Advanced usage
session.on(/^.gh (\w+) recent(?: (\d+))?/, function(message, match) {
var promise = getPersonsPr(match[1]);
message.typing();
var num = match[2] ? parseInt(match[2]) : 3;
promise.then(function(prs) {
var resp = {
text: 'Pull Requests:'
attachments: _(prs).first(num).map('attachment').value()
};
message.reply(resp);
});
});
This shows many features of the response
- you can call inside of another callback to reply
- you can reply with advanced objects that contain attachments
- you can signal in these async actions a typing indicator
- Tests
- Update channels as new ones are created
- Implement connection checking to add ability to reconnect dynamically
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request