]> git.openstreetmap.org Git - nominatim.git/blobdiff - website/polygons.php
factor out parameter parsing into its own class
[nominatim.git] / website / polygons.php
index bb350e6c4d7e985a668a5bc63b3339afeba17822..1e0f5f7ea757012d329afec46967f9d6f19b2162 100755 (executable)
@@ -5,14 +5,16 @@
        require_once(CONST_BasePath.'/lib/output.php');
        ini_set('memory_limit', '200M');
 
        require_once(CONST_BasePath.'/lib/output.php');
        ini_set('memory_limit', '200M');
 
-       $oDB =& getDB();
+       $oParams = new ParameterParser();
 
        $sOutputFormat = 'html';
 
        $sOutputFormat = 'html';
-       $iDays = getParamInt('days', 1);
-       $bReduced = getParamBool('reduced', false);
-       $sClass = getParamString('class', false);
+       $iDays = $oParams->getInt('days', 1);
+       $bReduced = $oParams->getBool('reduced', false);
+       $sClass = $oParams->getString('class', false);
+
+       $oDB =& getDB();
 
 
-       $iTotalBroken = (int) $oDB->getOne('select count(*) from import_polygon_error');
+       $iTotalBroken = (int) chksql($oDB->getOne('select count(*) from import_polygon_error'));
 
        $aPolygons = array();
        while($iTotalBroken && !sizeof($aPolygons))
 
        $aPolygons = array();
        while($iTotalBroken && !sizeof($aPolygons))
                if ($bReduced) $sSQL .= " and errormessage like 'Area reduced%'";
                if ($sClass) $sSQL .= " and class = '".pg_escape_string($sClass)."'";
                $sSQL .= " order by updated desc limit 1000";
                if ($bReduced) $sSQL .= " and errormessage like 'Area reduced%'";
                if ($sClass) $sSQL .= " and class = '".pg_escape_string($sClass)."'";
                $sSQL .= " order by updated desc limit 1000";
-               $aPolygons = $oDB->getAll($sSQL);
+               $aPolygons = chksql($oDB->getAll($sSQL));
+       }
+
+       if (CONST_Debug)
+       {
+               var_dump($aPolygons);
+               exit;
        }
        }
-//var_dump($aPolygons);
 ?>
 <!DOCTYPE html>
 <html>
 ?>
 <!DOCTYPE html>
 <html>