forked from hbashton/BruhhBot-Madeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
callback.php
102 lines (81 loc) · 3.01 KB
/
callback.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
<?php
/**
* Copyright (C) 2016-2017 Hunter Ashton
* This file is part of BruhhBot.
* BruhhBot is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* BruhhBot is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with BruhhBot. If not, see <http://www.gnu.org/licenses/>.
*/
function BotCallbackQuery($update, $MadelineProto)
{
require 'require_exceptions.php';
if (array_key_exists('data', $update['update'])) {
$parsed_query = parse_query($update, $MadelineProto);
switch ($parsed_query['data']['q']) {
case 'group_settings':
group_settings($update, $MadelineProto);
break;
case 'moderators':
moderators_menu_callback($update, $MadelineProto);
break;
case 'rules_menu':
rules_menu($update, $MadelineProto);
break;
case 'rules_show':
rules_show_callback($update, $MadelineProto);
break;
case 'moderators_menu':
moderators_menu($update, $MadelineProto);
break;
case 'alert_me_menu':
alert_me_menu($update, $MadelineProto);
break;
case 'alert_me_cb':
alert_me_callback($update, $MadelineProto);
break;
case 'user_settings':
user_settings_menu($update, $MadelineProto);
break;
case 'welcome':
welcome_callback($update, $MadelineProto);
break;
case 'welcome_menu':
welcome_menu($update, $MadelineProto);
break;
case 'increase_flood':
increment_flood($update, $MadelineProto, true);
break;
case 'hint':
alert_hint($update, $MadelineProto);
break;
case 'decrease_flood':
increment_flood($update, $MadelineProto, false);
break;
case 'lock':
lock_callback($update, $MadelineProto);
break;
case 'locked':
locked_menu($update, $MadelineProto);
break;
case 'help2':
help2_callback($update, $MadelineProto);
break;
case 'help3':
help3_callback($update, $MadelineProto);
break;
case 'back_to_help':
help_menu_callback($update, $MadelineProto);
break;
case 'back_to_settings':
settings_menu_callback($update, $MadelineProto);
break;
}
}
}