botserver/packages/core.gbapp/dialogs/WelcomeDialog.ts

88 lines
4 KiB
TypeScript
Raw Normal View History

2018-04-21 02:59:30 -03:00
/*****************************************************************************\
| ( )_ _ |
| _ _ _ __ _ _ __ ___ ___ _ _ | ,_)(_) ___ ___ _ |
| ( '_`\ ( '__)/'_` ) /'_ `\/' _ ` _ `\ /'_` )| | | |/',__)/' _ `\ /'_`\ |
| | (_) )| | ( (_| |( (_) || ( ) ( ) |( (_| || |_ | |\__, \| ( ) |( (_) ) |
| | ,__/'(_) `\__,_)`\__ |(_) (_) (_)`\__,_)`\__)(_)(____/(_) (_)`\___/' |
| | | ( )_) | |
| (_) \___/' |
| |
| General Bots Copyright (c) Pragmatismo.io. All rights reserved. |
| Licensed under the AGPL-3.0. |
2018-11-11 19:09:18 -02:00
| |
2018-04-21 02:59:30 -03:00
| According to our dual licensing model, this program can be used either |
| under the terms of the GNU Affero General Public License, version 3, |
| or under a proprietary license. |
| |
| The texts of the GNU Affero General Public License with an additional |
| permission and of our proprietary license can be found at and |
| in the LICENSE file you have received along with this program. |
| |
| This program is distributed in the hope that it will be useful, |
2018-09-11 19:40:53 -03:00
| but WITHOUT ANY WARRANTY, without even the implied warranty of |
2018-04-21 02:59:30 -03:00
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU Affero General Public License for more details. |
| |
| "General Bots" is a registered trademark of Pragmatismo.io. |
| The licensing of the program under the AGPLv3 does not imply a |
| trademark license. Therefore any rights, title and interest in |
| our trademarks remain entirely with us. |
| |
\*****************************************************************************/
2018-11-11 19:09:18 -02:00
/**
* @fileoverview General Bots server core.
*/
'use strict';
2018-04-21 02:59:30 -03:00
import { BotAdapter } from 'botbuilder';
import {WaterfallDialog } from 'botbuilder-dialogs';
import { IGBDialog } from 'botlib';
import { GBMinInstance } from 'botlib';
import { Messages } from '../strings';
2018-04-21 02:59:30 -03:00
export class WelcomeDialog extends IGBDialog {
2018-09-09 14:39:37 -03:00
/**
* Setup dialogs flows and define services call.
2018-09-14 12:56:54 -03:00
*
2018-09-09 14:39:37 -03:00
* @param bot The bot adapter.
* @param min The minimal bot instance data.
*/
public static setup(bot: BotAdapter, min: GBMinInstance) {
min.dialogs.add(new WaterfallDialog('/', [
async step => {
const user = await min.userProfile.get(context, {});
const locale = step.context.activity.locale;
if (!user.once) {
2018-09-14 12:56:54 -03:00
user.once = true;
2018-11-01 21:39:37 -03:00
await min.userProfile.set(step.context, user);
const a = new Date();
2018-09-14 12:56:54 -03:00
const date = a.getHours();
const msg =
date < 12
? Messages[locale].good_morning
: date < 18
? Messages[locale].good_evening
: Messages[locale].good_night;
2018-09-04 15:09:52 -03:00
await step.context.sendActivity(Messages[locale].hi(msg));
await step.replaceDialog('/ask', { firstTime: true });
2018-09-04 15:09:52 -03:00
2018-09-14 12:56:54 -03:00
if (
step.context.activity &&
step.context.activity.type == 'message' &&
step.context.activity.text != ''
2018-09-14 12:56:54 -03:00
) {
await step.replaceDialog('/answer', { query: step.context.activity.text });
}
2018-04-21 02:59:30 -03:00
}
return await step.next();
2018-04-21 02:59:30 -03:00
}
]));
2018-04-21 02:59:30 -03:00
}
}