]> git.openstreetmap.org Git - nominatim.git/blob - website/deletable.php
Nominatim::DB support input variables, custom error messages
[nominatim.git] / website / deletable.php
1 <?php
2
3 require_once(CONST_BasePath.'/lib/init-website.php');
4 require_once(CONST_BasePath.'/lib/log.php');
5 require_once(CONST_BasePath.'/lib/output.php');
6 ini_set('memory_limit', '200M');
7
8 $sOutputFormat = 'html';
9
10 $oDB = new Nominatim\DB();
11 $oDB->connect();
12
13 $sSQL = 'select placex.place_id, country_code,';
14 $sSQL .= " name->'name' as name, i.* from placex, import_polygon_delete i";
15 $sSQL .= ' where placex.osm_id = i.osm_id and placex.osm_type = i.osm_type';
16 $sSQL .= ' and placex.class = i.class and placex.type = i.type';
17 $aPolygons = $oDB->getAll($sSQL, null, 'Could not get list of deleted OSM elements.');
18
19 if (CONST_Debug) {
20     var_dump($aPolygons);
21     exit;
22 }
23
24 ?>
25 <!DOCTYPE html>
26 <html>
27 <head>
28     <meta charset="utf-8"/>
29     <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
30     
31     <title>Nominatim Deleted Data</title>
32     
33     <meta name="description" content="List of OSM data that has been deleted" lang="en-US" />
34
35 </head>
36
37 <body>
38 <style type="text/css">
39 table {
40     border-width: 1px;
41     border-spacing: 0px;
42     border-style: solid;
43     border-color: gray;
44     border-collapse: collapse;
45     background-color: white;
46     margin: 10px;
47 }
48 table th {
49     border-width: 1px;
50     padding: 2px;
51     border-style: inset;
52     border-color: gray;
53     border-left-color: #ddd;
54     border-right-color: #ddd;
55     background-color: #eee;
56     -moz-border-radius: 0px 0px 0px 0px;
57 }
58 table td {
59     border-width: 1px;
60     padding: 2px;
61     border-style: inset;
62     border-color: gray;
63     border-left-color: #ddd;
64     border-right-color: #ddd;
65     background-color: white;
66     -moz-border-radius: 0px 0px 0px 0px;
67 }
68 </style>
69
70 <p>Objects in this table have been deleted in OSM but are still in the Nominatim database.</p>
71
72 <table>
73 <?php
74
75 if (!$aPolygons) exit;
76 echo '<tr>';
77 // var_dump($aPolygons[0]);
78 foreach ($aPolygons[0] as $sCol => $sVal) {
79     echo '<th>'.$sCol.'</th>';
80 }
81 echo '</tr>';
82 foreach ($aPolygons as $aRow) {
83     echo '<tr>';
84     foreach ($aRow as $sCol => $sVal) {
85         switch ($sCol) {
86             case 'osm_id':
87                 echo '<td>'.osmLink($aRow).'</td>';
88                 break;
89             case 'place_id':
90                 echo '<td>'.detailsLink($aRow).'</td>';
91                 break;
92             default:
93                 echo '<td>'.($sVal?$sVal:'&nbsp;').'</td>';
94                 break;
95         }
96     }
97     echo '</tr>';
98 }
99
100 ?>
101 </table>
102
103
104
105 </body>
106 </html>