有没有办法让Hubot了解消息之间的对话背景?这样他可以问我澄清问题吗?
例如:
me: hey, create a branch plz
Hubot: How should I name it?
me: super-duper
Hubot: Branch 'super-duper' created
我应该使用某种状态机吗?关于那个的任何建议?
答案 0 :(得分:10)
你可以使用机器人的大脑来保持状态。
robot.respond /hey, create a branch plz/i, (res) ->
res.reply "Ok, lets start"
user = {stage: 1}
name = res.message.user.name.toLowerCase()
robot.brain.set name, user
robot.hear /(\w+)\s(\w+)/i, (msg) ->
name = msg.message.user.name.toLowerCase()
user = robot.brain.get(name) or null
if user != null
answer = msg.match[2]
switch user.stage
when 1
msg.reply "How should I name it?"
when 2
user.name = answer
msg.reply "Are you sure (y/n) ?"
when 3
user.confimation=answer
user.stage += 1
robot.brain.set name, user
if user.stage > 3 #End of process
if /y/i.test(user.confimation)
msg.reply "Branch #{user.name} created."
else
msg.reply "Branch creation aborted"
robot.brain.remove name
答案 1 :(得分:0)
您可以为其分配类似会话的内容。
我们正在为登录做这件事。当我告诉他登录时,它将被绑定到主叫用户。优点是你可以将它储存在大脑中。缺点是一个用户只能有一个会话。 (你可以通过让他们指定一个id来克服这个问题。)
答案 2 :(得分:0)
这也可以使用Hubot Conversation插件来完成。这将添加一个可以与之交互的对话框对象。该对话框是脚本化的,而不是“自然的”脚本,但可以用来创建聊天机器人路径来执行简单的工作流程。
您的示例可能如下工作:
var Conversation = require("hubot-conversation");
module.exports = function(robot) {
var switchBoard = new Conversation(robot);
robot.respond(/create a branch/, function(msg) {
var dialog = switchBoard.startDialog(msg);
msg.reply("How should I name it");
dialog.addChoice(/[a-z]+/i, function(msg2) {
msg2.reply("Branch #{msg2.match[1]} created");
});
dialog.addChoice(/bathroom/i, function(msg2) {
msg.reply("Do I really have to?");
dialog.addChoice(/yes/, function(msg3) {
msg3.reply("Fine, Mom!");
});
});
});