X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/97c572b92f5e09d646ce045a949e40d53f87243a..513bf485f20f0308c7f25c96717190a354bf0ec3:/website/status.php diff --git a/website/status.php b/website/status.php index 832f4600..c0c379d0 100644 --- a/website/status.php +++ b/website/status.php @@ -1,41 +1,51 @@ getOne("select make_standard_name('a')"); - if (PEAR::isError($sStandardWord)) - { - statusError("Module failed"); - } - if ($sStandardWord != 'a') - { - statusError("Module call failed"); - } - - $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"); - } - if (!$iWordID) - { - statusError("No value"); - } - - echo "OK"; - exit; +@define('CONST_ConnectionBucket_PageType', 'Status'); + +require_once(dirname(dirname(__FILE__)).'/settings/settings.php'); +require_once(CONST_BasePath.'/lib/init-website.php'); +require_once(CONST_BasePath.'/lib/ParameterParser.php'); +require_once(CONST_BasePath.'/lib/Status.php'); + +$oParams = new Nominatim\ParameterParser(); +$sOutputFormat = $oParams->getSet('format', array('text', 'json'), 'text'); + +$oDB = DB::connect(CONST_Database_DSN, false); +$oStatus = new Nominatim\Status($oDB); + + +if ($sOutputFormat == 'json') { + header('content-type: application/json; charset=UTF-8'); +} + + +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 ($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'; +} + +exit;