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