2017 © Pedro Peláez
 

library telegram-bot

PHP telegram bot (it is fork from longman/telegram-bot)

image

atanych/telegram-bot

PHP telegram bot (it is fork from longman/telegram-bot)

  • Tuesday, June 26, 2018
  • by atanych
  • Repository
  • 2 Watchers
  • 0 Stars
  • 92 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 472 Forks
  • 0 Open issues
  • 26 Versions
  • 0 % Grown

The README.md

PHP Telegram Bot

Join the chat at
https://gitter.im/akalongman/php-telegram-bot, (*1)

Build Status Latest Stable
Version Total Downloads Downloads Month License, (*2)

A Telegram Bot based on the official Telegram Bot API, (*3)

Introduction

This is a pure php Telegram Bot, fully extensible via plugins. Telegram recently announced official support for a Bot API allowing integrators of all sorts to bring automated interactions to the mobile platform. This Bot aims to provide a platform where one could simply write a plugin and have interactions in a matter of minutes. The Bot can: - retrive update with webhook and getUpdate methods. - supports all types and methods according to Telegram API (2015 October 8). - handle commands in chat with other bots., (*4)

It is ready for the channels support., (*5)

Instructions

Create your first bot

  1. Message @botfather https://telegram.me/botfather with the following text: /newbot If you don't know how to message by username, click the search field on your Telegram app and type @botfather, you should be able to initiate a conversation. Be careful not to send it to the wrong contact, because some users has similar usernames to botfather., (*6)

    botfather initial conversation, (*7)

  2. @botfather replies with Alright, a new bot. How are we going to call it? Please choose a name for your bot., (*8)

  3. Type whatever name you want for your bot., (*9)

  4. @botfather replies with Good. Now let's choose a username for your bot. It must end inbot. Like this, for example: TetrisBot or tetris_bot., (*10)

  5. Type whatever username you want for your bot, minimum 5 characters, and must end with bot. For example: telesample_bot, (*11)

  6. @botfather replies with:, (*12)

    Done! Congratulations on your new bot. You will find it at telegram.me/telesample_bot. You can now add a description, about section and profile picture for your bot, see /help for a list of commands., (*13)

    Use this token to access the HTTP API: 123456789:AAG90e14-0f8-40183D-18491dDE, (*14)

    For a description of the Bot API, see this page: https://core.telegram.org/bots/api, (*15)

  7. Note down the 'token' mentioned above., (*16)

  8. Type /setprivacy to @botfather., (*17)

    botfather later conversation, (*18)

  9. @botfather replies with Choose a bot to change group messages settings., (*19)

  10. Type @telesample_bot (change to the username you set at step 5 above, but start it with @), (*20)

  11. @botfather replies with, (*21)

    'Enable' - your bot will only receive messages that either start with the '/' symbol or mention the bot by username. 'Disable' - your bot will receive all messages that people send to groups. Current status is: ENABLED, (*22)

  12. Type Disable to let your bot receive all messages sent to a group. This step is up to you actually., (*23)

  13. @botfather replies with Success! The new status is: DISABLED. /help, (*24)

Require this package with Composer

Install this package through Composer. Edit your project's composer.json file to require longman/telegram-bot., (*25)

Create composer.json file:, (*26)

{
    "name": "yourproject/yourproject",
    "type": "project",
    "require": {
        "php": ">=5.4.0",
        "longman/telegram-bot": "*"
    }
}

And run composer update, (*27)

Or run a command in your command line:, (*28)

composer require longman/telegram-bot

Choose how to retrieve Telegram updates

The bot can handle updates with webhook or getUpdate method:, (*29)

Webhook getUpdate
Description Telegram send the update directy to your host You have to fetch Telegram updates
Host with https Required Not required
Mysql Not required Required

Webhook installation

You need server with https and composer support. You must set a WebHook. Create set.php (just edit example-set.php) and put into it:, (*30)

<?php
//Composer Loader
$loader = require __DIR__.'/vendor/autoload.php';

$API_KEY = 'your_bot_api_key';
$BOT_NAME = 'namebot';
$link = 'https://yourdomain/yourpath_to_hook.php';
try {
    // create Telegram API object
    $telegram = new Longman\TelegramBot\Telegram($API_KEY, $BOT_NAME);
    // set webhook
    $result = $telegram->setWebHook($link);
    if ($result->isOk()) {
        echo $result->getDescription();
    }
} catch (Longman\TelegramBot\Exception\TelegramException $e) {
    echo $e;
}

And open your set.php via browser., (*31)

After, create hook.php (or just edit example-hook.php) and put:, (*32)

<?php
$loader = require __DIR__.'/vendor/autoload.php';

$API_KEY = 'your_bot_api_key';
$BOT_NAME = 'namebot';

try {
    // create Telegram API object
    $telegram = new Longman\TelegramBot\Telegram($API_KEY, $BOT_NAME);

    // handle telegram webhook request
    $telegram->handle();
} catch (Longman\TelegramBot\Exception\TelegramException $e) {
    // log telegram errors
    // echo $e;
}

Self Signed Certificate

To upload the certificate, add the certificate path as param in set.php:, (*33)

$result = $telegram->setWebHook($url, $certificate_path);

getUpdate installation

You need the database Mysql active., (*34)

Create getUpdateCLI.php (just edit example-getUpdateCLI.php) and put into it:, (*35)

#!/usr/bin/env php
<?php
$loader = require __DIR__.'/vendor/autoload.php';

$API_KEY = 'your_bot_api_key';
$BOT_NAME = 'namebot';
$credentials = array('host'=>'localhost', 'user'=>'dbuser', 'password'=>'dbpass', 'database'=>'dbname');

try {
    // create Telegram API object
    $telegram = new Longman\TelegramBot\Telegram($API_KEY, $BOT_NAME);
    $telegram->enableMySQL($credentials);
    // handle telegram getUpdate request
    $telegram->handleGetUpdates();
} catch (Longman\TelegramBot\Exception\TelegramException $e) {
    // log telegram errors
     echo $e;
}                

give to the file the permission for execution:, (*36)

chmod 775 getUpdateCLI.php

then run, (*37)

./getUpdateCLI.php

Types

All types implemented according to Telegram API (2015 October 8)., (*38)

Methods New!

All methods implemented according to Telegram API (2015 October 8)., (*39)

Send Photo

To send a local photo provide the file path as second param:, (*40)

$data['chat_id'] = $chat_id;
$result = Request::sendPhoto($data,$this->telegram->getUploadPath().'/'.'image.jpg');

If you know the file_id of a previously uploaded file, just provide it in the fist param:, (*41)

$data['chat_id'] = $chat_id;
$data['photo'] = $file_id;
$result = Request::sendPhoto($data);

sendAudio, sendDocument, sendSticker, sendVideo and sendVoice works in the same way. See ImageCommand.php for a full example., (*42)

Send Chat Action

Request::sendChatAction(['chat_id' => $chat_id, 'action' => 'typing']);

getUserProfilePhoto

Retrieve the user photo, see the WhoamiCommand.php for a full example., (*43)

GetFile and dowloadFile

Get the file path and download it, see the WhoamiCommand.php for a full example., (*44)

Send message to all active chats

To do this you have to enable the Mysql connection. Here's an example of use:, (*45)

$results = $telegram->sendToActiveChats(
        'sendMessage', //callback function to execute (see Request.php methods)
        array('text'=>'Hey! Checkout the new feature!!'), //Param to evaluate the request
        true, //Send to chats (group chat)
        true, //Send to users (single chat)
        null, //'yyyy-mm-dd hh:mm:ss' date range from
        null  //'yyyy-mm-dd hh:mm:ss' date range to
    );

Utilis

MySQL storage (Recomended)

If you want insert in database messages/users/chats for further usage in commands, create database and import structure.sql and enable Mysql support after object creation and BEFORE handle method:, (*46)

$credentials = array('host'=>'localhost', 'user'=>'dbuser',
'password'=>'dbpass', 'database'=>'dbname');

$telegram->enableMySQL($credentials);

You can set a custom prefix to all the tables while you are enabling Mysql:, (*47)

$telegram->enableMySQL($credentials, $BOT_NAME.'_');

Commands

The bot is able to recognise commands in chat with multiple bot (/command@mybot ). It can execute command triggering a chat event. Here's the list:, (*48)

  • Group chat created (GroupchatcreatedCommand.php)
  • New chat participant (NewchatparticipantCommand.php)
  • Delete chat photo (DeletechatphotoCommand.php)
  • New chat title (NewchattitleCommand.php)
  • Left chat participant (LeftchatparticipantCommand.php)

GenericCommand.php let you handle commands that don't exist or to use commands as a variable: Favourite colour? /black, /red Favourite number? /1, /134, (*49)

GenericmessageCommand.php let you handle any type of message., (*50)

Maybe you would like to develop your own commands. A good practice is to store them outside vendor/. This can be done adding the method:, (*51)

$COMMANDS_FOLDER = __DIR__.'/Commands/';
$telegram->addCommandsPath($COMMANDS_FOLDER);

Inside CommandsExamples/ there are some sample that show how to use types., (*52)

Admin Commands

Enabling this feature, the admin bot can perform some super user command like: - Send message to all chats - List all the chats started with the bot (new!), (*53)

You can specify one or more admin with this option:, (*54)

$telegram->enableAdmins(array('TelegramUserID','Othersid'));

Telegram user id can be retrieved with the command /whoami. Admin commands are stored in src/Admin/ folder. To know all the commands avaiable type /help., (*55)

Commands Configuration

With this method you can set some command specified parameters, for example, google geocode/timezone api key for date command:, (*56)

$telegram->setCommandConfig('date',
array('google_api_key'=>'your_google_api_key_here'));

Upload and Download directory

You can overwrite the default Upload and Download directory with:, (*57)

$telegram->setDownloadPath("yourpath/Download");
$telegram->setUploadPath("yourpath../Upload");    

Logging

Thrown Exception are stored in TelegramException.log file (in the base directory)., (*58)

Incoming update (json string from webhook and getUpdates) can be logged on a text file, set those options with the methods:, (*59)

$telegram->setLogRequests(true);
$telegram->setLogPath($BOT_NAME.'.log');

(New!) Set verbosity to 3, to log also curl requests and responses from the bot to Telegram:, (*60)

$telegram->setLogRequests(true);
$telegram->setLogPath($BOT_NAME.'.log');
$telegram->setLogVerbosity(3);     

This code is available on Github. Pull requests are welcome., (*61)

Troubleshooting

If you like living on the edge, please report any bugs you find on the PHP Telegram Bot issues page., (*62)

Contributing

See CONTRIBUTING.md for information., (*63)

Credits

Credit list in CREDITS, (*64)

The Versions

26/06 2018

dev-master

9999999-dev https://github.com/atanych/php-telegram-bot

PHP telegram bot (it is fork from longman/telegram-bot)

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

21/10 2015

0.21.0

0.21.0.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

13/10 2015

dev-develop

dev-develop https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

13/10 2015

dev-hotfix

dev-hotfix https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

13/10 2015

0.20.1

0.20.1.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

03/10 2015

0.18.0

0.18.0.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

21/09 2015

0.17.2

0.17.2.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

15/09 2015

0.17.1

0.17.1.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

08/09 2015

0.17.0

0.17.0.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

03/09 2015

0.16.0

0.16.0.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

31/08 2015

0.0.15

0.0.15.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

25/08 2015

0.0.14

0.0.14.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *
  • ext-curl *

 

The Development Requires

api bot telegram

24/08 2015

dev-cmdcalc

dev-cmdcalc https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

 

The Development Requires

api bot telegram

11/08 2015

0.0.13

0.0.13.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

 

The Development Requires

api bot telegram

04/08 2015

0.0.12

0.0.12.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

 

The Development Requires

api bot telegram

31/07 2015

0.0.11

0.0.11.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

 

The Development Requires

api bot telegram

30/07 2015

0.0.10

0.0.10.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

 

The Development Requires

api bot telegram

20/07 2015

0.0.9

0.0.9.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

 

The Development Requires

api bot telegram

10/07 2015

0.0.8

0.0.8.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

 

The Development Requires

api bot telegram

09/07 2015

0.0.7

0.0.7.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

 

The Development Requires

api bot telegram

09/07 2015

0.0.6

0.0.6.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

 

The Development Requires

api bot telegram

06/07 2015
03/07 2015
03/07 2015

0.0.3

0.0.3.0 https://github.com/akalongman/php-telegram-bot

PHP telegram bot

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-pdo *

 

The Development Requires

api bot telegram

30/06 2015
26/06 2015

0.0.1

0.0.1.0 https://github.com/akalongman/kautilities

PHP library for convert KA letters to LAT and back

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

converter string utilities translit ka georgia