The extension for Telegram Bot API PHP SDK that allows to implement dialogs in bots
This libriary allows to make simple dialogs for your Telegram bots that based on the Telegram Bot API - PHP SDK (https://github.com/irazasyed/telegram-bot-sdk).
###Installation You can easy install the package using Composer:
composer require zarincheg/telegram-bot-dialogs dev-master
After that you need to register the service provide for using with Laravel DI container Open config/app.php and, to your providers array at the bottom, add:
Telegram\Bot\Laravel\TelegramServiceProvider::classEach dialog should be implemented as class that extends basic Dialog as you can see in example bellow:
<?php
use BotDialogs\Dialog;
/**
* Class HelloDialog
*/
class HelloDialog extends Dialog
{
// Array with methods that contains logic of dialog steps.
// The order in this array defines the sequence of execution.
protected $steps = ['hello', 'fine', 'bye'];
public function hello()
{
$this->telegram->sendMessage([
'chat_id' => $this->getChat()->getId(),
'text' => 'Hello! How are you?'
]);
}
public function bye()
{
$this->telegram->sendMessage([
'chat_id' => $this->getChat()->getId(),
'text' => 'Bye!'
]);
$this->jump('hello');
}
public function fine()
{
$this->telegram->sendMessage([
'chat_id' => $this->getChat()->getId(),
'text' => 'I\'m OK :)'
]);
}
}For initiate new dialog you have to use Dialogs class instance to add new dialog implementation. And for execute the first and next steps you have to call Dialogs::procceed() mehod with update object as an argument. Also it is possible to use dialogs with Telegram commands and DI through type hinting.
use Telegram\Bot\Commands\Command;
use BotDialogs\Dialogs;
use App\Dialogs\HelloDialog;
class HelloCommand extends Command
{
/**
* @var string Command name
*/
protected $name = 'hello';
protected $description = 'Just say "Hello" and ask few questions';
/**
* @param Dialogs $dialogs
*/
public function __construct(Dialogs $dialogs)
{
$this->dialogs = $dialogs;
}
public function handle($arguments)
{
$this->dialogs->add(new HelloDialog($this->update));
}
}And code in the webhook controller
use Telegram\Bot\Api;
use BotDialogs\Dialogs;
// ...
public function __construct(Api $telegram, Dialogs $dialogs)
{
$this->telegram = $telegram;
$this->dialogs = $dialogs;
}
// ...
$update = $this->telegram->commandsHandler(true);
if (!$this->dialogs->exists($update)) {
// Do something if there are no existing dialogs
} else {
// Call the next step of the dialog
$this->dialogs->proceed($update);
}For storing dialog information(also for the data that pushed by the Dialog::remember() method) using Redis.
###Advanced definition of the dialog steps You can define default text answers for your dialog steps. For this you have to define the step as an array with name and response fields.
class HelloDialog extends Dialog
{
protected $steps = [
[
'name' => 'hello',
'response' => 'Hello my friend!'
],
'fine',
'bye'
];
// ...
}In this case, if you don't need any logic inside the step handler - you can don't define it. Just put the response inside the step definition. It works good for welcome messages, messages with tips/advices and so on.
Also, you can use is_dich (is it a dichotomous question) option of the step. If this option set to true, you can use yes and no fields of the Dialog instance to check user answer. For example:
class HelloDialog extends Dialog
{
protected $steps = [
[
'name' => 'hello',
'response' => 'Hello my friend! Are you OK?'
],
[
'name' => 'answer',
'is_dich' => true
],
'bye'
];
public function answer()
{
if ($this->yes) {
// Send message "I am fine, thank you!"
} elseif ($this->no) {
// Send message "No, I am got a sick :("
}
}
}In the config/dialogs.php you can modify aliases for yes/no meanings.
###Access control with in dialogs You can inherit AuthorizedDialog class and put Telegram usernames into $allowedUsers property. After that just for users in the list will be allowed to start the dialog.
###Available methods of the Dialog class
start()- Start the dialog from the first stepproceed()- Proceed the dialog to the next stepend()- End dialogjump($step)- Jump to the particular stepremember($value)- Remember some information for the next step usage (For now just a "short" memory works, just for one step)isEnd()- Check the end of the dialog
###Available methods of the Dialogs class
add(Dialog $dialog)- Add the new dialogget(Telegram\Bot\Objects\Update $update)- Returns the dialog object for the existing dialogproceed(Telegram\Bot\Objects\Update $update)- Run the next step handler for the existing dialogexists(Telegram\Bot\Objects\Update $update)- Check for existsing dialog
##What is planned to improve:
- Refactor for using names in Dialogs::add() instead of objects and rename to start()
- Add LUIS API support (https://www.luis.ai/)
- Long-term memory