2 require_once('init.php');
3 require_once('ParameterParser.php');
5 /***************************************************************************
7 * Error handling functions
10 function chksql($oSql, $sMsg = "Database request failed")
12 if (!PEAR::isError($oSql)) return $oSql;
14 header('HTTP/1.0 500 Internal Server Error');
15 header('Content-type: text/html; charset=utf-8');
17 $sSqlError = $oSql->getMessage();
21 <head><title>Internal Server Error</title></head>
23 <h1>Internal Server Error</h1>
24 <p>Nominatim has encountered an internal error while accessing the database.
25 This may happen because the database is broken or because of a bug in
26 the software. If you think it is a bug, feel free to report
27 it over on <a href="https://github.com/twain47/Nominatim/issues">
28 Github</a>. Please include the URL that caused the problem and the
29 complete error details below.</p>
30 <p><b>Message:</b> $sMsg</p>
31 <p><b>SQL Error:</b> $sSqlError</p>
32 <p><b>Details:</b> <pre>
41 echo "<pre>\n".$oSql->getUserInfo()."</pre>";
44 echo "</pre></p></body></html>";
48 function failInternalError($sError, $sSQL = false, $vDumpVar = false)
50 header('HTTP/1.0 500 Internal Server Error');
51 header('Content-type: text/html; charset=utf-8');
52 echo "<html><body><h1>Internal Server Error</h1>";
53 echo '<p>Nominatim has encountered an internal error while processing your request. This is most likely because of a bug in the software.</p>';
54 echo "<p><b>Details:</b> ".$sError,"</p>";
55 echo '<p>Feel free to file an issue on <a href="https://github.com/twain47/Nominatim/issues">Github</a>. Please include the error message above and the URL you used.</p>';
58 echo "<hr><h2>Debugging Information</h2><br>";
61 echo "<h3>SQL query</h3><code>".$sSQL."</code>";
65 echo "<h3>Result</h3> <code>";
70 echo "\n</body></html>\n";
75 function userError($sError)
77 header('HTTP/1.0 400 Bad Request');
78 header('Content-type: text/html; charset=utf-8');
79 echo "<html><body><h1>Bad Request</h1>";
80 echo '<p>Nominatim has encountered an error with your request.</p>';
81 echo "<p><b>Details:</b> ".$sError."</p>";
82 echo '<p>If you feel this error is incorrect feel file an issue on <a href="https://github.com/twain47/Nominatim/issues">Github</a>. Please include the error message above and the URL you used.</p>';
83 echo "\n</body></html>\n";
88 /***************************************************************************
89 * HTTP Reply header setup
92 if (CONST_NoAccessControl)
94 header("Access-Control-Allow-Origin: *");
95 header("Access-Control-Allow-Methods: OPTIONS,GET");
96 if (!empty($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']))
98 header("Access-Control-Allow-Headers: ".$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']);
101 if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') exit;
103 if (CONST_Debug) header('Content-type: text/html; charset=utf-8');