40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
|
|
use pizzaboxer\ProjectPolygon\Users;
|
|
use pizzaboxer\ProjectPolygon\Discord;
|
|
|
|
header("content-type: text/plain");
|
|
|
|
// this should only be used if core.php does not work
|
|
$emergency = ($_GET["key"] ?? false) == "D5F6E2EAA6C07C991CA2895920A8BBA8BB66CA16";
|
|
$output = "";
|
|
$webhook = "";
|
|
$output_array = [];
|
|
|
|
if($emergency)
|
|
{
|
|
require $_SERVER["DOCUMENT_ROOT"]."/api/private/classes/pizzaboxer/ProjectPolygon/Discord.php";
|
|
|
|
$webhook .= sprintf("[%s] Git Pull intiated by %s on %s\n", date('d/m/Y h:i:s A'), "[[[OVERRIDE]]]", $_SERVER["HTTP_HOST"]);
|
|
}
|
|
else
|
|
{
|
|
require $_SERVER["DOCUMENT_ROOT"]."/api/private/core.php";
|
|
|
|
if(!Users::IsAdmin(Users::STAFF_ADMINISTRATOR)) die(http_response_code(404));
|
|
$webhook .= sprintf("[%s] Git Pull executed by %s on %s\n", date('d/m/Y h:i:s A'), SESSION["user"]["username"], $_SERVER["HTTP_HOST"]);
|
|
}
|
|
|
|
exec("git pull 2>&1", $output_array, $exitcode);
|
|
|
|
foreach($output_array as $line) $output .= "$line\n";
|
|
if($exitcode != 0) $output .= "\n\nGit exited with code $exitcode";
|
|
|
|
echo $output;
|
|
|
|
$webhook .= "```yaml\n";
|
|
$webhook .= $output;
|
|
$webhook .= "```";
|
|
|
|
Discord::SendToWebhook(["content" => $webhook], Discord::WEBHOOK_POLYGON_GITPULL, false);
|