1
0
www.mikescher.com/www/commands/site_gitinfo.php
Mike Schwörer f69a219927
All checks were successful
Build Docker and Deploy / Build Docker (push) Successful in 18s
Build Docker and Deploy / Deploy to Server (push) Successful in 16s
DGI fixes
2023-09-12 17:43:01 +02:00

26 lines
986 B
PHP

<?php
require_once (__DIR__ . '/../internals/website.php');
/** @var PageFrameOptions $FRAME_OPTIONS */ global $FRAME_OPTIONS;
/** @var URLRoute $ROUTE */ global $ROUTE;
/** @var Website $SITE */ global $SITE;
if (!isset($API_OPTIONS['field'])) { $FRAME_OPTIONS->forceResult(400, "Wrong parameters."); return; }
$info = $SITE->gitStatus();
function printInfo($v) { if ($v === false) throw new Exception('Failed to query field'); else echo $v; }
$field = strtolower($API_OPTIONS['field']);
if ($field === 'branch') { printInfo($info[0]); return; }
if ($field === 'head') { printInfo($info[1]); return; }
if ($field === 'timestamp') { printInfo($info[3]); return; }
if ($field === 'origin') { printInfo(str_replace(';', "\n", $info[4])); return; }
if ($field === 'message') { printInfo($info[5]); return; }
$FRAME_OPTIONS->statuscode = 400;
echo 'Unknown field';
return;