2010-10-24 03:12:37 +04:00
|
|
|
<?php
|
2016-09-04 04:19:48 +03:00
|
|
|
|
|
|
|
require_once('init.php');
|
|
|
|
require_once('ParameterParser.php');
|
2018-09-16 18:16:42 +03:00
|
|
|
require_once('DatabaseError.php');
|
2018-03-24 19:44:13 +03:00
|
|
|
require_once(CONST_Debug ? 'DebugHtml.php' : 'DebugNone.php');
|
2016-07-31 22:04:33 +03:00
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
*
|
|
|
|
* Error handling functions
|
|
|
|
*
|
|
|
|
*/
|
2016-09-04 04:19:48 +03:00
|
|
|
|
2016-09-14 04:16:46 +03:00
|
|
|
|
2017-10-26 22:21:21 +03:00
|
|
|
function chksql($oSql, $sMsg = 'Database request failed')
|
2016-09-04 04:19:48 +03:00
|
|
|
{
|
|
|
|
if (!PEAR::isError($oSql)) return $oSql;
|
|
|
|
|
2018-09-16 18:16:42 +03:00
|
|
|
throw new Nominatim\DatabaseError($sMsg, 500, null, $oSql);
|
|
|
|
}
|
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
|
2018-09-16 18:16:42 +03:00
|
|
|
function userError($sMsg)
|
|
|
|
{
|
|
|
|
throw new Exception($sMsg, 400);
|
2016-09-04 04:19:48 +03:00
|
|
|
}
|
|
|
|
|
2018-09-16 18:16:42 +03:00
|
|
|
|
|
|
|
function exception_handler_html($exception)
|
2016-09-04 04:19:48 +03:00
|
|
|
{
|
2018-09-16 18:16:42 +03:00
|
|
|
http_response_code($exception->getCode());
|
|
|
|
header('Content-type: text/html; charset=UTF-8');
|
|
|
|
include(CONST_BasePath.'/lib/template/error-html.php');
|
2016-09-04 04:19:48 +03:00
|
|
|
}
|
|
|
|
|
2018-09-16 18:16:42 +03:00
|
|
|
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');
|
|
|
|
}
|
2016-09-04 04:19:48 +03:00
|
|
|
|
2018-09-16 18:16:42 +03:00
|
|
|
function exception_handler_xml($exception)
|
2016-09-04 04:19:48 +03:00
|
|
|
{
|
2018-09-16 18:16:42 +03:00
|
|
|
http_response_code($exception->getCode());
|
|
|
|
header('Content-type: text/xml; charset=utf-8');
|
|
|
|
echo '<?xml version="1.0" encoding="UTF-8" ?>'."\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');
|
|
|
|
}
|
2016-09-04 04:19:48 +03:00
|
|
|
}
|
2018-09-16 18:16:42 +03:00
|
|
|
// set a default
|
|
|
|
set_exception_handler_by_format();
|
2016-07-31 22:04:33 +03:00
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* HTTP Reply header setup
|
|
|
|
*/
|
2010-10-24 03:12:37 +04:00
|
|
|
|
2016-09-08 04:16:22 +03:00
|
|
|
if (CONST_NoAccessControl) {
|
2017-10-26 22:21:21 +03:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
header('Access-Control-Allow-Methods: OPTIONS,GET');
|
2016-09-08 04:16:22 +03:00
|
|
|
if (!empty($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {
|
2017-10-26 22:21:21 +03:00
|
|
|
header('Access-Control-Allow-Headers: '.$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']);
|
2016-09-04 04:19:48 +03:00
|
|
|
}
|
|
|
|
}
|
2018-09-16 18:16:42 +03:00
|
|
|
if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'OPTIONS') exit;
|
2016-09-04 04:19:48 +03:00
|
|
|
|
|
|
|
if (CONST_Debug) header('Content-type: text/html; charset=utf-8');
|