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