1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | <?php include ('../include/common.inc.php'); header("Content-Type: text/xml"); echo "<?xml version='1.0' encoding='UTF-8'?>"; echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "\n"; echo " <url><loc>" . local_url() . "index.php</loc><priority>1.0</priority></url>\n"; foreach (scandir("./") as $file) { if (strpos($file, ".php") !== false && $file != "index.php" && $file != "sitemap.xml.php") { echo " <url><loc>" . local_url() . "$file</loc><priority>0.6</priority></url>\n"; } } $agenciesdb = $server->get_db('disclosr-agencies'); $foidocsdb = $server->get_db('disclosr-foidocuments'); try { $rows = $agenciesdb->get_view("app", "byCanonicalName")->rows; foreach ($rows as $row) { echo '<url><loc>' . local_url() . 'agency.php?id=' . $row->value->_id . "</loc><priority>0.3</priority></url>\n"; } unset($rows); $rows = null; } catch (SetteeRestClientException $e) { setteErrorHandler($e); } foreach (range(0, 8) as $number) { try { $rows = $foidocsdb->get_view("app", "all", Array($number,$number+1))->rows; foreach ($rows as $row) { echo '<url><loc>' . local_url() . 'view.php?id=' . $row->value->_id . "</loc><priority>0.3</priority></url>\n"; } unset($rows); $rows = null; } catch (SetteeRestClientException $e) { setteErrorHandler($e); } } try { $rows = $foidocsdb->get_view("app", "all", Array('9','fffffffff'))->rows; foreach ($rows as $row) { echo '<url><loc>' . local_url() . 'view.php?id=' . $row->value->_id . "</loc><priority>0.3</priority></url>\n"; } unset($rows); $rows = null; } catch (SetteeRestClientException $e) { setteErrorHandler($e); } echo '</urlset>'; ?> |