Viewing of grouped stops
[busui.git] / stopList.php
blob:a/stopList.php -> blob:b/stopList.php
<?php <?php
include ('common.inc.php');  
function navbar() /*
{ * Copyright 2010,2011 Alexander Sadleir
echo '  
  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');
  $stops = Array();
   
  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" >';
foreach ($suburbs as $suburb) { if (!isset($firstLetter)) {
echo '<li><a href="stopList.php?suburb=' . urlencode($suburb) . '">' . $suburb . '</a></li>'; foreach (range('A', 'Z') as $letter) {
} echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;bysuburbs=yes\">$letter...</a></li>\n";
echo '</ul>'; }
} } else {
else { foreach ($suburbs as $suburb) {
// Timing Points / All stops if (startsWith($suburb, $firstLetter)) {
if ($_REQUEST['allstops']) { echo '<li><a href="stopList.php?suburb=' . urlencode($suburb) . '">' . $suburb . '</a></li>';
$url = $APIurl . "/json/stops"; }
include_header("All Stops", "stopList"); }
navbar(); }
timePlaceSettings(); echo '</ul>';
} } else {
else if ($_REQUEST['nearby']) { // Timing Points / All stops
$url = $APIurl . "/json/neareststops?lat={$_SESSION['lat']}&lon={$_SESSION['lon']}&limit=15"; if (isset($allstops)) {
include_header("Nearby Stops", "stopList"); $listType = 'allstops=yes';
navbar(); $stops = getStops();
timePlaceSettings(true); include_header("All Stops", "stopList");
} navbar();
else if ($_REQUEST['suburb']) { } else if (isset($nearby)) {
$suburb = filter_var($_REQUEST['suburb'], FILTER_SANITIZE_STRING); $listType = 'nearby=yes';
$url = $APIurl . "/json/stopzonesearch?q=" . $suburb; include_header("Nearby Stops", "stopList", true, true);
include_header("Stops in " . ucwords($suburb) , "stopList"); trackEvent("Stop Lists", "Stops Nearby", $_SESSION['lat'] . "," . $_SESSION['lon']);
if (isMetricsOn()) { navbar();
// Create a new Instance of the tracker if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") {
$owa = new owa_php($config); placeSettings();
// Set the ID of the site being tracked include_footer();
$owa->setSiteId($owaSiteID); die();
// Create a new event object }
$event = $owa->makeEvent(); $stops = getNearbyStops($_SESSION['lat'], $_SESSION['lon'], 15);
// Set the Event Type, in this case a "video_play" echo '<span class="content-secondary">';
$event->setEventType('view_stop_list_suburb'); $stopPositions[] = Array(
// Set a property $_SESSION['lat'],
$event->set('stop_list_suburb', $suburb); $_SESSION['lon']
// Track the event );
$owa->trackEvent($event); foreach ($stops as $sub_stop) {
} $stopPositions[] = Array(
navbar(); $sub_stop["stop_lat"],
} $sub_stop["stop_lon"]
else { );
$url = $APIurl . "/json/timingpoints"; }
include_header("Timing Points / Major Stops", "stopList"); echo staticmap($stopPositions, 0, "iconb", true, true);
navbar(); placeSettings();
timePlaceSettings(); echo '</span><span class="content-primary">';
} } else if (isset($suburb)) {
echo '<div class="noscriptnav"> Go to letter: '; $stops = getStopsBySuburb($suburb);
foreach (range('A', 'Z') as $letter) { include_header("Stops in " . ucwords($suburb), "stopList");
echo "<a href=\"#$letter\">$letter</a>&nbsp;"; navbar();
} trackEvent("Stop Lists", "Stops By Suburb", $suburb);
echo "</div> } else {
<script> $stops = getStops(true, $firstLetter);
$('.noscriptnav').hide(); include_header("Timing Points / Major Stops", "stopList");
</script>"; navbar();
echo ' <ul data-role="listview" data-filter="true" data-inset="true" >'; }
$stops = json_decode(getPage($url)); echo ' <ul data-role="listview" data-filter="true" data-inset="true" >';
foreach ($stops as $key => $row) { if (!isset($firstLetter) && !isset($suburb) && !isset($nearby)) {
$stopName[$key] = $row[1]; foreach (range('A', 'Z') as $letter) {
} echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;$listType\">$letter...</a></li>\n";
// Sort the stops by name }
array_multisort($stopName, SORT_ASC, $stops); } else {
$firstletter = ""; //var_dump($stops);
$stopsGrouped = Array(); $stopsGrouped = Array();
foreach ($stops as $key => $row) { foreach ($stops as $key => $stop) {
if (substr($row[1], 0, 1) != $firstletter) { if ((trim(preg_replace("/\(Platform.*/", "", $stops[$key]["stop_name"])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key + 1]["stop_name"]))) || $key + 1 >= sizeof($stops)) {
echo "<a name=$firstletter></a>"; if (sizeof($stopsGrouped) > 0) {
$firstletter = substr($row[1], 0, 1); // print and empty grouped stops
} // subsequent duplicates
if (($stops[$key][1] != $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><a href="stop.php?stopids=' . implode(",", $stopsGrouped['stop_ids']) . '">'; if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) {
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>';
echo '<span class="ui-li-count">' . floor(distance($row[2], $row[3], $_SESSION['lat'], $_SESSION['lon'])) . 'm away</span>'; }
} echo bracketsMeanNewLine(trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])) . '(' . sizeof($stopsGrouped["stop_ids"]) . ' stops)');
echo bracketsMeanNewLine($row[1].'('.sizeof($stopsGrouped["stop_ids"]).' stops)'); echo "</a></li>\n";
echo "</a></li>\n"; flush();
$stopsGrouped = Array(); @ob_flush();
} $stopsGrouped = Array();
else { } else {
// just a normal stop // just a normal stop
echo '<li>'; echo '<li>';
if (!startsWith($row[5], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point" class="ui-li-icon">'; if (!startsWith($stop['stop_code'], "Wj"))
  echo '<img src="css/images/time.png" alt="Timing Point" class="ui-li-icon">';
if (!startsWith($row[5], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point" class="ui-li-icon">'; echo '<a href="stop.php?stopid=' . $stop['stop_id'] . (startsWith($stop['stop_code'], "Wj") ? '&amp;stopcode=' . $stop['stop_code'] : "") . '">';
echo '<a href="stop.php?stopid=' . $row[0] . (startsWith($row[5], "Wj") ? '&stopcode=' . $row[5] : "") . '">'; if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) {
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>';
echo '<span class="ui-li-count">' . floor(distance($row[2], $row[3], $_SESSION['lat'], $_SESSION['lon'])) . 'm away</span>'; }
} echo bracketsMeanNewLine($stop['stop_name']);
echo bracketsMeanNewLine($row[1]); echo "</a></li>\n";
echo "</a></li>\n"; flush();
} @ob_flush();
} }
else { } else {
// this is a duplicated line item // this is a duplicated line item
if ($key - 1 <= 0 || ($stops[$key][1] != $stops[$key - 1][1])) { if ($key - 1 <= 0 || (trim(preg_replace("/\(Platform.*/", "", $stops[$key]['stop_name'])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key - 1]['stop_name'])))) {
// first duplicate // first duplicate
$stopsGrouped = Array( $stopsGrouped = Array(
"name" => $row[1], "name" => trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])),
"stop_ids" => Array( "stop_ids" => Array(
$row[0] $stop['stop_id']
) ),
); "stop_codes" => Array(
} $stop['stop_code']
else { )
// subsequent duplicates );
$stopsGrouped["stop_ids"][] = $row[0]; } else {
} // subsequent duplicates
} $stopsGrouped["stop_ids"][] = $stop['stop_id'];
} ;
echo '</ul>'; }
  }
  }
  }
  echo '</ul>';
  if (isset($nearby))
  echo '</span>';
} }
include_footer(); include_footer();
?> ?>