Package Data | |
---|---|
Maintainer Username: | cawa0505 |
Maintainer Contact: | seleznevdev@gmail.com (Oleg Seleznev) |
Package Create Date: | 2019-04-06 |
Package Last Update: | 2019-04-06 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:19:43 |
Package Statistics | |
---|---|
Total Downloads: | 9 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Require this package, with Composer:
composer require black-river/telegram-bot
Add the service provider to the providers
array of your config/app.php
:
BlackRiver\TelegramBot\ServiceProvider::class,
Publish the config file:
php artisan vendor:publish --provider="BlackRiver\TelegramBot\ServiceProvider"
Set environment variables in your .env
:
APP_URL="http://your-bot.com"
...
TELEGRAM_TOKEN="123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11"
To use a self-signed certificate, you should also specify the certificate path:
TELEGRAM_CERTIFICATE="/etc/nginx/ssl/your-bot.com.crt"
Define the default webhook route in your route file:
Route::post(config('telegram.token'), function (BlackRiver\TelegramBot\Bot $bot) {
$bot->listen();
});
listen
method to handle commands.Set up the webhook url:
php artisan webhook:set
To ensure the bot is ready, send the /ping
message:
To make sure there is no middleware or prefix that could "block" the default webhook route, check your
app/Providers/RouteServiceProvider.php
.
You can change the default webhook route to your own:
Route::post('your-secret-path', function (BlackRiver\TelegramBot\Bot $bot) {
$bot->listen();
});
php artisan webhook:set your-secret-path
To remove the webhook integration, run php artisan webhook:remove
.
Create a new Bot Command in the app/Http/BotCommands
directory:
php artisan make:bot-command NameCommand
Edit the handle
method of app/Http/BotCommands/NameCommand.php
:
$this->client->send('sendMessage', [
'chat_id' => $this->request->json('message.chat.id'),
'text' => 'Hello, '.trim($message),
]);
Use the Client's send
method to call any of the available methods.
Use the Client's save
method to save Telegram files.
The Client and Request are available within a Command via $this->client
and $this->request
respectively.
Add the new command to the commands
array of your config/telegram.php
:
'/name' => App\Http\BotCommands\NameCommand::class,
Send the /name Johnny
message:
Route::post('your-secret-path', function (Illuminate\Http\Request $request, BlackRiver\TelegramBot\Client $client) {
// $bot->listen();
$update = $request->json()->all();
$client->send('sendMessage', [
'chat_id' => $request->json('message.chat.id'),
'text' => 'I\'ve got it!',
]);
});
Add facades to the aliases
array of your config/app.php
:
'TelegramBot' => BlackRiver\TelegramBot\Facades\TelegramBot::class,
'TelegramApi' => BlackRiver\TelegramBot\Facades\TelegramApi::class,
Usage:
Route::post('your-secret-path', function () {
// TelegramBot::listen();
TelegramApi::send('sendMessage', [
'chat_id' => Request::json('message.chat.id'),
'text' => 'Hey!',
]);
});
Send a photo to your chat:
Route::post('photo', function (BlackRiver\TelegramBot\Client $client) {
$client->send('sendPhoto', [
'chat_id' => 'your-chat-id',
'photo' => fopen(storage_path('photo.png'), 'r'),
]);
});
Save incoming files:
Route::post('your-secret-path', function (Illuminate\Http\Request $request, BlackRiver\TelegramBot\Client $client) {
$doc = $request->json('message.document');
$filename = $doc['file_name'];
$file = $client->send('getFile', ['file_id' => $doc['file_id']]);
$client->save($file['result']['file_path'], storage_path($filename));
});
To extend the Client, add a new macro to the boot
method of your app/Providers/AppServiceProvider.php
:
app('BlackRiver\TelegramBot\Client')->macro('sendUploadedPhoto',
function ($chatId, \Illuminate\Http\UploadedFile $photo) {
$saved = $photo->move(storage_path(), $photo->getClientOriginalName());
$this->send('sendPhoto', [
'chat_id' => $chatId,
'photo' => fopen($saved->getRealPath(), 'r'),
]);
}
);
Send an uploaded photo to your chat:
Route::post('upload', function (Illuminate\Http\Request $request, BlackRiver\TelegramBot\Client $client) {
$client->sendUploadedPhoto('your-chat-id', $request->file('photo'));
});
The Client uses Guzzle Http Client to interact with Telegram API, so you can handle Guzzle Exceptions:
try {
$client->send('methodName', []);
} catch (GuzzleHttp\Exception\ClientException $e) {
// 400 level errors...
} catch (GuzzleHttp\Exception\ServerException $e) {
// 500 level errors...
} catch (GuzzleHttp\Exception\RequestException $e) {
// Connection timeout, DNS errors, etc.
}
Require this package, with Composer:
composer require black-river/telegram-bot
Add the service provider to the Register Service Providers
section of your bootstrap/app.php
:
$app->register(BlackRiver\TelegramBot\ServiceProvider::class);
Set the APP_URL
, TELEGRAM_TOKEN
and TELEGRAM_CERTIFICATE
variables in your .env
.
Copy the vendor's telegram.php
config file to your config
directory:
mkdir config/ && cp vendor/black-river/telegram-bot/config/telegram.php config/
Define the default webhook route in your route file:
$app->post(config('telegram.token'), function (BlackRiver\TelegramBot\Bot $bot) {
$bot->listen();
});
Laravel Telegram Bot is licensed under The MIT License (MIT).