-
Notifications
You must be signed in to change notification settings - Fork 1
/
api.php
195 lines (171 loc) · 5.56 KB
/
api.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?php
/*api.php
* Autor: S. Fuchs [email protected]
* Holt von www.ding.eu die Abfahrtszeiten der Buslinien und gibt sie als JSON aus
* Beispielausgabe:
* {
* "info" : {
*
* "departures": [
* {
* "line": "-1",
* "direction": "Zeit DING Server",
* "countdown": "0",
* "realtime": "0",
* "timetable": "11:22"
* },
* {
* "line": "5",
* "direction": "Ludwigsfeld",
* "countdown": "5",
* "realtime": "1",
* "timetable": "11:27"
* }
* ]
* }
*
* Version log:
* 1.4 30.10.2011
* - quickfix: if ding sends a lot of lines with countdown==0, ignore them
* 1.3 20.10.2011
* - fix: added sort
* 1.2 30.05.2011
* - fix: if DING Servers are down, show a custom error message and the lokal server time
* 1.1 01.03.2011
* - fix in GetFromHost, if host is not reachable
* 1.0 17.02.2011
* - initial release
*/
// Read GET Params:
$maxBus = ($_GET['limit']);
//$maxBus = 1;
$id = "900".($_GET['id']);
$platform = false;
if (!empty($_GET['platform'])) {
$platform = ($_GET['platform']);
if (strpos($platform,";")) // ; als trenner
$platform = explode (";",$platform);
else // . als trenner
$platform = explode (".",$platform);
}
// Configuration:
// error message in case ding servers a down:
$errormsg['line'] = " ";
$errormsg['direction'] = "DING Server not reachable";
$errormsg['countdown'] = " ";
$errormsg['realtime'] = "0";
$errormsg['timetable'] = " ";
// disable all warnings
set_error_handler("my_warning_handler", E_ALL);
function my_warning_handler($errno, $errstr) {
}
// adresse basteln
$departures = array();
$info = array();
$adresse = "http://www.ding.eu/ding2/XML_DM_REQUEST?laguage=de&typeInfo_dm=stopID&nameInfo_dm=".$id."&deleteAssignedStops_dm=1&useRealtime=1&mode=direct";
try {
// xml holen
$dingxml = file_get_contents($adresse);
$xml = new SimpleXMLElement($dingxml);
//print_r($xml);
// serverzeit vom ding aus dem XML holen
$timestampH=$xml->itdDepartureMonitorRequest->itdDateTime->itdTime['hour'];
$timestampM=$xml->itdDepartureMonitorRequest->itdDateTime->itdTime['minute'];
if ($timestampM<10) $timestampM="0$timestampM";
$timestamp = "$timestampH:$timestampM";
$info["stopid"]=$id;
$info["stopname"]=(string) $xml->itdDepartureMonitorRequest->itdOdv->itdOdvName->odvNameElem[0];
$info["stopplace"]=(string) $xml->itdDepartureMonitorRequest->itdOdv->itdOdvPlace->odvPlaceElem[0];
$info["timestamp"]=$timestamp;
//$info["platform"]=$platform;
//anzahl der gefundenen lines, dient als fehlererkennung
$linecount = 0;
// alle buslinien durchlaufen und abbrechen wenn genug gesammelt
for ($i=0;$linecount<$maxBus;$i++) {
$dep = $xml->itdDepartureMonitorRequest->itdDepartureList->itdDeparture[$i];
// falls alles durchsucht wurde:
if (!$dep) break;
// realtime ankunftszeit schauen ob verfuegbar
$zeitH = $dep->itdRTDateTime->itdTime['hour'];
$zeitM = $dep->itdRTDateTime->itdTime['minute'];
if ($zeitM=="" && $zeitH=="") { // wenn RT zeit nicht verfuegbar
$zeitH = $dep->itdDateTime->itdTime['hour'];
$zeitM = $dep->itdDateTime->itdTime['minute'];
}
if (trim($zeitM)<10) $zeitM="0$zeitM";
if (trim($zeitH)<10) $zeitH="0$zeitH";
$timetable = "$zeitH:$zeitM";
// rest
$nummer = $dep->itdServingLine['number'];
// muss die platform berücksichtigt werden?
if ($platform) {
if (!in_array($dep['platform'],$platform)) continue; // falsche platform => raus!
}
// fehlersuche: Züge rausparsen, da steht "Gleis" im platFormName
if ($nummer=="" || strpos((string)$dep['platformName'],"leis")>0 ) {
continue;
} else {
$linecount++;
}
$richtung = $dep->itdServingLine['direction'];
$countdown = $dep['countdown'];
// get the Delay
$delay = $dep->itdServingLine->itdNoTrain['delay'];
// quickfix simon fuchs:
// ding stellt manchmal alte busse zur verfügung
// nachteil quickfix: normale busse mit countdown == 0 werden auch ausgeblendet
if ($countdown == 0) {
$maxBus++; // weil sonst zu wenig anzeigt werden wuerden
continue;
}
$realtime = $dep->itdServingLine['realtime'];
// debug auflistung
// echo $dep->itdServingLine['number'] ." ". $dep->itdServingLine['direction'] ."<b> ". $dep['countdown'] . "</b>";
// daten der linie eintragen
$data['line'] = "$nummer";
$data['direction'] = "$richtung";
$data['countdown'] = "$countdown";
$data['realtime'] = "$realtime";
$data['timetable'] = "$timetable";
$data['delay'] = "$delay";
$data['platform'] = (string)$dep['platform'];
array_push($departures, $data);
}
// im fehlerfall error msg ausgeben
if ($linecount==0) {
$data['line'] = " ";
$data['direction'] = "no Departures found";
$data['countdown'] = " ";
$data['realtime'] = "0";
$data['timetable'] = " ";
array_push($departures, $data);
}
} catch (Exception $e) {
/* // serverzeit in departures array eintragen
$data['line'] = "-1";
$data['direction'] = "Zeit DING Server";
$data['countdown'] = "-1";
$data['realtime'] = "0";
$data['timetable'] = date("H:m");
array_push($departures, $data);
*/
// fehlerbehandlung, da ding server oft down sein können
array_push($departures, $errormsg);
//echo "<br>" . $e->getMessage();
}
// sortieren
usort($departures,"compare");
// ausgabe in JSON
$json['info']=$info;
$json['departures']=$departures;
//print_r($json);
echo json_encode($json);
// comparfunction used by usort
function compare($a,$b) {
if ($a['countdown'] >= $b['countdown']) {
return 1;
} else {
return -1;
}
}
?>