klev-o/telegram-bot-api
Composer 安装命令:
composer require klev-o/telegram-bot-api
包简介
Simple and convenient object-oriented implementation Telegram bot API with php version ^7.4 support. You'll like it)
README 文档
README
klev-o/telegram-bot-api
Simple and convenient implementation Telegram bot API with php version ^7.4 support. You'll like it)
Based on the Official Telegram api
📖Intro
This bot is full support Official Telegram api. Fully object-oriented and simple code. All available types and methods are described using classes with documentation of all fields. You don't even need to refer to the official documentation - all descriptions are present in the bot! But still, for each class, the url to the documentation is indicated, where you can study the nuances, etc.
You just have to relax and create super bots!
Attention! At the moment, the bot only supports receiving updates through Webhook. Webhook is more efficient than Long-Polling, reduces server load and guarantees almost instant data refresh for your application. But it is worth considering some of the nuances, in more detail here
🛠 Installation
Run this command in your command line:
composer require klev-o/telegram-bot-api
🔌Usage
Setting up a webhook
First, you need to install Webhook, to which the telegram will send updates. This can be done using the following code:
<?php use Klev\TelegramBotApi\Telegram; use Klev\TelegramBotApi\TelegramException; use Klev\TelegramBotApi\Methods\SetWebhook; require 'vendor/autoload.php'; $pageUrl = "https://".$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; try { $bot = new Telegram('your personal token'); if(!file_exists("webhook.trigger")){ $webhook = new SetWebhook($pageUrl); $result = $bot->setWebhook($webhook); if($result) { file_put_contents("webhook.trigger", time()); echo 'webhook was set'; } } //... } catch (TelegramException $e) { // log errors }
To prevent the webhook from being installed on every request, we add a simple check. Now open the file in your browser and you should see 'webhook was set'. If any error has occurred, then it can be caught in the corresponding block
Getting Webhook Updates
To receive updates, you must use the method getWebhookUpdates():
<?php use Klev\TelegramBotApi\Telegram; use Klev\TelegramBotApi\TelegramException; use Klev\TelegramBotApi\Methods\SetWebhook; require 'vendor/autoload.php'; $pageUrl = "https://".$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; try { $bot = new Telegram('your personal token'); if(!file_exists("webhook.trigger")){ $webhook = new SetWebhook($pageUrl); $result = $bot->setWebhook($webhook); if($result) { file_put_contents("webhook.trigger", time()); echo 'webhook was set'; } } /**@var \Klev\TelegramBotApi\Types\Update $update*/ $update = $bot->getWebhookUpdates(); } catch (TelegramException $e) { // log errors }
The $update variable will be an object Update
In general, by reading the official documentation, you can see the types for the fields of objects, or the return values of methods - all this is completely consistent with the code.
For example, $update->message is of type Message, which corresponds to Klev\TelegramBotApi\Types\Message.
Just look at the documentation and call the methods you want!
A real example
Let's say we want the bot to reply "Hello, your username" to every message to the bot.
Let's write the following code:
<?php use Klev\TelegramBotApi\Telegram; use Klev\TelegramBotApi\TelegramException; use Klev\TelegramBotApi\Methods\SetWebhook; use Klev\TelegramBotApi\Methods\SendMessage; require 'vendor/autoload.php'; $pageUrl = "https://".$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; try { $bot = new Telegram('your personal token'); if(!file_exists("webhook.trigger")){ $webhook = new SetWebhook($pageUrl); $result = $bot->setWebhook($webhook); if($result) { file_put_contents("webhook.trigger", time()); echo 'webhook was set'; } } /**@var \Klev\TelegramBotApi\Types\Update $update*/ $update = $bot->getWebhookUpdates(); if ($update->message) { $chatId = $update->message->chat->id; $username = $update->message->from->first_name; $text = "Hello, $username!"; /**@var \Klev\TelegramBotApi\Types\Message $result*/ $result = $bot->sendMessage(new SendMessage($chatId, $text)); } } catch (TelegramException $e) { // log errors }
As you can see, everything is very simple and straightforward. Remember, methods have many parameters that you can further customize to your preference. Description of each parameter is present in the code in phpdoc, or on the website of the official API documentation
$chatId = $update->message->chat->id; $username = $update->message->from->first_name; $messageId = $update->message->id; $text = "Hello, $username!"; $msg = new SendMessage($chatId, $text) $msg->disable_notification = true; $msg->reply_to_message_id = $messageId; $bot->sendMessage($msg);
Sending files
Sending files is very simple: you need to specify the path to the file or url in the field (if the method supports accepting files by url, see the description). Next, it will automatically check if the file exists locally and add all the necessary headers.
If the file is unreadable, you will get the error "File -filename- is not readable."
In the example below, the bot sends a local document if the user writes "doc" to the bot:
<?php use Klev\TelegramBotApi\Telegram; use Klev\TelegramBotApi\TelegramException; use \Klev\TelegramBotApi\Methods\SendDocument; require 'vendor/autoload.php'; try { $bot = new Telegram('your personal token'); /**@var \Klev\TelegramBotApi\Types\Update $update*/ $update = $bot->getWebhookUpdates(); if ($update->message && $update->message->text === 'doc') { $chatId = $update->message->chat->id; $path = 'pat/to/local/doc'; $doc = new SendDocument($chatId, $path); $doc->disable_notification = true; /**@var \Klev\TelegramBotApi\Types\Message $result*/ $result = $bot->sendDocument($doc); } } catch (TelegramException $e) { // log errors }
Also, nothing prevents passing a link to the file instead of a local file - the code will be absolutely the same, only this part will change:
$path = 'https://link/to/file';
📟Advanced
As you can see, the $bot->getWebhookUpdates() method returns the result as an Update object. In the simplest case, we can check which field is filled in this object and, on this basis, implement further logic. But this may not be very convenient if we have any medium or large project.
Events come to the rescue (Klev\TelegramBotApi\Events\*):
| List of events |
|---|
CallbackQueryEvent |
ChannelPostEvent |
ChatJoinRequestEvent |
ChatMemberEvent |
ChosenInlineResultEvent |
EditedChannelPostEvent |
EditedMessageEvent |
InlineQueryEvent |
MessageEvent |
MyChatMemberEvent |
PollAnswerEvent |
PollEvent |
PreCheckoutQueryEvent |
ShippingQueryEvent |
You can register your own handler for any of these events and be sure which update you are responding to.
By default, events are disabled. To enable them, you need to use the method $bot->setEnableEvents(true); Consider an example:
<?php use Klev\TelegramBotApi\Telegram; use Klev\TelegramBotApi\Events\EditedMessageEvent; use Monolog\Handler\StreamHandler; use Monolog\Logger; require 'vendor/autoload.php'; //The logger does not have to be created, it is used only for an example $logger = new Logger('App'); $logger->pushHandler(new StreamHandler('../var/logs/app.log')); $bot = new Telegram('your personal token'); $bot->setEnableEvents(true); $bot->on(EditedMessageEvent::class, static function(EditedMessageEvent $event) use ($logger) { //do something with $event $logger->info('id from event', [$event->update_id]) $logger->info('payload from event', [$event->payload]) });
Each Event object will have 2 required fields: update_id and payload. What type of payload will be in the event can be viewed in the class with the desired event
//For this example, let's assume that the incoming webhook populated the message field in the object $updates = $bot->getWebhookUpdates(); //Then the `MessageEvent` will fire and the fields will be filled accordingly: $event->update_id === $updates->update_id $event->payload === $updates->message
Also, as an event handler, you can use anything that corresponds to the callable type. Consider an example:
<?php use Klev\TelegramBotApi\Telegram; use Klev\TelegramBotApi\Events\MessageEvent; use Monolog\Handler\StreamHandler; use Monolog\Logger; require 'vendor/autoload.php'; //imagine that you are using some DI $builder = new DI\ContainerBuilder(); $builder->addDefinitions([ //specify the rules on how to create an object LoggerInterface::class => function(\DI\Container $c) { $log = new Logger('App'); $log->pushHandler(new StreamHandler('../var/logs/app.log')); return $log; }, //specify the rules on how to create an object MessageReceivedListener::class => function(\DI\Container $c) { return new MessageReceivedListener($c->get(LoggerInterface::class)); } ]); $container = $builder->build(); //Instead of using an anonymous function, we can now use a custom class, into which, //if necessary, we can pull everything we need (working with the database, sending by mail, etc.) class MessageReceivedListener { private Logger $logger; public function __construct(Logger $logger) { $this->logger = $logger; } public function __invoke(MessageEvent $event) { $this->log->info('Using invocable class', (array)$event->payload); } } $bot = new Telegram('your personal token'); $bot->setEnableEvents(true); $bot->on(MessageEvent::class, $container->get(MessageReceivedListener::class)); $bot->getWebhookUpdates();
🎁Dontations
Support the project if you like it. Funds will go towards food.
| Network | Currency | Wallet |
|---|---|---|
| Bitcoin | BTC |
1M1qhSE6sN34a4d7ZtCh6y17Vf3LtdoW62or 14cvXywCMucKMhFYDCbmQ1ZHhayDgbD65R |
| The Open Network | TON |
EQAYZK8rWrS9Fhojdc486BpplDmTSLHum440f-L2--SA2Oid or ton://transfer/UQBVsumSIvsq4PfeFMhxSV9m_zPB31cHJX4X2lAVh9BUJXm3 |
| Binance Smart Chain – BEP20 | BNB, BUSD, USDT |
0x674B09Ab418bb41C075847bde004bb7F492c2121 |
🧨Troubleshooting
Please, if you find any errors or not exactly - report this problem page
And finally...
Happy botting 🤖
klev-o/telegram-bot-api 适用场景与选型建议
klev-o/telegram-bot-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.42k 次下载、GitHub Stars 达 46, 最近一次更新时间为 2021 年 04 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「api」 「composer」 「bot」 「webhooks」 「telegram」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 klev-o/telegram-bot-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 klev-o/telegram-bot-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 klev-o/telegram-bot-api 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
This composer plugin enables installation of GravityForms WordPress plugin and its addons.
Simple ASCII output of array data
Alfabank REST API integration
Generate a Composer repository from installed WordPress plugins and themes.
统计信息
- 总下载量: 8.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 46
- 点击次数: 12
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-04-01
