Start on service alerts api
[busui.git] / servicealerts_api.php
blob:a/servicealerts_api.php -> blob:b/servicealerts_api.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');
/*  
also need last modified epoch of client gtfs if (basename(__FILE__) == "servicealerts_api.php") {
  $return = getServiceAlertsAsJSON($_REQUEST['filter_class'], $_REQUEST['filter_id']);
- add,remove,patch header('Content-Type: text/javascript; charset=utf8');
- stop // header('Access-Control-Allow-Origin: http://bus.lambdacomplex.org/');
- trip header('Access-Control-Max-Age: 3628800');
- patterns (WHERE=) header('Access-Control-Allow-Methods: GET, POST, PUT, DELETE');
- route (short_name or route_id) if (isset($_GET['callback'])) {
- street $json = '(' . $return . ');'; //must wrap in parens and end with semicolon
- stop //print_r($_GET['callback'] . $json); //callback is prepended for json-p
- trip */ }
/* header { else
gtrtfs_version: "1" echo $return;
timestamp: 1307926866  
} }
entity { ?>
id: "21393"  
alert {  
active_period {  
start: 1307955600  
end: 1307988000  
}  
informed_entity {  
route_id: "100"  
route_type: 1  
}  
url {  
translation {  
text: "http://trimet.org/alerts/"  
}  
}  
description_text {  
translation {  
text: "Rose Festival fleet departures will cause bridge lifts until around 10 a.m. Expect delays."  
}  
}  
}  
}*/  
$return = Array();  
   
header('Content-Type: text/javascript; charset=utf8');  
// header('Access-Control-Allow-Origin: http://bus.lambdacomplex.org/');  
header('Access-Control-Max-Age: 3628800');  
header('Access-Control-Allow-Methods: GET, POST, PUT, DELETE');  
if (isset($_GET['callback'])) {  
$json = '(' . json_encode($return) . ');'; //must wrap in parens and end with semicolon  
print_r($_GET['callback'] . $json); //callback is prepended for json-p  
   
}  
else echo json_encode($return);  
?>