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