私は MS の Bot Frameword を使い始めており、単純なボットを構築しようとしています。
問題は、ダイアログでメッセージを送信すると、そのダイアログを終了できないことです。
ここに私のコードがあります:
私のボットのエントリ ポイント ファイル
var restify = require('restify');
var builder = require('botbuilder');
require('dotenv').load();
var fs = require('fs');
//Project modules
var consts = require('./modules/consts');
var u = require('./modules/utils');
var ds = require('./modules/dialogs');
if (process.env.config == consts.PRODENV) {
u.dlog('Production environment; loading HTTPS');
var server = restify.createServer({
key: fs.readFileSync(process.env.keyPath || './ssh/key'),
certificate: fs.readFileSync(process.env.certPath || './ssh/cert')
});
} else {
u.dlog('Development environment; loading HTTP');
var server = restify.createServer();
}
/*Definindo variáveis*/
//Lista de comandos
var commands = {
evento: {
pattern: 'evento',
action: builder.DialogAction.beginDialog('evento')
},
eventos: {
pattern: 'eventos',
action: builder.DialogAction.beginDialog('eventos')
},
convidados: {
pattern: 'convidados',
action: builder.DialogAction.beginDialog('convidados')
},
cancelar: {
pattern: 'cancelar',
action: builder.DialogAction.endDialog()
}
}
//Objeto de bot principal
var bot = new builder.BotConnectorBot();
//Roteador de comandos
var cm = new builder.CommandDialog();
//Adicionando comandos
for (command in commands) {
cm.matches("/?%s(.*)".replace('%s', commands[command].pattern), commands[command].action);
}
//Diálogo inicial
cm.onDefault(function(session) {
session.send('Hey there!');
});
//Rota padrão
bot.add('/', cm);
//Adicionando diálogos
for (dialog in ds) {
bot.add(dialog, ds[dialog].flow);
}
//Inicializando servidor
if (process.env.config == consts.PRODENV) {
server.use(bot.verifyBotFramework({ appId: 'events-organizer-bot', appSecret: process.env.appSecret }));
}
server.post(process.env.uri || '/', bot.listen());
server.listen(process.env.port || 8080, function() {
u.dif(function() {
console.log('%s listening to %s', server.name, server.url);
})
})
dialogs.js
module.exports = {
"evento": {
flow: function(session) {
session.send('*evento*: implementando');
session.endDialog();
}
},
"eventos": {
flow: function(session) {
session.send('*eventos*: implementando');
session.endDialog();
}
},
"convidados": {
flow: function(session) {
session.send('*convidados*: implementando');
session.endDialog();
}
}
}
そのコードから得られる例外:
Session Error: builder is not defined
ダイアログを開始せずにメッセージを送信できることはわかっていますが、これらのダイアログは (もちろん) もっと複雑になります。ユーザーがダイアログに送信した情報を確認して終了したい場合はどうすればよいですか?
------------------------------ 編集 1 ------------------- ----------
更新後にコードを再実行しましたが、まだ例外が発生します。
コードは次のとおりです。
エントリーポイント:
var restify = require('restify');
var builder = require('botbuilder');
require('dotenv').load();
var fs = require('fs');
//Project modules
var consts = require('./modules/consts');
var u = require('./modules/utils');
var ds = require('./modules/dialogs');
if (process.env.config == consts.PRODENV) {
u.dlog('Production environment; loading HTTPS');
var server = restify.createServer({
key: fs.readFileSync(process.env.keyPath || './ssh/key'),
certificate: fs.readFileSync(process.env.certPath || './ssh/cert')
});
} else {
u.dlog('Development environment; loading HTTP');
var server = restify.createServer();
}
/*Definindo variáveis*/
//Lista de comandos
var commands = {
evento: {
pattern: 'evento',
action: builder.DialogAction.beginDialog('evento')
},
eventos: {
pattern: 'eventos',
action: builder.DialogAction.beginDialog('eventos')
},
convidados: {
pattern: 'convidados',
action: builder.DialogAction.beginDialog('convidados')
},
cancelar: {
pattern: 'cancelar',
action: builder.DialogAction.endDialog()
}
}
//Objeto de bot principal
var bot = new builder.BotConnectorBot();
//Roteador de comandos
var cm = new builder.CommandDialog();
//Adicionando comandos
for (command in commands) {
cm.matches("/?%s(.*)".replace('%s', commands[command].pattern), commands[command].action);
}
//Diálogo inicial
cm.onDefault(function(session) {
session.send('Hey there!');
});
//Rota padrão
bot.add('/', cm);
//Adicionando diálogos
for (dialog in ds) {
bot.add(dialog, ds[dialog].flow);
}
//Inicializando servidor
if (process.env.config == consts.PRODENV) {
server.use(bot.verifyBotFramework({ appId: 'events-organizer-bot', appSecret: process.env.appSecret }));
}
server.post(process.env.uri || '/', bot.listen());
server.listen(process.env.port || 8080, function() {
u.dif(function() {
console.log('%s listening to %s', server.name, server.url);
})
})
dialogs.js
module.exports = {
"evento": {
flow: function(session) {
//session.send('*evento*: implementando');
session.endDialog('*evento*: implementando');
}
},
"eventos": {
flow: function(session) {
//session.send('*eventos*: implementando');
session.endDialog('*eventos*: implementando');
}
},
"convidados": {
flow: function(session) {
//session.send('*convidados*: implementando');
session.endDialog('*convidados*: implementando');
}
}
}
デフォルトのダイアログを呼び出すのは問題ありませんが、他のダイアログを呼び出すと、Session Error: Maximum call stack size exceeded
私の顔に例外がスローされます。
ただし、enDialog メソッドにパラメーターを渡さなくても問題はありません。