-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBotApplication.php
154 lines (134 loc) · 3.19 KB
/
BotApplication.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
<?php
namespace ChatBot;
use ChatBot\Clients\FBClient;
use ChatBot\Clients\TelegramClient;
use ChatBot\Messages\Message;
/**
* Class BotApplication
*
* @package ChatBot
*/
abstract class BotApplication
{
/**
* FB Messenger
*/
const PLATFORM_FB = "fb";
/**
* Telegram
*/
const PLATFORM_TELEGRAM = "telegram";
/**
* Application config
*
* @var array
*/
protected $config = [];
/**
* Client Object
*
* @var null|BaseClient
*/
protected $client = null;
/**
* Method will be executed when user start chatting with bot
*
* @param $platform Platform alias from config file
* @param array $data Input data
* @return mixed
*/
abstract public function install($platform, $data = []);
/**
* Method will be executed when user delete bot
*
* @param $platform Platform alias from config file
* @param array $data Input data
* @return mixed
*/
abstract public function uninstall($platform, $data = []);
/**
* Method will be executed when bot received message from user
*
* @param $platform Platform alias from config file
* @param array $data Input data
* @return mixed
*/
abstract public function receive($platform, $data = []);
/**
* BotApplication constructor.
*
* @param array $config Application config
*/
public function __construct($config)
{
$this->config = $config;
}
/**
* Run Application
*/
public function run()
{
$platform = str_replace("/", "", $_SERVER["REQUEST_URI"]);
switch ($platform)
{
case 'fb':
$this->client = new FBClient($this->config);
break;
case 'telegram':
$this->client = new TelegramClient($this->config);
break;
}
$this->client->run($_REQUEST, [
'install' => [$this, 'install'],
'uninstall' => [$this, 'uninstall'],
'receive' => [$this, 'receive']
]);
}
/**
* Get All config vars for platform
*
* @param $platform Platform alias from config file
* @return array
*/
public function getConfigPlatform($platform)
{
if (!empty($this->config[$platform])) {
return $this->config[$platform];
}
return [];
}
/**
* Get config var for platform
*
* @param $platform Platform alias from config file
* @param $key Param alias
* @return mixed|bool
*/
public function getConfigValue($platform, $key)
{
if (!empty($this->config[$platform][$key])) {
return $this->config[$platform][$key];
}
return false;
}
/**
* Send message to user
*
* @param Message $message Message object
* @return mixed
*/
protected function send(Message $message)
{
return $this->client->send($message);
}
/**
* Get User Profile
*
* @param $user
* @return mixed
*/
protected function userProfile($user)
{
return $this->client->userProfile($user);
}
}