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