Rearrange php libs/includes and produce sitemap.xml
[busui.git] / stopList.php
blob:a/stopList.php -> blob:b/stopList.php
<?php <?php
   
  /*
  * Copyright 2010,2011 Alexander Sadleir
   
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
   
  http://www.apache.org/licenses/LICENSE-2.0
   
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  */
include ('include/common.inc.php'); include ('include/common.inc.php');
function filterByFirstLetter($var) $stops = Array();
{ function stopCompare($stopName) {
return $var[1][0] == $_REQUEST['firstLetter']; return substr(trim(preg_replace("/\(Platform.*/", "", $stopName)),0,9);
} }
function navbar() function stopGroupTitle($stopName,$stopdesc) {
{ if (preg_match("/Dr |Cct |Cir |Av |St |Cr |Parade |Way |Bank /",$stopName)) {
echo ' $descParts = explode("<br>",$stopdesc);
  return trim(str_replace("Street: ","",$descParts[0]));
  } else {
  return trim(preg_replace("/\(Platform.*/", "",$stopName));
  }
  }
  function navbar() {
  echo '
<div data-role="navbar"> <div data-role="navbar">
<ul> <ul>
<li><a href="stopList.php">Timing Points</a></li> <li><a href="stopList.php">Stops by Name</a></li>
<li><a href="stopList.php?suburbs=yes">By Suburb</a></li> <li><a href="stopList.php?bysuburbs=yes">By Suburb</a></li>
<li><a href="stopList.php?nearby=yes">Nearby Stops</a></li> <li><a href="stopList.php?nearby=yes">Nearby Stops</a></li>
<li><a href="stopList.php?allstops=yes">All Stops</a></li>  
</ul> </ul>
</div> </div>
'; ';
} }
   
// By suburb // By suburb
if (isset($_REQUEST['suburbs'])) { if (isset($bysuburbs)) {
include_header("Stops by Suburb", "stopList"); include_header("Stops by Suburb", "stopList");
navbar(); navbar();
echo ' <ul data-role="listview" data-filter="true" data-inset="true" >'; echo ' <ul data-role="listview" data-filter="true" data-inset="true" >';
if (!isset($_REQUEST['firstLetter'])) { if (!isset($firstLetter)) {
foreach (range('A', 'Z') as $letter) { foreach (range('A', 'Z') as $letter) {
echo "<li><a href=\"stopList.php?firstLetter=$letter&suburbs=yes\">$letter...</a></li>\n"; echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;bysuburbs=yes\">$letter...</a></li>\n";
} }
} } else {
else { foreach ($suburbs as $suburb) {
foreach ($suburbs as $suburb) { if (startsWith($suburb, $firstLetter)) {
if (startsWith($suburb, $_REQUEST['firstLetter'])) { echo '<li><a href="stopList.php?suburb=' . urlencode($suburb) . '">' . $suburb . '</a></li>';
echo '<li><a href="stopList.php?suburb=' . urlencode($suburb) . '">' . $suburb . '</a></li>'; }
} }
} }
} echo '</ul>';
echo '</ul>'; } else {
} // Timing Points / All stops
else { if (isset($nearby)) {
// Timing Points / All stops $listType = 'nearby=yes';
if ($_REQUEST['allstops']) { include_header("Nearby Stops", "stopList", true, true);
$listType = 'allstops=yes'; trackEvent("Stop Lists", "Stops Nearby", $_SESSION['lat'] . "," . $_SESSION['lon']);
$url = $APIurl . "/json/stops"; navbar();
include_header("All Stops", "stopList"); if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") {
navbar(); placeSettings();
timePlaceSettings(); include_footer();
} die();
else if ($_REQUEST['nearby']) { }
$listType = 'nearby=yes'; $stops = getNearbyStops($_SESSION['lat'], $_SESSION['lon'], 15);
$url = $APIurl . "/json/neareststops?lat={$_SESSION['lat']}&lon={$_SESSION['lon']}&limit=15"; echo '<span class="content-secondary">';
include_header("Nearby Stops", "stopList"); $stopPositions[] = Array(
navbar(); $_SESSION['lat'],
timePlaceSettings(true); $_SESSION['lon']
if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") { );
include_footer(); foreach ($stops as $sub_stop) {
die(); $stopPositions[] = Array(
} $sub_stop["stop_lat"],
} $sub_stop["stop_lon"]
else if ($_REQUEST['suburb']) { );
$suburb = filter_var($_REQUEST['suburb'], FILTER_SANITIZE_STRING); }
$listType = "suburb=$suburb"; echo staticmap($stopPositions, true, true);
$url = $APIurl . "/json/stopzonesearch?q=" . $suburb; placeSettings();
include_header("Stops in " . ucwords($suburb) , "stopList"); echo '</span><span class="content-primary">';
navbar(); } else if (isset($suburb)) {
} $stops = getStopsBySuburb($suburb);
else { include_header("Stops in " . ucwords($suburb), "stopList");
$url = $APIurl . "/json/timingpoints"; navbar();
include_header("Timing Points / Major Stops", "stopList"); trackEvent("Stop Lists", "Stops By Suburb", $suburb);
navbar(); } else {
timePlaceSettings(); $listType = 'allstops=yes';
} $stops = getStops($firstLetter);
echo ' <ul data-role="listview" data-filter="true" data-inset="true" >'; include_header("Stops by Name", "stopList");
if (!isset($_REQUEST['firstLetter']) && !$_REQUEST['suburb'] && !$_REQUEST['nearby']) { navbar();
foreach (range('A', 'Z') as $letter) { }
echo "<li><a href=\"stopList.php?firstLetter=$letter&$listType\">$letter...</a></li>\n"; echo ' <ul data-role="listview" data-filter="true" data-inset="true" >';
} if (!isset($firstLetter) && !isset($suburb) && !isset($nearby)) {
} foreach (range('A', 'Z') as $letter) {
else { echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;$listType\">$letter...</a></li>\n";
$stops = json_decode(getPage($url)); }
foreach ($stops as $key => $row) { } else {
$stopName[$key] = $row[1]; //var_dump($stops);
} $stopsGrouped = Array();
// Sort the stops by name foreach ($stops as $key => $stop) {
array_multisort($stopName, SORT_ASC, $stops); if (stopCompare($stops[$key]["stop_name"])
if (!isset($_REQUEST['suburb']) && !isset($_REQUEST['nearby'])) { != stopCompare($stops[$key + 1]["stop_name"])
$stops = array_filter($stops, "filterByFirstLetter"); || $key + 1 >= sizeof($stops)) {
} if (sizeof($stopsGrouped) > 0) {
$stopsGrouped = Array(); // print and empty grouped stops
foreach ($stops as $key => $row) { // subsequent duplicates
if ((trim(preg_replace("/\(Platform.*/", "", $stops[$key][1])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key + 1][1]))) || $key + 1 >= sizeof($stops)) { $stopsGrouped["stop_ids"][] = $stop['stop_id'];
if (sizeof($stopsGrouped) > 0) { echo '<li>';
// print and empty grouped stops echo '<a href="stop.php?stopids=' . implode(",", $stopsGrouped['stop_ids']) . '">';
// subsequent duplicates if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) {
$stopsGrouped["stop_ids"][] = $row[0]; echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>';
echo '<li>'; }
if (!startsWith($stopsGrouped['stop_codes'][0], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point: " class="ui-li-icon">'; echo stopGroupTitle($stop['stop_name'],$stop['stop_desc']) . '<br><small>' . sizeof($stopsGrouped["stop_ids"]) . ' stops</small>';
echo '<a href="stop.php?stopids=' . implode(",", $stopsGrouped['stop_ids']) . '">'; echo "</a></li>\n";
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { flush();
echo '<span class="ui-li-count">' . distance($row[2], $row[3], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>'; @ob_flush();
} $stopsGrouped = Array();
echo bracketsMeanNewLine(trim(preg_replace("/\(Platform.*/", "", $row[1])) . '(' . sizeof($stopsGrouped["stop_ids"]) . ' stops)'); } else {
echo "</a></li>\n"; // just a normal stop
$stopsGrouped = Array(); echo '<li>';
} echo '<a href="stop.php?stopid=' . $stop['stop_id'] . '&amp;stopcode=' . $stop['stop_code'] . '">';
else { if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) {
// just a normal stop echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>';
echo '<li>'; }
if (!startsWith($row[5], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point" class="ui-li-icon">'; echo $stop['stop_name'];
echo '<a href="stop.php?stopid=' . $row[0] . (startsWith($row[5], "Wj") ? '&stopcode=' . $row[5] : "") . '">'; echo "</a></li>\n";
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { flush();
echo '<span class="ui-li-count">' . distance($row[2], $row[3], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>'; @ob_flush();
} }
echo bracketsMeanNewLine($row[1]); } else {
echo "</a></li>\n"; // this is a duplicated line item
} if ($key - 1 <= 0 || stopCompare($stops[$key]['stop_name']) != stopCompare($stops[$key - 1]['stop_name'])) {
} // first duplicate
else { $stopsGrouped = Array(
// this is a duplicated line item "name" => trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])),
if ($key - 1 <= 0 || (trim(preg_replace("/\(Platform.*/", "", $stops[$key][1])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key - 1][1])))) { "stop_ids" => Array(
// first duplicate $stop['stop_id']
$stopsGrouped = Array( ),
"name" => trim(preg_replace("/\(Platform.*/", "", $row[1])) , "stop_codes" => Array(
"stop_ids" => Array( $stop['stop_code']
$row[0] )
) , );
"stop_codes" => Array( } else {
$row[5] // subsequent duplicates
) $stopsGrouped["stop_ids"][] = $stop['stop_id'];
); ;
} }
else { }
// subsequent duplicates }
$stopsGrouped["stop_ids"][] = $row[0]; }
} echo '</ul>';
} if (isset($nearby))
} echo '</span>';
}  
echo '</ul>';  
} }
include_footer(); include_footer();
?> ?>