X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/4f75f4cb6e468a8de282a81615e7c720e154c8b4..7f0a0ce5e573db724310abe2153cb9224e219ece:/lib/init-website.php diff --git a/lib/init-website.php b/lib/init-website.php index 61a41731..ae2a5d36 100644 --- a/lib/init-website.php +++ b/lib/init-website.php @@ -1,17 +1,79 @@ getCode()); + header('Content-type: text/html; charset=UTF-8'); + include(CONST_BasePath.'/lib/template/error-html.php'); +} + +function exception_handler_json($exception) +{ + http_response_code($exception->getCode()); + header('Content-type: application/json; charset=utf-8'); + include(CONST_BasePath.'/lib/template/error-json.php'); +} + +function exception_handler_xml($exception) +{ + http_response_code($exception->getCode()); + header('Content-type: text/xml; charset=utf-8'); + echo ''."\n"; + include(CONST_BasePath.'/lib/template/error-xml.php'); +} + + +function set_exception_handler_by_format($sFormat = 'html') +{ + if ($sFormat == 'html') { + set_exception_handler('exception_handler_html'); + } elseif ($sFormat == 'xml') { + set_exception_handler('exception_handler_xml'); + } else { + set_exception_handler('exception_handler_json'); + } +} +// set a default +set_exception_handler_by_format(); + + +/*************************************************************************** + * HTTP Reply header setup + */ + +if (CONST_NoAccessControl) { + header('Access-Control-Allow-Origin: *'); + header('Access-Control-Allow-Methods: OPTIONS,GET'); + if (!empty($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) { + header('Access-Control-Allow-Headers: '.$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']); + } +} +if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'OPTIONS') exit; + +if (CONST_Debug) header('Content-type: text/html; charset=utf-8');