-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcompiler.php
31 lines (30 loc) · 896 Bytes
/
compiler.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
<?php
$commitMessage = 'Compiled functions.';
$ips = array('207.97.227.253', '50.57.128.197', '108.171.174.178');
if(in_array($_SERVER['REMOTE_ADDR'], $ips)){
if(isset($_POST['payload'])){
$data = json_decode($_POST['payload']);
$compile = false;
foreach($data->commits as $commit){
if(strtolower($commit) == $commitMessage){
$compile = true;
continue;
}
}
if(!$compile){
shell_exec('git pull');
unlink('./ultimateLibrary.php');
$functions = glob('functions/*.php');
if(count($functions) > 0){
foreach($functions as $function){
$code = file_get_contents($function);
file_put_contents('./ultimateLibrary.php', "{$code}\n", FILE_APPEND);
}
shell_exec('git add ultimateLibrary.php');
shell_exec("git commit -m \"{$commitMessage}\"");
shell_exec('git push origin master');
}
}
}
}else
header('HTTP/1.1 403 Forbidden');