-
Notifications
You must be signed in to change notification settings - Fork 0
/
getUpdatesCLI.php
executable file
·94 lines (75 loc) · 3.07 KB
/
getUpdatesCLI.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/env php
<?php
/**
* README
* This configuration file is intended to run the bot with the getUpdates method.
* Uncommented parameters must be filled
*
* Bash script:
* $ while true; do ./getUpdatesCLI.php; done
*/
// Load composer
require_once __DIR__ . '/vendor/autoload.php';
use Symfony\Component\Yaml\Yaml;
$config = Yaml::parseFile('config.yaml');
// Add you bot's API key and name
$bot_api_key = $config['telegram']['api_key'];
$bot_username = $config['telegram']['username'];
// Define all IDs of admin users in this array (leave as empty array if not used)
$admin_users = [
// 123,
];
// Define all paths for your custom commands in this array (leave as empty array if not used)
$commands_paths = [
__DIR__ . '/Commands/',
];
// Enter your MySQL database credentials
$mysql_credentials = [
'host' => 'localhost',
'port' => 3306, // optional
'user' => 'chomsky',
'password' => 'L1ttl3_Ch0msky.',
'database' => 'chomsky',
];
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);
// Logging (Error, Debug and Raw Updates)
//Longman\TelegramBot\TelegramLog::initErrorLog(__DIR__ . "/{$bot_username}_error.log");
//Longman\TelegramBot\TelegramLog::initDebugLog(__DIR__ . "/{$bot_username}_debug.log");
//Longman\TelegramBot\TelegramLog::initUpdateLog(__DIR__ . "/{$bot_username}_update.log");
// If you are using a custom Monolog instance for logging, use this instead of the above
//Longman\TelegramBot\TelegramLog::initialize($your_external_monolog_instance);
// 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']);
// Botan.io integration
//$telegram->enableBotan('your_botan_token');
// Requests Limiter (tries to prevent reaching Telegram API limits)
$telegram->enableLimiter();
// Handle telegram getUpdates request
$server_response = $telegram->handleGetUpdates();
if ($server_response->isOk()) {
$update_count = count($server_response->getResult());
echo date('Y-m-d H:i:s', time()) . ' - Processed ' . $update_count . ' updates';
} else {
echo date('Y-m-d H:i:s', time()) . ' - Failed to fetch updates' . PHP_EOL;
echo $server_response->printError();
}
} catch (Longman\TelegramBot\Exception\TelegramException $e) {
echo $e->getMessage();
// Log telegram errors
Longman\TelegramBot\TelegramLog::error($e);
} catch (Longman\TelegramBot\Exception\TelegramLogException $e) {
// Catch log initialisation errors
echo $e->getMessage();
}