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