-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.php
779 lines (618 loc) · 22.9 KB
/
run.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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
<?php
/* Allow running from CLI only */
if (php_sapi_name() != "cli") {
http_response_code(404);
exit();
}
/* Requirements */
require_once './settings.php';
require_once './classes/pdo.class.php';
require __DIR__ . '/vendor/autoload.php';
/* Gitter Client */
use Gitter\Client;
/* Initial vars */
$observers = array();
$roomIds = array();
$challengeIds = array();
$currentRoom = 0;
$lastMsg = '';
$msgRepeats = 0;
/* Instantiate objects */
$db = new Database;
$client = new Client(TOKEN);
/* Handles most DB queries */
function dbQuery($type, $query, $data = array(), $db){
// Selecting a single row
if($type === 'single'){
$db->query($query);
foreach($data as $bind){
$db->bind($bind[0], $bind[1]);
}
try {
return $db->single();
} catch(PDOException $e){
file_put_contents('dbErrors.txt', file_get_contents('dbErrors.txt') . "\n" . $e->getMessage());
return "Database error. @".BOTOWNER." has been informed about this issue.";
}
// Selecting multiple rows
} else if($type === 'resultset'){
$db->query($query);
foreach($data as $bind){
$db->bind($bind[0], $bind[1]);
}
try {
return $db->resultset();
} catch(PDOException $e){
file_put_contents('dbErrors.txt', file_get_contents('dbErrors.txt') . "\n" . $e->getMessage());
return "Database error. @".BOTOWNER." has been informed about this issue.";
}
// Inserting or update a row
} else if($type === 'insert' || $type === 'update'){
$db->query($query);
foreach($data as $bind){
$db->bind($bind[0], $bind[1]);
}
try {
$db->execute();
return 'success';
} catch(PDOException $e){
file_put_contents('dbErrors.txt', file_get_contents('dbErrors.txt') . "\n" . $e->getMessage());
return "Database error. @".BOTOWNER." has been informed about this issue.";
}
}
}
$spamPrevention = function($msg) use (&$lastMsg, &$msgRepeats){
if($msg === $lastMsg){
if($msgRepeats > 1){
$msgRepeats = 0;
return " Sending random number to prevent SPAM detection after repeating last message more than 3 times: ". rand(1000, 10000) .".\n";
} else {
$msgRepeats++;
return '';
}
} else {
$lastMsg = $msg;
$msgRepeats = 0;
return '';
}
};
/* Get messages and id's for each room */
foreach ($client->rooms as $room) {
array_push($observers, $client->rooms->messages($room['id']));
array_push($roomIds, $room['id']);
}
/* Create observer for each room */
foreach ($observers as $observer) {
$observer->subscribe(function ($message) use ($client, $roomIds, $currentRoom, &$challengeIds, &$db, &$spamPrevention){
// Uncomment to enable message debugger
//file_put_contents('messages.txt', file_get_contents('messages.txt') . "\n" . print_r($message, true));
// Verify bot being mentioned first by user
if(!empty($message['mentions'][0]) && $message['mentions'][0]['screenName'] === BOTUSER){
$msg = explode(' ', $message['text'], 2);
$msg[1] = trim($msg[1]);
// Command 'help' received
if(preg_match("/^help$/i", $msg[1])){
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","help"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
// Command 'help javascript' received
} else if(preg_match("/^help javascript$/i", $msg[1])){
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","help javascript"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
// Command 'help challenges' received
} else if(preg_match("/^help challenges$/i", $msg[1])){
if($roomIds[$currentRoom] == '5b903b77d73408ce4fa70b9c'){
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","help challenges"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
} else {
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","help challenges wrong room"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
}
// Command 'challenge' received
} else if(preg_match("/^challenge$/i", $msg[1])){
// Make sure user is in the correct room
if($roomIds[$currentRoom] == CHALLENGEROOM){
$query = "SELECT description, conditions, example FROM challenges WHERE current = 1";
$result = dbQuery('single', $query, array(), $db);
$msg = " The current challenge is:\n".
$result['description']."\n\n".
"Rules:\n".
$result['conditions']."\n\n".
"Example:\n".
$result['example'];
// Spam prevention
$spam = $spamPrevention($msg);
// Return current challenge to user
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
$msg
);
// User is in the wrong room
} else {
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","challenges cmd wrong room"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
}
// Command 'solve' received
} else if(preg_match("/^solve/i", $msg[1])){
// Make sure user is in the correct room
if($roomIds[$currentRoom] == CHALLENGEROOM){
// Verify user is providing a solution
if(preg_match("/```(.*)```/s", $message['text'], $result)){
// Sandbox user provided code
$js = <<<EOT
$result[1]
EOT;
// Select current challenge's tests from database
$query = "SELECT id, tests, results FROM challenges WHERE current = 1";
$result = dbQuery('single', $query, array(), $db);
$challengeID = $result['id'];
// Parse tests and their expected results into arrays
$tests = explode("\n", $result['tests']);
$results = explode("\n", $result['results']);
// Assume user provided correct solution and no JS errors were present
$solved = true;
$error = false;
// Placeholder for wrong test results
$testResults = "";
// Run tests against user provided solution
for($i = 0; $i < count($tests); $i++){
$run = $js.PHP_EOL.$tests[$i];
// Instantiate V8Js engine
$v8 = new V8Js();
$v8->setTimeLimit(10000);
$v8->setMemoryLimit(10240000);
try {
$output = $v8->executeString($run);
// JSON encode if result is object
if(is_object($output)){
$output = json_encode($output);
}
// Test failed
if($output != $results[$i]){
if(is_bool($output)){
if($output){ $output = 'true'; } else { $output = 'false'; }
}
$testResults .= "Test `".$tests[$i]."` should return `".$results[$i]."`. Instead got: `".$output."` .\n";
$solved = false;
}
// JS error in user provided code solution
} catch (V8JsException $e) {
$output = $e->getMessage();
$msg = " There was an error with your Javascript code:\n".
"```\n".
$output."\n".
"```";
// Spam prevention
$spam = $spamPrevention($msg);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
$msg
);
$solved = false;
$error = true;
break;
}
unset($v8);
}
// All tests succeeded
if($solved){
// Add challenge to challenges array so it doesn't get selected again
array_push($challengeIds, $result['id']);
// Verify if user already solved the current challenge in the past
$query = "SELECT id FROM solved WHERE username = :user AND challengeid = :id";
$data = array(
array(":user", $message['fromUser']['username']),
array(":id", $result['id'])
);
$result = dbQuery('single', $query, $data, $db);
// User solved the challenge in the past
if($db->rowCount() > 0){
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","solved no points"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
} else {
// Add the user the list of users that has solved the challenge
$query = "INSERT INTO solved (`challengeid`,`username`) VALUES (:id, :user)";
$data = array(
array(":id", $challengeID),
array(":user", $message['fromUser']['username'])
);
$result = dbQuery('insert', $query, $data, $db);
if($result !== 'success'){
// Spam prevention
$spam = $spamPrevention($result);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result
);
}
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","solved"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
$query = "INSERT INTO users (`username`,`points`) VALUES (:user, 1) ON DUPLICATE KEY UPDATE points = points + 1";
$data = array(array(":user", $message['fromUser']['username']));
$result = dbQuery('insert', $query, $data, $db);
if($result !== 'success'){
// Spam prevention
$spam = $spamPrevention($result);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result
);
}
}
// Remove the current status from the challenge
$query = "UPDATE challenges SET solved = solved + 1, current = 0 WHERE current = 1";
$result = dbQuery('update', $query, array(), $db);
if($result !== 'success'){
// Spam prevention
$spam = $spamPrevention($result);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result
);
}
// Select a random new challenge
$query = "SELECT id FROM challenges WHERE id NOT IN (:challenges) AND status = 2 ORDER BY RAND() LIMIT 1";
//print_r($challengeIds);
$data = array(array(":challenges", implode(',', $challengeIds)));
$result = dbQuery('single', $query, $data, $db);
//echo $result['id'];
if($db->rowCount() > 0){
// Set the random selected challenge to current
$query = "UPDATE challenges SET current = 1 WHERE id = :id";
$data = array(array(":id", $result['id']));
$result = dbQuery('update', $query, $data, $db);
if($result !== 'success'){
// Spam prevention
$spam = $spamPrevention($result);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result
);
}
} else {
$challengeIds = array();
// Select a random new challenge
$query = "SELECT id FROM challenges WHERE id NOT IN (:challenges) AND status = 2 ORDER BY RAND() LIMIT 1";
$data = array(array(":challenges", implode(',', $challengeIds)));
$result = dbQuery('single', $query, array(), $db);
// Set the random selected challenge to current
$query = "UPDATE challenges SET current = 1 WHERE id = :id";
$data = array(array(":id", $result['id']));
$result = dbQuery('update', $query, $data, $db);
if($result !== 'success'){
// Spam prevention
$spam = $spamPrevention($result);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result
);
}
}
} else if(!$error) {
$msg = $testResults."Please try again!";
// Spam prevention
$spam = $spamPrevention($msg);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$msg
);
}
// User did not provide a solution
} else {
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","no solution"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
}
} else {
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","challenges cmd wrong room"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
}
// Command 'ranks' received
} else if(preg_match("/^ranks/i", $msg[1])){
// Make sure user is in the correct room
if($roomIds[$currentRoom] == CHALLENGEROOM){
$query = "SELECT username, points FROM users ORDER BY points DESC";
$results = dbQuery('resultset', $query, array(), $db);
if($db->rowCount() > 0){
$list = "";
$place = 1;
$points = 0;
$firstLoop = true;
foreach($results as $result){
if($firstLoop){
$points = $result['points'];
$firstLoop = false;
$list .= $place .". ". $result['username'] ." with ". $result['points'] ." points!\n";
continue;
} else {
if($result['points'] == $points){
$list .= $result['username'] ." with ". $result['points'] ." points!\n";
} else if($place < 5){
$points = $result['points'];
$place++;
$list .= $place .". ". $result['username'] ." with ". $result['points'] ." points!\n";
} else {
break;
}
}
}
// Spam prevention
$spam = $spamPrevention($list);
$client->messages->create($roomIds[$currentRoom], $spam."@".$message['fromUser']['username']." \n".$list);
} else {
$msg = "No one has received any points yet!";
// Spam prevention
$spam = $spamPrevention($msg);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$msg
);
}
} else {
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","challenges cmd wrong room"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
}
// Command 'points' received
} else if(preg_match("/^points/i", $msg[1])){
// Make sure user is in the correct room
if($roomIds[$currentRoom] == CHALLENGEROOM){
$query = "SELECT points FROM users WHERE username = :user";
$data = array(array(":user", $message['fromUser']['username']));
$result = dbQuery('single', $query, $data, $db);
if($db->rowCount() > 0){
$msg = "You currently have: ". $result['points'] ." points!";
// Spam prevention
$spam = $spamPrevention($msg);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$msg
);
} else {
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","no points"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
}
} else {
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","challenges cmd wrong room"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
}
// Admin Command 'skip challenge' recieved
} else if(preg_match("/^skip challenge/i", $msg[1])){
// Verify Admin
if($message['fromUser']['username'] == BOTOWNER){
$query = "SELECT id FROM challenges WHERE current = 1";
$result = dbQuery('single', $query, array(), $db);
// Add challenge to challenges array so it doesn't get selected again
array_push($challengeIds, $result['id']);
// Remove the current status from the challenge
$query = "UPDATE challenges SET current = 0 WHERE current = 1";
$result = dbQuery('update', $query, array(), $db);
if($result !== 'success'){
// Spam prevention
$spam = $spamPrevention($result);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result
);
}
// Select a random new challenge
$query = "SELECT id FROM challenges WHERE id NOT IN (:challenges) AND status = 2 ORDER BY RAND() LIMIT 1";
$data = array(array(":challenges", implode(',', $challengeIds)));
$result = dbQuery('single', $query, array(), $db);
if($db->rowCount() > 0){
// Set the random selected challenge to current
$query = "UPDATE challenges SET current = 1 WHERE id = :id";
$data = array(array(":id", $result['id']));
$result = dbQuery('update', $query, $data, $db);
if($result !== 'success'){
// Spam prevention
$spam = $spamPrevention($result);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result
);
}
} else {
$challengeIds = array();
// Select a random new challenge
$query = "SELECT id FROM challenges WHERE id NOT IN (:challenges) AND status = 2 ORDER BY RAND() LIMIT 1";
$data = array(array(":challenges", implode(',', $challengeIds)));
$result = dbQuery('single', $query, array(), $db);
// Set the random selected challenge to current
$query = "UPDATE challenges SET current = 1 WHERE id = :id";
$data = array(array(":id", $result['id']));
$result = dbQuery('update', $query, $data, $db);
if($result !== 'success'){
// Spam prevention
$spam = $spamPrevention($result);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result
);
}
}
$msg = "The current challenge has been skipped. A new random challenge is selected.\nMessage \"challenge\" to me to see the new challenge!";
// Spam prevention
$spam = $spamPrevention($msg);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$msg
);
}
// Admin Command 'stop' received
} else if(preg_match("/^stop/i", $msg[1])){
// Verify Admin
if($message['fromUser']['username'] == BOTOWNER){
$client->messages->create($roomIds[$currentRoom],
"@".$message['fromUser']['username'].
" ". BOTUSER ." shut down succesfully!"
);
exit;
}
// No command received. User is trying to run JS code
} else if(preg_match("/```(.*)```/s", $msg[1], $code)){
// Sandbox user provided code
$js = <<<EOT
$code[1]
EOT;
// Instantiate V8Js engine
$v8 = new V8Js();
$v8->setTimeLimit(10000);
$v8->setMemoryLimit(10240000);
try {
$output = $v8->executeString($js);
if(is_object($output)){
$output = json_encode($output);
} else if(is_array($output)){
$output = print_r($output, true);
}
if(strlen($output) > 400){
$query = "SELECT msg FROM messages WHERE type = :type";
$data = array(array(":type","javascript too long"));
$result = dbQuery('single', $query, $data, $db);
// Spam prevention
$spam = $spamPrevention($result['msg']);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$result['msg']
);
} else {
$msg = "The result of your Javascript code is:\n```\n".$output."\n```";
// Spam prevention
$spam = $spamPrevention($msg);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$msg
);
}
// JS error in user provided code
} catch (V8JsException $e) {
$output = $e->getMessage();
$msg = "There was an error with your Javascript code:\n```\n".$output."\n```";
// Spam prevention
$spam = $spamPrevention($msg);
$client->messages->create($roomIds[$currentRoom],
$spam.
"@".$message['fromUser']['username'].
" ".$msg
);
}
unset($v8);
}
// Mark instantiated objects for the garbage collector
unset($db);
}
});
$currentRoom++;
}
// Connect to stream!
$client->connect();