Skip to content
Snippets Groups Projects
Commit 57c00dfc authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Moved agency-specific stuff out of code and into config.

parent 3fbb3ce6
No related branches found
No related tags found
No related merge requests found
<?php
/*
This file serves up data for asynchronous requests (usually as JSON).
This file serves up data for asynchronous requests (usually as JSON).
*/
require_once('config.php');
require_once('functions.php');
if (!isset($_GET['command'])) die();
$agency = "rutgers";
if ($_GET['command'] == "vehicleLocations") {
// return a JSON array of vehicles and their locations.
require_once('config.php');
require_once('functions.php');
$db = dbc();
// MAX age of a bus location to return
$maxAge = 120;
$time = 0;
if (isset($_GET['t'])) $time = $db->real_escape_string((int)$_GET['t']);
if ($time < $maxAge) $time = time() - $maxAge;
$sql = <<< V_LOC
SELECT
`id`, `title` AS `route`, `routeTag`, `dirTag`, `lat`, `lon`, `heading`, `speedKmHr`
FROM `vehicleLocations`
LEFT JOIN `routes` ON `vehicleLocations`.`routeTag` = `routes`.`tag`
WHERE `time` > '{$time}'
// return a JSON array of vehicles and their locations.
$db = dbc();
// MAX age of a bus location to return
$maxAge = 120;
$time = 0;
if (isset($_GET['t'])) $time = $db->real_escape_string((int)$_GET['t']);
if ($time < $maxAge) $time = time() - $maxAge;
$sql = <<< V_LOC
SELECT
`id`, `title` AS `route`, `routeTag`, `dirTag`, `lat`, `lon`, `heading`, `speedKmHr`
FROM `vehicleLocations`
LEFT JOIN `routes` ON `vehicleLocations`.`routeTag` = `routes`.`tag`
WHERE `time` > '{$time}'
V_LOC;
$result = dbq($db, $sql);
$locations = array();
while($row = $result->fetch_assoc()) $locations[$row['id']] = $row;
// predictions
$sql = <<< V_LOC
SELECT
`predictions`.`vehicle`, `stops`.`title`, `predictions`.`epochTime`
FROM `predictions`
LEFT JOIN `stops` ON `predictions`.`stopTag` = `stops`.`tag`
ORDER BY `epochTime` ASC
$result = dbq($db, $sql);
$locations = array();
while($row = $result->fetch_assoc()) $locations[$row['id']] = $row;
// predictions
$sql = <<< V_LOC
SELECT
`predictions`.`vehicle`, `stops`.`title`, `predictions`.`epochTime`
FROM `predictions`
LEFT JOIN `stops` ON `predictions`.`stopTag` = `stops`.`tag`
ORDER BY `epochTime` ASC
V_LOC;
$result = dbq($db, $sql);
while($row = $result->fetch_assoc()) if (isset($locations[$row['vehicle']])) $locations[$row['vehicle']]['stops'][] = $row;
foreach ($locations as $key => $location) {
$locations[$key]['route'] = cleanRouteName($location['route']);
$locations[$key]['stops'] = array_slice($location['stops'], 0, 8);
}
$lastFetched = 0;
$result = dbq($db, "SELECT `time` FROM `lastChecked` WHERE `selector` = 'vehicleLocations' LIMIT 1", true);
if ($result->num_rows == 1) {
$arr = $result->fetch_array();
$lastFetched = $arr[0];
}
// also return lastTime!
header("Content-type: application/json");
echo json_encode(array(
"vehicles" => $locations,
"lastTime" => $lastFetched,
));
$result = dbq($db, $sql);
while($row = $result->fetch_assoc()) if (isset($locations[$row['vehicle']])) $locations[$row['vehicle']]['stops'][] = $row;
foreach ($locations as $key => $location) {
$locations[$key]['route'] = cleanRouteName($location['route']);
$locations[$key]['stops'] = array_slice($location['stops'], 0, 8);
}
$lastFetched = 0;
$result = dbq($db, "SELECT `time` FROM `lastChecked` WHERE `selector` = 'vehicleLocations' LIMIT 1", true);
if ($result->num_rows == 1) {
$arr = $result->fetch_array();
$lastFetched = $arr[0];
}
// also return lastTime!
header("Content-type: application/json");
echo json_encode(array(
"vehicles" => $locations,
"lastTime" => $lastFetched,
));
} elseif ($_GET['command'] == "routeConfig") {
// return a JSON array of routes and stops.
require_once('config.php');
require_once('functions.php');
$db = dbc();
$sql = "SELECT `tag`, `title` FROM `routes`";
$result = dbq($db, $sql);
$routes = array();
while($row = $result->fetch_assoc()) $routes[$row['tag']] = $row;
$sql = "SELECT `tag`, `title`, `lat`, `lon`, `stopId` FROM `stops`";
$result = dbq($db, $sql);
$stops = array();
while($row = $result->fetch_assoc()) {
$stops[$row['tag']] = $row;
$stops[$row['tag']]['routes'] = array();
}
$sql = "SELECT `route`, `stop` FROM `route_stops`";
$result = dbq($db, $sql);
while($row = $result->fetch_assoc()) $stops[$row['stop']]['routes'][$row['route']] = array();
$sql = "SELECT `routes`.`tag`, `routes`.`title`, `stopTag`, `epochTime`, `vehicle` FROM `predictions` LEFT JOIN `routes` ON `predictions`.`routeTag` = `routes`.`tag` WHERE `routes`.`agency` = '{$agency}'";
$result = dbq($db, $sql);
while($row = $result->fetch_assoc()) $stops[$row['stopTag']]['routes'][$row['tag']][] = array("epochTime" => $row['epochTime'], "vehicle" => $row['vehicle']);
// post proc
foreach ($routes as $key => $route) {
$routes[$key]['title'] = cleanRouteName($route['title']);
}
$unset = array();
foreach ($stops as $key => $stop) {
if (!in_array($key, $unset)) {
foreach ($stops as $key2 => $stop2) {
if ($key !== $key2 && $stop['title'] == $stop2['title']) {
$stops[$key]['routes'] = array_merge($stop['routes'], $stop2['routes']);
$unset[] = $key2;
}
}
}
}
foreach ($unset as $un) unset($stops[$un]);
$lastFetched = 0;
$result = dbq($db, "SELECT `time` FROM `lastChecked` WHERE `selector` = 'routeConfig' LIMIT 1", true);
if ($result->num_rows == 1) {
$arr = $result->fetch_array();
$lastFetched = $arr[0];
}
// also return lastTime!
header("Content-type: application/json");
echo json_encode(array(
"routes" => $routes,
"stops" => $stops,
"lastTime" => $lastFetched,
));
}
// return a JSON array of routes and stops.
$db = dbc();
$sql = "SELECT `tag`, `title` FROM `routes`";
$result = dbq($db, $sql);
$routes = array();
while($row = $result->fetch_assoc()) $routes[$row['tag']] = $row;
$sql = "SELECT `tag`, `title`, `lat`, `lon`, `stopId` FROM `stops`";
$result = dbq($db, $sql);
$stops = array();
while($row = $result->fetch_assoc()) {
$stops[$row['tag']] = $row;
$stops[$row['tag']]['routes'] = array();
}
function cleanRouteName($name) {
if ($name == "New Brunsquick 1 Shuttle") $name = "NB 1";
else if ($name == "New Brunsquick 2 Shuttle") $name = "NB 2";
return $name;
$sql = "SELECT `route`, `stop` FROM `route_stops`";
$result = dbq($db, $sql);
while($row = $result->fetch_assoc()) $stops[$row['stop']]['routes'][$row['route']] = array();
$sql = "SELECT `routes`.`tag`, `routes`.`title`, `stopTag`, `epochTime`, `vehicle` FROM `predictions` LEFT JOIN `routes` ON `predictions`.`routeTag` = `routes`.`tag` WHERE `routes`.`agency` = '{$agency}'";
$result = dbq($db, $sql);
while($row = $result->fetch_assoc()) $stops[$row['stopTag']]['routes'][$row['tag']][] = array("epochTime" => $row['epochTime'], "vehicle" => $row['vehicle']);
// post proc
foreach ($routes as $key => $route) {
$routes[$key]['title'] = cleanRouteName($route['title']);
}
$unset = array();
foreach ($stops as $key => $stop) {
if (!in_array($key, $unset)) {
foreach ($stops as $key2 => $stop2) {
if ($key !== $key2 && $stop['title'] == $stop2['title']) {
$stops[$key]['routes'] = array_merge($stop['routes'], $stop2['routes']);
$unset[] = $key2;
}
}
}
}
foreach ($unset as $un) unset($stops[$un]);
$lastFetched = 0;
$result = dbq($db, "SELECT `time` FROM `lastChecked` WHERE `selector` = 'routeConfig' LIMIT 1", true);
if ($result->num_rows == 1) {
$arr = $result->fetch_array();
$lastFetched = $arr[0];
}
// also return lastTime!
header("Content-type: application/json");
echo json_encode(array(
"routes" => $routes,
"stops" => $stops,
"lastTime" => $lastFetched,
));
}
?>
......@@ -17,8 +17,6 @@ div#topBar {
display: table;
width: 100%;
z-index: 1;
background-color: #222;
border-top: 2px solid #555;
border-bottom: 2px solid #555;
......@@ -240,14 +238,15 @@ a.tooltip {
screen and (-webkit-min-device-pixel-ratio: 1.5),
screen and (-moz-min-device-pixel-ratio: 1.5),
screen and (min-device-pixel-ratio: 1.5) {
html {
font-size: 0.5em;
line-height: 0.5em;
}
div#routeselector {
width: 100%;
min-height: 56px;
line-height:56px;
}
div#routeselector .bar {
font-size: 20px; /* 1em */
width: 10em;
height: 1em;
position: relative;
......@@ -255,22 +254,12 @@ screen and (min-device-pixel-ratio: 1.5) {
}
div#routeselector .routeBtn {
font-size: 1.5em;
margin-bottom: 0px;
}
div#lastUpdate {
display:none !important;
}
div#locationButton {
width: 64px;
height: 64px;
background-size: 64px 64px;
}
.leaflet-popup-content {
font-size: 2em;
}
}
\ No newline at end of file
}
......@@ -25,9 +25,15 @@ function dbq($db, $query, $dieOnError = false) {
} else return $result;
}
function cleanRouteName($name) {
if ($name == "New Brunsquick 1 Shuttle") $name = "NB 1";
else if ($name == "New Brunsquick 2 Shuttle") $name = "NB 2";
return $name;
}
function sanitize($string) {
$pattern = "/[^\w.-\s]/";
return preg_replace($pattern,"",$string);
}
?>
\ No newline at end of file
?>
<?php
require_once('config.php');
?>
<!doctype html>
<html lang="en">
<head>
<title>RU Bus Map</title>
<meta name="description" content="Real-time animated map of the bus system at Rutgers University New Brunswick.">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width; initial-scale=0.5; maximum-scale=0.5; user-scalable=no;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link href="css/leaflet.css" rel="stylesheet" />
<link href="css/leaflet.label.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<?php if (isset($_GET['embed'])) { ?>
<link href="css/embed.css" rel="stylesheet" />
<?php } ?>
<script src="js/fastclick.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/leaflet.js"></script>
<script src="js/leaflet.marker.rotate.js"></script>
<script src="js/leaflet.label.js"></script>
<script src="js/jquery.raptorize.js"></script>
<script src="js/script.js"></script>
<?php
if (isset($_GET['centerLat']) && isset($_GET['centerLon'])) {
$lat = doubleval($_GET['centerLat']);
$lon = doubleval($_GET['centerLon']);
if (isset($_GET['zoom'])) $zoom = intval($_GET['zoom']);
else $zoom = 'undefined';
echo '<script>$(document).ready(function(){ window.map.setView(['.$lat.','.$lon.'], '.$zoom.'); });</script>';
}
?>
<title><?php echo $cfg['agency']['name']; ?></title>
<meta name="description" content=<?php echo json_encode($cfg['agency']['description']); ?>>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width; initial-scale=1; maximum-scale=1; user-scalable=no;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link href="css/leaflet.css" rel="stylesheet" />
<link href="css/leaflet.label.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<?php if (isset($_GET['embed'])): ?>
<link href="css/embed.css" rel="stylesheet" />
<?php endif; ?>
<script>
window.agency = <?php echo json_encode($cfg['agency']['name']); ?>;
window.busIconUrl = <?php echo json_encode($cfg['agency']['busIconUrl'], JSON_UNESCAPED_SLASHES); ?>;
</script>
<script src="js/fastclick.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/leaflet.js"></script>
<script src="js/leaflet.marker.rotate.js"></script>
<script src="js/leaflet.label.js"></script>
<script src="js/jquery.raptorize.js"></script>
<script src="js/script.js"></script>
<script>
$(document).ready(function() {
// setup and create tile layer on map
L.tileLayer(<?php echo json_encode($cfg['agency']['tileUrl'], JSON_UNESCAPED_SLASHES); ?>, {
subdomains: <?php echo json_encode($cfg['agency']['tileSubdomains']); ?>,
tileset: <?php echo json_encode($cfg['agency']['tileset']); ?>,
errorTileUrl: <?php echo json_encode($cfg['agency']['errorTileUrl'], JSON_UNESCAPED_SLASHES); ?>,
attribution: <?php echo json_encode($cfg['agency']['attribution'], JSON_UNESCAPED_SLASHES); ?>,
detectRetina: true,
}).addTo(window.map);
});
</script>
<?php
// Set initial lat/lon if requested.
if (isset($_GET['centerLat']) && isset($_GET['centerLon'])) {
// sanitize user inputs by converting them to doubles/ints.
$lat = doubleval($_GET['centerLat']);
$lon = doubleval($_GET['centerLon']);
if (isset($_GET['zoom'])) $zoom = intval($_GET['zoom']);
else $zoom = 'undefined';
echo '<script>$(document).ready(function(){ window.map.setView(['.$lat.','.$lon.'], '.$zoom.'); });</script>';
}
?>
</head>
<body>
<div id="container">
<div id="topBar">
<div id="routeselector">Please enable Javascript to use this map.</div>
</div>
<div id="map"></div>
<div id="locationButton"></div>
</div>
<script>
var _paq = _paq || [];
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function() {
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://analytics.ant.sr/";
_paq.push(["setTrackerUrl", u+"piwik.php"]);
_paq.push(["setSiteId", "3"]);
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s);
})();
</script>
<div id="container">
<div id="topBar">
<div id="routeselector">Please enable Javascript to use this map.</div>
</div>
<div id="map"></div>
<div id="locationButton"></div>
</div>
</body>
</html>
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment