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