Skip to content
Snippets Groups Projects
Commit caff375e authored by Michael Fairchild's avatar Michael Fairchild
Browse files

Implement a bus daemon

parent f21ec861
Branches
No related tags found
No related merge requests found
description "maps.unl.edu bus location proxy"
author "mfairchild365@gmail.com"
# used to be: start on startup
# until we found some mounts weren't ready yet while booting:
start on runlevel [2345]
stop on runlevel [06]
# Automatically Respawn:
respawn
respawn limit 15 5
script
#configure the path
exec php /var/www/html/scripts/bus-daemon.php >> /var/log/bus_daemon.log 2>&1
end script
post-start script
# Optionally put a script here that will notify you node has (re)started
end script
\ No newline at end of file
<?php
/**
* This daemon runs the bus proxy script every second to generate the json file.
* This is helpful for when the server is under heavy load to ensure that the script is only ever ran once every second.
*
* If you use this daemon, be sure that busproxy.php is aliased in apache to serve bus.json.
*/
$project_root = dirname(__DIR__);
while(true) {
$result = shell_exec("php $project_root/www/busproxy.php");
sleep(1);
}
<?php
$url = 'http://getonboard.lincoln.ne.gov/packet/json/vehicle?routes=138,139&lastVehicleHttpRequestTime=0';
$file = 'bus.json';
$file = __DIR__ . '/bus.json';
$seconds_to_cache = 1;
if (!file_exists($file) || time() - $seconds_to_cache >= filemtime($file)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment