]> git.openstreetmap.org Git - nominatim.git/blob - lib-php/lib.php
introduce constant for configuration directory
[nominatim.git] / lib-php / lib.php
1 <?php
2
3 function loadSettings($sProjectDir)
4 {
5     @define('CONST_InstallDir', $sProjectDir);
6     // Temporary hack to set the direcory via environment instead of
7     // the installed scripts. Neither setting is part of the official
8     // set of settings.
9     defined('CONST_DataDir') or define('CONST_DataDir', $_SERVER['NOMINATIM_DATADIR']);
10     defined('CONST_BinDir') or define('CONST_BinDir', $_SERVER['NOMINATIM_BINDIR']);
11     defined('CONST_SqlDir') or define('CONST_SqlDir', $_SERVER['NOMINATIM_SQLDIR']);
12     defined('CONST_ConfigDir') or define('CONST_ConfigDir', $_SERVER['NOMINATIM_CONFIGDIR']);
13     defined('CONST_Default_ModulePath') or define('CONST_Default_ModulePath', $_SERVER['NOMINATIM_DATABASE_MODULE_SRC_PATH']);
14 }
15
16 function getSetting($sConfName, $sDefault = null)
17 {
18     $sValue = $_SERVER['NOMINATIM_'.$sConfName];
19
20     if ($sDefault !== null && !$sValue) {
21         return $sDefault;
22     }
23
24     return $sValue;
25 }
26
27 function getSettingBool($sConfName)
28 {
29     $sVal = strtolower(getSetting($sConfName));
30
31     return strcmp($sVal, 'yes') == 0
32            || strcmp($sVal, 'true') == 0
33            || strcmp($sVal, '1') == 0;
34 }
35
36 function getSettingConfig($sConfName, $sSystemConfig)
37 {
38     $sValue = $_SERVER['NOMINATIM_'.$sConfName];
39
40     if (!$sValue) {
41         return CONST_ConfigDir.'/'.$sSystemConfig;
42     }
43
44     return $sValue;
45 }
46
47 function fail($sError, $sUserError = false)
48 {
49     if (!$sUserError) $sUserError = $sError;
50     error_log('ERROR: '.$sError);
51     var_dump($sUserError)."\n";
52     exit(-1);
53 }
54
55
56 function getProcessorCount()
57 {
58     $sCPU = file_get_contents('/proc/cpuinfo');
59     preg_match_all('#processor\s+: [0-9]+#', $sCPU, $aMatches);
60     return count($aMatches[0]);
61 }
62
63
64 function getTotalMemoryMB()
65 {
66     $sCPU = file_get_contents('/proc/meminfo');
67     preg_match('#MemTotal: +([0-9]+) kB#', $sCPU, $aMatches);
68     return (int)($aMatches[1]/1024);
69 }
70
71
72 function getCacheMemoryMB()
73 {
74     $sCPU = file_get_contents('/proc/meminfo');
75     preg_match('#Cached: +([0-9]+) kB#', $sCPU, $aMatches);
76     return (int)($aMatches[1]/1024);
77 }
78
79 function getDatabaseDate(&$oDB)
80 {
81     // Find the newest node in the DB
82     $iLastOSMID = $oDB->getOne("select max(osm_id) from place where osm_type = 'N'");
83     // Lookup the timestamp that node was created
84     $sLastNodeURL = 'https://www.openstreetmap.org/api/0.6/node/'.$iLastOSMID.'/1';
85     $sLastNodeXML = file_get_contents($sLastNodeURL);
86
87     if ($sLastNodeXML === false) {
88         return false;
89     }
90
91     preg_match('#timestamp="(([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})Z)"#', $sLastNodeXML, $aLastNodeDate);
92
93     return $aLastNodeDate[1];
94 }
95
96
97 function byImportance($a, $b)
98 {
99     if ($a['importance'] != $b['importance'])
100         return ($a['importance'] > $b['importance']?-1:1);
101
102     return $a['foundorder'] <=> $b['foundorder'];
103 }
104
105
106 function javascript_renderData($xVal, $iOptions = 0)
107 {
108     $sCallback = isset($_GET['json_callback']) ? $_GET['json_callback'] : '';
109     if ($sCallback && !preg_match('/^[$_\p{L}][$_\p{L}\p{Nd}.[\]]*$/u', $sCallback)) {
110         // Unset, we call javascript_renderData again during exception handling
111         unset($_GET['json_callback']);
112         throw new Exception('Invalid json_callback value', 400);
113     }
114
115     $iOptions |= JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES;
116     if (isset($_GET['pretty']) && in_array(strtolower($_GET['pretty']), array('1', 'true'))) {
117         $iOptions |= JSON_PRETTY_PRINT;
118     }
119
120     $jsonout = json_encode($xVal, $iOptions);
121
122     if ($sCallback) {
123         header('Content-Type: application/javascript; charset=UTF-8');
124         echo $_GET['json_callback'].'('.$jsonout.')';
125     } else {
126         header('Content-Type: application/json; charset=UTF-8');
127         echo $jsonout;
128     }
129 }
130
131 function addQuotes($s)
132 {
133     return "'".$s."'";
134 }
135
136 function fwriteConstDef($rFile, $sConstName, $value)
137 {
138     $sEscapedValue;
139
140     if (is_bool($value)) {
141         $sEscapedValue = $value ? 'true' : 'false';
142     } elseif (is_numeric($value)) {
143         $sEscapedValue = strval($value);
144     } elseif (!$value) {
145         $sEscapedValue = 'false';
146     } else {
147         $sEscapedValue = addQuotes(str_replace("'", "\\'", (string)$value));
148     }
149
150     fwrite($rFile, "@define('CONST_$sConstName', $sEscapedValue);\n");
151 }
152
153
154 function parseLatLon($sQuery)
155 {
156     $sFound    = null;
157     $fQueryLat = null;
158     $fQueryLon = null;
159
160     if (preg_match('/\\s*([NS])[\s]+([0-9]+[0-9.]*)[°\s]+([0-9.]+)?[′\']*[,\s]+([EW])[\s]+([0-9]+)[°\s]+([0-9]+[0-9.]*)[′\']*\\s*/', $sQuery, $aData)) {
161         /*               1          2                    3                     4          5             6
162          * degrees decimal minutes
163          * N 40 26.767, W 79 58.933
164          * N 40°26.767′, W 79°58.933′
165          */
166         $sFound    = $aData[0];
167         $fQueryLat = ($aData[1]=='N'?1:-1) * ($aData[2] + $aData[3]/60);
168         $fQueryLon = ($aData[4]=='E'?1:-1) * ($aData[5] + $aData[6]/60);
169     } elseif (preg_match('/\\s*([0-9]+)[°\s]+([0-9]+[0-9.]*)?[′\']*[\s]+([NS])[,\s]+([0-9]+)[°\s]+([0-9]+[0-9.]*)?[′\'\s]+([EW])\\s*/', $sQuery, $aData)) {
170         /*                     1             2                          3           4             5                       6
171          * degrees decimal minutes
172          * 40 26.767 N, 79 58.933 W
173          * 40° 26.767′ N 79° 58.933′ W
174          */
175         $sFound    = $aData[0];
176         $fQueryLat = ($aData[3]=='N'?1:-1) * ($aData[1] + $aData[2]/60);
177         $fQueryLon = ($aData[6]=='E'?1:-1) * ($aData[4] + $aData[5]/60);
178     } elseif (preg_match('/\\s*([NS])[\s]+([0-9]+)[°\s]+([0-9]+)[′\'\s]+([0-9]+)[″"]*[,\s]+([EW])[\s]+([0-9]+)[°\s]+([0-9]+)[′\'\s]+([0-9]+)[″"]*\\s*/', $sQuery, $aData)) {
179         /*                     1          2             3               4                  5          6             7               8
180          * degrees decimal seconds
181          * N 40 26 46 W 79 58 56
182          * N 40° 26′ 46″, W 79° 58′ 56″
183          */
184         $sFound    = $aData[0];
185         $fQueryLat = ($aData[1]=='N'?1:-1) * ($aData[2] + $aData[3]/60 + $aData[4]/3600);
186         $fQueryLon = ($aData[5]=='E'?1:-1) * ($aData[6] + $aData[7]/60 + $aData[8]/3600);
187     } elseif (preg_match('/\\s*([0-9]+)[°\s]+([0-9]+)[′\'\s]+([0-9]+[0-9.]*)[″"\s]+([NS])[,\s]+([0-9]+)[°\s]+([0-9]+)[′\'\s]+([0-9]+[0-9.]*)[″"\s]+([EW])\\s*/', $sQuery, $aData)) {
188         /*                     1             2               3                     4           5             6               7                     8
189          * degrees decimal seconds
190          * 40 26 46 N 79 58 56 W
191          * 40° 26′ 46″ N, 79° 58′ 56″ W
192          * 40° 26′ 46.78″ N, 79° 58′ 56.89″ W
193          */
194         $sFound    = $aData[0];
195         $fQueryLat = ($aData[4]=='N'?1:-1) * ($aData[1] + $aData[2]/60 + $aData[3]/3600);
196         $fQueryLon = ($aData[8]=='E'?1:-1) * ($aData[5] + $aData[6]/60 + $aData[7]/3600);
197     } elseif (preg_match('/\\s*([NS])[\s]+([0-9]+[0-9]*\\.[0-9]+)[°]*[,\s]+([EW])[\s]+([0-9]+[0-9]*\\.[0-9]+)[°]*\\s*/', $sQuery, $aData)) {
198         /*                     1          2                                3          4
199          * degrees decimal
200          * N 40.446° W 79.982°
201          */
202         $sFound    = $aData[0];
203         $fQueryLat = ($aData[1]=='N'?1:-1) * ($aData[2]);
204         $fQueryLon = ($aData[3]=='E'?1:-1) * ($aData[4]);
205     } elseif (preg_match('/\\s*([0-9]+[0-9]*\\.[0-9]+)[°\s]+([NS])[,\s]+([0-9]+[0-9]*\\.[0-9]+)[°\s]+([EW])\\s*/', $sQuery, $aData)) {
206         /*                     1                            2           3                            4
207          * degrees decimal
208          * 40.446° N 79.982° W
209          */
210         $sFound    = $aData[0];
211         $fQueryLat = ($aData[2]=='N'?1:-1) * ($aData[1]);
212         $fQueryLon = ($aData[4]=='E'?1:-1) * ($aData[3]);
213     } elseif (preg_match('/(\\s*\\[|^\\s*|\\s*)(-?[0-9]+[0-9]*\\.[0-9]+)[,\s]+(-?[0-9]+[0-9]*\\.[0-9]+)(\\]\\s*|\\s*$|\\s*)/', $sQuery, $aData)) {
214         /*                 1                   2                              3                        4
215          * degrees decimal
216          * 12.34, 56.78
217          * 12.34 56.78
218          * [12.456,-78.90]
219          */
220         $sFound    = $aData[0];
221         $fQueryLat = $aData[2];
222         $fQueryLon = $aData[3];
223     } else {
224         return false;
225     }
226
227     return array($sFound, $fQueryLat, $fQueryLon);
228 }
229
230 function createPointsAroundCenter($fLon, $fLat, $fRadius)
231 {
232     $iSteps = max(8, min(100, ($fRadius * 40000)^2));
233     $fStepSize = (2*pi())/$iSteps;
234     $aPolyPoints = array();
235     for ($f = 0; $f < 2*pi(); $f += $fStepSize) {
236         $aPolyPoints[] = array('', $fLon+($fRadius*sin($f)), $fLat+($fRadius*cos($f)) );
237     }
238     return $aPolyPoints;
239 }
240
241 function closestHouseNumber($aRow)
242 {
243     $fHouse = $aRow['startnumber']
244                 + ($aRow['endnumber'] - $aRow['startnumber']) * $aRow['fraction'];
245
246     switch ($aRow['interpolationtype']) {
247         case 'odd':
248             $iHn = (int)($fHouse/2) * 2 + 1;
249             break;
250         case 'even':
251             $iHn = (int)(round($fHouse/2)) * 2;
252             break;
253         default:
254             $iHn = (int)(round($fHouse));
255             break;
256     }
257
258     return max(min($aRow['endnumber'], $iHn), $aRow['startnumber']);
259 }
260
261 function getSearchRankLabel($iRank)
262 {
263     if (!isset($iRank)) return 'unknown';
264     if ($iRank < 2) return 'continent';
265     if ($iRank < 4) return 'sea';
266     if ($iRank < 8) return 'country';
267     if ($iRank < 12) return 'state';
268     if ($iRank < 16) return 'county';
269     if ($iRank == 16) return 'city';
270     if ($iRank == 17) return 'town / island';
271     if ($iRank == 18) return 'village / hamlet';
272     if ($iRank == 20) return 'suburb';
273     if ($iRank == 21) return 'postcode area';
274     if ($iRank == 22) return 'croft / farm / locality / islet';
275     if ($iRank == 23) return 'postcode area';
276     if ($iRank == 25) return 'postcode point';
277     if ($iRank == 26) return 'street / major landmark';
278     if ($iRank == 27) return 'minory street / path';
279     if ($iRank == 28) return 'house / building';
280     return 'other: ' . $iRank;
281 }