-
Notifications
You must be signed in to change notification settings - Fork 2
/
api.php
337 lines (292 loc) · 9.34 KB
/
api.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
<?php
/**
* Main API calling point
*
* @package ShowBot-backend
* @author Latif Khalifa <[email protected]>
* @copyright Copyright(c) 2014, Latif Khalifa
* @license http://opensource.org/licenses/MIT
*/
define("SITE_ROOT", dirname(__file__));
require_once SITE_ROOT . "/lib/init.php";
/**
* Result class
*
* Result is sent in form of Success boolean
* with accompanying Message
*/
class ResponseStatus
{
public $Success = false;
public $Message;
}
/**
* Base class for incoming requests
*
* Incoming requests are POST-ed to this URL with
* JSON datra that at least has $ServerID and $Channel
* set. ApiAuth is required for all request that modify
* or store new data
*/
class Request
{
public $ApiAuth;
public $ServerID;
public $Channel;
public $Title;
function __construct($json = null)
{
if ($json)
{
$this->FromJSON($json);
}
}
function FromJSON($json)
{
foreach($json as $key => $val)
{
$this->$key = trim((string)$val);
}
}
}
/**
* Add new suggestion
*/
class Sugggestion extends Request
{
public $User;
public $Title;
function getDigest()
{
$t = preg_replace('/[^\w]/', ' ', strtolower($this->Title));
$t = preg_replace('/\s+/', ' ', trim($t));
return sha1($t);
}
function exists()
{
$digest = $this->getDigest();
$q = kl_str_sql("select count(*) as nr from suggestions where server_id=!s and channel=!s and digest=!s", $this->ServerID, $this->Channel, $digest);
if ($res = DBH::$db->query($q))
{
if ($row = DBH::$db->fetchRow($res))
{
return $row["nr"] !== "0";
}
}
return false;
}
function add()
{
$q = kl_str_sql("insert into suggestions(server_id, channel, digest, suggestion, user) values (!s, !s, !s, !s, !s)",
$this->ServerID,
$this->Channel,
$this->getDigest(),
$this->Title,
$this->User);
if (!$res = DBH::$db->query($q))
{
return -1;
}
else
{
self::invalidateCache($this->ServerID, $this->Channel);
return DBH::$db->insertID();
}
}
static function getMKey($serverID, $channel, $prefix = "get_")
{
return $prefix . $serverID . $channel;
}
static function invalidateCache($serverID, $channel)
{
Memc::$daemon->delete(self::getMKey($serverID, $channel));
}
static function getSorted($serverID, $channel)
{
if (false !== $cached = Memc::$daemon->get(self::getMKey($serverID, $channel))) return $cached;
$ret = [];
$q = kl_str_sql("select * from suggestions where server_id=!s and channel=!s order by votes desc, id asc", $serverID, $channel);
if (!$res = DBH::$db->query($q))
{
return $ret;
}
while ($row = DBH::$db->fetchRow($res))
{
$s = new Sugggestion;
$s->ID = $row["id"];
$s->ServerID = $row["server_id"];
$s->Channel = $row["channel"];
$s->Digest = $row["digest"];
$s->Votes = $row["votes"];
$s->Title = $row["suggestion"];
$s->User = $row["user"];
$ret[] = $s;
}
Memc::$daemon->set(self::getMKey($serverID, $channel), $ret, 30);
return $ret;
}
}
/**
* Sends back response and terminates execution
*
* @param bool $success Indicates if the operation was successful
* @param string $message Text explaining the status of the operation
*/
function respond($success, $message)
{
header("Content-Type: application/json");
$res = new ResponseStatus;
$res->Success = $success;
$res->Message = $message;
print json_encode($res);
die();
}
/**
* Apply rate limiting. Send error and terminate when limit is exceeded.
*
* @param string $id Unique ID of the type of request. For instence client IP + operation
* @param int $limit Maximum number of requsts
* @param int $period Number of seconds during which $limit must not be exceeded
*/
function rateLimit($id, $limit, $period)
{
$key = "ratelimit_$id";
$nr = Memc::$daemon->get($key);
if ($nr === false)
{
Memc::$daemon->set($key, 1, $period);
}
else if ($nr < $limit)
{
Memc::$daemon->increment($key);
}
else
{
//http_response_code(403);
respond(false, "Rate of max $limit per $period seconds exceeded");
}
}
/**
* Check authentication
*
* This function checks if the request is allowed to proceed-
* It by default checks the authentication token, and that
* ServerID and Channel are on the allowed list set in init.php
* configuration file.
*
* @param object $req JSON deserialized request data
* @param bool $requireApiAuth Should auth token be checked. Default is true.
**/
function checkAuth($req, $requireApiAuth = true)
{
global $ALLOWED_SERVERS, $ALLOWED_CHANNELS;
if ($requireApiAuth && (!isset($req->ApiAuth) || API_AUTH !== $req->ApiAuth))
{
respond(false, "Access denied");
}
if (!in_array($req->ServerID, $ALLOWED_SERVERS, true)
|| !in_array($req->Channel, $ALLOWED_CHANNELS[$req->ServerID]))
{
respond(false, "Unknown channel");
}
}
function vote($req)
{
$ip = $_SERVER["REMOTE_ADDR"];
// First check if this ip voted for this proposal already
$q = kl_str_sql("select count(*) as nr from votes where suggestion_id=!i and user_ip=!s", $req->SuggestionID, $ip);
if (!($res = DBH::$db->query($q)) || !($row = DBH::$db->fetchRow($res)))
{
respond(false, "voting failed");
}
if ($row["nr"] !== "0")
{
respond(false, "Already voted for that suggestion");
}
$q = kl_str_sql("select server_id, channel from suggestions where id=!i", $req->SuggestionID);
if (!($res = DBH::$db->query($q)) || !($row = DBH::$db->fetchRow($res)))
{
respond(false, "voting failed");
}
DBH::$db->query(kl_str_sql("insert into votes(suggestion_id, user_ip) values (!i, !s)", $req->SuggestionID, $ip));
DBH::$db->query(kl_str_sql("update suggestions set votes = votes + 1 where id=!i", $req->SuggestionID));
Sugggestion::invalidateCache($row["server_id"], $row["channel"]);
respond(true, "vote registered");
}
/**
* Main
*/
$input = file_get_contents("php://input");
$req = json_decode($input);
// @file_put_contents("/tmp/showbot.txt", var_export($input, true));
if (!$req)
{
respond(false, "No data");
}
if (!isset($req->Function))
{
respond(false, "Invalid request: func not specified");
}
$func = (string)$req->Function;
switch ($func)
{
case "suggestion_add":
$suggestion = new Sugggestion($req);
if (!$suggestion->Title || !$suggestion->User)
{
respond(false, "Empty user or title");
}
checkAuth($req);
rateLimit("add_sug_" . $suggestion->User, 1, 10);
if ($suggestion->exists())
{
respond(false, "Already added");
}
$id = $suggestion->add();
if ($id == -1)
{
respond(false, "Adding suggestion failed");
}
else
{
respond(true, "Added, thanks! " . URL_ROOT . "/?server_id=" . urlencode($suggestion->ServerID) . "&channel=" . urlencode($suggestion->Channel));
}
break;
case "channel_reset":
checkAuth($req);
$r = new Request($req);
DBH::$db->query(kl_str_sql("delete from suggestions where server_id=!s and channel=!s", $r->ServerID, $r->Channel));
Sugggestion::invalidateCache($r->ServerID, $r->Channel);
respond(true, "channel {$r->Channel} reset");
break;
case "title_delete":
checkAuth($req);
$r = new Request($req);
DBH::$db->query(kl_str_sql("delete from suggestions where server_id=!s and channel=!s and suggestion=!s", $r->ServerID, $r->Channel, $r->Title));
Sugggestion::invalidateCache($r->ServerID, $r->Channel);
respond(true, "title {$r->Title} on channel {$r->Channel} deleted");
break;
case "channel_top":
checkAuth($req);
$res = Sugggestion::getSorted($req->ServerID, $req->Channel);
$out = "Results:\n";
for ($i = 0; $i < 5 && $i < count($res); $i++)
{
$out .= "({$res[$i]->Votes} votes) {$res[$i]->Title} ({$res[$i]->User})\n";
}
respond(true, $out);
break;
case "web_top":
checkAuth($req, false);
$res = Sugggestion::getSorted($req->ServerID, $req->Channel);
header("Content-Type: application/json");
print json_encode($res);
die();
break;
case "vote_add":
checkAuth($req, false);
vote($req);
break;
default:
respond(false, "Invalid request: unknown func");
}