-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBot.php
More file actions
122 lines (87 loc) · 2.55 KB
/
Bot.php
File metadata and controls
122 lines (87 loc) · 2.55 KB
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
<?php
namespace Bot;
require_once 'constants.php';
require_once 'TelegramConnector.php';
class Bot extends TelegramConnector{
public static function execute(){
static::processRequest();
static::executeCommand(static::$command);
}
public static function start () {
if (static::isUserRegistered (static::$user['id'])) {
static::apiRequest ("sendMessage", [
'chat_id' => static::$chat['id'],
"text" => 'Добро пожаловать, ' . static::$user['first_name'] . '!',
]
);
} else {
file_put_contents ('smth.txt',"start: isUserRegistered : \n <br>" . static::isUserRegistered (static::$user['id']) . "\n <br>",FILE_APPEND);
static::apiRequest ("sendMessage", [
'chat_id' => static::$chat['id'],
"text" => 'Добро пожаловать, ' . static::$user['first_name'] . ', введите телефон для регистрации',
'reply_markup' => [
'keyboard' => [
[
[
'text' => "SHOW PHONE",
'request_contact' => true,
],
],
],
'one_time_keyboard' => true,
'resize_keyboard' => true,
],
]);
}
}
public static function executeCommand($command){
switch ($command){
case C_START : {
return static::start();
break;
}
case C_GET_COMMANDS : {
static::apiRequest ("sendMessage", [
'chat_id' => static::$chat['id'],
"text" => '/commands',
]);
break;
}
case C_GET_USER_REQ : {
break;
}
case C_ADD_REQ : {
break;
}
case C_AUTH : {
break;
}
default : {
break;
}
}
}
public static function getUserCommands(){
}
/**
* заявка
*/
public static function getUserRequests(){
}
/**
* заявка
*/
public static function addUserRequest(){
}
public static function auth(){
}
public static function oAuth(){
}
public static function isUserAuthorized($useId){
}
public static function isUserRegistered($useId){
return false;
}
public static function registerUser($arUser){
}
}