-
Notifications
You must be signed in to change notification settings - Fork 1
/
telegram.php
231 lines (216 loc) · 8.45 KB
/
telegram.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<?php
require_once("vendor/autoload.php");
require_once("config.php");
require_once("functions.php");
$input = json_decode(file_get_contents("php://input"), true);
close_connection();
if (
isset($input["message"]["text"]) &&
mb_strlen($input["message"]["text"]) > 0
) {
tgapi("sendChatAction", [
"action" => "typing",
"chat_id" => $input["message"]["chat"]["id"]
]);
$database = new Medoo\Medoo([
"database_type" => "mysql",
"database_name" => MYSQLI_DB,
"server" => MYSQLI_HOST,
"username" => MYSQLI_USERNAME,
"password" => MYSQLI_PASSWORD,
"port" => MYSQLI_PORT,
"collation" => "utf8mb4_general_ci",
"charset" => "utf8mb4",
]);
if (preg_match("/^(.+?) или (.+?)\??$/", $input["message"]["text"], $matches)) {
if (mb_strtolower($matches[1]) === mb_strtolower($matches[2])) {
tgapi("sendMessage", [
"text" => "Они одинаково популярны 😑",
"chat_id" => $input["message"]["chat"]["id"]
]);
exit;
}
$user_prev_messages = $database->select(MYSQLI_TABLE, [
"id",
"date",
], [
"chat_id" => $input["message"]["chat"]["id"],
"ORDER" => [
"id" => "DESC",
],
"LIMIT" => 1
]);
if (count($user_prev_messages) === 1) {
$once_per = 6;
$past = time() - strtotime($user_prev_messages[0]["date"]);
if ($past < $once_per) {
tgapi("sendMessage", [
"text" => "ℹ Чтобы Google не банил IP нашего сервера, мы ограничиваем частоту запросов от пользователей. Вы можете сделать следующий запрос через " . ($once_per - $past) . " " . pluralize(($once_per - $past), "секунду", "секунды", "секунд") . ".",
"chat_id" => $input["message"]["chat"]["id"]
]);
exit;
}
}
$words_pure = [$matches[1], $matches[2]];
$words = array_map(function($item) {
return [
"word" => $item,
"popularity" => 0,
];
}, $words_pure);
$options = [
"hl" => "en-US",//"ru-RU",
"tz" => 0,
"geo" => "",
];
$gt = new Google\GTrends($options);
$result = $gt->interestOverTime($words_pure);
if ($result === false) {
tgapi("sendMessage", [
"text" => "🔥 Поступило слишком много запросов. Скоро все заработает.",
"chat_id" => $input["message"]["chat"]["id"]
]);
exit;
}
else if (is_array($result) && count($result) === 0) {
tgapi("sendMessage", [
"text" => arr_rand([
"Эти два слова абсолютно непопулярны 🤷♂️ ",
"Нет никаких данных об этих словах 🤷♂️",
"Они оба непопулярны 🤷♂️",
]),
"chat_id" => $input["message"]["chat"]["id"]
]);
exit;
}
foreach ($result as $key => $value) {
foreach ($value["value"] as $wordKey => $wordPopularity) {
$words[$wordKey]["popularity"] += $wordPopularity;
}
}
usort($words, function($a, $b) {
return $b["popularity"] - $a["popularity"];
});
$times = $words[1]["popularity"] === 0 ? INF : round($words[0]["popularity"] / $words[1]["popularity"]);
$answer = arr_rand([
"%word1 однозначно популярнее",
"Я проверил: %word1 %times популярнее, чем %word2",
"По моим источникам %word1 %times популярнее, чем %word2",
"Смело заявляю, что %word1 %times популярнее, чем %word2",
"За последний год %word1 %times популярнее, чем %word2",
"Насколько я знаю, %word1 %times популярнее, чем %word2",
"Мне хорошо известно, что %word1 %times популярнее, чем %word2",
"Я знаю наверняка, что %word1 %times популярнее, чем %word2",
"Как оказалось, %word1 %times популярнее, чем %word2",
"Могу с уверенностью заявить: %word1 %times популярнее, чем %word2",
]);
$answer = preg_replace("/%word1/", $words[0]["word"], $answer);
$answer = preg_replace("/%word2/", $words[1]["word"], $answer);
if (is_infinite($times)) {
$answer = preg_replace("/%times/", "в бесконечное количество раз", $answer);
}
else if ($times > 1) {
$answer = preg_replace("/%times/", "в $times " . pluralize($times, "раз", "раза", "раз"), $answer);
}
else {
$answer = preg_replace("/%times/", arr_rand(["чуточку", "немного"]), $answer);
}
tgapi("sendMessage", [
"text" => $answer,
"chat_id" => $input["message"]["chat"]["id"]
]);
$database->insert(MYSQLI_TABLE, [
"word1" => $words[0]["word"],
"word2" => $words[1]["word"],
"command" => $input["message"]["text"],
"answer" => $answer,
"chat_id" => $input["message"]["chat"]["id"]
]);
}
else if ($input["message"]["text"] === "/start") {
tgapi("sendMessage", [
"text" => trim_message("
👋 Привет. Я помогу узнать, какая из двух вещей более популярна на основе поисковых запросов в Google.
💬 Спроси меня, например, «арбуз или дыня» или «Илон Маск или Стив Джобс».
Автор: @mikhailsdv
Мой канал: @FilteredInternet
"),
"chat_id" => $input["message"]["chat"]["id"]
]);
}
else if ($input["message"]["text"] === "/alice") {
$is_already_given = $database->select("trendier_bot_alice", [
"url",
"id",
], [
"is_given" => 1,
"user_id" => $input["message"]["chat"]["id"],
"LIMIT" => 1
]);
if (count($is_already_given) === 1) {
tgapi("sendMessage", [
"text" => "❌ Вы ранее уже получили ссылку на навык. Если вы еще не воспользовались ею, нажмите на кнопку ниже.",
"chat_id" => $input["message"]["chat"]["id"],
"reply_markup" => json_encode([
"inline_keyboard" => [
[[
"text" => "Установить навык",
"url" => $is_already_given[0]["url"]
]]
]
])
]);
}
else {
$skill_link = $database->select("trendier_bot_alice", [
"url",
"id",
], [
"is_given" => 0,
"LIMIT" => 1
]);
if (count($skill_link) === 1) {
tgapi("sendMessage", [
"text" => trim_message("
✅ Вот ссылка на привытный навык для Алисы. Она деактивируется после того, как вы добавите навык в свой аккаунт.
ℹ Полсе добавления навыка для его запуска скажите «Алиса, запусти навык Что популярнее».
"),
"chat_id" => $input["message"]["chat"]["id"],
"reply_markup" => json_encode([
"inline_keyboard" => [
[[
"text" => "Установить навык",
"url" => $skill_link[0]["url"]
]]
]
])
]);
$database->update("trendier_bot_alice", [
"is_given" => 1,
"user_id" => $input["message"]["chat"]["id"],
], [
"id" => $skill_link[0]["id"],
]);
}
else {
tgapi("sendMessage", [
"text" => trim_message("
❌ К сожалению, ссылок больше нет. Возможно они будут позже.
Подпишись на мой канал @FilteredInternet, чтобы не пропустить новую партию.
"),
"chat_id" => $input["message"]["chat"]["id"],
]);
}
}
}
else {
tgapi("sendMessage", [
"text" => arr_rand([
"Не совсем понимаю, что вы хотите сравнить. Вот, как нужно спрашивать «арбуз или дыня» или «Илон Маск или Стив Джобс».",
"Не могу понять, о каких двух вещах идет речь. Вот, как нужно спрашивать «арбуз или дыня» или «Илон Маск или Стив Джобс».",
"Не могу разобрать команду. Вот, как нужно спрашивать «арбуз или дыня» или «Илон Маск или Стив Джобс».",
]),
"chat_id" => $input["message"]["chat"]["id"]
]);
}
}