X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/effd8e12af440586594a18a04beb33abed260d15..71ae7f10f74251ebef13abe8d186276e6255b5d4:/website/status.php diff --git a/website/status.php b/website/status.php index b40f1352..c0c379d0 100644 --- a/website/status.php +++ b/website/status.php @@ -1,42 +1,51 @@ getSet('format', array('text', 'json'), 'text'); -$oDB =& DB::connect(CONST_Database_DSN, false); -if (!$oDB || PEAR::isError($oDB)) -{ - statusError("No database"); -} +$oDB = DB::connect(CONST_Database_DSN, false); +$oStatus = new Nominatim\Status($oDB); -$sStandardWord = $oDB->getOne("select make_standard_name('a')"); -if (PEAR::isError($sStandardWord)) -{ - statusError("Module failed"); -} -if ($sStandardWord != 'a') -{ - statusError("Module call failed"); + +if ($sOutputFormat == 'json') { + header('content-type: application/json; charset=UTF-8'); } -$iWordID = $oDB->getOne("select word_id,word_token, word, class, type, country_code, operator, search_name_count from word where word_token in (' a')"); -if (PEAR::isError($iWordID)) -{ - statusError("Query failed"); + +try { + $oStatus->status(); +} catch (Exception $oErr) { + if ($sOutputFormat == 'json') { + $aResponse = array( + 'status' => $oErr->getCode(), + 'message' => $oErr->getMessage() + ); + javascript_renderData($aResponse); + } else { + header('HTTP/1.0 500 Internal Server Error'); + echo 'ERROR: '.$oErr->getMessage(); + } + exit; } -if (!$iWordID) -{ - statusError("No value"); + + +if ($sOutputFormat == 'json') { + $epoch = $oStatus->dataDate(); + $aResponse = array( + 'status' => 0, + 'message' => 'OK', + 'data_updated' => (new DateTime('@'.$epoch))->format(DateTime::RFC3339) + ); + javascript_renderData($aResponse); +} else { + echo 'OK'; } -echo "OK"; exit; -