-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.php
130 lines (73 loc) · 3.5 KB
/
handler.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
<?php
if (!isset($_REQUEST)) {
return;
}
//база
$blt = array("хуй", "пизда", "пидор", "говно", "ублюдок");
$prv = array("привет", "здравствуй", "прив", "хало", "даров","привки");
$neg_ansv = array("пиздец","плохо", "ужасно", "просто жопа");
$confirmationToken = 'возврат';
$token = 'токен';
$secretKey = 'ключ';
$data = json_decode(file_get_contents('php://input'));
if(strcmp($data->secret, $secretKey) !== 0 && strcmp($data->type, 'confirmation') !== 0)
return;
switch ($data->type) {
case 'confirmation':
echo $confirmationToken;
break;
case 'message_new':
$userId = $data->object->user_id;
$users_message = $data->object->body;
$userInfo = json_decode(file_get_contents("https://api.vk.com/method/users.get?user_ids={$userId}&access_token={$token}&v=5.8"));
$user_name = $userInfo->response[0]->first_name;
$tipical = "{$user_name}, ты прости дурака. Не понял я, что ты сказал. Но в базу записал и скоро научусь отвечать нормально";
$fin_msg = $tipical;
if($fin_msg == $tipical) {
foreach ($blt as $value) {
if (strripos($users_message, $value) == true || mb_strtolower($users_message) == $value) {
$fin_msg = "{$user_name}, давайте ка по вежливее, а то смею напомнить, что на боку моего пистолета написано Desert Eagle 50, а вашего пистолета я не вижу";
}
}
}
if($fin_msg == $tipical){
foreach ($prv as $value) {
if (strripos($users_message, $value) == true || mb_strtolower($users_message) == $value) {
$fin_msg = "Ну что {$user_name}, как оно?";
}
}
}
if($fin_msg == $tipical){
foreach ($neg_ansv as $value) {
if (strripos($users_message, $value) == true || mb_strtolower($users_message) == $value) {
$fin_msg = "Блин ну хреново быть тобой, {$user_name}, что тут еще скажешь";
}
}
}
$request_params = array(
'message' => $fin_msg,
'user_id' => $userId,
'access_token' => $token,
'v' => '5.8'
);
$get_params = http_build_query($request_params);
file_get_contents('https://api.vk.com/method/messages.send?' . $get_params);
echo('ok');
break;
case 'group_join':
$userId = $data->object->user_id;
$userInfo = json_decode(file_get_contents("https://api.vk.com/method/users.get?user_ids={$userId}&access_token={$token}&v=5.8"));
//и извлекаем из ответа его имя
$user_name = $userInfo->response[0]->first_name;
$request_params = array(
'message' => "{$user_name} привет. Че ты тут забыл?",
'user_id' => $userId,
'access_token' => $token,
'v' => '5.8'
);
$get_params = http_build_query($request_params);
file_get_contents('https://api.vk.com/method/messages.send?' . $get_params);
echo('ok');
break;
}
?>