-
Notifications
You must be signed in to change notification settings - Fork 0
/
hook.php
56 lines (45 loc) · 1.8 KB
/
hook.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
* README
* This configuration file is intended to run the bot with the webhook method.
* Uncommented parameters must be filled
*
* Please note that if you open this file with your browser you'll get the "Input is empty!" Exception.
* This is a normal behaviour because this address has to be reached only by the Telegram servers.
*/
// Load composer
require_once __DIR__ . '/vendor/autoload.php';
require_once 'config.php';
// Define all paths for your custom commands in this array (leave as empty array if not used)
$commands_paths = [
__DIR__ . '/Commands/',
];
try {
// Create Telegram API object
$telegram = new Longman\TelegramBot\Telegram($bot_api_key, $bot_username);
// Add commands paths containing your custom commands
$telegram->addCommandsPaths($commands_paths);
// Enable admin users
$telegram->enableAdmins($admin_users);
// Enable MySQL
$telegram->enableMySql($mysql_credentials);
// Set custom Upload and Download paths
//$telegram->setDownloadPath(__DIR__ . '/Download');
//$telegram->setUploadPath(__DIR__ . '/Upload');
// Here you can set some command specific parameters
// e.g. Google geocode/timezone api key for /date command
//$telegram->setCommandConfig('date', ['google_api_key' => 'your_google_api_key_here']);
// Requests Limiter (tries to prevent reaching Telegram API limits)
$telegram->enableLimiter();
// Handle telegram webhook request
$telegram->handle();
} catch (Longman\TelegramBot\Exception\TelegramException $e) {
// Silence is golden!
//echo $e;
// Log telegram errors
Longman\TelegramBot\TelegramLog::error($e);
} catch (Longman\TelegramBot\Exception\TelegramLogException $e) {
// Silence is golden!
// Uncomment this to catch log initialisation errors
//echo $e;
}