More buffer flush while printing unsorted lists
[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>'; }
flush(); @ob_flush(); }
} }
} echo '</ul>';
} } else {
echo '</ul>'; // Timing Points / All stops
} if (isset($nearby)) {
else { $listType = 'nearby=yes';
// Timing Points / All stops include_header("Nearby Stops", "stopList", true, true);
if ($_REQUEST['allstops']) { trackEvent("Stop Lists", "Stops Nearby", $_SESSION['lat'] . "," . $_SESSION['lon']);
$listType = 'allstops=yes'; navbar();
$url = $APIurl . "/json/stops"; if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") {
include_header("All Stops", "stopList"); placeSettings();
navbar(); include_footer();
timePlaceSettings(); die();
} }
else if ($_REQUEST['nearby']) { $stops = getNearbyStops($_SESSION['lat'], $_SESSION['lon'], 15);
$listType = 'nearby=yes'; echo '<span class="content-secondary">';
$url = $APIurl . "/json/neareststops?lat={$_SESSION['lat']}&lon={$_SESSION['lon']}&limit=15"; $stopPositions[] = Array(
include_header("Nearby Stops", "stopList", true, true); $_SESSION['lat'],
navbar(); $_SESSION['lon']
timePlaceSettings(true); );
if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") { foreach ($stops as $sub_stop) {
include_footer(); $stopPositions[] = Array(
die(); $sub_stop["stop_lat"],
} $sub_stop["stop_lon"]
} );
else if ($_REQUEST['suburb']) { }
$suburb = filter_var($_REQUEST['suburb'], FILTER_SANITIZE_STRING); echo staticmap($stopPositions, true, true);
$listType = "suburb=$suburb"; placeSettings();
$url = $APIurl . "/json/stopzonesearch?q=" . $suburb; echo '</span><span class="content-primary">';
include_header("Stops in " . ucwords($suburb) , "stopList"); } else if (isset($suburb)) {
navbar(); $stops = getStopsBySuburb($suburb);
trackEvent("Stop Lists","Stops By Suburb", $suburb); include_header("Stops in " . ucwords($suburb), "stopList");
} navbar();
else { trackEvent("Stop Lists", "Stops By Suburb", $suburb);
$url = $APIurl . "/json/timingpoints"; } else {
include_header("Timing Points / Major Stops", "stopList"); $listType = 'allstops=yes';
navbar(); $stops = getStops($firstLetter);
timePlaceSettings(); include_header("Stops by Name", "stopList");
} navbar();
echo ' <ul data-role="listview" data-filter="true" data-inset="true" >'; }
if (!isset($_REQUEST['firstLetter']) && !$_REQUEST['suburb'] && !$_REQUEST['nearby']) { echo ' <ul data-role="listview" data-filter="true" data-inset="true" >';
foreach (range('A', 'Z') as $letter) { if (!isset($firstLetter) && !isset($suburb) && !isset($nearby)) {
echo "<li><a href=\"stopList.php?firstLetter=$letter&$listType\">$letter...</a></li>\n"; foreach (range('A', 'Z') as $letter) {
} echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;$listType\">$letter...</a></li>\n";
} }
else { } else {
$stops = json_decode(getPage($url)); //var_dump($stops);
foreach ($stops as $key => $row) { $stopsGrouped = Array();
$stopName[$key] = $row[1]; foreach ($stops as $key => $stop) {
} if (stopCompare($stops[$key]["stop_name"])
// Sort the stops by name != stopCompare($stops[$key + 1]["stop_name"])
array_multisort($stopName, SORT_ASC, $stops); || $key + 1 >= sizeof($stops)) {
if (!isset($_REQUEST['suburb']) && !isset($_REQUEST['nearby'])) { if (sizeof($stopsGrouped) > 0) {
$stops = array_filter($stops, "filterByFirstLetter"); // print and empty grouped stops
} // subsequent duplicates
$stopsGrouped = Array(); $stopsGrouped["stop_ids"][] = $stop['stop_id'];
foreach ($stops as $key => $row) { echo '<li>';
if ((trim(preg_replace("/\(Platform.*/", "", $stops[$key][1])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key + 1][1]))) || $key + 1 >= sizeof($stops)) { echo '<a href="stop.php?stopids=' . implode(",", $stopsGrouped['stop_ids']) . '">';
if (sizeof($stopsGrouped) > 0) { if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) {
// print and empty grouped stops echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>';
// subsequent duplicates }
$stopsGrouped["stop_ids"][] = $row[0]; echo stopGroupTitle($stop['stop_name'],$stop['stop_desc']) . '<br><small>' . sizeof($stopsGrouped["stop_ids"]) . ' stops</small>';
echo '<li>'; echo "</a></li>\n";
if (!startsWith($stopsGrouped['stop_codes'][0], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point: " class="ui-li-icon">'; flush();
echo '<a href="stop.php?stopids=' . implode(",", $stopsGrouped['stop_ids']) . '">'; @ob_flush();
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { $stopsGrouped = Array();
echo '<span class="ui-li-count">' . distance($row[2], $row[3], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>'; } else {
} // just a normal stop
echo bracketsMeanNewLine(trim(preg_replace("/\(Platform.*/", "", $row[1])) . '(' . sizeof($stopsGrouped["stop_ids"]) . ' stops)'); echo '<li>';
echo "</a></li>\n"; echo '<a href="stop.php?stopid=' . $stop['stop_id'] . '&amp;stopcode=' . $stop['stop_code'] . '">';
flush(); @ob_flush(); if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) {
$stopsGrouped = Array(); echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>';
} }
else { echo $stop['stop_name'];
// just a normal stop echo "</a></li>\n";
echo '<li>'; flush();
if (!startsWith($row[5], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point" class="ui-li-icon">'; @ob_flush();
echo '<a href="stop.php?stopid=' . $row[0] . (startsWith($row[5], "Wj") ? '&stopcode=' . $row[5] : "") . '">'; }
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { } else {
echo '<span class="ui-li-count">' . distance($row[2], $row[3], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>'; // this is a duplicated line item
} if ($key - 1 <= 0 || stopCompare($stops[$key]['stop_name']) != stopCompare($stops[$key - 1]['stop_name'])) {
echo bracketsMeanNewLine($row[1]); // first duplicate
echo "</a></li>\n"; $stopsGrouped = Array(
flush(); @ob_flush(); "name" => trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])),
} "stop_ids" => Array(
} $stop['stop_id']
else { ),
// this is a duplicated line item "stop_codes" => Array(
if ($key - 1 <= 0 || (trim(preg_replace("/\(Platform.*/", "", $stops[$key][1])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key - 1][1])))) { $stop['stop_code']
// first duplicate )
$stopsGrouped = Array( );
"name" => trim(preg_replace("/\(Platform.*/", "", $row[1])) , } else {
"stop_ids" => Array( // subsequent duplicates
$row[0] $stopsGrouped["stop_ids"][] = $stop['stop_id'];
) , ;
"stop_codes" => Array( }
$row[5] }
) }
); }
} echo '</ul>';
else { if (isset($nearby))
// subsequent duplicates echo '</span>';
$stopsGrouped["stop_ids"][] = $row[0];  
}  
}  
}  
}  
echo '</ul>';  
} }
include_footer(); include_footer();
?> ?>