Shared patterns for dealing with common Hubot scenarios.
When you rename Hubot, he will no longer respond to his former name. In order to train your users on the new name, you may choose to add a deprecation notice when they try to se the old name. The pattern logic is:
- listen to all messages that start with the old name
- reply to the user letting them know about the new name
Setting this up is very easy:
- Create a bundled script in the
scripts/
directory of your Hubot instance calledrename-hubot.coffee
- Add the following code, modified for your needs:
# Description:
# Tell people hubot's new name if they use the old one
#
# Commands:
# None
#
module.exports = (robot) ->
robot.hear /^hubot:? (.+)/i, (msg) ->
response = "Sorry, I'm a diva and only respond to #{robot.name}"
response += " or #{robot.alias}" if robot.alias
msg.reply response
return
In the above pattern, modify both the hubot listener and the response message to suit your needs.
Also, it's important to note that the listener should be based on what hubot actually hears, instead of what is typed into the chat program before the Hubot Adapter has processed it. For example, the HipChat Adapter converts @hubot
into hubot:
before passing it to Hubot.
If you remove a script or change the commands for a script, it can be useful to let your users know about the change. One way is to just tell them in chat or let them discover the change by attempting to use a command that no longer exists. Another way is to have Hubot let people know when they've used a command that no longer works.
This pattern is similar to the Renaming the Hubot Instance pattern above:
- listen to all messages that match the old command
- reply to the user letting them know that it's been deprecated
Here is the setup:
- Create a bundled script in the
scripts/
directory of your Hubot instance calleddeprecations.coffee
- Copy any old command listeners and add them to that file. For example, if you were to rename the help command for some silly reason:
# Description:
# Tell users when they have used commands that are deprecated or renamed
#
# Commands:
# None
#
module.exports = (robot) ->
robot.respond /help\s*(.*)?$/i, (msg) ->
msg.reply "That means nothing to me anymore. Perhaps you meant `docs` instead?"
return