@@ -13,33 +13,33 @@ discard block |
||
13 | 13 | * @param Array $filter the filter |
14 | 14 | * @return Array the SQL part |
15 | 15 | */ |
16 | - public function getFilter($filter = array(),$where = false,$and = false) { |
|
16 | + public function getFilter($filter = array(), $where = false, $and = false) { |
|
17 | 17 | global $globalFilter, $globalStatsFilters, $globalFilterName, $globalDBdriver; |
18 | 18 | $filters = array(); |
19 | 19 | if (is_array($globalStatsFilters) && isset($globalStatsFilters[$globalFilterName])) { |
20 | 20 | if (isset($globalStatsFilters[$globalFilterName][0]['source'])) { |
21 | 21 | $filters = $globalStatsFilters[$globalFilterName]; |
22 | 22 | } else { |
23 | - $filter = array_merge($filter,$globalStatsFilters[$globalFilterName]); |
|
23 | + $filter = array_merge($filter, $globalStatsFilters[$globalFilterName]); |
|
24 | 24 | } |
25 | 25 | } |
26 | 26 | if (isset($filter[0]['source'])) { |
27 | - $filters = array_merge($filters,$filter); |
|
27 | + $filters = array_merge($filters, $filter); |
|
28 | 28 | } |
29 | - if (is_array($globalFilter)) $filter = array_merge($filter,$globalFilter); |
|
29 | + if (is_array($globalFilter)) $filter = array_merge($filter, $globalFilter); |
|
30 | 30 | $filter_query_join = ''; |
31 | 31 | $filter_query_where = ''; |
32 | - foreach($filters as $flt) { |
|
32 | + foreach ($filters as $flt) { |
|
33 | 33 | if (isset($flt['idents']) && !empty($flt['idents'])) { |
34 | 34 | if (isset($flt['source'])) { |
35 | - $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.ident IN ('".implode("','",$flt['idents'])."') AND tracker_archive_output.format_source IN ('".implode("','",$flt['source'])."')) spid ON spid.famtrackid = tracker_archive.famtrackid"; |
|
35 | + $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.ident IN ('".implode("','", $flt['idents'])."') AND tracker_archive_output.format_source IN ('".implode("','", $flt['source'])."')) spid ON spid.famtrackid = tracker_archive.famtrackid"; |
|
36 | 36 | } else { |
37 | - $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.ident IN ('".implode("','",$flt['idents'])."')) spid ON spid.famtrackid = tracker_archive.famtrackid"; |
|
37 | + $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.ident IN ('".implode("','", $flt['idents'])."')) spid ON spid.famtrackid = tracker_archive.famtrackid"; |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | } |
41 | 41 | if (isset($filter['source']) && !empty($filter['source'])) { |
42 | - $filter_query_where .= " AND format_source IN ('".implode("','",$filter['source'])."')"; |
|
42 | + $filter_query_where .= " AND format_source IN ('".implode("','", $filter['source'])."')"; |
|
43 | 43 | } |
44 | 44 | if (isset($filter['ident']) && !empty($filter['ident'])) { |
45 | 45 | $filter_query_where .= " AND ident = '".$filter['ident']."'"; |
@@ -67,38 +67,38 @@ discard block |
||
67 | 67 | $filter_query_date .= " AND EXTRACT(DAY FROM tracker_archive_output.date) = '".$filter['day']."'"; |
68 | 68 | } |
69 | 69 | } |
70 | - $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output".preg_replace('/^ AND/',' WHERE',$filter_query_date).") sd ON sd.famtrackid = tracker_archive.famtrackid"; |
|
70 | + $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output".preg_replace('/^ AND/', ' WHERE', $filter_query_date).") sd ON sd.famtrackid = tracker_archive.famtrackid"; |
|
71 | 71 | } |
72 | 72 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
73 | - $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
73 | + $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
74 | 74 | } |
75 | 75 | if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE'; |
76 | 76 | elseif ($filter_query_where != '' && $and) $filter_query_where .= ' AND'; |
77 | 77 | if ($filter_query_where != '') { |
78 | - $filter_query_where = preg_replace('/^ AND/',' WHERE',$filter_query_where); |
|
78 | + $filter_query_where = preg_replace('/^ AND/', ' WHERE', $filter_query_where); |
|
79 | 79 | } |
80 | 80 | $filter_query = $filter_query_join.$filter_query_where; |
81 | 81 | return $filter_query; |
82 | 82 | } |
83 | 83 | |
84 | 84 | // tracker_archive |
85 | - public function addTrackerArchiveData($famtrackid = '', $ident = '', $latitude = '', $longitude = '', $altitude = '', $heading = '', $groundspeed = '', $date = '', $putinarchive = false, $comment = '', $type = '',$noarchive = false,$format_source = '', $source_name = '', $over_country = '') { |
|
85 | + public function addTrackerArchiveData($famtrackid = '', $ident = '', $latitude = '', $longitude = '', $altitude = '', $heading = '', $groundspeed = '', $date = '', $putinarchive = false, $comment = '', $type = '', $noarchive = false, $format_source = '', $source_name = '', $over_country = '') { |
|
86 | 86 | require_once(dirname(__FILE__).'/class.Tracker.php'); |
87 | 87 | if ($over_country == '') { |
88 | 88 | $Tracker = new Tracker($this->db); |
89 | - $data_country = $Tracker->getCountryFromLatitudeLongitude($latitude,$longitude); |
|
89 | + $data_country = $Tracker->getCountryFromLatitudeLongitude($latitude, $longitude); |
|
90 | 90 | if (!empty($data_country)) $country = $data_country['iso2']; |
91 | 91 | else $country = ''; |
92 | 92 | } else $country = $over_country; |
93 | 93 | // Route is not added in tracker_archive |
94 | - $query = 'INSERT INTO tracker_archive (famtrackid, ident, latitude, longitude, altitude, heading, ground_speed, date, format_source, source_name, over_country, comment, type) |
|
94 | + $query = 'INSERT INTO tracker_archive (famtrackid, ident, latitude, longitude, altitude, heading, ground_speed, date, format_source, source_name, over_country, comment, type) |
|
95 | 95 | VALUES (:famtrackid,:ident,:latitude,:longitude,:altitude,:heading,:groundspeed,:date,:format_source, :source_name, :over_country,:comment,:type)'; |
96 | - $query_values = array(':famtrackid' => $famtrackid,':ident' => $ident,':latitude' => $latitude,':longitude' => $longitude,':altitude' => $altitude,':heading' => $heading,':groundspeed' => $groundspeed,':date' => $date, ':format_source' => $format_source, ':source_name' => $source_name, ':over_country' => $over_country,':comment' => $comment,':type' => $type); |
|
96 | + $query_values = array(':famtrackid' => $famtrackid, ':ident' => $ident, ':latitude' => $latitude, ':longitude' => $longitude, ':altitude' => $altitude, ':heading' => $heading, ':groundspeed' => $groundspeed, ':date' => $date, ':format_source' => $format_source, ':source_name' => $source_name, ':over_country' => $over_country, ':comment' => $comment, ':type' => $type); |
|
97 | 97 | try { |
98 | 98 | $sth = $this->db->prepare($query); |
99 | 99 | $sth->execute($query_values); |
100 | 100 | $sth->closeCursor(); |
101 | - } catch(PDOException $e) { |
|
101 | + } catch (PDOException $e) { |
|
102 | 102 | return "error : ".$e->getMessage(); |
103 | 103 | } |
104 | 104 | return "success"; |
@@ -118,9 +118,9 @@ discard block |
||
118 | 118 | |
119 | 119 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
120 | 120 | //$query = "SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.ident = :ident GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate LIMIT 1"; |
121 | - $query = "SELECT tracker_archive.* FROM tracker_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
121 | + $query = "SELECT tracker_archive.* FROM tracker_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
122 | 122 | |
123 | - $spotter_array = $Tracker->getDataFromDB($query,array(':ident' => $ident)); |
|
123 | + $spotter_array = $Tracker->getDataFromDB($query, array(':ident' => $ident)); |
|
124 | 124 | |
125 | 125 | return $spotter_array; |
126 | 126 | } |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
140 | 140 | //$query = TrackerArchive->$global_query." WHERE tracker_archive.famtrackid = :id"; |
141 | 141 | //$query = "SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.famtrackid = :id GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate LIMIT 1"; |
142 | - $query = "SELECT * FROM tracker_archive WHERE famtrackid = :id ORDER BY date DESC LIMIT 1"; |
|
142 | + $query = "SELECT * FROM tracker_archive WHERE famtrackid = :id ORDER BY date DESC LIMIT 1"; |
|
143 | 143 | |
144 | 144 | // $spotter_array = Tracker->getDataFromDB($query,array(':id' => $id)); |
145 | 145 | /* |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | } |
153 | 153 | $spotter_array = $sth->fetchAll(PDO->FETCH_ASSOC); |
154 | 154 | */ |
155 | - $spotter_array = $Tracker->getDataFromDB($query,array(':id' => $id)); |
|
155 | + $spotter_array = $Tracker->getDataFromDB($query, array(':id' => $id)); |
|
156 | 156 | |
157 | 157 | return $spotter_array; |
158 | 158 | } |
@@ -167,14 +167,14 @@ discard block |
||
167 | 167 | { |
168 | 168 | date_default_timezone_set('UTC'); |
169 | 169 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
170 | - $query = $this->global_query." WHERE tracker_archive.famtrackid = :id ORDER BY date"; |
|
170 | + $query = $this->global_query." WHERE tracker_archive.famtrackid = :id ORDER BY date"; |
|
171 | 171 | |
172 | 172 | // $spotter_array = Tracker->getDataFromDB($query,array(':id' => $id)); |
173 | 173 | |
174 | 174 | try { |
175 | 175 | $sth = $this->db->prepare($query); |
176 | 176 | $sth->execute(array(':id' => $id)); |
177 | - } catch(PDOException $e) { |
|
177 | + } catch (PDOException $e) { |
|
178 | 178 | echo $e->getMessage(); |
179 | 179 | die; |
180 | 180 | } |
@@ -193,14 +193,14 @@ discard block |
||
193 | 193 | { |
194 | 194 | date_default_timezone_set('UTC'); |
195 | 195 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
196 | - $query = "SELECT tracker_archive.latitude, tracker_archive.longitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id"; |
|
196 | + $query = "SELECT tracker_archive.latitude, tracker_archive.longitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id"; |
|
197 | 197 | |
198 | 198 | // $spotter_array = Tracker->getDataFromDB($query,array(':id' => $id)); |
199 | 199 | |
200 | 200 | try { |
201 | 201 | $sth = $this->db->prepare($query); |
202 | 202 | $sth->execute(array(':id' => $id)); |
203 | - } catch(PDOException $e) { |
|
203 | + } catch (PDOException $e) { |
|
204 | 204 | echo $e->getMessage(); |
205 | 205 | die; |
206 | 206 | } |
@@ -222,12 +222,12 @@ discard block |
||
222 | 222 | date_default_timezone_set('UTC'); |
223 | 223 | |
224 | 224 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
225 | - $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.ident = :ident AND tracker_archive.latitude <> 0 AND tracker_archive.longitude <> 0 ORDER BY date"; |
|
225 | + $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.ident = :ident AND tracker_archive.latitude <> 0 AND tracker_archive.longitude <> 0 ORDER BY date"; |
|
226 | 226 | |
227 | 227 | try { |
228 | 228 | $sth = $this->db->prepare($query); |
229 | 229 | $sth->execute(array(':ident' => $ident)); |
230 | - } catch(PDOException $e) { |
|
230 | + } catch (PDOException $e) { |
|
231 | 231 | echo $e->getMessage(); |
232 | 232 | die; |
233 | 233 | } |
@@ -248,12 +248,12 @@ discard block |
||
248 | 248 | date_default_timezone_set('UTC'); |
249 | 249 | |
250 | 250 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
251 | - $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id AND tracker_archive.latitude <> 0 AND tracker_archive.longitude <> 0 ORDER BY date"; |
|
251 | + $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id AND tracker_archive.latitude <> 0 AND tracker_archive.longitude <> 0 ORDER BY date"; |
|
252 | 252 | |
253 | 253 | try { |
254 | 254 | $sth = $this->db->prepare($query); |
255 | 255 | $sth->execute(array(':id' => $id)); |
256 | - } catch(PDOException $e) { |
|
256 | + } catch (PDOException $e) { |
|
257 | 257 | echo $e->getMessage(); |
258 | 258 | die; |
259 | 259 | } |
@@ -274,12 +274,12 @@ discard block |
||
274 | 274 | date_default_timezone_set('UTC'); |
275 | 275 | |
276 | 276 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
277 | - $query = "SELECT tracker_archive.altitude, tracker_archive.ground_speed, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id ORDER BY date"; |
|
277 | + $query = "SELECT tracker_archive.altitude, tracker_archive.ground_speed, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id ORDER BY date"; |
|
278 | 278 | |
279 | 279 | try { |
280 | 280 | $sth = $this->db->prepare($query); |
281 | 281 | $sth->execute(array(':id' => $id)); |
282 | - } catch(PDOException $e) { |
|
282 | + } catch (PDOException $e) { |
|
283 | 283 | echo $e->getMessage(); |
284 | 284 | die; |
285 | 285 | } |
@@ -301,13 +301,13 @@ discard block |
||
301 | 301 | date_default_timezone_set('UTC'); |
302 | 302 | |
303 | 303 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
304 | - $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.ident = :ident GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate LIMIT 1"; |
|
304 | + $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.ident = :ident GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate LIMIT 1"; |
|
305 | 305 | // $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.ident = :ident"; |
306 | 306 | |
307 | 307 | try { |
308 | 308 | $sth = $this->db->prepare($query); |
309 | 309 | $sth->execute(array(':ident' => $ident)); |
310 | - } catch(PDOException $e) { |
|
310 | + } catch (PDOException $e) { |
|
311 | 311 | echo $e->getMessage(); |
312 | 312 | die; |
313 | 313 | } |
@@ -324,13 +324,13 @@ discard block |
||
324 | 324 | * @return Array the spotter information |
325 | 325 | * |
326 | 326 | */ |
327 | - public function getTrackerArchiveData($ident,$famtrackid,$date) |
|
327 | + public function getTrackerArchiveData($ident, $famtrackid, $date) |
|
328 | 328 | { |
329 | 329 | $Tracker = new Tracker($this->db); |
330 | 330 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
331 | - $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.famtrackid = :famtrackid AND l.date LIKE :date GROUP BY l.famtrackid) s on spotter_live.famtrackid = s.famtrackid AND spotter_live.date = s.maxdate"; |
|
331 | + $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.famtrackid = :famtrackid AND l.date LIKE :date GROUP BY l.famtrackid) s on spotter_live.famtrackid = s.famtrackid AND spotter_live.date = s.maxdate"; |
|
332 | 332 | |
333 | - $spotter_array = $Tracker->getDataFromDB($query,array(':ident' => $ident,':famtrackid' => $famtrackid,':date' => $date.'%')); |
|
333 | + $spotter_array = $Tracker->getDataFromDB($query, array(':ident' => $ident, ':famtrackid' => $famtrackid, ':date' => $date.'%')); |
|
334 | 334 | |
335 | 335 | return $spotter_array; |
336 | 336 | } |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | try { |
344 | 344 | $sth = $this->db->prepare($query); |
345 | 345 | $sth->execute(); |
346 | - } catch(PDOException $e) { |
|
346 | + } catch (PDOException $e) { |
|
347 | 347 | echo $e->getMessage(); |
348 | 348 | die; |
349 | 349 | } |
@@ -355,24 +355,24 @@ discard block |
||
355 | 355 | * @return Array the spotter information |
356 | 356 | * |
357 | 357 | */ |
358 | - public function getMinLiveTrackerData($begindate,$enddate,$filter = array()) |
|
358 | + public function getMinLiveTrackerData($begindate, $enddate, $filter = array()) |
|
359 | 359 | { |
360 | 360 | global $globalDBdriver, $globalLiveInterval; |
361 | 361 | date_default_timezone_set('UTC'); |
362 | 362 | |
363 | 363 | $filter_query = ''; |
364 | 364 | if (isset($filter['source']) && !empty($filter['source'])) { |
365 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
365 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
366 | 366 | } |
367 | 367 | // Use spotter_output also ? |
368 | 368 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
369 | - $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
369 | + $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
370 | 370 | } |
371 | 371 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
372 | 372 | $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.famtrackid = tracker_archive.famtrackid "; |
373 | 373 | } |
374 | 374 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
375 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
375 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
376 | 376 | } |
377 | 377 | |
378 | 378 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -391,14 +391,14 @@ discard block |
||
391 | 391 | GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid |
392 | 392 | AND tracker_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON tracker_archive.aircraft_icao = a.icao'; |
393 | 393 | */ |
394 | - $query = 'SELECT tracker_archive.date,tracker_archive.famtrackid, tracker_archive.ident, tracker_archive.aircraft_icao, tracker_archive.departure_airport_icao as departure_airport, tracker_archive.arrival_airport_icao as arrival_airport, tracker_archive.latitude, tracker_archive.longitude, tracker_archive.altitude, tracker_archive.heading, tracker_archive.ground_speed, tracker_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
394 | + $query = 'SELECT tracker_archive.date,tracker_archive.famtrackid, tracker_archive.ident, tracker_archive.aircraft_icao, tracker_archive.departure_airport_icao as departure_airport, tracker_archive.arrival_airport_icao as arrival_airport, tracker_archive.latitude, tracker_archive.longitude, tracker_archive.altitude, tracker_archive.heading, tracker_archive.ground_speed, tracker_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
395 | 395 | FROM tracker_archive |
396 | 396 | INNER JOIN (SELECT * FROM aircraft) a on tracker_archive.aircraft_icao = a.icao |
397 | 397 | WHERE tracker_archive.date BETWEEN '."'".$begindate."'".' AND '."'".$begindate."'".' |
398 | 398 | '.$filter_query.' ORDER BY famtrackid'; |
399 | 399 | } else { |
400 | 400 | //$query = 'SELECT tracker_archive.ident, tracker_archive.famtrackid, tracker_archive.aircraft_icao, tracker_archive.departure_airport_icao as departure_airport, tracker_archive.arrival_airport_icao as arrival_airport, tracker_archive.latitude, tracker_archive.longitude, tracker_archive.altitude, tracker_archive.heading, tracker_archive.ground_speed, tracker_archive.squawk, a.aircraft_shadow FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$globalLiveInterval.' SECOND) <= l.date GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate '.$filter_query.'INNER JOIN (SELECT * FROM aircraft) a on tracker_archive.aircraft_icao = a.icao'; |
401 | - $query = 'SELECT tracker_archive.date,tracker_archive.famtrackid, tracker_archive.ident, tracker_archive.aircraft_icao, tracker_archive.departure_airport_icao as departure_airport, tracker_archive.arrival_airport_icao as arrival_airport, tracker_archive.latitude, tracker_archive.longitude, tracker_archive.altitude, tracker_archive.heading, tracker_archive.ground_speed, tracker_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
401 | + $query = 'SELECT tracker_archive.date,tracker_archive.famtrackid, tracker_archive.ident, tracker_archive.aircraft_icao, tracker_archive.departure_airport_icao as departure_airport, tracker_archive.arrival_airport_icao as arrival_airport, tracker_archive.latitude, tracker_archive.longitude, tracker_archive.altitude, tracker_archive.heading, tracker_archive.ground_speed, tracker_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
402 | 402 | FROM tracker_archive |
403 | 403 | INNER JOIN (SELECT * FROM aircraft) a on tracker_archive.aircraft_icao = a.icao |
404 | 404 | WHERE tracker_archive.date >= '."'".$begindate."'".' AND tracker_archive.date <= '."'".$enddate."'".' |
@@ -408,7 +408,7 @@ discard block |
||
408 | 408 | try { |
409 | 409 | $sth = $this->db->prepare($query); |
410 | 410 | $sth->execute(); |
411 | - } catch(PDOException $e) { |
|
411 | + } catch (PDOException $e) { |
|
412 | 412 | echo $e->getMessage(); |
413 | 413 | die; |
414 | 414 | } |
@@ -423,24 +423,24 @@ discard block |
||
423 | 423 | * @return Array the spotter information |
424 | 424 | * |
425 | 425 | */ |
426 | - public function getMinLiveTrackerDataPlayback($begindate,$enddate,$filter = array()) |
|
426 | + public function getMinLiveTrackerDataPlayback($begindate, $enddate, $filter = array()) |
|
427 | 427 | { |
428 | 428 | global $globalDBdriver, $globalLiveInterval; |
429 | 429 | date_default_timezone_set('UTC'); |
430 | 430 | |
431 | 431 | $filter_query = ''; |
432 | 432 | if (isset($filter['source']) && !empty($filter['source'])) { |
433 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
433 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
434 | 434 | } |
435 | 435 | // Should use spotter_output also ? |
436 | 436 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
437 | - $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
437 | + $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
438 | 438 | } |
439 | 439 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
440 | 440 | $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.famtrackid = tracker_archive.famtrackid "; |
441 | 441 | } |
442 | 442 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
443 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
443 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
444 | 444 | } |
445 | 445 | |
446 | 446 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -450,7 +450,7 @@ discard block |
||
450 | 450 | FROM tracker_archive |
451 | 451 | INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE (l.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON tracker_archive.aircraft_icao = a.icao'; |
452 | 452 | */ |
453 | - $query = 'SELECT a.aircraft_shadow, tracker_archive_output.ident, tracker_archive_output.famtrackid, tracker_archive_output.aircraft_icao, tracker_archive_output.departure_airport_icao as departure_airport, tracker_archive_output.arrival_airport_icao as arrival_airport, tracker_archive_output.latitude, tracker_archive_output.longitude, tracker_archive_output.altitude, tracker_archive_output.heading, tracker_archive_output.ground_speed, tracker_archive_output.squawk |
|
453 | + $query = 'SELECT a.aircraft_shadow, tracker_archive_output.ident, tracker_archive_output.famtrackid, tracker_archive_output.aircraft_icao, tracker_archive_output.departure_airport_icao as departure_airport, tracker_archive_output.arrival_airport_icao as arrival_airport, tracker_archive_output.latitude, tracker_archive_output.longitude, tracker_archive_output.altitude, tracker_archive_output.heading, tracker_archive_output.ground_speed, tracker_archive_output.squawk |
|
454 | 454 | FROM tracker_archive_output |
455 | 455 | LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON tracker_archive_output.aircraft_icao = a.icao |
456 | 456 | WHERE (tracker_archive_output.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') |
@@ -465,7 +465,7 @@ discard block |
||
465 | 465 | WHERE tracker_archive_output.date >= '."'".$begindate."'".' AND tracker_archive_output.date <= '."'".$enddate."'".' |
466 | 466 | '.$filter_query.' GROUP BY tracker_archive_output.famtrackid, tracker_archive_output.ident, tracker_archive_output.aircraft_icao, tracker_archive_output.departure_airport_icao, tracker_archive_output.arrival_airport_icao, tracker_archive_output.latitude, tracker_archive_output.longitude, tracker_archive_output.altitude, tracker_archive_output.heading, tracker_archive_output.ground_speed, tracker_archive_output.squawk, a.aircraft_shadow'; |
467 | 467 | */ |
468 | - $query = 'SELECT DISTINCT tracker_archive_output.famtrackid, tracker_archive_output.ident, tracker_archive_output.aircraft_icao, tracker_archive_output.departure_airport_icao as departure_airport, tracker_archive_output.arrival_airport_icao as arrival_airport, tracker_archive_output.latitude, tracker_archive_output.longitude, tracker_archive_output.altitude, tracker_archive_output.heading, tracker_archive_output.ground_speed, tracker_archive_output.squawk, a.aircraft_shadow |
|
468 | + $query = 'SELECT DISTINCT tracker_archive_output.famtrackid, tracker_archive_output.ident, tracker_archive_output.aircraft_icao, tracker_archive_output.departure_airport_icao as departure_airport, tracker_archive_output.arrival_airport_icao as arrival_airport, tracker_archive_output.latitude, tracker_archive_output.longitude, tracker_archive_output.altitude, tracker_archive_output.heading, tracker_archive_output.ground_speed, tracker_archive_output.squawk, a.aircraft_shadow |
|
469 | 469 | FROM tracker_archive_output |
470 | 470 | INNER JOIN (SELECT * FROM aircraft) a on tracker_archive_output.aircraft_icao = a.icao |
471 | 471 | WHERE tracker_archive_output.date >= '."'".$begindate."'".' AND tracker_archive_output.date <= '."'".$enddate."'".' |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | try { |
478 | 478 | $sth = $this->db->prepare($query); |
479 | 479 | $sth->execute(); |
480 | - } catch(PDOException $e) { |
|
480 | + } catch (PDOException $e) { |
|
481 | 481 | echo $e->getMessage(); |
482 | 482 | die; |
483 | 483 | } |
@@ -492,23 +492,23 @@ discard block |
||
492 | 492 | * @return Array the spotter information |
493 | 493 | * |
494 | 494 | */ |
495 | - public function getLiveTrackerCount($begindate,$enddate,$filter = array()) |
|
495 | + public function getLiveTrackerCount($begindate, $enddate, $filter = array()) |
|
496 | 496 | { |
497 | 497 | global $globalDBdriver, $globalLiveInterval; |
498 | 498 | date_default_timezone_set('UTC'); |
499 | 499 | |
500 | 500 | $filter_query = ''; |
501 | 501 | if (isset($filter['source']) && !empty($filter['source'])) { |
502 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
502 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
503 | 503 | } |
504 | 504 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
505 | - $filter_query .= " INNER JOIN (SELECT famtrackid FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
505 | + $filter_query .= " INNER JOIN (SELECT famtrackid FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
506 | 506 | } |
507 | 507 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
508 | 508 | $filter_query .= " INNER JOIN (SELECT famtrackid FROM spotter_output WHERE spotter_output.airline_type = '".$filter['airlinestype']."') sa ON sa.famtrackid = tracker_archive.famtrackid "; |
509 | 509 | } |
510 | 510 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
511 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
511 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
512 | 512 | } |
513 | 513 | |
514 | 514 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -523,7 +523,7 @@ discard block |
||
523 | 523 | try { |
524 | 524 | $sth = $this->db->prepare($query); |
525 | 525 | $sth->execute(); |
526 | - } catch(PDOException $e) { |
|
526 | + } catch (PDOException $e) { |
|
527 | 527 | echo $e->getMessage(); |
528 | 528 | die; |
529 | 529 | } |
@@ -543,7 +543,7 @@ discard block |
||
543 | 543 | * @return Array the spotter information |
544 | 544 | * |
545 | 545 | */ |
546 | - public function searchTrackerData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '',$pilot_id = '',$pilot_name = '',$altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '',$origLat = '',$origLon = '',$dist = '', $filters=array()) |
|
546 | + public function searchTrackerData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '', $pilot_id = '', $pilot_name = '', $altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '', $origLat = '', $origLon = '', $dist = '', $filters = array()) |
|
547 | 547 | { |
548 | 548 | global $globalTimezone, $globalDBdriver; |
549 | 549 | require_once(dirname(__FILE__).'/class.Translation.php'); |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | |
566 | 566 | $q_array = explode(" ", $q); |
567 | 567 | |
568 | - foreach ($q_array as $q_item){ |
|
568 | + foreach ($q_array as $q_item) { |
|
569 | 569 | $additional_query .= " AND ("; |
570 | 570 | $additional_query .= "(tracker_archive_output.spotter_id like '%".$q_item."%') OR "; |
571 | 571 | $additional_query .= "(tracker_archive_output.aircraft_icao like '%".$q_item."%') OR "; |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | |
598 | 598 | if ($registration != "") |
599 | 599 | { |
600 | - $registration = filter_var($registration,FILTER_SANITIZE_STRING); |
|
600 | + $registration = filter_var($registration, FILTER_SANITIZE_STRING); |
|
601 | 601 | if (!is_string($registration)) |
602 | 602 | { |
603 | 603 | return false; |
@@ -608,7 +608,7 @@ discard block |
||
608 | 608 | |
609 | 609 | if ($aircraft_icao != "") |
610 | 610 | { |
611 | - $aircraft_icao = filter_var($aircraft_icao,FILTER_SANITIZE_STRING); |
|
611 | + $aircraft_icao = filter_var($aircraft_icao, FILTER_SANITIZE_STRING); |
|
612 | 612 | if (!is_string($aircraft_icao)) |
613 | 613 | { |
614 | 614 | return false; |
@@ -619,7 +619,7 @@ discard block |
||
619 | 619 | |
620 | 620 | if ($aircraft_manufacturer != "") |
621 | 621 | { |
622 | - $aircraft_manufacturer = filter_var($aircraft_manufacturer,FILTER_SANITIZE_STRING); |
|
622 | + $aircraft_manufacturer = filter_var($aircraft_manufacturer, FILTER_SANITIZE_STRING); |
|
623 | 623 | if (!is_string($aircraft_manufacturer)) |
624 | 624 | { |
625 | 625 | return false; |
@@ -640,7 +640,7 @@ discard block |
||
640 | 640 | |
641 | 641 | if ($airline_icao != "") |
642 | 642 | { |
643 | - $airline_icao = filter_var($airline_icao,FILTER_SANITIZE_STRING); |
|
643 | + $airline_icao = filter_var($airline_icao, FILTER_SANITIZE_STRING); |
|
644 | 644 | if (!is_string($airline_icao)) |
645 | 645 | { |
646 | 646 | return false; |
@@ -651,7 +651,7 @@ discard block |
||
651 | 651 | |
652 | 652 | if ($airline_country != "") |
653 | 653 | { |
654 | - $airline_country = filter_var($airline_country,FILTER_SANITIZE_STRING); |
|
654 | + $airline_country = filter_var($airline_country, FILTER_SANITIZE_STRING); |
|
655 | 655 | if (!is_string($airline_country)) |
656 | 656 | { |
657 | 657 | return false; |
@@ -662,7 +662,7 @@ discard block |
||
662 | 662 | |
663 | 663 | if ($airline_type != "") |
664 | 664 | { |
665 | - $airline_type = filter_var($airline_type,FILTER_SANITIZE_STRING); |
|
665 | + $airline_type = filter_var($airline_type, FILTER_SANITIZE_STRING); |
|
666 | 666 | if (!is_string($airline_type)) |
667 | 667 | { |
668 | 668 | return false; |
@@ -684,7 +684,7 @@ discard block |
||
684 | 684 | |
685 | 685 | if ($airport != "") |
686 | 686 | { |
687 | - $airport = filter_var($airport,FILTER_SANITIZE_STRING); |
|
687 | + $airport = filter_var($airport, FILTER_SANITIZE_STRING); |
|
688 | 688 | if (!is_string($airport)) |
689 | 689 | { |
690 | 690 | return false; |
@@ -695,7 +695,7 @@ discard block |
||
695 | 695 | |
696 | 696 | if ($airport_country != "") |
697 | 697 | { |
698 | - $airport_country = filter_var($airport_country,FILTER_SANITIZE_STRING); |
|
698 | + $airport_country = filter_var($airport_country, FILTER_SANITIZE_STRING); |
|
699 | 699 | if (!is_string($airport_country)) |
700 | 700 | { |
701 | 701 | return false; |
@@ -706,7 +706,7 @@ discard block |
||
706 | 706 | |
707 | 707 | if ($callsign != "") |
708 | 708 | { |
709 | - $callsign = filter_var($callsign,FILTER_SANITIZE_STRING); |
|
709 | + $callsign = filter_var($callsign, FILTER_SANITIZE_STRING); |
|
710 | 710 | if (!is_string($callsign)) |
711 | 711 | { |
712 | 712 | return false; |
@@ -714,7 +714,7 @@ discard block |
||
714 | 714 | $translate = $Translation->ident2icao($callsign); |
715 | 715 | if ($translate != $callsign) { |
716 | 716 | $additional_query .= " AND (tracker_archive_output.ident = :callsign OR tracker_archive_output.ident = :translate)"; |
717 | - $query_values = array_merge($query_values,array(':callsign' => $callsign,':translate' => $translate)); |
|
717 | + $query_values = array_merge($query_values, array(':callsign' => $callsign, ':translate' => $translate)); |
|
718 | 718 | } else { |
719 | 719 | $additional_query .= " AND (tracker_archive_output.ident = '".$callsign."')"; |
720 | 720 | } |
@@ -723,7 +723,7 @@ discard block |
||
723 | 723 | |
724 | 724 | if ($owner != "") |
725 | 725 | { |
726 | - $owner = filter_var($owner,FILTER_SANITIZE_STRING); |
|
726 | + $owner = filter_var($owner, FILTER_SANITIZE_STRING); |
|
727 | 727 | if (!is_string($owner)) |
728 | 728 | { |
729 | 729 | return false; |
@@ -734,7 +734,7 @@ discard block |
||
734 | 734 | |
735 | 735 | if ($pilot_name != "") |
736 | 736 | { |
737 | - $pilot_name = filter_var($pilot_name,FILTER_SANITIZE_STRING); |
|
737 | + $pilot_name = filter_var($pilot_name, FILTER_SANITIZE_STRING); |
|
738 | 738 | if (!is_string($pilot_name)) |
739 | 739 | { |
740 | 740 | return false; |
@@ -745,7 +745,7 @@ discard block |
||
745 | 745 | |
746 | 746 | if ($pilot_id != "") |
747 | 747 | { |
748 | - $pilot_id = filter_var($pilot_id,FILTER_SANITIZE_NUMBER_INT); |
|
748 | + $pilot_id = filter_var($pilot_id, FILTER_SANITIZE_NUMBER_INT); |
|
749 | 749 | if (!is_string($pilot_id)) |
750 | 750 | { |
751 | 751 | return false; |
@@ -756,7 +756,7 @@ discard block |
||
756 | 756 | |
757 | 757 | if ($departure_airport_route != "") |
758 | 758 | { |
759 | - $departure_airport_route = filter_var($departure_airport_route,FILTER_SANITIZE_STRING); |
|
759 | + $departure_airport_route = filter_var($departure_airport_route, FILTER_SANITIZE_STRING); |
|
760 | 760 | if (!is_string($departure_airport_route)) |
761 | 761 | { |
762 | 762 | return false; |
@@ -767,7 +767,7 @@ discard block |
||
767 | 767 | |
768 | 768 | if ($arrival_airport_route != "") |
769 | 769 | { |
770 | - $arrival_airport_route = filter_var($arrival_airport_route,FILTER_SANITIZE_STRING); |
|
770 | + $arrival_airport_route = filter_var($arrival_airport_route, FILTER_SANITIZE_STRING); |
|
771 | 771 | if (!is_string($arrival_airport_route)) |
772 | 772 | { |
773 | 773 | return false; |
@@ -780,8 +780,8 @@ discard block |
||
780 | 780 | { |
781 | 781 | $altitude_array = explode(",", $altitude); |
782 | 782 | |
783 | - $altitude_array[0] = filter_var($altitude_array[0],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
784 | - $altitude_array[1] = filter_var($altitude_array[1],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
783 | + $altitude_array[0] = filter_var($altitude_array[0], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
784 | + $altitude_array[1] = filter_var($altitude_array[1], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
785 | 785 | |
786 | 786 | |
787 | 787 | if ($altitude_array[1] != "") |
@@ -799,8 +799,8 @@ discard block |
||
799 | 799 | { |
800 | 800 | $date_array = explode(",", $date_posted); |
801 | 801 | |
802 | - $date_array[0] = filter_var($date_array[0],FILTER_SANITIZE_STRING); |
|
803 | - $date_array[1] = filter_var($date_array[1],FILTER_SANITIZE_STRING); |
|
802 | + $date_array[0] = filter_var($date_array[0], FILTER_SANITIZE_STRING); |
|
803 | + $date_array[1] = filter_var($date_array[1], FILTER_SANITIZE_STRING); |
|
804 | 804 | |
805 | 805 | if ($globalTimezone != '') { |
806 | 806 | date_default_timezone_set($globalTimezone); |
@@ -832,8 +832,8 @@ discard block |
||
832 | 832 | { |
833 | 833 | $limit_array = explode(",", $limit); |
834 | 834 | |
835 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
836 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
835 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
836 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
837 | 837 | |
838 | 838 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
839 | 839 | { |
@@ -844,8 +844,8 @@ discard block |
||
844 | 844 | |
845 | 845 | |
846 | 846 | if ($origLat != "" && $origLon != "" && $dist != "") { |
847 | - $dist = number_format($dist*0.621371,2,'.',''); |
|
848 | - $query="SELECT tracker_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(tracker_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(tracker_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(tracker_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
847 | + $dist = number_format($dist*0.621371, 2, '.', ''); |
|
848 | + $query = "SELECT tracker_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(tracker_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(tracker_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(tracker_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
849 | 849 | FROM tracker_archive_output, tracker_archive WHERE spotter_output_archive.famtrackid = tracker_archive.famtrackid AND spotter_output.ident <> '' ".$additional_query."AND CAST(tracker_archive.longitude as double precision) between ($origLon-$dist/ABS(cos(radians($origLat))*69)) and ($origLon+$dist/ABS(cos(radians($origLat))*69)) and CAST(tracker_archive.latitude as double precision) between ($origLat-($dist/69)) and ($origLat+($dist/69)) |
850 | 850 | AND (3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(tracker_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(tracker_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(tracker_archive.longitude as double precision))*pi()/180/2),2)))) < $dist".$filter_query." ORDER BY distance"; |
851 | 851 | } else { |
@@ -862,12 +862,12 @@ discard block |
||
862 | 862 | $additional_query .= " AND (tracker_archive_output.waypoints <> '')"; |
863 | 863 | } |
864 | 864 | |
865 | - $query = "SELECT tracker_archive_output.* FROM tracker_archive_output |
|
865 | + $query = "SELECT tracker_archive_output.* FROM tracker_archive_output |
|
866 | 866 | WHERE tracker_archive_output.ident <> '' |
867 | 867 | ".$additional_query." |
868 | 868 | ".$filter_query.$orderby_query; |
869 | 869 | } |
870 | - $spotter_array = $Tracker->getDataFromDB($query, $query_values,$limit_query); |
|
870 | + $spotter_array = $Tracker->getDataFromDB($query, $query_values, $limit_query); |
|
871 | 871 | |
872 | 872 | return $spotter_array; |
873 | 873 | } |
@@ -884,7 +884,7 @@ discard block |
||
884 | 884 | try { |
885 | 885 | $sth = $this->db->prepare($query); |
886 | 886 | $sth->execute(); |
887 | - } catch(PDOException $e) { |
|
887 | + } catch (PDOException $e) { |
|
888 | 888 | return "error"; |
889 | 889 | } |
890 | 890 | } |
@@ -921,8 +921,8 @@ discard block |
||
921 | 921 | { |
922 | 922 | $limit_array = explode(",", $limit); |
923 | 923 | |
924 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
925 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
924 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
925 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
926 | 926 | |
927 | 927 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
928 | 928 | { |
@@ -963,7 +963,7 @@ discard block |
||
963 | 963 | $query_values = array(); |
964 | 964 | $limit_query = ''; |
965 | 965 | $additional_query = ''; |
966 | - $filter_query = $this->getFilter($filter,true,true); |
|
966 | + $filter_query = $this->getFilter($filter, true, true); |
|
967 | 967 | |
968 | 968 | if ($owner != "") |
969 | 969 | { |
@@ -980,8 +980,8 @@ discard block |
||
980 | 980 | { |
981 | 981 | $limit_array = explode(",", $limit); |
982 | 982 | |
983 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
984 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
983 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
984 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
985 | 985 | |
986 | 986 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
987 | 987 | { |
@@ -1021,7 +1021,7 @@ discard block |
||
1021 | 1021 | $query_values = array(); |
1022 | 1022 | $limit_query = ''; |
1023 | 1023 | $additional_query = ''; |
1024 | - $filter_query = $this->getFilter($filter,true,true); |
|
1024 | + $filter_query = $this->getFilter($filter, true, true); |
|
1025 | 1025 | |
1026 | 1026 | if ($pilot != "") |
1027 | 1027 | { |
@@ -1033,8 +1033,8 @@ discard block |
||
1033 | 1033 | { |
1034 | 1034 | $limit_array = explode(",", $limit); |
1035 | 1035 | |
1036 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1037 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1036 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
1037 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1038 | 1038 | |
1039 | 1039 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
1040 | 1040 | { |
@@ -1064,7 +1064,7 @@ discard block |
||
1064 | 1064 | * @return Array the airline country list |
1065 | 1065 | * |
1066 | 1066 | */ |
1067 | - public function countAllFlightOverCountries($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
1067 | + public function countAllFlightOverCountries($limit = true, $olderthanmonths = 0, $sincedate = '') |
|
1068 | 1068 | { |
1069 | 1069 | global $globalDBdriver; |
1070 | 1070 | /* |
@@ -1093,7 +1093,7 @@ discard block |
||
1093 | 1093 | $flight_array = array(); |
1094 | 1094 | $temp_array = array(); |
1095 | 1095 | |
1096 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1096 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1097 | 1097 | { |
1098 | 1098 | $temp_array['flight_count'] = $row['nb']; |
1099 | 1099 | $temp_array['flight_country'] = $row['name']; |
@@ -1110,7 +1110,7 @@ discard block |
||
1110 | 1110 | * @return Array the airline country list |
1111 | 1111 | * |
1112 | 1112 | */ |
1113 | - public function countAllFlightOverCountriesByAirlines($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
1113 | + public function countAllFlightOverCountriesByAirlines($limit = true, $olderthanmonths = 0, $sincedate = '') |
|
1114 | 1114 | { |
1115 | 1115 | global $globalDBdriver; |
1116 | 1116 | /* |
@@ -1139,7 +1139,7 @@ discard block |
||
1139 | 1139 | $flight_array = array(); |
1140 | 1140 | $temp_array = array(); |
1141 | 1141 | |
1142 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1142 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1143 | 1143 | { |
1144 | 1144 | $temp_array['airline_icao'] = $row['airline_icao']; |
1145 | 1145 | $temp_array['flight_count'] = $row['nb']; |
@@ -1157,14 +1157,14 @@ discard block |
||
1157 | 1157 | * @return Array the spotter information |
1158 | 1158 | * |
1159 | 1159 | */ |
1160 | - public function getDateArchiveTrackerDataById($id,$date) |
|
1160 | + public function getDateArchiveTrackerDataById($id, $date) |
|
1161 | 1161 | { |
1162 | 1162 | $Tracker = new Tracker($this->db); |
1163 | 1163 | date_default_timezone_set('UTC'); |
1164 | 1164 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
1165 | - $query = 'SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.famtrackid = :id AND l.date <= :date GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate ORDER BY tracker_archive.date DESC'; |
|
1166 | - $date = date('c',$date); |
|
1167 | - $spotter_array = $Tracker->getDataFromDB($query,array(':id' => $id,':date' => $date)); |
|
1165 | + $query = 'SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.famtrackid = :id AND l.date <= :date GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate ORDER BY tracker_archive.date DESC'; |
|
1166 | + $date = date('c', $date); |
|
1167 | + $spotter_array = $Tracker->getDataFromDB($query, array(':id' => $id, ':date' => $date)); |
|
1168 | 1168 | return $spotter_array; |
1169 | 1169 | } |
1170 | 1170 | |
@@ -1174,14 +1174,14 @@ discard block |
||
1174 | 1174 | * @return Array the spotter information |
1175 | 1175 | * |
1176 | 1176 | */ |
1177 | - public function getDateArchiveTrackerDataByIdent($ident,$date) |
|
1177 | + public function getDateArchiveTrackerDataByIdent($ident, $date) |
|
1178 | 1178 | { |
1179 | 1179 | $Tracker = new Tracker($this->db); |
1180 | 1180 | date_default_timezone_set('UTC'); |
1181 | 1181 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
1182 | - $query = 'SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.ident = :ident AND l.date <= :date GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate ORDER BY tracker_archive.date DESC'; |
|
1183 | - $date = date('c',$date); |
|
1184 | - $spotter_array = $Tracker->getDataFromDB($query,array(':ident' => $ident,':date' => $date)); |
|
1182 | + $query = 'SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.ident = :ident AND l.date <= :date GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate ORDER BY tracker_archive.date DESC'; |
|
1183 | + $date = date('c', $date); |
|
1184 | + $spotter_array = $Tracker->getDataFromDB($query, array(':ident' => $ident, ':date' => $date)); |
|
1185 | 1185 | return $spotter_array; |
1186 | 1186 | } |
1187 | 1187 | |
@@ -1191,7 +1191,7 @@ discard block |
||
1191 | 1191 | * @return Array the spotter information |
1192 | 1192 | * |
1193 | 1193 | */ |
1194 | - public function getTrackerDataByAirport($airport = '', $limit = '', $sort = '',$filters = array()) |
|
1194 | + public function getTrackerDataByAirport($airport = '', $limit = '', $sort = '', $filters = array()) |
|
1195 | 1195 | { |
1196 | 1196 | global $global_query; |
1197 | 1197 | $Tracker = new Tracker(); |
@@ -1199,7 +1199,7 @@ discard block |
||
1199 | 1199 | $query_values = array(); |
1200 | 1200 | $limit_query = ''; |
1201 | 1201 | $additional_query = ''; |
1202 | - $filter_query = $this->getFilter($filters,true,true); |
|
1202 | + $filter_query = $this->getFilter($filters, true, true); |
|
1203 | 1203 | |
1204 | 1204 | if ($airport != "") |
1205 | 1205 | { |
@@ -1216,8 +1216,8 @@ discard block |
||
1216 | 1216 | { |
1217 | 1217 | $limit_array = explode(",", $limit); |
1218 | 1218 | |
1219 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1220 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1219 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
1220 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1221 | 1221 | |
1222 | 1222 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
1223 | 1223 | { |
@@ -13,33 +13,33 @@ discard block |
||
13 | 13 | * @param Array $filter the filter |
14 | 14 | * @return Array the SQL part |
15 | 15 | */ |
16 | - public function getFilter($filter = array(),$where = false,$and = false) { |
|
16 | + public function getFilter($filter = array(), $where = false, $and = false) { |
|
17 | 17 | global $globalFilter, $globalStatsFilters, $globalFilterName, $globalDBdriver; |
18 | 18 | $filters = array(); |
19 | 19 | if (is_array($globalStatsFilters) && isset($globalStatsFilters[$globalFilterName])) { |
20 | 20 | if (isset($globalStatsFilters[$globalFilterName][0]['source'])) { |
21 | 21 | $filters = $globalStatsFilters[$globalFilterName]; |
22 | 22 | } else { |
23 | - $filter = array_merge($filter,$globalStatsFilters[$globalFilterName]); |
|
23 | + $filter = array_merge($filter, $globalStatsFilters[$globalFilterName]); |
|
24 | 24 | } |
25 | 25 | } |
26 | 26 | if (isset($filter[0]['source'])) { |
27 | - $filters = array_merge($filters,$filter); |
|
27 | + $filters = array_merge($filters, $filter); |
|
28 | 28 | } |
29 | - if (is_array($globalFilter)) $filter = array_merge($filter,$globalFilter); |
|
29 | + if (is_array($globalFilter)) $filter = array_merge($filter, $globalFilter); |
|
30 | 30 | $filter_query_join = ''; |
31 | 31 | $filter_query_where = ''; |
32 | - foreach($filters as $flt) { |
|
32 | + foreach ($filters as $flt) { |
|
33 | 33 | if (isset($flt['idents']) && !empty($flt['idents'])) { |
34 | 34 | if (isset($flt['source'])) { |
35 | - $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.ident IN ('".implode("','",$flt['idents'])."') AND marine_archive_output.format_source IN ('".implode("','",$flt['source'])."')) spid ON spid.fammarine_id = marine_archive.fammarine_id"; |
|
35 | + $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.ident IN ('".implode("','", $flt['idents'])."') AND marine_archive_output.format_source IN ('".implode("','", $flt['source'])."')) spid ON spid.fammarine_id = marine_archive.fammarine_id"; |
|
36 | 36 | } else { |
37 | - $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.ident IN ('".implode("','",$flt['idents'])."')) spid ON spid.fammarine_id = marine_archive.fammarine_id"; |
|
37 | + $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.ident IN ('".implode("','", $flt['idents'])."')) spid ON spid.fammarine_id = marine_archive.fammarine_id"; |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | } |
41 | 41 | if (isset($filter['source']) && !empty($filter['source'])) { |
42 | - $filter_query_where .= " AND format_source IN ('".implode("','",$filter['source'])."')"; |
|
42 | + $filter_query_where .= " AND format_source IN ('".implode("','", $filter['source'])."')"; |
|
43 | 43 | } |
44 | 44 | if (isset($filter['ident']) && !empty($filter['ident'])) { |
45 | 45 | $filter_query_where .= " AND ident = '".$filter['ident']."'"; |
@@ -67,43 +67,43 @@ discard block |
||
67 | 67 | $filter_query_date .= " AND EXTRACT(DAY FROM marine_archive_output.date) = '".$filter['day']."'"; |
68 | 68 | } |
69 | 69 | } |
70 | - $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output".preg_replace('/^ AND/',' WHERE',$filter_query_date).") sd ON sd.fammarine_id = marine_archive.fammarine_id"; |
|
70 | + $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output".preg_replace('/^ AND/', ' WHERE', $filter_query_date).") sd ON sd.fammarine_id = marine_archive.fammarine_id"; |
|
71 | 71 | } |
72 | 72 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
73 | - $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
73 | + $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
74 | 74 | } |
75 | 75 | if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE'; |
76 | 76 | elseif ($filter_query_where != '' && $and) $filter_query_where .= ' AND'; |
77 | 77 | if ($filter_query_where != '') { |
78 | - $filter_query_where = preg_replace('/^ AND/',' WHERE',$filter_query_where); |
|
78 | + $filter_query_where = preg_replace('/^ AND/', ' WHERE', $filter_query_where); |
|
79 | 79 | } |
80 | 80 | $filter_query = $filter_query_join.$filter_query_where; |
81 | 81 | return $filter_query; |
82 | 82 | } |
83 | 83 | |
84 | 84 | // marine_archive |
85 | - public function addMarineArchiveData($fammarine_id = '', $ident = '', $latitude = '', $longitude = '', $heading = '', $groundspeed = '', $date = '', $putinarchive = false, $mmsi = '',$type = '',$typeid = '',$imo = '', $callsign = '',$arrival_code = '',$arrival_date = '',$status = '',$statusid = '',$noarchive = false,$format_source = '', $source_name = '', $over_country = '') { |
|
85 | + public function addMarineArchiveData($fammarine_id = '', $ident = '', $latitude = '', $longitude = '', $heading = '', $groundspeed = '', $date = '', $putinarchive = false, $mmsi = '', $type = '', $typeid = '', $imo = '', $callsign = '', $arrival_code = '', $arrival_date = '', $status = '', $statusid = '', $noarchive = false, $format_source = '', $source_name = '', $over_country = '') { |
|
86 | 86 | |
87 | 87 | require_once(dirname(__FILE__).'/class.Marine.php'); |
88 | 88 | if ($over_country == '') { |
89 | 89 | $Marine = new Marine($this->db); |
90 | - $data_country = $Marine->getCountryFromLatitudeLongitude($latitude,$longitude); |
|
90 | + $data_country = $Marine->getCountryFromLatitudeLongitude($latitude, $longitude); |
|
91 | 91 | if (!empty($data_country)) $country = $data_country['iso2']; |
92 | 92 | else $country = ''; |
93 | 93 | } else $country = $over_country; |
94 | 94 | |
95 | 95 | //$country = $over_country; |
96 | 96 | // Route is not added in marine_archive |
97 | - $query = 'INSERT INTO marine_archive (fammarine_id, ident, latitude, longitude, heading, ground_speed, date, format_source, source_name, over_country, mmsi, type,status,imo,arrival_port_name,arrival_port_date) |
|
97 | + $query = 'INSERT INTO marine_archive (fammarine_id, ident, latitude, longitude, heading, ground_speed, date, format_source, source_name, over_country, mmsi, type,status,imo,arrival_port_name,arrival_port_date) |
|
98 | 98 | VALUES (:fammarine_id,:ident,:latitude,:longitude,:heading,:groundspeed,:date,:format_source, :source_name, :over_country,:mmsi,:type,:status,:imo,:arrival_port_name,:arrival_port_date)'; |
99 | 99 | |
100 | - $query_values = array(':fammarine_id' => $fammarine_id,':ident' => $ident,':latitude' => $latitude,':longitude' => $longitude,':heading' => $heading,':groundspeed' => $groundspeed,':date' => $date, ':format_source' => $format_source, ':source_name' => $source_name, ':over_country' => $over_country,':mmsi' => $mmsi,':type' => $type,':status' => $status,':imo' => $imo,':arrival_port_name' => $arrival_code,':arrival_port_date' => $arrival_date); |
|
100 | + $query_values = array(':fammarine_id' => $fammarine_id, ':ident' => $ident, ':latitude' => $latitude, ':longitude' => $longitude, ':heading' => $heading, ':groundspeed' => $groundspeed, ':date' => $date, ':format_source' => $format_source, ':source_name' => $source_name, ':over_country' => $over_country, ':mmsi' => $mmsi, ':type' => $type, ':status' => $status, ':imo' => $imo, ':arrival_port_name' => $arrival_code, ':arrival_port_date' => $arrival_date); |
|
101 | 101 | |
102 | 102 | try { |
103 | 103 | $sth = $this->db->prepare($query); |
104 | 104 | $sth->execute($query_values); |
105 | 105 | $sth->closeCursor(); |
106 | - } catch(PDOException $e) { |
|
106 | + } catch (PDOException $e) { |
|
107 | 107 | return "error : ".$e->getMessage(); |
108 | 108 | } |
109 | 109 | return "success"; |
@@ -123,9 +123,9 @@ discard block |
||
123 | 123 | |
124 | 124 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
125 | 125 | //$query = "SELECT marine_archive.* FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.ident = :ident GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate LIMIT 1"; |
126 | - $query = "SELECT marine_archive.* FROM marine_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
126 | + $query = "SELECT marine_archive.* FROM marine_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
127 | 127 | |
128 | - $spotter_array = $Marine->getDataFromDB($query,array(':ident' => $ident)); |
|
128 | + $spotter_array = $Marine->getDataFromDB($query, array(':ident' => $ident)); |
|
129 | 129 | |
130 | 130 | return $spotter_array; |
131 | 131 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
145 | 145 | //$query = MarineArchive->$global_query." WHERE marine_archive.fammarine_id = :id"; |
146 | 146 | //$query = "SELECT marine_archive.* FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.fammarine_id = :id GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate LIMIT 1"; |
147 | - $query = "SELECT * FROM marine_archive WHERE fammarine_id = :id ORDER BY date DESC LIMIT 1"; |
|
147 | + $query = "SELECT * FROM marine_archive WHERE fammarine_id = :id ORDER BY date DESC LIMIT 1"; |
|
148 | 148 | |
149 | 149 | // $spotter_array = Marine->getDataFromDB($query,array(':id' => $id)); |
150 | 150 | /* |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | } |
158 | 158 | $spotter_array = $sth->fetchAll(PDO->FETCH_ASSOC); |
159 | 159 | */ |
160 | - $spotter_array = $Marine->getDataFromDB($query,array(':id' => $id)); |
|
160 | + $spotter_array = $Marine->getDataFromDB($query, array(':id' => $id)); |
|
161 | 161 | |
162 | 162 | return $spotter_array; |
163 | 163 | } |
@@ -172,14 +172,14 @@ discard block |
||
172 | 172 | { |
173 | 173 | date_default_timezone_set('UTC'); |
174 | 174 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
175 | - $query = $this->global_query." WHERE marine_archive.fammarine_id = :id ORDER BY date"; |
|
175 | + $query = $this->global_query." WHERE marine_archive.fammarine_id = :id ORDER BY date"; |
|
176 | 176 | |
177 | 177 | // $spotter_array = Marine->getDataFromDB($query,array(':id' => $id)); |
178 | 178 | |
179 | 179 | try { |
180 | 180 | $sth = $this->db->prepare($query); |
181 | 181 | $sth->execute(array(':id' => $id)); |
182 | - } catch(PDOException $e) { |
|
182 | + } catch (PDOException $e) { |
|
183 | 183 | echo $e->getMessage(); |
184 | 184 | die; |
185 | 185 | } |
@@ -198,14 +198,14 @@ discard block |
||
198 | 198 | { |
199 | 199 | date_default_timezone_set('UTC'); |
200 | 200 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
201 | - $query = "SELECT marine_archive.latitude, marine_archive.longitude, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id"; |
|
201 | + $query = "SELECT marine_archive.latitude, marine_archive.longitude, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id"; |
|
202 | 202 | |
203 | 203 | // $spotter_array = Marine->getDataFromDB($query,array(':id' => $id)); |
204 | 204 | |
205 | 205 | try { |
206 | 206 | $sth = $this->db->prepare($query); |
207 | 207 | $sth->execute(array(':id' => $id)); |
208 | - } catch(PDOException $e) { |
|
208 | + } catch (PDOException $e) { |
|
209 | 209 | echo $e->getMessage(); |
210 | 210 | die; |
211 | 211 | } |
@@ -227,12 +227,12 @@ discard block |
||
227 | 227 | date_default_timezone_set('UTC'); |
228 | 228 | |
229 | 229 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
230 | - $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive WHERE marine_archive.ident = :ident AND marine_archive.latitude <> 0 AND marine_archive.longitude <> 0 ORDER BY date"; |
|
230 | + $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive WHERE marine_archive.ident = :ident AND marine_archive.latitude <> 0 AND marine_archive.longitude <> 0 ORDER BY date"; |
|
231 | 231 | |
232 | 232 | try { |
233 | 233 | $sth = $this->db->prepare($query); |
234 | 234 | $sth->execute(array(':ident' => $ident)); |
235 | - } catch(PDOException $e) { |
|
235 | + } catch (PDOException $e) { |
|
236 | 236 | echo $e->getMessage(); |
237 | 237 | die; |
238 | 238 | } |
@@ -253,12 +253,12 @@ discard block |
||
253 | 253 | date_default_timezone_set('UTC'); |
254 | 254 | |
255 | 255 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
256 | - $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id AND marine_archive.latitude <> 0 AND marine_archive.longitude <> 0 ORDER BY date"; |
|
256 | + $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id AND marine_archive.latitude <> 0 AND marine_archive.longitude <> 0 ORDER BY date"; |
|
257 | 257 | |
258 | 258 | try { |
259 | 259 | $sth = $this->db->prepare($query); |
260 | 260 | $sth->execute(array(':id' => $id)); |
261 | - } catch(PDOException $e) { |
|
261 | + } catch (PDOException $e) { |
|
262 | 262 | echo $e->getMessage(); |
263 | 263 | die; |
264 | 264 | } |
@@ -279,12 +279,12 @@ discard block |
||
279 | 279 | date_default_timezone_set('UTC'); |
280 | 280 | |
281 | 281 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
282 | - $query = "SELECT marine_archive.altitude, marine_archive.ground_speed, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id ORDER BY date"; |
|
282 | + $query = "SELECT marine_archive.altitude, marine_archive.ground_speed, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id ORDER BY date"; |
|
283 | 283 | |
284 | 284 | try { |
285 | 285 | $sth = $this->db->prepare($query); |
286 | 286 | $sth->execute(array(':id' => $id)); |
287 | - } catch(PDOException $e) { |
|
287 | + } catch (PDOException $e) { |
|
288 | 288 | echo $e->getMessage(); |
289 | 289 | die; |
290 | 290 | } |
@@ -306,13 +306,13 @@ discard block |
||
306 | 306 | date_default_timezone_set('UTC'); |
307 | 307 | |
308 | 308 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
309 | - $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.ident = :ident GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate LIMIT 1"; |
|
309 | + $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.ident = :ident GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate LIMIT 1"; |
|
310 | 310 | // $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive WHERE marine_archive.ident = :ident"; |
311 | 311 | |
312 | 312 | try { |
313 | 313 | $sth = $this->db->prepare($query); |
314 | 314 | $sth->execute(array(':ident' => $ident)); |
315 | - } catch(PDOException $e) { |
|
315 | + } catch (PDOException $e) { |
|
316 | 316 | echo $e->getMessage(); |
317 | 317 | die; |
318 | 318 | } |
@@ -329,13 +329,13 @@ discard block |
||
329 | 329 | * @return Array the spotter information |
330 | 330 | * |
331 | 331 | */ |
332 | - public function getMarineArchiveData($ident,$fammarine_id,$date) |
|
332 | + public function getMarineArchiveData($ident, $fammarine_id, $date) |
|
333 | 333 | { |
334 | 334 | $Marine = new Marine($this->db); |
335 | 335 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
336 | - $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.fammarine_id = :fammarine_id AND l.date LIKE :date GROUP BY l.fammarine_id) s on spotter_live.fammarine_id = s.fammarine_id AND spotter_live.date = s.maxdate"; |
|
336 | + $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.fammarine_id = :fammarine_id AND l.date LIKE :date GROUP BY l.fammarine_id) s on spotter_live.fammarine_id = s.fammarine_id AND spotter_live.date = s.maxdate"; |
|
337 | 337 | |
338 | - $spotter_array = $Marine->getDataFromDB($query,array(':ident' => $ident,':fammarine_id' => $fammarine_id,':date' => $date.'%')); |
|
338 | + $spotter_array = $Marine->getDataFromDB($query, array(':ident' => $ident, ':fammarine_id' => $fammarine_id, ':date' => $date.'%')); |
|
339 | 339 | |
340 | 340 | return $spotter_array; |
341 | 341 | } |
@@ -348,7 +348,7 @@ discard block |
||
348 | 348 | try { |
349 | 349 | $sth = $this->db->prepare($query); |
350 | 350 | $sth->execute(); |
351 | - } catch(PDOException $e) { |
|
351 | + } catch (PDOException $e) { |
|
352 | 352 | echo $e->getMessage(); |
353 | 353 | die; |
354 | 354 | } |
@@ -360,24 +360,24 @@ discard block |
||
360 | 360 | * @return Array the spotter information |
361 | 361 | * |
362 | 362 | */ |
363 | - public function getMinLiveMarineData($begindate,$enddate,$filter = array()) |
|
363 | + public function getMinLiveMarineData($begindate, $enddate, $filter = array()) |
|
364 | 364 | { |
365 | 365 | global $globalDBdriver, $globalLiveInterval; |
366 | 366 | date_default_timezone_set('UTC'); |
367 | 367 | |
368 | 368 | $filter_query = ''; |
369 | 369 | if (isset($filter['source']) && !empty($filter['source'])) { |
370 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
370 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
371 | 371 | } |
372 | 372 | // Use spotter_output also ? |
373 | 373 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
374 | - $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
374 | + $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
375 | 375 | } |
376 | 376 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
377 | 377 | $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.fammarine_id = marine_archive.fammarine_id "; |
378 | 378 | } |
379 | 379 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
380 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
380 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
381 | 381 | } |
382 | 382 | |
383 | 383 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -396,14 +396,14 @@ discard block |
||
396 | 396 | GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id |
397 | 397 | AND marine_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON marine_archive.aircraft_icao = a.icao'; |
398 | 398 | */ |
399 | - $query = 'SELECT marine_archive.date,marine_archive.fammarine_id, marine_archive.ident, marine_archive.aircraft_icao, marine_archive.departure_airport_icao as departure_airport, marine_archive.arrival_airport_icao as arrival_airport, marine_archive.latitude, marine_archive.longitude, marine_archive.altitude, marine_archive.heading, marine_archive.ground_speed, marine_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
399 | + $query = 'SELECT marine_archive.date,marine_archive.fammarine_id, marine_archive.ident, marine_archive.aircraft_icao, marine_archive.departure_airport_icao as departure_airport, marine_archive.arrival_airport_icao as arrival_airport, marine_archive.latitude, marine_archive.longitude, marine_archive.altitude, marine_archive.heading, marine_archive.ground_speed, marine_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
400 | 400 | FROM marine_archive |
401 | 401 | INNER JOIN (SELECT * FROM aircraft) a on marine_archive.aircraft_icao = a.icao |
402 | 402 | WHERE marine_archive.date BETWEEN '."'".$begindate."'".' AND '."'".$begindate."'".' |
403 | 403 | '.$filter_query.' ORDER BY fammarine_id'; |
404 | 404 | } else { |
405 | 405 | //$query = 'SELECT marine_archive.ident, marine_archive.fammarine_id, marine_archive.aircraft_icao, marine_archive.departure_airport_icao as departure_airport, marine_archive.arrival_airport_icao as arrival_airport, marine_archive.latitude, marine_archive.longitude, marine_archive.altitude, marine_archive.heading, marine_archive.ground_speed, marine_archive.squawk, a.aircraft_shadow FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$globalLiveInterval.' SECOND) <= l.date GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate '.$filter_query.'INNER JOIN (SELECT * FROM aircraft) a on marine_archive.aircraft_icao = a.icao'; |
406 | - $query = 'SELECT marine_archive.date,marine_archive.fammarine_id, marine_archive.ident, marine_archive.aircraft_icao, marine_archive.departure_airport_icao as departure_airport, marine_archive.arrival_airport_icao as arrival_airport, marine_archive.latitude, marine_archive.longitude, marine_archive.altitude, marine_archive.heading, marine_archive.ground_speed, marine_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
406 | + $query = 'SELECT marine_archive.date,marine_archive.fammarine_id, marine_archive.ident, marine_archive.aircraft_icao, marine_archive.departure_airport_icao as departure_airport, marine_archive.arrival_airport_icao as arrival_airport, marine_archive.latitude, marine_archive.longitude, marine_archive.altitude, marine_archive.heading, marine_archive.ground_speed, marine_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
407 | 407 | FROM marine_archive |
408 | 408 | INNER JOIN (SELECT * FROM aircraft) a on marine_archive.aircraft_icao = a.icao |
409 | 409 | WHERE marine_archive.date >= '."'".$begindate."'".' AND marine_archive.date <= '."'".$enddate."'".' |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | try { |
414 | 414 | $sth = $this->db->prepare($query); |
415 | 415 | $sth->execute(); |
416 | - } catch(PDOException $e) { |
|
416 | + } catch (PDOException $e) { |
|
417 | 417 | echo $e->getMessage(); |
418 | 418 | die; |
419 | 419 | } |
@@ -428,24 +428,24 @@ discard block |
||
428 | 428 | * @return Array the spotter information |
429 | 429 | * |
430 | 430 | */ |
431 | - public function getMinLiveMarineDataPlayback($begindate,$enddate,$filter = array()) |
|
431 | + public function getMinLiveMarineDataPlayback($begindate, $enddate, $filter = array()) |
|
432 | 432 | { |
433 | 433 | global $globalDBdriver, $globalLiveInterval; |
434 | 434 | date_default_timezone_set('UTC'); |
435 | 435 | |
436 | 436 | $filter_query = ''; |
437 | 437 | if (isset($filter['source']) && !empty($filter['source'])) { |
438 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
438 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
439 | 439 | } |
440 | 440 | // Should use spotter_output also ? |
441 | 441 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
442 | - $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
442 | + $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
443 | 443 | } |
444 | 444 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
445 | 445 | $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.fammarine_id = marine_archive.fammarine_id "; |
446 | 446 | } |
447 | 447 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
448 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
448 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
449 | 449 | } |
450 | 450 | |
451 | 451 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -455,7 +455,7 @@ discard block |
||
455 | 455 | FROM marine_archive |
456 | 456 | INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE (l.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON marine_archive.aircraft_icao = a.icao'; |
457 | 457 | */ |
458 | - $query = 'SELECT a.aircraft_shadow, marine_archive_output.ident, marine_archive_output.fammarine_id, marine_archive_output.aircraft_icao, marine_archive_output.departure_airport_icao as departure_airport, marine_archive_output.arrival_airport_icao as arrival_airport, marine_archive_output.latitude, marine_archive_output.longitude, marine_archive_output.altitude, marine_archive_output.heading, marine_archive_output.ground_speed, marine_archive_output.squawk |
|
458 | + $query = 'SELECT a.aircraft_shadow, marine_archive_output.ident, marine_archive_output.fammarine_id, marine_archive_output.aircraft_icao, marine_archive_output.departure_airport_icao as departure_airport, marine_archive_output.arrival_airport_icao as arrival_airport, marine_archive_output.latitude, marine_archive_output.longitude, marine_archive_output.altitude, marine_archive_output.heading, marine_archive_output.ground_speed, marine_archive_output.squawk |
|
459 | 459 | FROM marine_archive_output |
460 | 460 | LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON marine_archive_output.aircraft_icao = a.icao |
461 | 461 | WHERE (marine_archive_output.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') |
@@ -470,7 +470,7 @@ discard block |
||
470 | 470 | WHERE marine_archive_output.date >= '."'".$begindate."'".' AND marine_archive_output.date <= '."'".$enddate."'".' |
471 | 471 | '.$filter_query.' GROUP BY marine_archive_output.fammarine_id, marine_archive_output.ident, marine_archive_output.aircraft_icao, marine_archive_output.departure_airport_icao, marine_archive_output.arrival_airport_icao, marine_archive_output.latitude, marine_archive_output.longitude, marine_archive_output.altitude, marine_archive_output.heading, marine_archive_output.ground_speed, marine_archive_output.squawk, a.aircraft_shadow'; |
472 | 472 | */ |
473 | - $query = 'SELECT DISTINCT marine_archive_output.fammarine_id, marine_archive_output.ident, marine_archive_output.aircraft_icao, marine_archive_output.departure_airport_icao as departure_airport, marine_archive_output.arrival_airport_icao as arrival_airport, marine_archive_output.latitude, marine_archive_output.longitude, marine_archive_output.altitude, marine_archive_output.heading, marine_archive_output.ground_speed, marine_archive_output.squawk, a.aircraft_shadow |
|
473 | + $query = 'SELECT DISTINCT marine_archive_output.fammarine_id, marine_archive_output.ident, marine_archive_output.aircraft_icao, marine_archive_output.departure_airport_icao as departure_airport, marine_archive_output.arrival_airport_icao as arrival_airport, marine_archive_output.latitude, marine_archive_output.longitude, marine_archive_output.altitude, marine_archive_output.heading, marine_archive_output.ground_speed, marine_archive_output.squawk, a.aircraft_shadow |
|
474 | 474 | FROM marine_archive_output |
475 | 475 | INNER JOIN (SELECT * FROM aircraft) a on marine_archive_output.aircraft_icao = a.icao |
476 | 476 | WHERE marine_archive_output.date >= '."'".$begindate."'".' AND marine_archive_output.date <= '."'".$enddate."'".' |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | try { |
483 | 483 | $sth = $this->db->prepare($query); |
484 | 484 | $sth->execute(); |
485 | - } catch(PDOException $e) { |
|
485 | + } catch (PDOException $e) { |
|
486 | 486 | echo $e->getMessage(); |
487 | 487 | die; |
488 | 488 | } |
@@ -497,23 +497,23 @@ discard block |
||
497 | 497 | * @return Array the spotter information |
498 | 498 | * |
499 | 499 | */ |
500 | - public function getLiveMarineCount($begindate,$enddate,$filter = array()) |
|
500 | + public function getLiveMarineCount($begindate, $enddate, $filter = array()) |
|
501 | 501 | { |
502 | 502 | global $globalDBdriver, $globalLiveInterval; |
503 | 503 | date_default_timezone_set('UTC'); |
504 | 504 | |
505 | 505 | $filter_query = ''; |
506 | 506 | if (isset($filter['source']) && !empty($filter['source'])) { |
507 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
507 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
508 | 508 | } |
509 | 509 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
510 | - $filter_query .= " INNER JOIN (SELECT fammarine_id FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
510 | + $filter_query .= " INNER JOIN (SELECT fammarine_id FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
511 | 511 | } |
512 | 512 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
513 | 513 | $filter_query .= " INNER JOIN (SELECT fammarine_id FROM spotter_output WHERE spotter_output.airline_type = '".$filter['airlinestype']."') sa ON sa.fammarine_id = marine_archive.fammarine_id "; |
514 | 514 | } |
515 | 515 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
516 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
516 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
517 | 517 | } |
518 | 518 | |
519 | 519 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -528,7 +528,7 @@ discard block |
||
528 | 528 | try { |
529 | 529 | $sth = $this->db->prepare($query); |
530 | 530 | $sth->execute(); |
531 | - } catch(PDOException $e) { |
|
531 | + } catch (PDOException $e) { |
|
532 | 532 | echo $e->getMessage(); |
533 | 533 | die; |
534 | 534 | } |
@@ -548,7 +548,7 @@ discard block |
||
548 | 548 | * @return Array the spotter information |
549 | 549 | * |
550 | 550 | */ |
551 | - public function searchMarineData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '',$pilot_id = '',$pilot_name = '',$altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '',$origLat = '',$origLon = '',$dist = '', $filters=array()) |
|
551 | + public function searchMarineData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '', $pilot_id = '', $pilot_name = '', $altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '', $origLat = '', $origLon = '', $dist = '', $filters = array()) |
|
552 | 552 | { |
553 | 553 | global $globalTimezone, $globalDBdriver; |
554 | 554 | require_once(dirname(__FILE__).'/class.Translation.php'); |
@@ -570,7 +570,7 @@ discard block |
||
570 | 570 | |
571 | 571 | $q_array = explode(" ", $q); |
572 | 572 | |
573 | - foreach ($q_array as $q_item){ |
|
573 | + foreach ($q_array as $q_item) { |
|
574 | 574 | $additional_query .= " AND ("; |
575 | 575 | $additional_query .= "(marine_archive_output.spotter_id like '%".$q_item."%') OR "; |
576 | 576 | $additional_query .= "(marine_archive_output.aircraft_icao like '%".$q_item."%') OR "; |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | |
603 | 603 | if ($registration != "") |
604 | 604 | { |
605 | - $registration = filter_var($registration,FILTER_SANITIZE_STRING); |
|
605 | + $registration = filter_var($registration, FILTER_SANITIZE_STRING); |
|
606 | 606 | if (!is_string($registration)) |
607 | 607 | { |
608 | 608 | return false; |
@@ -613,7 +613,7 @@ discard block |
||
613 | 613 | |
614 | 614 | if ($aircraft_icao != "") |
615 | 615 | { |
616 | - $aircraft_icao = filter_var($aircraft_icao,FILTER_SANITIZE_STRING); |
|
616 | + $aircraft_icao = filter_var($aircraft_icao, FILTER_SANITIZE_STRING); |
|
617 | 617 | if (!is_string($aircraft_icao)) |
618 | 618 | { |
619 | 619 | return false; |
@@ -624,7 +624,7 @@ discard block |
||
624 | 624 | |
625 | 625 | if ($aircraft_manufacturer != "") |
626 | 626 | { |
627 | - $aircraft_manufacturer = filter_var($aircraft_manufacturer,FILTER_SANITIZE_STRING); |
|
627 | + $aircraft_manufacturer = filter_var($aircraft_manufacturer, FILTER_SANITIZE_STRING); |
|
628 | 628 | if (!is_string($aircraft_manufacturer)) |
629 | 629 | { |
630 | 630 | return false; |
@@ -645,7 +645,7 @@ discard block |
||
645 | 645 | |
646 | 646 | if ($airline_icao != "") |
647 | 647 | { |
648 | - $airline_icao = filter_var($airline_icao,FILTER_SANITIZE_STRING); |
|
648 | + $airline_icao = filter_var($airline_icao, FILTER_SANITIZE_STRING); |
|
649 | 649 | if (!is_string($airline_icao)) |
650 | 650 | { |
651 | 651 | return false; |
@@ -656,7 +656,7 @@ discard block |
||
656 | 656 | |
657 | 657 | if ($airline_country != "") |
658 | 658 | { |
659 | - $airline_country = filter_var($airline_country,FILTER_SANITIZE_STRING); |
|
659 | + $airline_country = filter_var($airline_country, FILTER_SANITIZE_STRING); |
|
660 | 660 | if (!is_string($airline_country)) |
661 | 661 | { |
662 | 662 | return false; |
@@ -667,7 +667,7 @@ discard block |
||
667 | 667 | |
668 | 668 | if ($airline_type != "") |
669 | 669 | { |
670 | - $airline_type = filter_var($airline_type,FILTER_SANITIZE_STRING); |
|
670 | + $airline_type = filter_var($airline_type, FILTER_SANITIZE_STRING); |
|
671 | 671 | if (!is_string($airline_type)) |
672 | 672 | { |
673 | 673 | return false; |
@@ -689,7 +689,7 @@ discard block |
||
689 | 689 | |
690 | 690 | if ($airport != "") |
691 | 691 | { |
692 | - $airport = filter_var($airport,FILTER_SANITIZE_STRING); |
|
692 | + $airport = filter_var($airport, FILTER_SANITIZE_STRING); |
|
693 | 693 | if (!is_string($airport)) |
694 | 694 | { |
695 | 695 | return false; |
@@ -700,7 +700,7 @@ discard block |
||
700 | 700 | |
701 | 701 | if ($airport_country != "") |
702 | 702 | { |
703 | - $airport_country = filter_var($airport_country,FILTER_SANITIZE_STRING); |
|
703 | + $airport_country = filter_var($airport_country, FILTER_SANITIZE_STRING); |
|
704 | 704 | if (!is_string($airport_country)) |
705 | 705 | { |
706 | 706 | return false; |
@@ -711,7 +711,7 @@ discard block |
||
711 | 711 | |
712 | 712 | if ($callsign != "") |
713 | 713 | { |
714 | - $callsign = filter_var($callsign,FILTER_SANITIZE_STRING); |
|
714 | + $callsign = filter_var($callsign, FILTER_SANITIZE_STRING); |
|
715 | 715 | if (!is_string($callsign)) |
716 | 716 | { |
717 | 717 | return false; |
@@ -719,7 +719,7 @@ discard block |
||
719 | 719 | $translate = $Translation->ident2icao($callsign); |
720 | 720 | if ($translate != $callsign) { |
721 | 721 | $additional_query .= " AND (marine_archive_output.ident = :callsign OR marine_archive_output.ident = :translate)"; |
722 | - $query_values = array_merge($query_values,array(':callsign' => $callsign,':translate' => $translate)); |
|
722 | + $query_values = array_merge($query_values, array(':callsign' => $callsign, ':translate' => $translate)); |
|
723 | 723 | } else { |
724 | 724 | $additional_query .= " AND (marine_archive_output.ident = '".$callsign."')"; |
725 | 725 | } |
@@ -728,7 +728,7 @@ discard block |
||
728 | 728 | |
729 | 729 | if ($owner != "") |
730 | 730 | { |
731 | - $owner = filter_var($owner,FILTER_SANITIZE_STRING); |
|
731 | + $owner = filter_var($owner, FILTER_SANITIZE_STRING); |
|
732 | 732 | if (!is_string($owner)) |
733 | 733 | { |
734 | 734 | return false; |
@@ -739,7 +739,7 @@ discard block |
||
739 | 739 | |
740 | 740 | if ($pilot_name != "") |
741 | 741 | { |
742 | - $pilot_name = filter_var($pilot_name,FILTER_SANITIZE_STRING); |
|
742 | + $pilot_name = filter_var($pilot_name, FILTER_SANITIZE_STRING); |
|
743 | 743 | if (!is_string($pilot_name)) |
744 | 744 | { |
745 | 745 | return false; |
@@ -750,7 +750,7 @@ discard block |
||
750 | 750 | |
751 | 751 | if ($pilot_id != "") |
752 | 752 | { |
753 | - $pilot_id = filter_var($pilot_id,FILTER_SANITIZE_NUMBER_INT); |
|
753 | + $pilot_id = filter_var($pilot_id, FILTER_SANITIZE_NUMBER_INT); |
|
754 | 754 | if (!is_string($pilot_id)) |
755 | 755 | { |
756 | 756 | return false; |
@@ -761,7 +761,7 @@ discard block |
||
761 | 761 | |
762 | 762 | if ($departure_airport_route != "") |
763 | 763 | { |
764 | - $departure_airport_route = filter_var($departure_airport_route,FILTER_SANITIZE_STRING); |
|
764 | + $departure_airport_route = filter_var($departure_airport_route, FILTER_SANITIZE_STRING); |
|
765 | 765 | if (!is_string($departure_airport_route)) |
766 | 766 | { |
767 | 767 | return false; |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | |
773 | 773 | if ($arrival_airport_route != "") |
774 | 774 | { |
775 | - $arrival_airport_route = filter_var($arrival_airport_route,FILTER_SANITIZE_STRING); |
|
775 | + $arrival_airport_route = filter_var($arrival_airport_route, FILTER_SANITIZE_STRING); |
|
776 | 776 | if (!is_string($arrival_airport_route)) |
777 | 777 | { |
778 | 778 | return false; |
@@ -785,8 +785,8 @@ discard block |
||
785 | 785 | { |
786 | 786 | $altitude_array = explode(",", $altitude); |
787 | 787 | |
788 | - $altitude_array[0] = filter_var($altitude_array[0],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
789 | - $altitude_array[1] = filter_var($altitude_array[1],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
788 | + $altitude_array[0] = filter_var($altitude_array[0], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
789 | + $altitude_array[1] = filter_var($altitude_array[1], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
790 | 790 | |
791 | 791 | |
792 | 792 | if ($altitude_array[1] != "") |
@@ -804,8 +804,8 @@ discard block |
||
804 | 804 | { |
805 | 805 | $date_array = explode(",", $date_posted); |
806 | 806 | |
807 | - $date_array[0] = filter_var($date_array[0],FILTER_SANITIZE_STRING); |
|
808 | - $date_array[1] = filter_var($date_array[1],FILTER_SANITIZE_STRING); |
|
807 | + $date_array[0] = filter_var($date_array[0], FILTER_SANITIZE_STRING); |
|
808 | + $date_array[1] = filter_var($date_array[1], FILTER_SANITIZE_STRING); |
|
809 | 809 | |
810 | 810 | if ($globalTimezone != '') { |
811 | 811 | date_default_timezone_set($globalTimezone); |
@@ -837,8 +837,8 @@ discard block |
||
837 | 837 | { |
838 | 838 | $limit_array = explode(",", $limit); |
839 | 839 | |
840 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
841 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
840 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
841 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
842 | 842 | |
843 | 843 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
844 | 844 | { |
@@ -849,8 +849,8 @@ discard block |
||
849 | 849 | |
850 | 850 | |
851 | 851 | if ($origLat != "" && $origLon != "" && $dist != "") { |
852 | - $dist = number_format($dist*0.621371,2,'.',''); |
|
853 | - $query="SELECT marine_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(marine_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(marine_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(marine_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
852 | + $dist = number_format($dist*0.621371, 2, '.', ''); |
|
853 | + $query = "SELECT marine_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(marine_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(marine_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(marine_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
854 | 854 | FROM marine_archive_output, marine_archive WHERE spotter_output_archive.fammarine_id = marine_archive.fammarine_id AND spotter_output.ident <> '' ".$additional_query."AND CAST(marine_archive.longitude as double precision) between ($origLon-$dist/ABS(cos(radians($origLat))*69)) and ($origLon+$dist/ABS(cos(radians($origLat))*69)) and CAST(marine_archive.latitude as double precision) between ($origLat-($dist/69)) and ($origLat+($dist/69)) |
855 | 855 | AND (3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(marine_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(marine_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(marine_archive.longitude as double precision))*pi()/180/2),2)))) < $dist".$filter_query." ORDER BY distance"; |
856 | 856 | } else { |
@@ -867,12 +867,12 @@ discard block |
||
867 | 867 | $additional_query .= " AND (marine_archive_output.waypoints <> '')"; |
868 | 868 | } |
869 | 869 | |
870 | - $query = "SELECT marine_archive_output.* FROM marine_archive_output |
|
870 | + $query = "SELECT marine_archive_output.* FROM marine_archive_output |
|
871 | 871 | WHERE marine_archive_output.ident <> '' |
872 | 872 | ".$additional_query." |
873 | 873 | ".$filter_query.$orderby_query; |
874 | 874 | } |
875 | - $spotter_array = $Marine->getDataFromDB($query, $query_values,$limit_query); |
|
875 | + $spotter_array = $Marine->getDataFromDB($query, $query_values, $limit_query); |
|
876 | 876 | |
877 | 877 | return $spotter_array; |
878 | 878 | } |
@@ -889,7 +889,7 @@ discard block |
||
889 | 889 | try { |
890 | 890 | $sth = $this->db->prepare($query); |
891 | 891 | $sth->execute(); |
892 | - } catch(PDOException $e) { |
|
892 | + } catch (PDOException $e) { |
|
893 | 893 | return "error"; |
894 | 894 | } |
895 | 895 | } |
@@ -926,8 +926,8 @@ discard block |
||
926 | 926 | { |
927 | 927 | $limit_array = explode(",", $limit); |
928 | 928 | |
929 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
930 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
929 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
930 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
931 | 931 | |
932 | 932 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
933 | 933 | { |
@@ -968,7 +968,7 @@ discard block |
||
968 | 968 | $query_values = array(); |
969 | 969 | $limit_query = ''; |
970 | 970 | $additional_query = ''; |
971 | - $filter_query = $this->getFilter($filter,true,true); |
|
971 | + $filter_query = $this->getFilter($filter, true, true); |
|
972 | 972 | |
973 | 973 | if ($owner != "") |
974 | 974 | { |
@@ -985,8 +985,8 @@ discard block |
||
985 | 985 | { |
986 | 986 | $limit_array = explode(",", $limit); |
987 | 987 | |
988 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
989 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
988 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
989 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
990 | 990 | |
991 | 991 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
992 | 992 | { |
@@ -1026,7 +1026,7 @@ discard block |
||
1026 | 1026 | $query_values = array(); |
1027 | 1027 | $limit_query = ''; |
1028 | 1028 | $additional_query = ''; |
1029 | - $filter_query = $this->getFilter($filter,true,true); |
|
1029 | + $filter_query = $this->getFilter($filter, true, true); |
|
1030 | 1030 | |
1031 | 1031 | if ($pilot != "") |
1032 | 1032 | { |
@@ -1038,8 +1038,8 @@ discard block |
||
1038 | 1038 | { |
1039 | 1039 | $limit_array = explode(",", $limit); |
1040 | 1040 | |
1041 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1042 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1041 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
1042 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1043 | 1043 | |
1044 | 1044 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
1045 | 1045 | { |
@@ -1069,7 +1069,7 @@ discard block |
||
1069 | 1069 | * @return Array the airline country list |
1070 | 1070 | * |
1071 | 1071 | */ |
1072 | - public function countAllFlightOverCountries($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
1072 | + public function countAllFlightOverCountries($limit = true, $olderthanmonths = 0, $sincedate = '') |
|
1073 | 1073 | { |
1074 | 1074 | global $globalDBdriver; |
1075 | 1075 | /* |
@@ -1098,7 +1098,7 @@ discard block |
||
1098 | 1098 | $flight_array = array(); |
1099 | 1099 | $temp_array = array(); |
1100 | 1100 | |
1101 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1101 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1102 | 1102 | { |
1103 | 1103 | $temp_array['flight_count'] = $row['nb']; |
1104 | 1104 | $temp_array['flight_country'] = $row['name']; |
@@ -1115,7 +1115,7 @@ discard block |
||
1115 | 1115 | * @return Array the airline country list |
1116 | 1116 | * |
1117 | 1117 | */ |
1118 | - public function countAllFlightOverCountriesByAirlines($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
1118 | + public function countAllFlightOverCountriesByAirlines($limit = true, $olderthanmonths = 0, $sincedate = '') |
|
1119 | 1119 | { |
1120 | 1120 | global $globalDBdriver; |
1121 | 1121 | /* |
@@ -1144,7 +1144,7 @@ discard block |
||
1144 | 1144 | $flight_array = array(); |
1145 | 1145 | $temp_array = array(); |
1146 | 1146 | |
1147 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1147 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1148 | 1148 | { |
1149 | 1149 | $temp_array['airline_icao'] = $row['airline_icao']; |
1150 | 1150 | $temp_array['flight_count'] = $row['nb']; |
@@ -1162,14 +1162,14 @@ discard block |
||
1162 | 1162 | * @return Array the spotter information |
1163 | 1163 | * |
1164 | 1164 | */ |
1165 | - public function getDateArchiveMarineDataById($id,$date) |
|
1165 | + public function getDateArchiveMarineDataById($id, $date) |
|
1166 | 1166 | { |
1167 | 1167 | $Marine = new Marine($this->db); |
1168 | 1168 | date_default_timezone_set('UTC'); |
1169 | 1169 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
1170 | 1170 | $query = 'SELECT marine_archive.* FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.fammarine_id = :id AND l.date <= :date GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate ORDER BY marine_archive.date DESC'; |
1171 | - $date = date('c',$date); |
|
1172 | - $spotter_array = $Marine->getDataFromDB($query,array(':id' => $id,':date' => $date)); |
|
1171 | + $date = date('c', $date); |
|
1172 | + $spotter_array = $Marine->getDataFromDB($query, array(':id' => $id, ':date' => $date)); |
|
1173 | 1173 | return $spotter_array; |
1174 | 1174 | } |
1175 | 1175 | |
@@ -1179,14 +1179,14 @@ discard block |
||
1179 | 1179 | * @return Array the spotter information |
1180 | 1180 | * |
1181 | 1181 | */ |
1182 | - public function getDateArchiveMarineDataByIdent($ident,$date) |
|
1182 | + public function getDateArchiveMarineDataByIdent($ident, $date) |
|
1183 | 1183 | { |
1184 | 1184 | $Marine = new Marine($this->db); |
1185 | 1185 | date_default_timezone_set('UTC'); |
1186 | 1186 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
1187 | 1187 | $query = 'SELECT marine_archive.* FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.ident = :ident AND l.date <= :date GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate ORDER BY marine_archive.date DESC'; |
1188 | - $date = date('c',$date); |
|
1189 | - $spotter_array = $Marine->getDataFromDB($query,array(':ident' => $ident,':date' => $date)); |
|
1188 | + $date = date('c', $date); |
|
1189 | + $spotter_array = $Marine->getDataFromDB($query, array(':ident' => $ident, ':date' => $date)); |
|
1190 | 1190 | return $spotter_array; |
1191 | 1191 | } |
1192 | 1192 | |
@@ -1196,7 +1196,7 @@ discard block |
||
1196 | 1196 | * @return Array the spotter information |
1197 | 1197 | * |
1198 | 1198 | */ |
1199 | - public function getMarineDataByAirport($airport = '', $limit = '', $sort = '',$filters = array()) |
|
1199 | + public function getMarineDataByAirport($airport = '', $limit = '', $sort = '', $filters = array()) |
|
1200 | 1200 | { |
1201 | 1201 | global $global_query; |
1202 | 1202 | $Marine = new Marine(); |
@@ -1204,7 +1204,7 @@ discard block |
||
1204 | 1204 | $query_values = array(); |
1205 | 1205 | $limit_query = ''; |
1206 | 1206 | $additional_query = ''; |
1207 | - $filter_query = $this->getFilter($filters,true,true); |
|
1207 | + $filter_query = $this->getFilter($filters, true, true); |
|
1208 | 1208 | |
1209 | 1209 | if ($airport != "") |
1210 | 1210 | { |
@@ -1221,8 +1221,8 @@ discard block |
||
1221 | 1221 | { |
1222 | 1222 | $limit_array = explode(",", $limit); |
1223 | 1223 | |
1224 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1225 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1224 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
1225 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1226 | 1226 | |
1227 | 1227 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
1228 | 1228 | { |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | $Tracker = new Tracker(); |
17 | 17 | } |
18 | 18 | if (!isset($filter_name)) $filter_name = ''; |
19 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
19 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
20 | 20 | if ($airline_icao == '' && isset($globalFilter)) { |
21 | 21 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
22 | 22 | } |
@@ -32,20 +32,20 @@ discard block |
||
32 | 32 | </div> |
33 | 33 | <p>'._("Below is a chart that plots the busiest day during the <strong>last month</strong>.").'</p>'; |
34 | 34 | |
35 | -if ($type == 'aircraft') $date_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name); |
|
35 | +if ($type == 'aircraft') $date_array = $Stats->countAllDatesLastMonth($airline_icao, $filter_name); |
|
36 | 36 | elseif ($type == 'marine') $date_array = $Marine->countAllDatesLastMonth(); |
37 | 37 | elseif ($type == 'tracker') $date_array = $Tracker->countAllDatesLastMonth(); |
38 | 38 | |
39 | 39 | print '<div id="chart" class="chart" width="100%"></div><script>'; |
40 | 40 | $month_data = ''; |
41 | 41 | $month_cnt = ''; |
42 | -foreach($date_array as $month_item) |
|
42 | +foreach ($date_array as $month_item) |
|
43 | 43 | { |
44 | 44 | $month_data .= '"'.$month_item['date_name'].'",'; |
45 | 45 | $month_cnt .= $month_item['date_count'].','; |
46 | 46 | } |
47 | 47 | $month_data = "['x',".substr($month_data, 0, -1)."]"; |
48 | -$month_cnt = "['flights',".substr($month_cnt,0,-1)."]"; |
|
48 | +$month_cnt = "['flights',".substr($month_cnt, 0, -1)."]"; |
|
49 | 49 | print 'c3.generate({ |
50 | 50 | bindto: "#chart", |
51 | 51 | data: { x: "x", |
@@ -56,11 +56,11 @@ discard block |
||
56 | 56 | //$date_array = $Stats->countAllDates(); |
57 | 57 | if (!empty($date_array)) |
58 | 58 | { |
59 | - foreach($date_array as $key => $row) { |
|
59 | + foreach ($date_array as $key => $row) { |
|
60 | 60 | $years[$key] = $row['date_name']; |
61 | 61 | $counts[$key] = $row['date_count']; |
62 | 62 | } |
63 | - array_multisort($counts,SORT_DESC,$date_array); |
|
63 | + array_multisort($counts, SORT_DESC, $date_array); |
|
64 | 64 | print '<div class="table-responsive">'; |
65 | 65 | print '<table class="common-date table-striped">'; |
66 | 66 | print '<thead>'; |
@@ -70,13 +70,13 @@ discard block |
||
70 | 70 | print '</thead>'; |
71 | 71 | print '<tbody>'; |
72 | 72 | $i = 1; |
73 | - foreach($date_array as $date_item) |
|
73 | + foreach ($date_array as $date_item) |
|
74 | 74 | { |
75 | 75 | print '<tr>'; |
76 | 76 | print '<td><strong>'.$i.'</strong></td>'; |
77 | 77 | print '<td>'; |
78 | - if ($type == 'aircraft') print '<a href="'.$globalURL.'/date/'.date('Y-m-d',strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>'; |
|
79 | - else print '<a href="'.$globalURL.'/'.$type.'/date/'.date('Y-m-d',strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>'; |
|
78 | + if ($type == 'aircraft') print '<a href="'.$globalURL.'/date/'.date('Y-m-d', strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>'; |
|
79 | + else print '<a href="'.$globalURL.'/'.$type.'/date/'.date('Y-m-d', strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>'; |
|
80 | 80 | print '</td>'; |
81 | 81 | print '<td>'; |
82 | 82 | print $date_item['date_count']; |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | } else { |
20 | 20 | $title = _("Statistics").' - '._("Most common Country a flight was over"); |
21 | 21 | } |
22 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
22 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
23 | 23 | if ($airline_icao == '' && isset($globalFilter)) { |
24 | 24 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
25 | 25 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | if ($type == 'aircraft') { |
51 | - $flightover_array = $Stats->countAllFlightOverCountries(false,$airline_icao,$filter_name); |
|
51 | + $flightover_array = $Stats->countAllFlightOverCountries(false, $airline_icao, $filter_name); |
|
52 | 52 | } elseif ($type == 'marine') { |
53 | 53 | $flightover_array = $Marine->countAllMarineOverCountries(); |
54 | 54 | } elseif ($type == 'tracker') { |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | print '<div id="chart" class="chart" width="100%"></div><script>'; |
63 | 63 | print 'var series = ['; |
64 | 64 | $flightover_data = ''; |
65 | -foreach($flightover_array as $flightover_item) |
|
65 | +foreach ($flightover_array as $flightover_item) |
|
66 | 66 | { |
67 | 67 | $flightover_data .= '[ "'.$flightover_item['flight_country_iso3'].'",'.$flightover_item['flight_count'].'],'; |
68 | 68 | } |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | print '</thead>'; |
112 | 112 | print '<tbody>'; |
113 | 113 | $i = 1; |
114 | - array_splice($flightover_array,10); |
|
115 | - foreach($flightover_array as $flightover_item) |
|
114 | + array_splice($flightover_array, 10); |
|
115 | + foreach ($flightover_array as $flightover_item) |
|
116 | 116 | { |
117 | 117 | print '<tr>'; |
118 | 118 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | |
19 | 19 | |
20 | 20 | if (!isset($filter_name)) $filter_name = ''; |
21 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
21 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
22 | 22 | if ($airline_icao == '' && isset($globalFilter)) { |
23 | 23 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
24 | 24 | } |
@@ -33,19 +33,19 @@ discard block |
||
33 | 33 | </div> |
34 | 34 | <p>'._("Below is a chart that plots the busiest month during the <strong>last year</strong>.").'</p>'; |
35 | 35 | |
36 | -if ($type == 'aircraft') $date_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name); |
|
36 | +if ($type == 'aircraft') $date_array = $Stats->countAllMonthsLastYear(true, $airline_icao, $filter_name); |
|
37 | 37 | elseif ($type == 'marine') $date_array = $Marine->countAllMonthsLastYear(true); |
38 | 38 | elseif ($type == 'tracker') $date_array = $Tracker->countAllMonthsLastYear(true); |
39 | 39 | print '<div id="chart" class="chart" width="100%"></div><script>'; |
40 | 40 | $year_data = ''; |
41 | 41 | $year_cnt = ''; |
42 | -foreach($date_array as $year_item) |
|
42 | +foreach ($date_array as $year_item) |
|
43 | 43 | { |
44 | 44 | $year_data .= '"'.$year_item['year_name'].'-'.$year_item['month_name'].'-01'.'",'; |
45 | 45 | $year_cnt .= $year_item['date_count'].','; |
46 | 46 | } |
47 | 47 | $year_data = "['x',".substr($year_data, 0, -1)."]"; |
48 | -$year_cnt = "['flights',".substr($year_cnt,0,-1)."]"; |
|
48 | +$year_cnt = "['flights',".substr($year_cnt, 0, -1)."]"; |
|
49 | 49 | print 'c3.generate({ |
50 | 50 | bindto: "#chart", |
51 | 51 | data: { x: "x", |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | print '</thead>'; |
69 | 69 | print '<tbody>'; |
70 | 70 | $i = 1; |
71 | - foreach($date_array as $date_item) |
|
71 | + foreach ($date_array as $date_item) |
|
72 | 72 | { |
73 | 73 | print '<tr>'; |
74 | 74 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | } |
18 | 18 | |
19 | 19 | if (!isset($filter_name)) $filter_name = ''; |
20 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
20 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
21 | 21 | if ($airline_icao == '' && isset($globalFilter)) { |
22 | 22 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
23 | 23 | } |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | </div> |
34 | 34 | <p>'._("Below is a chart that plots the busiest day during the <strong>last 7 days</strong>.").'</p>'; |
35 | 35 | |
36 | -if ($type == 'aircraft') $date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name); |
|
36 | +if ($type == 'aircraft') $date_array = $Stats->countAllDatesLast7Days($airline_icao, $filter_name); |
|
37 | 37 | elseif ($type == 'marine') $date_array = $Marine->countAllDatesLast7Days(); |
38 | 38 | elseif ($type == 'tracker') $date_array = $Tracker->countAllDatesLast7Days(); |
39 | 39 | if (count($date_array) == 0) { |
@@ -42,13 +42,13 @@ discard block |
||
42 | 42 | print '<div id="chart" class="chart" width="100%"></div><script>'; |
43 | 43 | $date_data = ''; |
44 | 44 | $date_cnt = ''; |
45 | -foreach($date_array as $date_item) |
|
45 | +foreach ($date_array as $date_item) |
|
46 | 46 | { |
47 | 47 | $date_data .= '"'.$date_item['date_name'].'",'; |
48 | 48 | $date_cnt .= $date_item['date_count'].','; |
49 | 49 | } |
50 | 50 | $date_data = "['x',".substr($date_data, 0, -1)."]"; |
51 | -$date_cnt = "['flights',".substr($date_cnt,0,-1)."]"; |
|
51 | +$date_cnt = "['flights',".substr($date_cnt, 0, -1)."]"; |
|
52 | 52 | print 'c3.generate({ |
53 | 53 | bindto: "#chart", |
54 | 54 | data: { x: "x", |
@@ -57,11 +57,11 @@ discard block |
||
57 | 57 | print '</script>'; |
58 | 58 | } |
59 | 59 | if (isset($globalDBArchiveMonths) && $globalDBArchiveMonths > 0) { |
60 | - print '<p>'.sprintf(_("Below are the <strong>Top 10</strong> most busiest dates of last %d month(s)."),$globalDBArchiveMonths).'</p>'; |
|
60 | + print '<p>'.sprintf(_("Below are the <strong>Top 10</strong> most busiest dates of last %d month(s)."), $globalDBArchiveMonths).'</p>'; |
|
61 | 61 | } else { |
62 | 62 | print '<p>'._("Below are the <strong>Top 10</strong> most busiest dates.").'</p>'; |
63 | 63 | } |
64 | -if ($type == 'aircraft') $date_array = $Stats->countAllDates($airline_icao,$filter_name); |
|
64 | +if ($type == 'aircraft') $date_array = $Stats->countAllDates($airline_icao, $filter_name); |
|
65 | 65 | elseif ($type == 'marine') $date_array = $Marine->countAllDates(); |
66 | 66 | elseif ($type == 'tracker') $date_array = $Tracker->countAllDates(); |
67 | 67 | if (!empty($date_array)) |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | print '</thead>'; |
76 | 76 | print '<tbody>'; |
77 | 77 | $i = 1; |
78 | - foreach($date_array as $date_item) |
|
78 | + foreach ($date_array as $date_item) |
|
79 | 79 | { |
80 | 80 | print '<tr>'; |
81 | 81 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | } else { |
23 | 23 | print '<option value="all">All</option>'; |
24 | 24 | } |
25 | - foreach($airlines as $airline) { |
|
25 | + foreach ($airlines as $airline) { |
|
26 | 26 | if (isset($airline_icao) && $airline_icao == $airline['airline_icao']) { |
27 | 27 | print '<option value="'.$airline['airline_icao'].'" selected>'.$airline['airline_name'].'</option>'; |
28 | 28 | } else { |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | if (!isset($type) || $type == 'aircraft') { |
46 | 46 | ?> |
47 | 47 | <li class="dropdown"> |
48 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-aircraft" || strtolower($current_page) == "statistics-registration" || strtolower($current_page) == "statistics-manufacturer"){ print 'active'; } ?>" data-toggle="dropdown" href="#" > |
|
48 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-aircraft" || strtolower($current_page) == "statistics-registration" || strtolower($current_page) == "statistics-manufacturer") { print 'active'; } ?>" data-toggle="dropdown" href="#" > |
|
49 | 49 | <?php echo _("Aircraft"); ?> <span class="caret"></span> |
50 | 50 | </a> |
51 | 51 | <ul class="dropdown-menu"> |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | </ul> |
57 | 57 | </li> |
58 | 58 | <li class="dropdown"> |
59 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-airline" || strtolower($current_page) == "statistics-airline-country" || strtolower($current_page) == "statistics-callsign"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
59 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-airline" || strtolower($current_page) == "statistics-airline-country" || strtolower($current_page) == "statistics-callsign") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
60 | 60 | <?php echo _("Airline"); ?> <span class="caret"></span> |
61 | 61 | </a> |
62 | 62 | <ul class="dropdown-menu" role="menu"> |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | </ul> |
67 | 67 | </li> |
68 | 68 | <li class="dropdown"> |
69 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-airport-departure" || strtolower($current_page) == "statistics-airport-departure-country" || strtolower($current_page) == "statistics-airport-arrival" || strtolower($current_page) == "statistics-airport-arrival-country"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
69 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-airport-departure" || strtolower($current_page) == "statistics-airport-departure-country" || strtolower($current_page) == "statistics-airport-arrival" || strtolower($current_page) == "statistics-airport-arrival-country") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
70 | 70 | <?php echo _("Airport"); ?> <span class="caret"></span> |
71 | 71 | </a> |
72 | 72 | <ul class="dropdown-menu" role="menu"> |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | </ul> |
78 | 78 | </li> |
79 | 79 | <li class="dropdown"> |
80 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-route-airport" || strtolower($current_page) == "statistics-route-waypoint"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
80 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-route-airport" || strtolower($current_page) == "statistics-route-waypoint") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
81 | 81 | <?php echo _("Route"); ?> <span class="caret"></span> |
82 | 82 | </a> |
83 | 83 | <ul class="dropdown-menu" role="menu"> |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | </ul> |
87 | 87 | </li> |
88 | 88 | <li class="dropdown"> |
89 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-date" || strtolower($current_page) == "statistics-time"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
89 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-date" || strtolower($current_page) == "statistics-time") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
90 | 90 | <?php echo _("Date & Time"); ?> <span class="caret"></span> |
91 | 91 | </a> |
92 | 92 | <ul class="dropdown-menu" role="menu"> |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | if (isset($globalAccidents) && $globalAccidents && (!isset($airline_icao) || $airline_icao == '' || $airline_icao == 'all')) { |
99 | 99 | ?> |
100 | 100 | <li class="dropdown"> |
101 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-fatalities-year" || strtolower($current_page) == "statistics-fatalities-month"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
101 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-fatalities-year" || strtolower($current_page) == "statistics-fatalities-month") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
102 | 102 | <?php echo _("Fatalities"); ?> <span class="caret"></span> |
103 | 103 | </a> |
104 | 104 | <ul class="dropdown-menu" role="menu"> |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | } elseif ($type == 'marine' || $type == 'tracker') { |
114 | 114 | ?> |
115 | 115 | <li class="dropdown"> |
116 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-date" || strtolower($current_page) == "statistics-time"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
116 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-date" || strtolower($current_page) == "statistics-time") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
117 | 117 | <?php echo _("Date & Time"); ?> <span class="caret"></span> |
118 | 118 | </a> |
119 | 119 | <ul class="dropdown-menu" role="menu"> |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | if (!isset($type) || $type == 'aircraft') { |
136 | 136 | ?> |
137 | 137 | <li class="dropdown"> |
138 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-aircraft" || strtolower($current_page) == "statistics-registration" || strtolower($current_page) == "statistics-manufacturer"){ print 'active'; } ?>" data-toggle="dropdown" href="#" > |
|
138 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-aircraft" || strtolower($current_page) == "statistics-registration" || strtolower($current_page) == "statistics-manufacturer") { print 'active'; } ?>" data-toggle="dropdown" href="#" > |
|
139 | 139 | <?php echo _("Aircraft"); ?> <span class="caret"></span> |
140 | 140 | </a> |
141 | 141 | <ul class="dropdown-menu"> |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | </ul> |
147 | 147 | </li> |
148 | 148 | <li class="dropdown"> |
149 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-airline" || strtolower($current_page) == "statistics-airline-country" || strtolower($current_page) == "statistics-callsign"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
149 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-airline" || strtolower($current_page) == "statistics-airline-country" || strtolower($current_page) == "statistics-callsign") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
150 | 150 | <?php echo _("Airline"); ?> <span class="caret"></span> |
151 | 151 | </a> |
152 | 152 | <ul class="dropdown-menu" role="menu"> |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | </ul> |
157 | 157 | </li> |
158 | 158 | <li class="dropdown"> |
159 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-airport-departure" || strtolower($current_page) == "statistics-airport-departure-country" || strtolower($current_page) == "statistics-airport-arrival" || strtolower($current_page) == "statistics-airport-arrival-country"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
159 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-airport-departure" || strtolower($current_page) == "statistics-airport-departure-country" || strtolower($current_page) == "statistics-airport-arrival" || strtolower($current_page) == "statistics-airport-arrival-country") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
160 | 160 | <?php echo _("Airport"); ?> <span class="caret"></span> |
161 | 161 | </a> |
162 | 162 | <ul class="dropdown-menu" role="menu"> |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | </li> |
169 | 169 | <!-- |
170 | 170 | <li class="dropdown"> |
171 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-route-airport" || strtolower($current_page) == "statistics-route-waypoint"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
171 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-route-airport" || strtolower($current_page) == "statistics-route-waypoint") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
172 | 172 | <?php echo _("Route"); ?> <span class="caret"></span> |
173 | 173 | </a> |
174 | 174 | <ul class="dropdown-menu" role="menu"> |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | --> |
180 | 180 | <!-- |
181 | 181 | <li class="dropdown"> |
182 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-date" || strtolower($current_page) == "statistics-time"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
182 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-date" || strtolower($current_page) == "statistics-time") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
183 | 183 | <?php echo _("Date & Time"); ?> <span class="caret"></span> |
184 | 184 | </a> |
185 | 185 | <ul class="dropdown-menu" role="menu"> |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | ?> |
194 | 194 | <!-- |
195 | 195 | <li class="dropdown"> |
196 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-fatalities-year" || strtolower($current_page) == "statistics-fatalities-month"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
196 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-fatalities-year" || strtolower($current_page) == "statistics-fatalities-month") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
197 | 197 | <?php echo _("Fatalities"); ?> <span class="caret"></span> |
198 | 198 | </a> |
199 | 199 | <ul class="dropdown-menu" role="menu"> |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | } elseif ($type == 'marine' || $type == 'tracker') { |
210 | 210 | ?> |
211 | 211 | <li class="dropdown"> |
212 | - <a class="dropdown-toggle <?php if(strtolower($current_page) == "statistics-date" || strtolower($current_page) == "statistics-time"){ print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
212 | + <a class="dropdown-toggle <?php if (strtolower($current_page) == "statistics-date" || strtolower($current_page) == "statistics-time") { print 'active'; } ?>" data-toggle="dropdown" href="#"> |
|
213 | 213 | <?php echo _("Date & Time"); ?> <span class="caret"></span> |
214 | 214 | </a> |
215 | 215 | <ul class="dropdown-menu" role="menu"> |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | require_once(dirname(__FILE__).'/class.Image.php'); |
5 | 5 | $global_query = "SELECT tracker_output.* FROM tracker_output"; |
6 | 6 | |
7 | -class Tracker{ |
|
7 | +class Tracker { |
|
8 | 8 | public $db; |
9 | 9 | |
10 | 10 | public function __construct($dbc = null) { |
@@ -18,33 +18,33 @@ discard block |
||
18 | 18 | * @return Array the SQL part |
19 | 19 | */ |
20 | 20 | |
21 | - public function getFilter($filter = array(),$where = false,$and = false) { |
|
21 | + public function getFilter($filter = array(), $where = false, $and = false) { |
|
22 | 22 | global $globalFilter, $globalStatsFilters, $globalFilterName, $globalDBdriver; |
23 | 23 | $filters = array(); |
24 | 24 | if (is_array($globalStatsFilters) && isset($globalStatsFilters[$globalFilterName])) { |
25 | 25 | if (isset($globalStatsFilters[$globalFilterName][0]['source'])) { |
26 | 26 | $filters = $globalStatsFilters[$globalFilterName]; |
27 | 27 | } else { |
28 | - $filter = array_merge($filter,$globalStatsFilters[$globalFilterName]); |
|
28 | + $filter = array_merge($filter, $globalStatsFilters[$globalFilterName]); |
|
29 | 29 | } |
30 | 30 | } |
31 | 31 | if (isset($filter[0]['source'])) { |
32 | - $filters = array_merge($filters,$filter); |
|
32 | + $filters = array_merge($filters, $filter); |
|
33 | 33 | } |
34 | - if (is_array($globalFilter)) $filter = array_merge($filter,$globalFilter); |
|
34 | + if (is_array($globalFilter)) $filter = array_merge($filter, $globalFilter); |
|
35 | 35 | $filter_query_join = ''; |
36 | 36 | $filter_query_where = ''; |
37 | - foreach($filters as $flt) { |
|
37 | + foreach ($filters as $flt) { |
|
38 | 38 | if (isset($flt['idents']) && !empty($flt['idents'])) { |
39 | 39 | if (isset($flt['source'])) { |
40 | - $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_output WHERE tracker_output.ident IN ('".implode("','",$flt['idents'])."') AND spotter_output.format_source IN ('".implode("','",$flt['source'])."')) spfi ON spfi.famtrackid = tracker_output.famtrackid"; |
|
40 | + $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_output WHERE tracker_output.ident IN ('".implode("','", $flt['idents'])."') AND spotter_output.format_source IN ('".implode("','", $flt['source'])."')) spfi ON spfi.famtrackid = tracker_output.famtrackid"; |
|
41 | 41 | } else { |
42 | - $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_output WHERE tracker_output.ident IN ('".implode("','",$flt['idents'])."')) spfi ON spfi.famtrackid = tracker_output.famtrackid"; |
|
42 | + $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_output WHERE tracker_output.ident IN ('".implode("','", $flt['idents'])."')) spfi ON spfi.famtrackid = tracker_output.famtrackid"; |
|
43 | 43 | } |
44 | 44 | } |
45 | 45 | } |
46 | 46 | if (isset($filter['source']) && !empty($filter['source'])) { |
47 | - $filter_query_where .= " AND format_source IN ('".implode("','",$filter['source'])."')"; |
|
47 | + $filter_query_where .= " AND format_source IN ('".implode("','", $filter['source'])."')"; |
|
48 | 48 | } |
49 | 49 | if (isset($filter['ident']) && !empty($filter['ident'])) { |
50 | 50 | $filter_query_where .= " AND ident = '".$filter['ident']."'"; |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE'; |
74 | 74 | elseif ($filter_query_where != '' && $and) $filter_query_where .= ' AND'; |
75 | 75 | if ($filter_query_where != '') { |
76 | - $filter_query_where = preg_replace('/^ AND/',' WHERE',$filter_query_where); |
|
76 | + $filter_query_where = preg_replace('/^ AND/', ' WHERE', $filter_query_where); |
|
77 | 77 | } |
78 | 78 | $filter_query = $filter_query_join.$filter_query_where; |
79 | 79 | return $filter_query; |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | * @return Array the spotter information |
89 | 89 | * |
90 | 90 | */ |
91 | - public function getDataFromDB($query, $params = array(), $limitQuery = '',$schedules = false) |
|
91 | + public function getDataFromDB($query, $params = array(), $limitQuery = '', $schedules = false) |
|
92 | 92 | { |
93 | 93 | date_default_timezone_set('UTC'); |
94 | 94 | if (!is_string($query)) |
@@ -108,13 +108,13 @@ discard block |
||
108 | 108 | $sth = $this->db->prepare($query.$limitQuery); |
109 | 109 | $sth->execute($params); |
110 | 110 | } catch (PDOException $e) { |
111 | - printf("Invalid query : %s\nWhole query: %s\n",$e->getMessage(), $query.$limitQuery); |
|
111 | + printf("Invalid query : %s\nWhole query: %s\n", $e->getMessage(), $query.$limitQuery); |
|
112 | 112 | exit(); |
113 | 113 | } |
114 | 114 | |
115 | 115 | $num_rows = 0; |
116 | 116 | $spotter_array = array(); |
117 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
117 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
118 | 118 | { |
119 | 119 | $num_rows++; |
120 | 120 | $temp_array = array(); |
@@ -170,17 +170,17 @@ discard block |
||
170 | 170 | { |
171 | 171 | $temp_array['date'] = "about ".$dateArray['hours']." hours ago"; |
172 | 172 | } else { |
173 | - $temp_array['date'] = date("M j Y, g:i a",strtotime($row['date']." UTC")); |
|
173 | + $temp_array['date'] = date("M j Y, g:i a", strtotime($row['date']." UTC")); |
|
174 | 174 | } |
175 | 175 | $temp_array['date_minutes_past'] = $dateArray['minutes']; |
176 | - $temp_array['date_iso_8601'] = date("c",strtotime($row['date']." UTC")); |
|
177 | - $temp_array['date_rfc_2822'] = date("r",strtotime($row['date']." UTC")); |
|
176 | + $temp_array['date_iso_8601'] = date("c", strtotime($row['date']." UTC")); |
|
177 | + $temp_array['date_rfc_2822'] = date("r", strtotime($row['date']." UTC")); |
|
178 | 178 | $temp_array['date_unix'] = strtotime($row['date']." UTC"); |
179 | 179 | if (isset($row['last_seen']) && $row['last_seen'] != '') { |
180 | 180 | if (strtotime($row['last_seen']) > strtotime($row['date'])) { |
181 | 181 | $temp_array['duration'] = strtotime($row['last_seen']) - strtotime($row['date']); |
182 | - $temp_array['last_seen_date_iso_8601'] = date("c",strtotime($row['last_seen']." UTC")); |
|
183 | - $temp_array['last_seen_date_rfc_2822'] = date("r",strtotime($row['last_seen']." UTC")); |
|
182 | + $temp_array['last_seen_date_iso_8601'] = date("c", strtotime($row['last_seen']." UTC")); |
|
183 | + $temp_array['last_seen_date_rfc_2822'] = date("r", strtotime($row['last_seen']." UTC")); |
|
184 | 184 | $temp_array['last_seen_date_unix'] = strtotime($row['last_seen']." UTC"); |
185 | 185 | } |
186 | 186 | } |
@@ -217,8 +217,8 @@ discard block |
||
217 | 217 | { |
218 | 218 | $limit_array = explode(",", $limit); |
219 | 219 | |
220 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
221 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
220 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
221 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
222 | 222 | |
223 | 223 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
224 | 224 | { |
@@ -235,9 +235,9 @@ discard block |
||
235 | 235 | $orderby_query = " ORDER BY tracker_output.date DESC"; |
236 | 236 | } |
237 | 237 | |
238 | - $query = $global_query.$filter_query." ".$orderby_query; |
|
238 | + $query = $global_query.$filter_query." ".$orderby_query; |
|
239 | 239 | |
240 | - $spotter_array = $this->getDataFromDB($query, array(),$limit_query,true); |
|
240 | + $spotter_array = $this->getDataFromDB($query, array(), $limit_query, true); |
|
241 | 241 | |
242 | 242 | return $spotter_array; |
243 | 243 | } |
@@ -256,8 +256,8 @@ discard block |
||
256 | 256 | if ($id == '') return array(); |
257 | 257 | $additional_query = "tracker_output.famtrackid = :id"; |
258 | 258 | $query_values = array(':id' => $id); |
259 | - $query = $global_query." WHERE ".$additional_query." "; |
|
260 | - $spotter_array = $this->getDataFromDB($query,$query_values); |
|
259 | + $query = $global_query." WHERE ".$additional_query." "; |
|
260 | + $spotter_array = $this->getDataFromDB($query, $query_values); |
|
261 | 261 | return $spotter_array; |
262 | 262 | } |
263 | 263 | |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | $query_values = array(); |
277 | 277 | $limit_query = ''; |
278 | 278 | $additional_query = ''; |
279 | - $filter_query = $this->getFilter($filter,true,true); |
|
279 | + $filter_query = $this->getFilter($filter, true, true); |
|
280 | 280 | if ($ident != "") |
281 | 281 | { |
282 | 282 | if (!is_string($ident)) |
@@ -292,8 +292,8 @@ discard block |
||
292 | 292 | { |
293 | 293 | $limit_array = explode(",", $limit); |
294 | 294 | |
295 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
296 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
295 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
296 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
297 | 297 | |
298 | 298 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
299 | 299 | { |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | return $spotter_array; |
318 | 318 | } |
319 | 319 | |
320 | - public function getTrackerDataByDate($date = '', $limit = '', $sort = '',$filter = array()) |
|
320 | + public function getTrackerDataByDate($date = '', $limit = '', $sort = '', $filter = array()) |
|
321 | 321 | { |
322 | 322 | global $global_query, $globalTimezone, $globalDBdriver; |
323 | 323 | |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | $limit_query = ''; |
326 | 326 | $additional_query = ''; |
327 | 327 | |
328 | - $filter_query = $this->getFilter($filter,true,true); |
|
328 | + $filter_query = $this->getFilter($filter, true, true); |
|
329 | 329 | |
330 | 330 | if ($date != "") |
331 | 331 | { |
@@ -351,8 +351,8 @@ discard block |
||
351 | 351 | { |
352 | 352 | $limit_array = explode(",", $limit); |
353 | 353 | |
354 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
355 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
354 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
355 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
356 | 356 | |
357 | 357 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
358 | 358 | { |
@@ -383,11 +383,11 @@ discard block |
||
383 | 383 | * @return Array list of source name |
384 | 384 | * |
385 | 385 | */ |
386 | - public function getAllSourceName($type = '',$filters = array()) |
|
386 | + public function getAllSourceName($type = '', $filters = array()) |
|
387 | 387 | { |
388 | - $filter_query = $this->getFilter($filters,true,true); |
|
388 | + $filter_query = $this->getFilter($filters, true, true); |
|
389 | 389 | $query_values = array(); |
390 | - $query = "SELECT DISTINCT tracker_output.source_name |
|
390 | + $query = "SELECT DISTINCT tracker_output.source_name |
|
391 | 391 | FROM tracker_output".$filter_query." tracker_output.source_name <> ''"; |
392 | 392 | if ($type != '') { |
393 | 393 | $query_values = array(':type' => $type); |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | $source_array = array(); |
403 | 403 | $temp_array = array(); |
404 | 404 | |
405 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
405 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
406 | 406 | { |
407 | 407 | $temp_array['source_name'] = $row['source_name']; |
408 | 408 | $source_array[] = $temp_array; |
@@ -419,8 +419,8 @@ discard block |
||
419 | 419 | */ |
420 | 420 | public function getAllIdents($filters = array()) |
421 | 421 | { |
422 | - $filter_query = $this->getFilter($filters,true,true); |
|
423 | - $query = "SELECT DISTINCT tracker_output.ident |
|
422 | + $filter_query = $this->getFilter($filters, true, true); |
|
423 | + $query = "SELECT DISTINCT tracker_output.ident |
|
424 | 424 | FROM tracker_output".$filter_query." tracker_output.ident <> '' |
425 | 425 | ORDER BY tracker_output.date ASC LIMIT 700 OFFSET 0"; |
426 | 426 | |
@@ -430,7 +430,7 @@ discard block |
||
430 | 430 | $ident_array = array(); |
431 | 431 | $temp_array = array(); |
432 | 432 | |
433 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
433 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
434 | 434 | { |
435 | 435 | $temp_array['ident'] = $row['ident']; |
436 | 436 | $ident_array[] = $temp_array; |
@@ -455,12 +455,12 @@ discard block |
||
455 | 455 | } else $offset = '+00:00'; |
456 | 456 | |
457 | 457 | if ($globalDBdriver == 'mysql') { |
458 | - $query = "SELECT DISTINCT DATE(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) as date |
|
458 | + $query = "SELECT DISTINCT DATE(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) as date |
|
459 | 459 | FROM tracker_output |
460 | 460 | WHERE tracker_output.date <> '' |
461 | 461 | ORDER BY tracker_output.date ASC LIMIT 0,200"; |
462 | 462 | } else { |
463 | - $query = "SELECT DISTINCT to_char(tracker_output.date AT TIME ZONE INTERVAL :offset,'YYYY-mm-dd') as date |
|
463 | + $query = "SELECT DISTINCT to_char(tracker_output.date AT TIME ZONE INTERVAL :offset,'YYYY-mm-dd') as date |
|
464 | 464 | FROM tracker_output |
465 | 465 | WHERE tracker_output.date <> '' |
466 | 466 | ORDER BY tracker_output.date ASC LIMIT 0,200"; |
@@ -472,7 +472,7 @@ discard block |
||
472 | 472 | $date_array = array(); |
473 | 473 | $temp_array = array(); |
474 | 474 | |
475 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
475 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
476 | 476 | { |
477 | 477 | $temp_array['date'] = $row['date']; |
478 | 478 | |
@@ -491,11 +491,11 @@ discard block |
||
491 | 491 | * @return String success or false |
492 | 492 | * |
493 | 493 | */ |
494 | - public function updateIdentTrackerData($famtrackid = '', $ident = '',$fromsource = NULL) |
|
494 | + public function updateIdentTrackerData($famtrackid = '', $ident = '', $fromsource = NULL) |
|
495 | 495 | { |
496 | 496 | |
497 | 497 | $query = 'UPDATE tracker_output SET ident = :ident WHERE famtrackid = :famtrackid'; |
498 | - $query_values = array(':famtrackid' => $famtrackid,':ident' => $ident); |
|
498 | + $query_values = array(':famtrackid' => $famtrackid, ':ident' => $ident); |
|
499 | 499 | |
500 | 500 | try { |
501 | 501 | $sth = $this->db->prepare($query); |
@@ -519,7 +519,7 @@ discard block |
||
519 | 519 | public function updateLatestTrackerData($famtrackid = '', $ident = '', $latitude = '', $longitude = '', $altitude = '', $groundspeed = NULL, $date = '') |
520 | 520 | { |
521 | 521 | $query = 'UPDATE tracker_output SET ident = :ident, last_latitude = :last_latitude, last_longitude = :last_longitude, last_altitude = :last_altitude, last_seen = :last_seen, last_ground_speed = :last_ground_speed WHERE famtrackid = :famtrackid'; |
522 | - $query_values = array(':famtrackid' => $famtrackid,':last_latitude' => $latitude,':last_longitude' => $longitude, ':last_altitude' => $altitude,':last_ground_speed' => $groundspeed,':last_seen' => $date,':ident' => $ident); |
|
522 | + $query_values = array(':famtrackid' => $famtrackid, ':last_latitude' => $latitude, ':last_longitude' => $longitude, ':last_altitude' => $altitude, ':last_ground_speed' => $groundspeed, ':last_seen' => $date, ':ident' => $ident); |
|
523 | 523 | |
524 | 524 | try { |
525 | 525 | $sth = $this->db->prepare($query); |
@@ -559,7 +559,7 @@ discard block |
||
559 | 559 | * @param String $verticalrate vertival rate of flight |
560 | 560 | * @return String success or false |
561 | 561 | */ |
562 | - public function addTrackerData($famtrackid = '', $ident = '', $latitude = '', $longitude = '', $altitude = '', $heading = '', $groundspeed = '', $date = '', $comment = '', $type = '',$format_source = '', $source_name = '') |
|
562 | + public function addTrackerData($famtrackid = '', $ident = '', $latitude = '', $longitude = '', $altitude = '', $heading = '', $groundspeed = '', $date = '', $comment = '', $type = '', $format_source = '', $source_name = '') |
|
563 | 563 | { |
564 | 564 | global $globalURL; |
565 | 565 | |
@@ -627,21 +627,21 @@ discard block |
||
627 | 627 | } |
628 | 628 | |
629 | 629 | |
630 | - if ($date == "" || strtotime($date) < time()-20*60) |
|
630 | + if ($date == "" || strtotime($date) < time() - 20*60) |
|
631 | 631 | { |
632 | 632 | $date = date("Y-m-d H:i:s", time()); |
633 | 633 | } |
634 | 634 | |
635 | - $famtrackid = filter_var($famtrackid,FILTER_SANITIZE_STRING); |
|
636 | - $ident = filter_var($ident,FILTER_SANITIZE_STRING); |
|
637 | - $latitude = filter_var($latitude,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
638 | - $longitude = filter_var($longitude,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
639 | - $altitude = filter_var($altitude,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
640 | - $heading = filter_var($heading,FILTER_SANITIZE_NUMBER_INT); |
|
641 | - $groundspeed = filter_var($groundspeed,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
642 | - $format_source = filter_var($format_source,FILTER_SANITIZE_STRING); |
|
643 | - $comment = filter_var($comment,FILTER_SANITIZE_STRING); |
|
644 | - $type = filter_var($type,FILTER_SANITIZE_STRING); |
|
635 | + $famtrackid = filter_var($famtrackid, FILTER_SANITIZE_STRING); |
|
636 | + $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
637 | + $latitude = filter_var($latitude, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
638 | + $longitude = filter_var($longitude, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
639 | + $altitude = filter_var($altitude, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
640 | + $heading = filter_var($heading, FILTER_SANITIZE_NUMBER_INT); |
|
641 | + $groundspeed = filter_var($groundspeed, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
642 | + $format_source = filter_var($format_source, FILTER_SANITIZE_STRING); |
|
643 | + $comment = filter_var($comment, FILTER_SANITIZE_STRING); |
|
644 | + $type = filter_var($type, FILTER_SANITIZE_STRING); |
|
645 | 645 | |
646 | 646 | if ($latitude == '' && $longitude == '') { |
647 | 647 | $latitude = 0; |
@@ -649,10 +649,10 @@ discard block |
||
649 | 649 | } |
650 | 650 | if ($heading == '' || $Common->isInteger($heading) === false) $heading = 0; |
651 | 651 | if ($groundspeed == '' || $Common->isInteger($groundspeed) === false) $groundspeed = 0; |
652 | - $query = "INSERT INTO tracker_output (famtrackid, ident, latitude, longitude, altitude, heading, ground_speed, date, format_source, source_name, comment, type) |
|
652 | + $query = "INSERT INTO tracker_output (famtrackid, ident, latitude, longitude, altitude, heading, ground_speed, date, format_source, source_name, comment, type) |
|
653 | 653 | VALUES (:famtrackid,:ident,:latitude,:longitude,:altitude,:heading,:speed,:date,:format_source, :source_name,:comment,:type)"; |
654 | 654 | |
655 | - $query_values = array(':famtrackid' => $famtrackid,':ident' => $ident,':latitude' => $latitude,':longitude' => $longitude,':altitude' => $altitude,':heading' => $heading,':speed' => $groundspeed,':date' => $date,':format_source' => $format_source, ':source_name' => $source_name,':comment' => $comment,':type' => $type); |
|
655 | + $query_values = array(':famtrackid' => $famtrackid, ':ident' => $ident, ':latitude' => $latitude, ':longitude' => $longitude, ':altitude' => $altitude, ':heading' => $heading, ':speed' => $groundspeed, ':date' => $date, ':format_source' => $format_source, ':source_name' => $source_name, ':comment' => $comment, ':type' => $type); |
|
656 | 656 | |
657 | 657 | try { |
658 | 658 | |
@@ -678,13 +678,13 @@ discard block |
||
678 | 678 | { |
679 | 679 | global $globalDBdriver, $globalTimezone; |
680 | 680 | if ($globalDBdriver == 'mysql') { |
681 | - $query = "SELECT tracker_output.ident FROM tracker_output |
|
681 | + $query = "SELECT tracker_output.ident FROM tracker_output |
|
682 | 682 | WHERE tracker_output.ident = :ident |
683 | 683 | AND tracker_output.date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 1 HOUR) |
684 | 684 | AND tracker_output.date < UTC_TIMESTAMP()"; |
685 | 685 | $query_data = array(':ident' => $ident); |
686 | 686 | } else { |
687 | - $query = "SELECT tracker_output.ident FROM tracker_output |
|
687 | + $query = "SELECT tracker_output.ident FROM tracker_output |
|
688 | 688 | WHERE tracker_output.ident = :ident |
689 | 689 | AND tracker_output.date >= now() AT TIME ZONE 'UTC' - INTERVAL '1 HOURS' |
690 | 690 | AND tracker_output.date < now() AT TIME ZONE 'UTC'"; |
@@ -693,8 +693,8 @@ discard block |
||
693 | 693 | |
694 | 694 | $sth = $this->db->prepare($query); |
695 | 695 | $sth->execute($query_data); |
696 | - $ident_result=''; |
|
697 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
696 | + $ident_result = ''; |
|
697 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
698 | 698 | { |
699 | 699 | $ident_result = $row['ident']; |
700 | 700 | } |
@@ -720,8 +720,8 @@ discard block |
||
720 | 720 | return false; |
721 | 721 | } else { |
722 | 722 | $q_array = explode(" ", $q); |
723 | - foreach ($q_array as $q_item){ |
|
724 | - $q_item = filter_var($q_item,FILTER_SANITIZE_STRING); |
|
723 | + foreach ($q_array as $q_item) { |
|
724 | + $q_item = filter_var($q_item, FILTER_SANITIZE_STRING); |
|
725 | 725 | $additional_query .= " AND ("; |
726 | 726 | $additional_query .= "(tracker_output.ident like '%".$q_item."%')"; |
727 | 727 | $additional_query .= ")"; |
@@ -729,11 +729,11 @@ discard block |
||
729 | 729 | } |
730 | 730 | } |
731 | 731 | if ($globalDBdriver == 'mysql') { |
732 | - $query = "SELECT tracker_output.* FROM tracker_output |
|
732 | + $query = "SELECT tracker_output.* FROM tracker_output |
|
733 | 733 | WHERE tracker_output.date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 20 SECOND) ".$additional_query." |
734 | 734 | AND tracker_output.date < UTC_TIMESTAMP()"; |
735 | 735 | } else { |
736 | - $query = "SELECT tracker_output.* FROM tracker_output |
|
736 | + $query = "SELECT tracker_output.* FROM tracker_output |
|
737 | 737 | WHERE tracker_output.date::timestamp >= CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '20 SECONDS' ".$additional_query." |
738 | 738 | AND tracker_output.date::timestamp < CURRENT_TIMESTAMP AT TIME ZONE 'UTC'"; |
739 | 739 | } |
@@ -752,16 +752,16 @@ discard block |
||
752 | 752 | * |
753 | 753 | */ |
754 | 754 | |
755 | - public function countAllTrackerOverCountries($limit = true,$olderthanmonths = 0,$sincedate = '',$filters = array()) |
|
755 | + public function countAllTrackerOverCountries($limit = true, $olderthanmonths = 0, $sincedate = '', $filters = array()) |
|
756 | 756 | { |
757 | 757 | global $globalDBdriver, $globalArchive; |
758 | 758 | //$filter_query = $this->getFilter($filters,true,true); |
759 | - $Connection= new Connection($this->db); |
|
759 | + $Connection = new Connection($this->db); |
|
760 | 760 | if (!$Connection->tableExists('countries')) return array(); |
761 | 761 | if (!isset($globalArchive) || $globalArchive !== TRUE) { |
762 | 762 | require_once('class.TrackerLive.php'); |
763 | 763 | $TrackerLive = new TrackerLive(); |
764 | - $filter_query = $TrackerLive->getFilter($filters,true,true); |
|
764 | + $filter_query = $TrackerLive->getFilter($filters, true, true); |
|
765 | 765 | $filter_query .= " over_country IS NOT NULL AND over_country <> ''"; |
766 | 766 | if ($olderthanmonths > 0) { |
767 | 767 | if ($globalDBdriver == 'mysql') { |
@@ -781,7 +781,7 @@ discard block |
||
781 | 781 | } else { |
782 | 782 | require_once('class.TrackerArchive.php'); |
783 | 783 | $TrackerArchive = new TrackerArchive(); |
784 | - $filter_query = $TrackerArchive->getFilter($filters,true,true); |
|
784 | + $filter_query = $TrackerArchive->getFilter($filters, true, true); |
|
785 | 785 | $filter_query .= " over_country IS NOT NULL AND over_country <> ''"; |
786 | 786 | if ($olderthanmonths > 0) { |
787 | 787 | if ($globalDBdriver == 'mysql') { |
@@ -809,7 +809,7 @@ discard block |
||
809 | 809 | $flight_array = array(); |
810 | 810 | $temp_array = array(); |
811 | 811 | |
812 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
812 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
813 | 813 | { |
814 | 814 | $temp_array['flight_count'] = $row['nb']; |
815 | 815 | $temp_array['flight_country'] = $row['name']; |
@@ -826,11 +826,11 @@ discard block |
||
826 | 826 | * @return Array the callsign list |
827 | 827 | * |
828 | 828 | */ |
829 | - public function countAllCallsigns($limit = true, $olderthanmonths = 0, $sincedate = '',$filters = array(),$year = '', $month = '', $day = '') |
|
829 | + public function countAllCallsigns($limit = true, $olderthanmonths = 0, $sincedate = '', $filters = array(), $year = '', $month = '', $day = '') |
|
830 | 830 | { |
831 | 831 | global $globalDBdriver; |
832 | - $filter_query = $this->getFilter($filters,true,true); |
|
833 | - $query = "SELECT DISTINCT tracker_output.ident, COUNT(tracker_output.ident) AS callsign_icao_count |
|
832 | + $filter_query = $this->getFilter($filters, true, true); |
|
833 | + $query = "SELECT DISTINCT tracker_output.ident, COUNT(tracker_output.ident) AS callsign_icao_count |
|
834 | 834 | FROM tracker_output".$filter_query." tracker_output.ident <> ''"; |
835 | 835 | if ($olderthanmonths > 0) { |
836 | 836 | if ($globalDBdriver == 'mysql') $query .= ' AND date < DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$olderthanmonths.' MONTH)'; |
@@ -844,28 +844,28 @@ discard block |
||
844 | 844 | if ($year != '') { |
845 | 845 | if ($globalDBdriver == 'mysql') { |
846 | 846 | $query .= " AND YEAR(tracker_output.date) = :year"; |
847 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
847 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
848 | 848 | } else { |
849 | 849 | $query .= " AND EXTRACT(YEAR FROM tracker_output.date) = :year"; |
850 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
850 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
851 | 851 | } |
852 | 852 | } |
853 | 853 | if ($month != '') { |
854 | 854 | if ($globalDBdriver == 'mysql') { |
855 | 855 | $query .= " AND MONTH(tracker_output.date) = :month"; |
856 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
856 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
857 | 857 | } else { |
858 | 858 | $query .= " AND EXTRACT(MONTH FROM tracker_output.date) = :month"; |
859 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
859 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
860 | 860 | } |
861 | 861 | } |
862 | 862 | if ($day != '') { |
863 | 863 | if ($globalDBdriver == 'mysql') { |
864 | 864 | $query .= " AND DAY(tracker_output.date) = :day"; |
865 | - $query_values = array_merge($query_values,array(':day' => $day)); |
|
865 | + $query_values = array_merge($query_values, array(':day' => $day)); |
|
866 | 866 | } else { |
867 | 867 | $query .= " AND EXTRACT(DAY FROM tracker_output.date) = :day"; |
868 | - $query_values = array_merge($query_values,array(':day' => $day)); |
|
868 | + $query_values = array_merge($query_values, array(':day' => $day)); |
|
869 | 869 | } |
870 | 870 | } |
871 | 871 | $query .= " GROUP BY tracker_output.ident ORDER BY callsign_icao_count DESC"; |
@@ -877,7 +877,7 @@ discard block |
||
877 | 877 | $callsign_array = array(); |
878 | 878 | $temp_array = array(); |
879 | 879 | |
880 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
880 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
881 | 881 | { |
882 | 882 | $temp_array['callsign_icao'] = $row['ident']; |
883 | 883 | $temp_array['airline_name'] = $row['airline_name']; |
@@ -929,7 +929,7 @@ discard block |
||
929 | 929 | $date_array = array(); |
930 | 930 | $temp_array = array(); |
931 | 931 | |
932 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
932 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
933 | 933 | { |
934 | 934 | $temp_array['date_name'] = $row['date_name']; |
935 | 935 | $temp_array['date_count'] = $row['date_count']; |
@@ -955,7 +955,7 @@ discard block |
||
955 | 955 | $datetime = new DateTime(); |
956 | 956 | $offset = $datetime->format('P'); |
957 | 957 | } else $offset = '+00:00'; |
958 | - $filter_query = $this->getFilter($filters,true,true); |
|
958 | + $filter_query = $this->getFilter($filters, true, true); |
|
959 | 959 | if ($globalDBdriver == 'mysql') { |
960 | 960 | $query = "SELECT DATE(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS date_name, count(*) as date_count |
961 | 961 | FROM tracker_output".$filter_query." tracker_output.date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 7 DAY)"; |
@@ -976,7 +976,7 @@ discard block |
||
976 | 976 | $date_array = array(); |
977 | 977 | $temp_array = array(); |
978 | 978 | |
979 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
979 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
980 | 980 | { |
981 | 981 | $temp_array['date_name'] = $row['date_name']; |
982 | 982 | $temp_array['date_count'] = $row['date_count']; |
@@ -1001,7 +1001,7 @@ discard block |
||
1001 | 1001 | $datetime = new DateTime(); |
1002 | 1002 | $offset = $datetime->format('P'); |
1003 | 1003 | } else $offset = '+00:00'; |
1004 | - $filter_query = $this->getFilter($filters,true,true); |
|
1004 | + $filter_query = $this->getFilter($filters, true, true); |
|
1005 | 1005 | if ($globalDBdriver == 'mysql') { |
1006 | 1006 | $query = "SELECT DATE(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS date_name, count(*) as date_count |
1007 | 1007 | FROM tracker_output".$filter_query." tracker_output.date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 1 MONTH)"; |
@@ -1022,7 +1022,7 @@ discard block |
||
1022 | 1022 | $date_array = array(); |
1023 | 1023 | $temp_array = array(); |
1024 | 1024 | |
1025 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1025 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1026 | 1026 | { |
1027 | 1027 | $temp_array['date_name'] = $row['date_name']; |
1028 | 1028 | $temp_array['date_count'] = $row['date_count']; |
@@ -1069,7 +1069,7 @@ discard block |
||
1069 | 1069 | $date_array = array(); |
1070 | 1070 | $temp_array = array(); |
1071 | 1071 | |
1072 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1072 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1073 | 1073 | { |
1074 | 1074 | $temp_array['month_name'] = $row['month_name']; |
1075 | 1075 | $temp_array['year_name'] = $row['year_name']; |
@@ -1098,7 +1098,7 @@ discard block |
||
1098 | 1098 | $datetime = new DateTime(); |
1099 | 1099 | $offset = $datetime->format('P'); |
1100 | 1100 | } else $offset = '+00:00'; |
1101 | - $filter_query = $this->getFilter($filters,true,true); |
|
1101 | + $filter_query = $this->getFilter($filters, true, true); |
|
1102 | 1102 | if ($globalDBdriver == 'mysql') { |
1103 | 1103 | $query = "SELECT MONTH(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS month_name, YEAR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS year_name, count(*) as date_count |
1104 | 1104 | FROM tracker_output".$filter_query." tracker_output.date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 1 YEAR)"; |
@@ -1119,7 +1119,7 @@ discard block |
||
1119 | 1119 | $date_array = array(); |
1120 | 1120 | $temp_array = array(); |
1121 | 1121 | |
1122 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1122 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1123 | 1123 | { |
1124 | 1124 | $temp_array['year_name'] = $row['year_name']; |
1125 | 1125 | $temp_array['month_name'] = $row['month_name']; |
@@ -1139,7 +1139,7 @@ discard block |
||
1139 | 1139 | * @return Array the hour list |
1140 | 1140 | * |
1141 | 1141 | */ |
1142 | - public function countAllHours($orderby,$filters = array()) |
|
1142 | + public function countAllHours($orderby, $filters = array()) |
|
1143 | 1143 | { |
1144 | 1144 | global $globalTimezone, $globalDBdriver; |
1145 | 1145 | if ($globalTimezone != '') { |
@@ -1187,7 +1187,7 @@ discard block |
||
1187 | 1187 | $hour_array = array(); |
1188 | 1188 | $temp_array = array(); |
1189 | 1189 | |
1190 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1190 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1191 | 1191 | { |
1192 | 1192 | $temp_array['hour_name'] = $row['hour_name']; |
1193 | 1193 | $temp_array['hour_count'] = $row['hour_count']; |
@@ -1209,8 +1209,8 @@ discard block |
||
1209 | 1209 | public function countAllHoursByDate($date, $filters = array()) |
1210 | 1210 | { |
1211 | 1211 | global $globalTimezone, $globalDBdriver; |
1212 | - $filter_query = $this->getFilter($filters,true,true); |
|
1213 | - $date = filter_var($date,FILTER_SANITIZE_STRING); |
|
1212 | + $filter_query = $this->getFilter($filters, true, true); |
|
1213 | + $date = filter_var($date, FILTER_SANITIZE_STRING); |
|
1214 | 1214 | if ($globalTimezone != '') { |
1215 | 1215 | date_default_timezone_set($globalTimezone); |
1216 | 1216 | $datetime = new DateTime($date); |
@@ -1218,12 +1218,12 @@ discard block |
||
1218 | 1218 | } else $offset = '+00:00'; |
1219 | 1219 | |
1220 | 1220 | if ($globalDBdriver == 'mysql') { |
1221 | - $query = "SELECT HOUR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1221 | + $query = "SELECT HOUR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1222 | 1222 | FROM tracker_output".$filter_query." DATE(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) = :date |
1223 | 1223 | GROUP BY hour_name |
1224 | 1224 | ORDER BY hour_name ASC"; |
1225 | 1225 | } else { |
1226 | - $query = "SELECT EXTRACT(HOUR FROM tracker_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1226 | + $query = "SELECT EXTRACT(HOUR FROM tracker_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1227 | 1227 | FROM tracker_output".$filter_query." to_char(tracker_output.date AT TIME ZONE INTERVAL :offset, 'YYYY-mm-dd') = :date |
1228 | 1228 | GROUP BY hour_name |
1229 | 1229 | ORDER BY hour_name ASC"; |
@@ -1235,7 +1235,7 @@ discard block |
||
1235 | 1235 | $hour_array = array(); |
1236 | 1236 | $temp_array = array(); |
1237 | 1237 | |
1238 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1238 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1239 | 1239 | { |
1240 | 1240 | $temp_array['hour_name'] = $row['hour_name']; |
1241 | 1241 | $temp_array['hour_count'] = $row['hour_count']; |
@@ -1257,8 +1257,8 @@ discard block |
||
1257 | 1257 | public function countAllHoursByIdent($ident, $filters = array()) |
1258 | 1258 | { |
1259 | 1259 | global $globalTimezone, $globalDBdriver; |
1260 | - $filter_query = $this->getFilter($filters,true,true); |
|
1261 | - $ident = filter_var($ident,FILTER_SANITIZE_STRING); |
|
1260 | + $filter_query = $this->getFilter($filters, true, true); |
|
1261 | + $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
1262 | 1262 | if ($globalTimezone != '') { |
1263 | 1263 | date_default_timezone_set($globalTimezone); |
1264 | 1264 | $datetime = new DateTime(); |
@@ -1266,12 +1266,12 @@ discard block |
||
1266 | 1266 | } else $offset = '+00:00'; |
1267 | 1267 | |
1268 | 1268 | if ($globalDBdriver == 'mysql') { |
1269 | - $query = "SELECT HOUR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1269 | + $query = "SELECT HOUR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1270 | 1270 | FROM tracker_output".$filter_query." tracker_output.ident = :ident |
1271 | 1271 | GROUP BY hour_name |
1272 | 1272 | ORDER BY hour_name ASC"; |
1273 | 1273 | } else { |
1274 | - $query = "SELECT EXTRACT(HOUR FROM tracker_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1274 | + $query = "SELECT EXTRACT(HOUR FROM tracker_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1275 | 1275 | FROM tracker_output".$filter_query." tracker_output.ident = :ident |
1276 | 1276 | GROUP BY hour_name |
1277 | 1277 | ORDER BY hour_name ASC"; |
@@ -1279,12 +1279,12 @@ discard block |
||
1279 | 1279 | |
1280 | 1280 | |
1281 | 1281 | $sth = $this->db->prepare($query); |
1282 | - $sth->execute(array(':ident' => $ident,':offset' => $offset)); |
|
1282 | + $sth->execute(array(':ident' => $ident, ':offset' => $offset)); |
|
1283 | 1283 | |
1284 | 1284 | $hour_array = array(); |
1285 | 1285 | $temp_array = array(); |
1286 | 1286 | |
1287 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1287 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1288 | 1288 | { |
1289 | 1289 | $temp_array['hour_name'] = $row['hour_name']; |
1290 | 1290 | $temp_array['hour_count'] = $row['hour_count']; |
@@ -1303,33 +1303,33 @@ discard block |
||
1303 | 1303 | * @return Integer the number of trackers |
1304 | 1304 | * |
1305 | 1305 | */ |
1306 | - public function countOverallTracker($filters = array(),$year = '',$month = '') |
|
1306 | + public function countOverallTracker($filters = array(), $year = '', $month = '') |
|
1307 | 1307 | { |
1308 | 1308 | global $globalDBdriver; |
1309 | 1309 | //$queryi = "SELECT COUNT(tracker_output.tracker_id) AS flight_count FROM tracker_output"; |
1310 | - $queryi = "SELECT COUNT(DISTINCT tracker_output.ident) AS tracker_count FROM tracker_output"; |
|
1310 | + $queryi = "SELECT COUNT(DISTINCT tracker_output.ident) AS tracker_count FROM tracker_output"; |
|
1311 | 1311 | $query_values = array(); |
1312 | 1312 | $query = ''; |
1313 | 1313 | if ($year != '') { |
1314 | 1314 | if ($globalDBdriver == 'mysql') { |
1315 | 1315 | $query .= " AND YEAR(tracker_output.date) = :year"; |
1316 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1316 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1317 | 1317 | } else { |
1318 | 1318 | $query .= " AND EXTRACT(YEAR FROM tracker_output.date) = :year"; |
1319 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1319 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1320 | 1320 | } |
1321 | 1321 | } |
1322 | 1322 | if ($month != '') { |
1323 | 1323 | if ($globalDBdriver == 'mysql') { |
1324 | 1324 | $query .= " AND MONTH(tracker_output.date) = :month"; |
1325 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1325 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1326 | 1326 | } else { |
1327 | 1327 | $query .= " AND EXTRACT(MONTH FROM tracker_output.date) = :month"; |
1328 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1328 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1329 | 1329 | } |
1330 | 1330 | } |
1331 | 1331 | if (empty($query_values)) $queryi .= $this->getFilter($filters); |
1332 | - else $queryi .= $this->getFilter($filters,true,true).substr($query,4); |
|
1332 | + else $queryi .= $this->getFilter($filters, true, true).substr($query, 4); |
|
1333 | 1333 | |
1334 | 1334 | $sth = $this->db->prepare($queryi); |
1335 | 1335 | $sth->execute($query_values); |
@@ -1342,32 +1342,32 @@ discard block |
||
1342 | 1342 | * @return Integer the number of flights |
1343 | 1343 | * |
1344 | 1344 | */ |
1345 | - public function countOverallTrackerTypes($filters = array(),$year = '',$month = '') |
|
1345 | + public function countOverallTrackerTypes($filters = array(), $year = '', $month = '') |
|
1346 | 1346 | { |
1347 | 1347 | global $globalDBdriver; |
1348 | - $queryi = "SELECT COUNT(DISTINCT tracker_output.type) AS tracker_count FROM tracker_output"; |
|
1348 | + $queryi = "SELECT COUNT(DISTINCT tracker_output.type) AS tracker_count FROM tracker_output"; |
|
1349 | 1349 | $query_values = array(); |
1350 | 1350 | $query = ''; |
1351 | 1351 | if ($year != '') { |
1352 | 1352 | if ($globalDBdriver == 'mysql') { |
1353 | 1353 | $query .= " AND YEAR(tracker_output.date) = :year"; |
1354 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1354 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1355 | 1355 | } else { |
1356 | 1356 | $query .= " AND EXTRACT(YEAR FROM tracker_output.date) = :year"; |
1357 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1357 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1358 | 1358 | } |
1359 | 1359 | } |
1360 | 1360 | if ($month != '') { |
1361 | 1361 | if ($globalDBdriver == 'mysql') { |
1362 | 1362 | $query .= " AND MONTH(tracker_output.date) = :month"; |
1363 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1363 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1364 | 1364 | } else { |
1365 | 1365 | $query .= " AND EXTRACT(MONTH FROM tracker_output.date) = :month"; |
1366 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1366 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1367 | 1367 | } |
1368 | 1368 | } |
1369 | 1369 | if (empty($query_values)) $queryi .= $this->getFilter($filters); |
1370 | - else $queryi .= $this->getFilter($filters,true,true).substr($query,4); |
|
1370 | + else $queryi .= $this->getFilter($filters, true, true).substr($query, 4); |
|
1371 | 1371 | |
1372 | 1372 | $sth = $this->db->prepare($queryi); |
1373 | 1373 | $sth->execute($query_values); |
@@ -1384,7 +1384,7 @@ discard block |
||
1384 | 1384 | public function countAllHoursFromToday($filters = array()) |
1385 | 1385 | { |
1386 | 1386 | global $globalTimezone, $globalDBdriver; |
1387 | - $filter_query = $this->getFilter($filters,true,true); |
|
1387 | + $filter_query = $this->getFilter($filters, true, true); |
|
1388 | 1388 | if ($globalTimezone != '') { |
1389 | 1389 | date_default_timezone_set($globalTimezone); |
1390 | 1390 | $datetime = new DateTime(); |
@@ -1392,12 +1392,12 @@ discard block |
||
1392 | 1392 | } else $offset = '+00:00'; |
1393 | 1393 | |
1394 | 1394 | if ($globalDBdriver == 'mysql') { |
1395 | - $query = "SELECT HOUR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1395 | + $query = "SELECT HOUR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1396 | 1396 | FROM tracker_output".$filter_query." DATE(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) = CURDATE() |
1397 | 1397 | GROUP BY hour_name |
1398 | 1398 | ORDER BY hour_name ASC"; |
1399 | 1399 | } else { |
1400 | - $query = "SELECT EXTRACT(HOUR FROM tracker_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1400 | + $query = "SELECT EXTRACT(HOUR FROM tracker_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1401 | 1401 | FROM tracker_output".$filter_query." to_char(tracker_output.date AT TIME ZONE INTERVAL :offset,'YYYY-mm-dd') = CAST(NOW() AS date) |
1402 | 1402 | GROUP BY hour_name |
1403 | 1403 | ORDER BY hour_name ASC"; |
@@ -1409,7 +1409,7 @@ discard block |
||
1409 | 1409 | $hour_array = array(); |
1410 | 1410 | $temp_array = array(); |
1411 | 1411 | |
1412 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1412 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1413 | 1413 | { |
1414 | 1414 | $temp_array['hour_name'] = $row['hour_name']; |
1415 | 1415 | $temp_array['hour_count'] = $row['hour_count']; |
@@ -1428,9 +1428,9 @@ discard block |
||
1428 | 1428 | */ |
1429 | 1429 | public function getTrackerIDBasedOnFamTrackID($famtrackid) |
1430 | 1430 | { |
1431 | - $famtrackid = filter_var($famtrackid,FILTER_SANITIZE_STRING); |
|
1431 | + $famtrackid = filter_var($famtrackid, FILTER_SANITIZE_STRING); |
|
1432 | 1432 | |
1433 | - $query = "SELECT tracker_output.tracker_id |
|
1433 | + $query = "SELECT tracker_output.tracker_id |
|
1434 | 1434 | FROM tracker_output |
1435 | 1435 | WHERE tracker_output.famtrackid = '".$famtrackid."'"; |
1436 | 1436 | |
@@ -1438,7 +1438,7 @@ discard block |
||
1438 | 1438 | $sth = $this->db->prepare($query); |
1439 | 1439 | $sth->execute(); |
1440 | 1440 | |
1441 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1441 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1442 | 1442 | { |
1443 | 1443 | return $row['tracker_id']; |
1444 | 1444 | } |
@@ -1463,23 +1463,23 @@ discard block |
||
1463 | 1463 | } |
1464 | 1464 | |
1465 | 1465 | $current_date = date("Y-m-d H:i:s"); |
1466 | - $date = date("Y-m-d H:i:s",strtotime($dateString." UTC")); |
|
1466 | + $date = date("Y-m-d H:i:s", strtotime($dateString." UTC")); |
|
1467 | 1467 | |
1468 | 1468 | $diff = abs(strtotime($current_date) - strtotime($date)); |
1469 | 1469 | |
1470 | - $time_array['years'] = floor($diff / (365*60*60*24)); |
|
1470 | + $time_array['years'] = floor($diff/(365*60*60*24)); |
|
1471 | 1471 | $years = $time_array['years']; |
1472 | 1472 | |
1473 | - $time_array['months'] = floor(($diff - $years * 365*60*60*24) / (30*60*60*24)); |
|
1473 | + $time_array['months'] = floor(($diff - $years*365*60*60*24)/(30*60*60*24)); |
|
1474 | 1474 | $months = $time_array['months']; |
1475 | 1475 | |
1476 | - $time_array['days'] = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24)/ (60*60*24)); |
|
1476 | + $time_array['days'] = floor(($diff - $years*365*60*60*24 - $months*30*60*60*24)/(60*60*24)); |
|
1477 | 1477 | $days = $time_array['days']; |
1478 | - $time_array['hours'] = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24)/ (60*60)); |
|
1478 | + $time_array['hours'] = floor(($diff - $years*365*60*60*24 - $months*30*60*60*24 - $days*60*60*24)/(60*60)); |
|
1479 | 1479 | $hours = $time_array['hours']; |
1480 | - $time_array['minutes'] = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60)/ 60); |
|
1480 | + $time_array['minutes'] = floor(($diff - $years*365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60)/60); |
|
1481 | 1481 | $minutes = $time_array['minutes']; |
1482 | - $time_array['seconds'] = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60 - $minutes*60)); |
|
1482 | + $time_array['seconds'] = floor(($diff - $years*365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60 - $minutes*60)); |
|
1483 | 1483 | |
1484 | 1484 | return $time_array; |
1485 | 1485 | } |
@@ -1502,63 +1502,63 @@ discard block |
||
1502 | 1502 | $temp_array['direction_degree'] = $direction; |
1503 | 1503 | $temp_array['direction_shortname'] = "N"; |
1504 | 1504 | $temp_array['direction_fullname'] = "North"; |
1505 | - } elseif ($direction >= 22.5 && $direction < 45){ |
|
1505 | + } elseif ($direction >= 22.5 && $direction < 45) { |
|
1506 | 1506 | $temp_array['direction_degree'] = $direction; |
1507 | 1507 | $temp_array['direction_shortname'] = "NNE"; |
1508 | 1508 | $temp_array['direction_fullname'] = "North-Northeast"; |
1509 | - } elseif ($direction >= 45 && $direction < 67.5){ |
|
1509 | + } elseif ($direction >= 45 && $direction < 67.5) { |
|
1510 | 1510 | $temp_array['direction_degree'] = $direction; |
1511 | 1511 | $temp_array['direction_shortname'] = "NE"; |
1512 | 1512 | $temp_array['direction_fullname'] = "Northeast"; |
1513 | - } elseif ($direction >= 67.5 && $direction < 90){ |
|
1513 | + } elseif ($direction >= 67.5 && $direction < 90) { |
|
1514 | 1514 | $temp_array['direction_degree'] = $direction; |
1515 | 1515 | $temp_array['direction_shortname'] = "ENE"; |
1516 | 1516 | $temp_array['direction_fullname'] = "East-Northeast"; |
1517 | - } elseif ($direction >= 90 && $direction < 112.5){ |
|
1517 | + } elseif ($direction >= 90 && $direction < 112.5) { |
|
1518 | 1518 | $temp_array['direction_degree'] = $direction; |
1519 | 1519 | $temp_array['direction_shortname'] = "E"; |
1520 | 1520 | $temp_array['direction_fullname'] = "East"; |
1521 | - } elseif ($direction >= 112.5 && $direction < 135){ |
|
1521 | + } elseif ($direction >= 112.5 && $direction < 135) { |
|
1522 | 1522 | $temp_array['direction_degree'] = $direction; |
1523 | 1523 | $temp_array['direction_shortname'] = "ESE"; |
1524 | 1524 | $temp_array['direction_fullname'] = "East-Southeast"; |
1525 | - } elseif ($direction >= 135 && $direction < 157.5){ |
|
1525 | + } elseif ($direction >= 135 && $direction < 157.5) { |
|
1526 | 1526 | $temp_array['direction_degree'] = $direction; |
1527 | 1527 | $temp_array['direction_shortname'] = "SE"; |
1528 | 1528 | $temp_array['direction_fullname'] = "Southeast"; |
1529 | - } elseif ($direction >= 157.5 && $direction < 180){ |
|
1529 | + } elseif ($direction >= 157.5 && $direction < 180) { |
|
1530 | 1530 | $temp_array['direction_degree'] = $direction; |
1531 | 1531 | $temp_array['direction_shortname'] = "SSE"; |
1532 | 1532 | $temp_array['direction_fullname'] = "South-Southeast"; |
1533 | - } elseif ($direction >= 180 && $direction < 202.5){ |
|
1533 | + } elseif ($direction >= 180 && $direction < 202.5) { |
|
1534 | 1534 | $temp_array['direction_degree'] = $direction; |
1535 | 1535 | $temp_array['direction_shortname'] = "S"; |
1536 | 1536 | $temp_array['direction_fullname'] = "South"; |
1537 | - } elseif ($direction >= 202.5 && $direction < 225){ |
|
1537 | + } elseif ($direction >= 202.5 && $direction < 225) { |
|
1538 | 1538 | $temp_array['direction_degree'] = $direction; |
1539 | 1539 | $temp_array['direction_shortname'] = "SSW"; |
1540 | 1540 | $temp_array['direction_fullname'] = "South-Southwest"; |
1541 | - } elseif ($direction >= 225 && $direction < 247.5){ |
|
1541 | + } elseif ($direction >= 225 && $direction < 247.5) { |
|
1542 | 1542 | $temp_array['direction_degree'] = $direction; |
1543 | 1543 | $temp_array['direction_shortname'] = "SW"; |
1544 | 1544 | $temp_array['direction_fullname'] = "Southwest"; |
1545 | - } elseif ($direction >= 247.5 && $direction < 270){ |
|
1545 | + } elseif ($direction >= 247.5 && $direction < 270) { |
|
1546 | 1546 | $temp_array['direction_degree'] = $direction; |
1547 | 1547 | $temp_array['direction_shortname'] = "WSW"; |
1548 | 1548 | $temp_array['direction_fullname'] = "West-Southwest"; |
1549 | - } elseif ($direction >= 270 && $direction < 292.5){ |
|
1549 | + } elseif ($direction >= 270 && $direction < 292.5) { |
|
1550 | 1550 | $temp_array['direction_degree'] = $direction; |
1551 | 1551 | $temp_array['direction_shortname'] = "W"; |
1552 | 1552 | $temp_array['direction_fullname'] = "West"; |
1553 | - } elseif ($direction >= 292.5 && $direction < 315){ |
|
1553 | + } elseif ($direction >= 292.5 && $direction < 315) { |
|
1554 | 1554 | $temp_array['direction_degree'] = $direction; |
1555 | 1555 | $temp_array['direction_shortname'] = "WNW"; |
1556 | 1556 | $temp_array['direction_fullname'] = "West-Northwest"; |
1557 | - } elseif ($direction >= 315 && $direction < 337.5){ |
|
1557 | + } elseif ($direction >= 315 && $direction < 337.5) { |
|
1558 | 1558 | $temp_array['direction_degree'] = $direction; |
1559 | 1559 | $temp_array['direction_shortname'] = "NW"; |
1560 | 1560 | $temp_array['direction_fullname'] = "Northwest"; |
1561 | - } elseif ($direction >= 337.5 && $direction < 360){ |
|
1561 | + } elseif ($direction >= 337.5 && $direction < 360) { |
|
1562 | 1562 | $temp_array['direction_degree'] = $direction; |
1563 | 1563 | $temp_array['direction_shortname'] = "NNW"; |
1564 | 1564 | $temp_array['direction_fullname'] = "North-Northwest"; |
@@ -1575,11 +1575,11 @@ discard block |
||
1575 | 1575 | * @param Float $longitude longitute of the flight |
1576 | 1576 | * @return String the countrie |
1577 | 1577 | */ |
1578 | - public function getCountryFromLatitudeLongitude($latitude,$longitude) |
|
1578 | + public function getCountryFromLatitudeLongitude($latitude, $longitude) |
|
1579 | 1579 | { |
1580 | 1580 | global $globalDBdriver, $globalDebug; |
1581 | - $latitude = filter_var($latitude,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
1582 | - $longitude = filter_var($longitude,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
1581 | + $latitude = filter_var($latitude, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
1582 | + $longitude = filter_var($longitude, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
1583 | 1583 | |
1584 | 1584 | $Connection = new Connection($this->db); |
1585 | 1585 | if (!$Connection->tableExists('countries')) return ''; |
@@ -1619,7 +1619,7 @@ discard block |
||
1619 | 1619 | public function getCountryFromISO2($iso2) |
1620 | 1620 | { |
1621 | 1621 | global $globalDBdriver, $globalDebug; |
1622 | - $iso2 = filter_var($iso2,FILTER_SANITIZE_STRING); |
|
1622 | + $iso2 = filter_var($iso2, FILTER_SANITIZE_STRING); |
|
1623 | 1623 | |
1624 | 1624 | $Connection = new Connection($this->db); |
1625 | 1625 | if (!$Connection->tableExists('countries')) return ''; |
@@ -1648,11 +1648,11 @@ discard block |
||
1648 | 1648 | * @return Array the vessel type list |
1649 | 1649 | * |
1650 | 1650 | */ |
1651 | - public function countAllTrackerTypes($limit = true,$olderthanmonths = 0,$sincedate = '',$filters = array(),$year = '',$month = '',$day = '') |
|
1651 | + public function countAllTrackerTypes($limit = true, $olderthanmonths = 0, $sincedate = '', $filters = array(), $year = '', $month = '', $day = '') |
|
1652 | 1652 | { |
1653 | 1653 | global $globalDBdriver; |
1654 | - $filter_query = $this->getFilter($filters,true,true); |
|
1655 | - $query = "SELECT tracker_output.type AS tracker_type, COUNT(tracker_output.type) AS tracker_type_count |
|
1654 | + $filter_query = $this->getFilter($filters, true, true); |
|
1655 | + $query = "SELECT tracker_output.type AS tracker_type, COUNT(tracker_output.type) AS tracker_type_count |
|
1656 | 1656 | FROM tracker_output ".$filter_query." tracker_output.type <> ''"; |
1657 | 1657 | if ($olderthanmonths > 0) { |
1658 | 1658 | if ($globalDBdriver == 'mysql') { |
@@ -1672,28 +1672,28 @@ discard block |
||
1672 | 1672 | if ($year != '') { |
1673 | 1673 | if ($globalDBdriver == 'mysql') { |
1674 | 1674 | $query .= " AND YEAR(tracker_output.date) = :year"; |
1675 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1675 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1676 | 1676 | } else { |
1677 | 1677 | $query .= " AND EXTRACT(YEAR FROM tracker_output.date) = :year"; |
1678 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1678 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1679 | 1679 | } |
1680 | 1680 | } |
1681 | 1681 | if ($month != '') { |
1682 | 1682 | if ($globalDBdriver == 'mysql') { |
1683 | 1683 | $query .= " AND MONTH(tracker_output.date) = :month"; |
1684 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1684 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1685 | 1685 | } else { |
1686 | 1686 | $query .= " AND EXTRACT(MONTH FROM tracker_output.date) = :month"; |
1687 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1687 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1688 | 1688 | } |
1689 | 1689 | } |
1690 | 1690 | if ($day != '') { |
1691 | 1691 | if ($globalDBdriver == 'mysql') { |
1692 | 1692 | $query .= " AND DAY(tracker_output.date) = :day"; |
1693 | - $query_values = array_merge($query_values,array(':day' => $day)); |
|
1693 | + $query_values = array_merge($query_values, array(':day' => $day)); |
|
1694 | 1694 | } else { |
1695 | 1695 | $query .= " AND EXTRACT(DAY FROM tracker_output.date) = :day"; |
1696 | - $query_values = array_merge($query_values,array(':day' => $day)); |
|
1696 | + $query_values = array_merge($query_values, array(':day' => $day)); |
|
1697 | 1697 | } |
1698 | 1698 | } |
1699 | 1699 | $query .= " GROUP BY tracker_output.type ORDER BY tracker_type_count DESC"; |
@@ -1702,7 +1702,7 @@ discard block |
||
1702 | 1702 | $sth->execute($query_values); |
1703 | 1703 | $tracker_array = array(); |
1704 | 1704 | $temp_array = array(); |
1705 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1705 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1706 | 1706 | { |
1707 | 1707 | $temp_array['tracker_type'] = $row['tracker_type']; |
1708 | 1708 | $temp_array['tracker_type_count'] = $row['tracker_type_count']; |
@@ -1737,7 +1737,7 @@ discard block |
||
1737 | 1737 | |
1738 | 1738 | $bitly_data = json_decode($bitly_data); |
1739 | 1739 | $bitly_url = ''; |
1740 | - if ($bitly_data->status_txt = "OK"){ |
|
1740 | + if ($bitly_data->status_txt = "OK") { |
|
1741 | 1741 | $bitly_url = $bitly_data->data->url; |
1742 | 1742 | } |
1743 | 1743 | |
@@ -1747,7 +1747,7 @@ discard block |
||
1747 | 1747 | |
1748 | 1748 | public function getOrderBy() |
1749 | 1749 | { |
1750 | - $orderby = array("aircraft_asc" => array("key" => "aircraft_asc", "value" => "Aircraft Type - ASC", "sql" => "ORDER BY tracker_output.aircraft_icao ASC"), "aircraft_desc" => array("key" => "aircraft_desc", "value" => "Aircraft Type - DESC", "sql" => "ORDER BY tracker_output.aircraft_icao DESC"),"manufacturer_asc" => array("key" => "manufacturer_asc", "value" => "Aircraft Manufacturer - ASC", "sql" => "ORDER BY tracker_output.aircraft_manufacturer ASC"), "manufacturer_desc" => array("key" => "manufacturer_desc", "value" => "Aircraft Manufacturer - DESC", "sql" => "ORDER BY tracker_output.aircraft_manufacturer DESC"),"airline_name_asc" => array("key" => "airline_name_asc", "value" => "Airline Name - ASC", "sql" => "ORDER BY tracker_output.airline_name ASC"), "airline_name_desc" => array("key" => "airline_name_desc", "value" => "Airline Name - DESC", "sql" => "ORDER BY tracker_output.airline_name DESC"), "ident_asc" => array("key" => "ident_asc", "value" => "Ident - ASC", "sql" => "ORDER BY tracker_output.ident ASC"), "ident_desc" => array("key" => "ident_desc", "value" => "Ident - DESC", "sql" => "ORDER BY tracker_output.ident DESC"), "airport_departure_asc" => array("key" => "airport_departure_asc", "value" => "Departure Airport - ASC", "sql" => "ORDER BY tracker_output.departure_airport_city ASC"), "airport_departure_desc" => array("key" => "airport_departure_desc", "value" => "Departure Airport - DESC", "sql" => "ORDER BY tracker_output.departure_airport_city DESC"), "airport_arrival_asc" => array("key" => "airport_arrival_asc", "value" => "Arrival Airport - ASC", "sql" => "ORDER BY tracker_output.arrival_airport_city ASC"), "airport_arrival_desc" => array("key" => "airport_arrival_desc", "value" => "Arrival Airport - DESC", "sql" => "ORDER BY tracker_output.arrival_airport_city DESC"), "date_asc" => array("key" => "date_asc", "value" => "Date - ASC", "sql" => "ORDER BY tracker_output.date ASC"), "date_desc" => array("key" => "date_desc", "value" => "Date - DESC", "sql" => "ORDER BY tracker_output.date DESC"),"distance_asc" => array("key" => "distance_asc","value" => "Distance - ASC","sql" => "ORDER BY distance ASC"),"distance_desc" => array("key" => "distance_desc","value" => "Distance - DESC","sql" => "ORDER BY distance DESC")); |
|
1750 | + $orderby = array("aircraft_asc" => array("key" => "aircraft_asc", "value" => "Aircraft Type - ASC", "sql" => "ORDER BY tracker_output.aircraft_icao ASC"), "aircraft_desc" => array("key" => "aircraft_desc", "value" => "Aircraft Type - DESC", "sql" => "ORDER BY tracker_output.aircraft_icao DESC"), "manufacturer_asc" => array("key" => "manufacturer_asc", "value" => "Aircraft Manufacturer - ASC", "sql" => "ORDER BY tracker_output.aircraft_manufacturer ASC"), "manufacturer_desc" => array("key" => "manufacturer_desc", "value" => "Aircraft Manufacturer - DESC", "sql" => "ORDER BY tracker_output.aircraft_manufacturer DESC"), "airline_name_asc" => array("key" => "airline_name_asc", "value" => "Airline Name - ASC", "sql" => "ORDER BY tracker_output.airline_name ASC"), "airline_name_desc" => array("key" => "airline_name_desc", "value" => "Airline Name - DESC", "sql" => "ORDER BY tracker_output.airline_name DESC"), "ident_asc" => array("key" => "ident_asc", "value" => "Ident - ASC", "sql" => "ORDER BY tracker_output.ident ASC"), "ident_desc" => array("key" => "ident_desc", "value" => "Ident - DESC", "sql" => "ORDER BY tracker_output.ident DESC"), "airport_departure_asc" => array("key" => "airport_departure_asc", "value" => "Departure Airport - ASC", "sql" => "ORDER BY tracker_output.departure_airport_city ASC"), "airport_departure_desc" => array("key" => "airport_departure_desc", "value" => "Departure Airport - DESC", "sql" => "ORDER BY tracker_output.departure_airport_city DESC"), "airport_arrival_asc" => array("key" => "airport_arrival_asc", "value" => "Arrival Airport - ASC", "sql" => "ORDER BY tracker_output.arrival_airport_city ASC"), "airport_arrival_desc" => array("key" => "airport_arrival_desc", "value" => "Arrival Airport - DESC", "sql" => "ORDER BY tracker_output.arrival_airport_city DESC"), "date_asc" => array("key" => "date_asc", "value" => "Date - ASC", "sql" => "ORDER BY tracker_output.date ASC"), "date_desc" => array("key" => "date_desc", "value" => "Date - DESC", "sql" => "ORDER BY tracker_output.date DESC"), "distance_asc" => array("key" => "distance_asc", "value" => "Distance - ASC", "sql" => "ORDER BY distance ASC"), "distance_desc" => array("key" => "distance_desc", "value" => "Distance - DESC", "sql" => "ORDER BY distance DESC")); |
|
1751 | 1751 | |
1752 | 1752 | return $orderby; |
1753 | 1753 |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | require_once(dirname(__FILE__).'/class.Image.php'); |
3 | 3 | $global_query = "SELECT marine_output.* FROM marine_output"; |
4 | 4 | |
5 | -class Marine{ |
|
5 | +class Marine { |
|
6 | 6 | public $db; |
7 | 7 | |
8 | 8 | public function __construct($dbc = null) { |
@@ -16,33 +16,33 @@ discard block |
||
16 | 16 | * @return Array the SQL part |
17 | 17 | */ |
18 | 18 | |
19 | - public function getFilter($filter = array(),$where = false,$and = false) { |
|
19 | + public function getFilter($filter = array(), $where = false, $and = false) { |
|
20 | 20 | global $globalFilter, $globalStatsFilters, $globalFilterName, $globalDBdriver; |
21 | 21 | $filters = array(); |
22 | 22 | if (is_array($globalStatsFilters) && isset($globalStatsFilters[$globalFilterName])) { |
23 | 23 | if (isset($globalStatsFilters[$globalFilterName][0]['source'])) { |
24 | 24 | $filters = $globalStatsFilters[$globalFilterName]; |
25 | 25 | } else { |
26 | - $filter = array_merge($filter,$globalStatsFilters[$globalFilterName]); |
|
26 | + $filter = array_merge($filter, $globalStatsFilters[$globalFilterName]); |
|
27 | 27 | } |
28 | 28 | } |
29 | 29 | if (isset($filter[0]['source'])) { |
30 | - $filters = array_merge($filters,$filter); |
|
30 | + $filters = array_merge($filters, $filter); |
|
31 | 31 | } |
32 | - if (is_array($globalFilter)) $filter = array_merge($filter,$globalFilter); |
|
32 | + if (is_array($globalFilter)) $filter = array_merge($filter, $globalFilter); |
|
33 | 33 | $filter_query_join = ''; |
34 | 34 | $filter_query_where = ''; |
35 | - foreach($filters as $flt) { |
|
35 | + foreach ($filters as $flt) { |
|
36 | 36 | if (isset($flt['idents']) && !empty($flt['idents'])) { |
37 | 37 | if (isset($flt['source'])) { |
38 | - $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_output WHERE marine_output.ident IN ('".implode("','",$flt['idents'])."') AND spotter_output.format_source IN ('".implode("','",$flt['source'])."')) spfi ON spfi.fammarine_id = marine_output.fammarine_id"; |
|
38 | + $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_output WHERE marine_output.ident IN ('".implode("','", $flt['idents'])."') AND spotter_output.format_source IN ('".implode("','", $flt['source'])."')) spfi ON spfi.fammarine_id = marine_output.fammarine_id"; |
|
39 | 39 | } else { |
40 | - $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_output WHERE marine_output.ident IN ('".implode("','",$flt['idents'])."')) spfi ON spfi.fammarine_id = marine_output.fammarine_id"; |
|
40 | + $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_output WHERE marine_output.ident IN ('".implode("','", $flt['idents'])."')) spfi ON spfi.fammarine_id = marine_output.fammarine_id"; |
|
41 | 41 | } |
42 | 42 | } |
43 | 43 | } |
44 | 44 | if (isset($filter['source']) && !empty($filter['source'])) { |
45 | - $filter_query_where .= " AND format_source IN ('".implode("','",$filter['source'])."')"; |
|
45 | + $filter_query_where .= " AND format_source IN ('".implode("','", $filter['source'])."')"; |
|
46 | 46 | } |
47 | 47 | if (isset($filter['ident']) && !empty($filter['ident'])) { |
48 | 48 | $filter_query_where .= " AND ident = '".$filter['ident']."'"; |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE'; |
72 | 72 | elseif ($filter_query_where != '' && $and) $filter_query_where .= ' AND'; |
73 | 73 | if ($filter_query_where != '') { |
74 | - $filter_query_where = preg_replace('/^ AND/',' WHERE',$filter_query_where); |
|
74 | + $filter_query_where = preg_replace('/^ AND/', ' WHERE', $filter_query_where); |
|
75 | 75 | } |
76 | 76 | $filter_query = $filter_query_join.$filter_query_where; |
77 | 77 | return $filter_query; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | * @return Array the spotter information |
87 | 87 | * |
88 | 88 | */ |
89 | - public function getDataFromDB($query, $params = array(), $limitQuery = '',$schedules = false) |
|
89 | + public function getDataFromDB($query, $params = array(), $limitQuery = '', $schedules = false) |
|
90 | 90 | { |
91 | 91 | date_default_timezone_set('UTC'); |
92 | 92 | if (!is_string($query)) |
@@ -106,13 +106,13 @@ discard block |
||
106 | 106 | $sth = $this->db->prepare($query.$limitQuery); |
107 | 107 | $sth->execute($params); |
108 | 108 | } catch (PDOException $e) { |
109 | - printf("Invalid query : %s\nWhole query: %s\n",$e->getMessage(), $query.$limitQuery); |
|
109 | + printf("Invalid query : %s\nWhole query: %s\n", $e->getMessage(), $query.$limitQuery); |
|
110 | 110 | exit(); |
111 | 111 | } |
112 | 112 | |
113 | 113 | $num_rows = 0; |
114 | 114 | $spotter_array = array(); |
115 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
115 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
116 | 116 | { |
117 | 117 | $num_rows++; |
118 | 118 | $temp_array = array(); |
@@ -144,10 +144,10 @@ discard block |
||
144 | 144 | } |
145 | 145 | if (isset($row['ground_speed'])) $temp_array['ground_speed'] = $row['ground_speed']; |
146 | 146 | |
147 | - if($temp_array['mmsi'] != "") |
|
147 | + if ($temp_array['mmsi'] != "") |
|
148 | 148 | { |
149 | 149 | $Image = new Image($this->db); |
150 | - if (isset($temp_array['ident']) && $temp_array['ident'] != '') $image_array = $Image->getMarineImage($temp_array['mmsi'],'',$temp_array['ident']); |
|
150 | + if (isset($temp_array['ident']) && $temp_array['ident'] != '') $image_array = $Image->getMarineImage($temp_array['mmsi'], '', $temp_array['ident']); |
|
151 | 151 | else $image_array = $Image->getMarineImage($temp_array['mmsi']); |
152 | 152 | unset($Image); |
153 | 153 | if (count($image_array) > 0) { |
@@ -183,17 +183,17 @@ discard block |
||
183 | 183 | { |
184 | 184 | $temp_array['date'] = "about ".$dateArray['hours']." hours ago"; |
185 | 185 | } else { |
186 | - $temp_array['date'] = date("M j Y, g:i a",strtotime($row['date']." UTC")); |
|
186 | + $temp_array['date'] = date("M j Y, g:i a", strtotime($row['date']." UTC")); |
|
187 | 187 | } |
188 | 188 | $temp_array['date_minutes_past'] = $dateArray['minutes']; |
189 | - $temp_array['date_iso_8601'] = date("c",strtotime($row['date']." UTC")); |
|
190 | - $temp_array['date_rfc_2822'] = date("r",strtotime($row['date']." UTC")); |
|
189 | + $temp_array['date_iso_8601'] = date("c", strtotime($row['date']." UTC")); |
|
190 | + $temp_array['date_rfc_2822'] = date("r", strtotime($row['date']." UTC")); |
|
191 | 191 | $temp_array['date_unix'] = strtotime($row['date']." UTC"); |
192 | 192 | if (isset($row['last_seen']) && $row['last_seen'] != '') { |
193 | 193 | if (strtotime($row['last_seen']) > strtotime($row['date'])) { |
194 | 194 | $temp_array['duration'] = strtotime($row['last_seen']) - strtotime($row['date']); |
195 | - $temp_array['last_seen_date_iso_8601'] = date("c",strtotime($row['last_seen']." UTC")); |
|
196 | - $temp_array['last_seen_date_rfc_2822'] = date("r",strtotime($row['last_seen']." UTC")); |
|
195 | + $temp_array['last_seen_date_iso_8601'] = date("c", strtotime($row['last_seen']." UTC")); |
|
196 | + $temp_array['last_seen_date_rfc_2822'] = date("r", strtotime($row['last_seen']." UTC")); |
|
197 | 197 | $temp_array['last_seen_date_unix'] = strtotime($row['last_seen']." UTC"); |
198 | 198 | } |
199 | 199 | } |
@@ -226,8 +226,8 @@ discard block |
||
226 | 226 | if ($limit != "") |
227 | 227 | { |
228 | 228 | $limit_array = explode(",", $limit); |
229 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
230 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
229 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
230 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
231 | 231 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
232 | 232 | { |
233 | 233 | //$limit_query = " LIMIT ".$limit_array[0].",".$limit_array[1]; |
@@ -241,8 +241,8 @@ discard block |
||
241 | 241 | } else { |
242 | 242 | $orderby_query = " ORDER BY marine_output.date DESC"; |
243 | 243 | } |
244 | - $query = $global_query.$filter_query." ".$orderby_query; |
|
245 | - $spotter_array = $this->getDataFromDB($query, array(),$limit_query,true); |
|
244 | + $query = $global_query.$filter_query." ".$orderby_query; |
|
245 | + $spotter_array = $this->getDataFromDB($query, array(), $limit_query, true); |
|
246 | 246 | return $spotter_array; |
247 | 247 | } |
248 | 248 | |
@@ -260,8 +260,8 @@ discard block |
||
260 | 260 | if ($id == '') return array(); |
261 | 261 | $additional_query = "marine_output.fammarine_id = :id"; |
262 | 262 | $query_values = array(':id' => $id); |
263 | - $query = $global_query." WHERE ".$additional_query." "; |
|
264 | - $spotter_array = $this->getDataFromDB($query,$query_values); |
|
263 | + $query = $global_query." WHERE ".$additional_query." "; |
|
264 | + $spotter_array = $this->getDataFromDB($query, $query_values); |
|
265 | 265 | return $spotter_array; |
266 | 266 | } |
267 | 267 | |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | $query_values = array(); |
281 | 281 | $limit_query = ''; |
282 | 282 | $additional_query = ''; |
283 | - $filter_query = $this->getFilter($filter,true,true); |
|
283 | + $filter_query = $this->getFilter($filter, true, true); |
|
284 | 284 | if ($ident != "") |
285 | 285 | { |
286 | 286 | if (!is_string($ident)) |
@@ -296,8 +296,8 @@ discard block |
||
296 | 296 | { |
297 | 297 | $limit_array = explode(",", $limit); |
298 | 298 | |
299 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
300 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
299 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
300 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
301 | 301 | |
302 | 302 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
303 | 303 | { |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | return $spotter_array; |
322 | 322 | } |
323 | 323 | |
324 | - public function getMarineDataByDate($date = '', $limit = '', $sort = '',$filter = array()) |
|
324 | + public function getMarineDataByDate($date = '', $limit = '', $sort = '', $filter = array()) |
|
325 | 325 | { |
326 | 326 | global $global_query, $globalTimezone, $globalDBdriver; |
327 | 327 | |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | $limit_query = ''; |
330 | 330 | $additional_query = ''; |
331 | 331 | |
332 | - $filter_query = $this->getFilter($filter,true,true); |
|
332 | + $filter_query = $this->getFilter($filter, true, true); |
|
333 | 333 | |
334 | 334 | if ($date != "") |
335 | 335 | { |
@@ -355,8 +355,8 @@ discard block |
||
355 | 355 | { |
356 | 356 | $limit_array = explode(",", $limit); |
357 | 357 | |
358 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
359 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
358 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
359 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
360 | 360 | |
361 | 361 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
362 | 362 | { |
@@ -387,11 +387,11 @@ discard block |
||
387 | 387 | * @return Array list of source name |
388 | 388 | * |
389 | 389 | */ |
390 | - public function getAllSourceName($type = '',$filters = array()) |
|
390 | + public function getAllSourceName($type = '', $filters = array()) |
|
391 | 391 | { |
392 | - $filter_query = $this->getFilter($filters,true,true); |
|
392 | + $filter_query = $this->getFilter($filters, true, true); |
|
393 | 393 | $query_values = array(); |
394 | - $query = "SELECT DISTINCT marine_output.source_name |
|
394 | + $query = "SELECT DISTINCT marine_output.source_name |
|
395 | 395 | FROM marine_output".$filter_query." marine_output.source_name <> ''"; |
396 | 396 | if ($type != '') { |
397 | 397 | $query_values = array(':type' => $type); |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | $source_array = array(); |
407 | 407 | $temp_array = array(); |
408 | 408 | |
409 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
409 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
410 | 410 | { |
411 | 411 | $temp_array['source_name'] = $row['source_name']; |
412 | 412 | $source_array[] = $temp_array; |
@@ -423,8 +423,8 @@ discard block |
||
423 | 423 | */ |
424 | 424 | public function getAllIdents($filters = array()) |
425 | 425 | { |
426 | - $filter_query = $this->getFilter($filters,true,true); |
|
427 | - $query = "SELECT DISTINCT marine_output.ident |
|
426 | + $filter_query = $this->getFilter($filters, true, true); |
|
427 | + $query = "SELECT DISTINCT marine_output.ident |
|
428 | 428 | FROM marine_output".$filter_query." marine_output.ident <> '' |
429 | 429 | ORDER BY marine_output.date ASC LIMIT 700 OFFSET 0"; |
430 | 430 | |
@@ -434,7 +434,7 @@ discard block |
||
434 | 434 | $ident_array = array(); |
435 | 435 | $temp_array = array(); |
436 | 436 | |
437 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
437 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
438 | 438 | { |
439 | 439 | $temp_array['ident'] = $row['ident']; |
440 | 440 | $ident_array[] = $temp_array; |
@@ -451,7 +451,7 @@ discard block |
||
451 | 451 | */ |
452 | 452 | public function getIdentity($mmsi) |
453 | 453 | { |
454 | - $mmsi = filter_var($mmsi,FILTER_SANITIZE_NUMBER_INT); |
|
454 | + $mmsi = filter_var($mmsi, FILTER_SANITIZE_NUMBER_INT); |
|
455 | 455 | $query = "SELECT * FROM marine_identity WHERE mmsi = :mmsi LIMIT 1"; |
456 | 456 | $sth = $this->db->prepare($query); |
457 | 457 | $sth->execute(array(':mmsi' => $mmsi)); |
@@ -476,12 +476,12 @@ discard block |
||
476 | 476 | } else $offset = '+00:00'; |
477 | 477 | |
478 | 478 | if ($globalDBdriver == 'mysql') { |
479 | - $query = "SELECT DISTINCT DATE(CONVERT_TZ(marine_output.date,'+00:00', :offset)) as date |
|
479 | + $query = "SELECT DISTINCT DATE(CONVERT_TZ(marine_output.date,'+00:00', :offset)) as date |
|
480 | 480 | FROM marine_output |
481 | 481 | WHERE marine_output.date <> '' |
482 | 482 | ORDER BY marine_output.date ASC LIMIT 0,200"; |
483 | 483 | } else { |
484 | - $query = "SELECT DISTINCT to_char(marine_output.date AT TIME ZONE INTERVAL :offset,'YYYY-mm-dd') as date |
|
484 | + $query = "SELECT DISTINCT to_char(marine_output.date AT TIME ZONE INTERVAL :offset,'YYYY-mm-dd') as date |
|
485 | 485 | FROM marine_output |
486 | 486 | WHERE marine_output.date <> '' |
487 | 487 | ORDER BY marine_output.date ASC LIMIT 0,200"; |
@@ -493,7 +493,7 @@ discard block |
||
493 | 493 | $date_array = array(); |
494 | 494 | $temp_array = array(); |
495 | 495 | |
496 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
496 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
497 | 497 | { |
498 | 498 | $temp_array['date'] = $row['date']; |
499 | 499 | |
@@ -512,11 +512,11 @@ discard block |
||
512 | 512 | * @return String success or false |
513 | 513 | * |
514 | 514 | */ |
515 | - public function updateIdentMarineData($fammarine_id = '', $ident = '',$fromsource = NULL) |
|
515 | + public function updateIdentMarineData($fammarine_id = '', $ident = '', $fromsource = NULL) |
|
516 | 516 | { |
517 | 517 | |
518 | 518 | $query = 'UPDATE marine_output SET ident = :ident WHERE fammarine_id = :fammarine_id'; |
519 | - $query_values = array(':fammarine_id' => $fammarine_id,':ident' => $ident); |
|
519 | + $query_values = array(':fammarine_id' => $fammarine_id, ':ident' => $ident); |
|
520 | 520 | |
521 | 521 | try { |
522 | 522 | $sth = $this->db->prepare($query); |
@@ -538,11 +538,11 @@ discard block |
||
538 | 538 | * @return String success or false |
539 | 539 | * |
540 | 540 | */ |
541 | - public function updateStatusMarineData($fammarine_id = '', $status_id = '',$status = '') |
|
541 | + public function updateStatusMarineData($fammarine_id = '', $status_id = '', $status = '') |
|
542 | 542 | { |
543 | 543 | |
544 | 544 | $query = 'UPDATE marine_output SET status = :status, status_id = :status_id WHERE fammarine_id = :fammarine_id'; |
545 | - $query_values = array(':fammarine_id' => $fammarine_id,':status' => $status,':status_id' => $status_id); |
|
545 | + $query_values = array(':fammarine_id' => $fammarine_id, ':status' => $status, ':status_id' => $status_id); |
|
546 | 546 | |
547 | 547 | try { |
548 | 548 | $sth = $this->db->prepare($query); |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | public function updateLatestMarineData($fammarine_id = '', $ident = '', $latitude = '', $longitude = '', $groundspeed = NULL, $date = '') |
566 | 566 | { |
567 | 567 | $query = 'UPDATE marine_output SET ident = :ident, last_latitude = :last_latitude, last_longitude = :last_longitude, last_seen = :last_seen, last_ground_speed = :last_ground_speed WHERE fammarine_id = :fammarine_id'; |
568 | - $query_values = array(':fammarine_id' => $fammarine_id,':last_latitude' => $latitude,':last_longitude' => $longitude, ':last_ground_speed' => $groundspeed,':last_seen' => $date,':ident' => $ident); |
|
568 | + $query_values = array(':fammarine_id' => $fammarine_id, ':last_latitude' => $latitude, ':last_longitude' => $longitude, ':last_ground_speed' => $groundspeed, ':last_seen' => $date, ':ident' => $ident); |
|
569 | 569 | |
570 | 570 | try { |
571 | 571 | $sth = $this->db->prepare($query); |
@@ -603,7 +603,7 @@ discard block |
||
603 | 603 | * @param String $verticalrate vertival rate of flight |
604 | 604 | * @return String success or false |
605 | 605 | */ |
606 | - public function addMarineData($fammarine_id = '', $ident = '', $latitude = '', $longitude = '', $heading = '', $groundspeed = '', $date = '', $mmsi = '',$type = '',$typeid = '',$imo = '',$callsign = '',$arrival_code = '',$arrival_date = '',$status = '',$statusid = '',$format_source = '', $source_name = '') |
|
606 | + public function addMarineData($fammarine_id = '', $ident = '', $latitude = '', $longitude = '', $heading = '', $groundspeed = '', $date = '', $mmsi = '', $type = '', $typeid = '', $imo = '', $callsign = '', $arrival_code = '', $arrival_date = '', $status = '', $statusid = '', $format_source = '', $source_name = '') |
|
607 | 607 | { |
608 | 608 | global $globalURL, $globalMarineImageFetch; |
609 | 609 | |
@@ -670,31 +670,31 @@ discard block |
||
670 | 670 | } |
671 | 671 | |
672 | 672 | |
673 | - if ($date == "" || strtotime($date) < time()-20*60) |
|
673 | + if ($date == "" || strtotime($date) < time() - 20*60) |
|
674 | 674 | { |
675 | 675 | $date = date("Y-m-d H:i:s", time()); |
676 | 676 | } |
677 | 677 | |
678 | - $fammarine_id = filter_var($fammarine_id,FILTER_SANITIZE_STRING); |
|
679 | - $ident = filter_var($ident,FILTER_SANITIZE_STRING); |
|
680 | - $latitude = filter_var($latitude,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
681 | - $longitude = filter_var($longitude,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
682 | - $heading = filter_var($heading,FILTER_SANITIZE_NUMBER_INT); |
|
683 | - $groundspeed = filter_var($groundspeed,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
684 | - $format_source = filter_var($format_source,FILTER_SANITIZE_STRING); |
|
685 | - $mmsi = filter_var($mmsi,FILTER_SANITIZE_STRING); |
|
686 | - $type = filter_var($type,FILTER_SANITIZE_STRING); |
|
687 | - $status = filter_var($status,FILTER_SANITIZE_STRING); |
|
688 | - $imo = filter_var($imo,FILTER_SANITIZE_STRING); |
|
689 | - $callsign = filter_var($callsign,FILTER_SANITIZE_STRING); |
|
690 | - $arrival_code = filter_var($arrival_code,FILTER_SANITIZE_STRING); |
|
691 | - $arrival_date = filter_var($arrival_date,FILTER_SANITIZE_STRING); |
|
678 | + $fammarine_id = filter_var($fammarine_id, FILTER_SANITIZE_STRING); |
|
679 | + $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
680 | + $latitude = filter_var($latitude, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
681 | + $longitude = filter_var($longitude, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
682 | + $heading = filter_var($heading, FILTER_SANITIZE_NUMBER_INT); |
|
683 | + $groundspeed = filter_var($groundspeed, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
684 | + $format_source = filter_var($format_source, FILTER_SANITIZE_STRING); |
|
685 | + $mmsi = filter_var($mmsi, FILTER_SANITIZE_STRING); |
|
686 | + $type = filter_var($type, FILTER_SANITIZE_STRING); |
|
687 | + $status = filter_var($status, FILTER_SANITIZE_STRING); |
|
688 | + $imo = filter_var($imo, FILTER_SANITIZE_STRING); |
|
689 | + $callsign = filter_var($callsign, FILTER_SANITIZE_STRING); |
|
690 | + $arrival_code = filter_var($arrival_code, FILTER_SANITIZE_STRING); |
|
691 | + $arrival_date = filter_var($arrival_date, FILTER_SANITIZE_STRING); |
|
692 | 692 | |
693 | 693 | if (isset($globalMarineImageFetch) && $globalMarineImageFetch === TRUE) { |
694 | 694 | $Image = new Image($this->db); |
695 | - $image_array = $Image->getMarineImage($mmsi,$imo,$ident); |
|
695 | + $image_array = $Image->getMarineImage($mmsi, $imo, $ident); |
|
696 | 696 | if (!isset($image_array[0]['mmsi'])) { |
697 | - $Image->addMarineImage($mmsi,$imo,$ident); |
|
697 | + $Image->addMarineImage($mmsi, $imo, $ident); |
|
698 | 698 | } |
699 | 699 | unset($Image); |
700 | 700 | } |
@@ -706,10 +706,10 @@ discard block |
||
706 | 706 | if ($heading == '' || $Common->isInteger($heading) === false) $heading = 0; |
707 | 707 | if ($groundspeed == '' || $Common->isInteger($groundspeed) === false) $groundspeed = 0; |
708 | 708 | if ($arrival_date == '') $arrival_date = NULL; |
709 | - $query = "INSERT INTO marine_output (fammarine_id, ident, latitude, longitude, heading, ground_speed, date, format_source, source_name, mmsi, type, status,imo,arrival_port_name,arrival_port_date) |
|
709 | + $query = "INSERT INTO marine_output (fammarine_id, ident, latitude, longitude, heading, ground_speed, date, format_source, source_name, mmsi, type, status,imo,arrival_port_name,arrival_port_date) |
|
710 | 710 | VALUES (:fammarine_id,:ident,:latitude,:longitude,:heading,:speed,:date,:format_source, :source_name,:mmsi,:type,:status,:imo,:arrival_port_name,:arrival_port_date)"; |
711 | 711 | |
712 | - $query_values = array(':fammarine_id' => $fammarine_id,':ident' => $ident,':latitude' => $latitude,':longitude' => $longitude,':heading' => $heading,':speed' => $groundspeed,':date' => $date,':format_source' => $format_source, ':source_name' => $source_name,':mmsi' => $mmsi,':type' => $type,':status' => $status,':imo' => $imo,':arrival_port_name' => $arrival_code,':arrival_port_date' => $arrival_date); |
|
712 | + $query_values = array(':fammarine_id' => $fammarine_id, ':ident' => $ident, ':latitude' => $latitude, ':longitude' => $longitude, ':heading' => $heading, ':speed' => $groundspeed, ':date' => $date, ':format_source' => $format_source, ':source_name' => $source_name, ':mmsi' => $mmsi, ':type' => $type, ':status' => $status, ':imo' => $imo, ':arrival_port_name' => $arrival_code, ':arrival_port_date' => $arrival_date); |
|
713 | 713 | try { |
714 | 714 | |
715 | 715 | $sth = $this->db->prepare($query); |
@@ -734,13 +734,13 @@ discard block |
||
734 | 734 | { |
735 | 735 | global $globalDBdriver, $globalTimezone; |
736 | 736 | if ($globalDBdriver == 'mysql') { |
737 | - $query = "SELECT marine_output.ident FROM marine_output |
|
737 | + $query = "SELECT marine_output.ident FROM marine_output |
|
738 | 738 | WHERE marine_output.ident = :ident |
739 | 739 | AND marine_output.date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 1 HOUR) |
740 | 740 | AND marine_output.date < UTC_TIMESTAMP()"; |
741 | 741 | $query_data = array(':ident' => $ident); |
742 | 742 | } else { |
743 | - $query = "SELECT marine_output.ident FROM marine_output |
|
743 | + $query = "SELECT marine_output.ident FROM marine_output |
|
744 | 744 | WHERE marine_output.ident = :ident |
745 | 745 | AND marine_output.date >= now() AT TIME ZONE 'UTC' - INTERVAL '1 HOURS' |
746 | 746 | AND marine_output.date < now() AT TIME ZONE 'UTC'"; |
@@ -749,8 +749,8 @@ discard block |
||
749 | 749 | |
750 | 750 | $sth = $this->db->prepare($query); |
751 | 751 | $sth->execute($query_data); |
752 | - $ident_result=''; |
|
753 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
752 | + $ident_result = ''; |
|
753 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
754 | 754 | { |
755 | 755 | $ident_result = $row['ident']; |
756 | 756 | } |
@@ -776,8 +776,8 @@ discard block |
||
776 | 776 | return false; |
777 | 777 | } else { |
778 | 778 | $q_array = explode(" ", $q); |
779 | - foreach ($q_array as $q_item){ |
|
780 | - $q_item = filter_var($q_item,FILTER_SANITIZE_STRING); |
|
779 | + foreach ($q_array as $q_item) { |
|
780 | + $q_item = filter_var($q_item, FILTER_SANITIZE_STRING); |
|
781 | 781 | $additional_query .= " AND ("; |
782 | 782 | $additional_query .= "(marine_output.ident like '%".$q_item."%')"; |
783 | 783 | $additional_query .= ")"; |
@@ -785,11 +785,11 @@ discard block |
||
785 | 785 | } |
786 | 786 | } |
787 | 787 | if ($globalDBdriver == 'mysql') { |
788 | - $query = "SELECT marine_output.* FROM marine_output |
|
788 | + $query = "SELECT marine_output.* FROM marine_output |
|
789 | 789 | WHERE marine_output.date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 20 SECOND) ".$additional_query." |
790 | 790 | AND marine_output.date < UTC_TIMESTAMP()"; |
791 | 791 | } else { |
792 | - $query = "SELECT marine_output.* FROM marine_output |
|
792 | + $query = "SELECT marine_output.* FROM marine_output |
|
793 | 793 | WHERE marine_output.date::timestamp >= CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '20 SECONDS' ".$additional_query." |
794 | 794 | AND marine_output.date::timestamp < CURRENT_TIMESTAMP AT TIME ZONE 'UTC'"; |
795 | 795 | } |
@@ -808,16 +808,16 @@ discard block |
||
808 | 808 | * |
809 | 809 | */ |
810 | 810 | |
811 | - public function countAllMarineOverCountries($limit = true,$olderthanmonths = 0,$sincedate = '',$filters = array()) |
|
811 | + public function countAllMarineOverCountries($limit = true, $olderthanmonths = 0, $sincedate = '', $filters = array()) |
|
812 | 812 | { |
813 | 813 | global $globalDBdriver, $globalArchive; |
814 | 814 | //$filter_query = $this->getFilter($filters,true,true); |
815 | - $Connection= new Connection($this->db); |
|
815 | + $Connection = new Connection($this->db); |
|
816 | 816 | if (!$Connection->tableExists('countries')) return array(); |
817 | 817 | require_once('class.SpotterLive.php'); |
818 | 818 | if (!isset($globalArchive) || $globalArchive !== TRUE) { |
819 | 819 | $MarineLive = new MarineLive(); |
820 | - $filter_query = $MarineLive->getFilter($filters,true,true); |
|
820 | + $filter_query = $MarineLive->getFilter($filters, true, true); |
|
821 | 821 | $filter_query .= " over_country IS NOT NULL AND over_country <> ''"; |
822 | 822 | if ($olderthanmonths > 0) { |
823 | 823 | if ($globalDBdriver == 'mysql') { |
@@ -837,7 +837,7 @@ discard block |
||
837 | 837 | } else { |
838 | 838 | require_once(dirname(__FILE__)."/class.MarineArchive.php"); |
839 | 839 | $MarineArchive = new MarineArchive(); |
840 | - $filter_query = $MarineArchive->getFilter($filters,true,true); |
|
840 | + $filter_query = $MarineArchive->getFilter($filters, true, true); |
|
841 | 841 | $filter_query .= " over_country <> ''"; |
842 | 842 | if ($olderthanmonths > 0) { |
843 | 843 | if ($globalDBdriver == 'mysql') { |
@@ -865,7 +865,7 @@ discard block |
||
865 | 865 | $flight_array = array(); |
866 | 866 | $temp_array = array(); |
867 | 867 | |
868 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
868 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
869 | 869 | { |
870 | 870 | $temp_array['marine_count'] = $row['nb']; |
871 | 871 | $temp_array['marine_country'] = $row['name']; |
@@ -884,11 +884,11 @@ discard block |
||
884 | 884 | * @return Array the callsign list |
885 | 885 | * |
886 | 886 | */ |
887 | - public function countAllCallsigns($limit = true, $olderthanmonths = 0, $sincedate = '',$filters = array(),$year = '', $month = '', $day = '') |
|
887 | + public function countAllCallsigns($limit = true, $olderthanmonths = 0, $sincedate = '', $filters = array(), $year = '', $month = '', $day = '') |
|
888 | 888 | { |
889 | 889 | global $globalDBdriver; |
890 | - $filter_query = $this->getFilter($filters,true,true); |
|
891 | - $query = "SELECT DISTINCT marine_output.ident, COUNT(marine_output.ident) AS callsign_icao_count |
|
890 | + $filter_query = $this->getFilter($filters, true, true); |
|
891 | + $query = "SELECT DISTINCT marine_output.ident, COUNT(marine_output.ident) AS callsign_icao_count |
|
892 | 892 | FROM marine_output".$filter_query." marine_output.ident <> ''"; |
893 | 893 | if ($olderthanmonths > 0) { |
894 | 894 | if ($globalDBdriver == 'mysql') $query .= ' AND date < DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$olderthanmonths.' MONTH)'; |
@@ -902,28 +902,28 @@ discard block |
||
902 | 902 | if ($year != '') { |
903 | 903 | if ($globalDBdriver == 'mysql') { |
904 | 904 | $query .= " AND YEAR(marine_output.date) = :year"; |
905 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
905 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
906 | 906 | } else { |
907 | 907 | $query .= " AND EXTRACT(YEAR FROM marine_output.date) = :year"; |
908 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
908 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
909 | 909 | } |
910 | 910 | } |
911 | 911 | if ($month != '') { |
912 | 912 | if ($globalDBdriver == 'mysql') { |
913 | 913 | $query .= " AND MONTH(marine_output.date) = :month"; |
914 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
914 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
915 | 915 | } else { |
916 | 916 | $query .= " AND EXTRACT(MONTH FROM marine_output.date) = :month"; |
917 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
917 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
918 | 918 | } |
919 | 919 | } |
920 | 920 | if ($day != '') { |
921 | 921 | if ($globalDBdriver == 'mysql') { |
922 | 922 | $query .= " AND DAY(marine_output.date) = :day"; |
923 | - $query_values = array_merge($query_values,array(':day' => $day)); |
|
923 | + $query_values = array_merge($query_values, array(':day' => $day)); |
|
924 | 924 | } else { |
925 | 925 | $query .= " AND EXTRACT(DAY FROM marine_output.date) = :day"; |
926 | - $query_values = array_merge($query_values,array(':day' => $day)); |
|
926 | + $query_values = array_merge($query_values, array(':day' => $day)); |
|
927 | 927 | } |
928 | 928 | } |
929 | 929 | $query .= " GROUP BY marine_output.ident ORDER BY callsign_icao_count DESC"; |
@@ -935,7 +935,7 @@ discard block |
||
935 | 935 | $callsign_array = array(); |
936 | 936 | $temp_array = array(); |
937 | 937 | |
938 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
938 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
939 | 939 | { |
940 | 940 | $temp_array['callsign_icao'] = $row['ident']; |
941 | 941 | $temp_array['airline_name'] = $row['airline_name']; |
@@ -987,7 +987,7 @@ discard block |
||
987 | 987 | $date_array = array(); |
988 | 988 | $temp_array = array(); |
989 | 989 | |
990 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
990 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
991 | 991 | { |
992 | 992 | $temp_array['date_name'] = $row['date_name']; |
993 | 993 | $temp_array['date_count'] = $row['date_count']; |
@@ -1013,7 +1013,7 @@ discard block |
||
1013 | 1013 | $datetime = new DateTime(); |
1014 | 1014 | $offset = $datetime->format('P'); |
1015 | 1015 | } else $offset = '+00:00'; |
1016 | - $filter_query = $this->getFilter($filters,true,true); |
|
1016 | + $filter_query = $this->getFilter($filters, true, true); |
|
1017 | 1017 | if ($globalDBdriver == 'mysql') { |
1018 | 1018 | $query = "SELECT DATE(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS date_name, count(*) as date_count |
1019 | 1019 | FROM marine_output".$filter_query." marine_output.date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 7 DAY)"; |
@@ -1034,7 +1034,7 @@ discard block |
||
1034 | 1034 | $date_array = array(); |
1035 | 1035 | $temp_array = array(); |
1036 | 1036 | |
1037 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1037 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1038 | 1038 | { |
1039 | 1039 | $temp_array['date_name'] = $row['date_name']; |
1040 | 1040 | $temp_array['date_count'] = $row['date_count']; |
@@ -1059,7 +1059,7 @@ discard block |
||
1059 | 1059 | $datetime = new DateTime(); |
1060 | 1060 | $offset = $datetime->format('P'); |
1061 | 1061 | } else $offset = '+00:00'; |
1062 | - $filter_query = $this->getFilter($filters,true,true); |
|
1062 | + $filter_query = $this->getFilter($filters, true, true); |
|
1063 | 1063 | if ($globalDBdriver == 'mysql') { |
1064 | 1064 | $query = "SELECT DATE(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS date_name, count(*) as date_count |
1065 | 1065 | FROM marine_output".$filter_query." marine_output.date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 1 MONTH)"; |
@@ -1080,7 +1080,7 @@ discard block |
||
1080 | 1080 | $date_array = array(); |
1081 | 1081 | $temp_array = array(); |
1082 | 1082 | |
1083 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1083 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1084 | 1084 | { |
1085 | 1085 | $temp_array['date_name'] = $row['date_name']; |
1086 | 1086 | $temp_array['date_count'] = $row['date_count']; |
@@ -1127,7 +1127,7 @@ discard block |
||
1127 | 1127 | $date_array = array(); |
1128 | 1128 | $temp_array = array(); |
1129 | 1129 | |
1130 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1130 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1131 | 1131 | { |
1132 | 1132 | $temp_array['month_name'] = $row['month_name']; |
1133 | 1133 | $temp_array['year_name'] = $row['year_name']; |
@@ -1156,7 +1156,7 @@ discard block |
||
1156 | 1156 | $datetime = new DateTime(); |
1157 | 1157 | $offset = $datetime->format('P'); |
1158 | 1158 | } else $offset = '+00:00'; |
1159 | - $filter_query = $this->getFilter($filters,true,true); |
|
1159 | + $filter_query = $this->getFilter($filters, true, true); |
|
1160 | 1160 | if ($globalDBdriver == 'mysql') { |
1161 | 1161 | $query = "SELECT MONTH(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS month_name, YEAR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS year_name, count(*) as date_count |
1162 | 1162 | FROM marine_output".$filter_query." marine_output.date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 1 YEAR)"; |
@@ -1177,7 +1177,7 @@ discard block |
||
1177 | 1177 | $date_array = array(); |
1178 | 1178 | $temp_array = array(); |
1179 | 1179 | |
1180 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1180 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1181 | 1181 | { |
1182 | 1182 | $temp_array['year_name'] = $row['year_name']; |
1183 | 1183 | $temp_array['month_name'] = $row['month_name']; |
@@ -1197,7 +1197,7 @@ discard block |
||
1197 | 1197 | * @return Array the hour list |
1198 | 1198 | * |
1199 | 1199 | */ |
1200 | - public function countAllHours($orderby,$filters = array()) |
|
1200 | + public function countAllHours($orderby, $filters = array()) |
|
1201 | 1201 | { |
1202 | 1202 | global $globalTimezone, $globalDBdriver; |
1203 | 1203 | if ($globalTimezone != '') { |
@@ -1245,7 +1245,7 @@ discard block |
||
1245 | 1245 | $hour_array = array(); |
1246 | 1246 | $temp_array = array(); |
1247 | 1247 | |
1248 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1248 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1249 | 1249 | { |
1250 | 1250 | $temp_array['hour_name'] = $row['hour_name']; |
1251 | 1251 | $temp_array['hour_count'] = $row['hour_count']; |
@@ -1267,8 +1267,8 @@ discard block |
||
1267 | 1267 | public function countAllHoursByDate($date, $filters = array()) |
1268 | 1268 | { |
1269 | 1269 | global $globalTimezone, $globalDBdriver; |
1270 | - $filter_query = $this->getFilter($filters,true,true); |
|
1271 | - $date = filter_var($date,FILTER_SANITIZE_STRING); |
|
1270 | + $filter_query = $this->getFilter($filters, true, true); |
|
1271 | + $date = filter_var($date, FILTER_SANITIZE_STRING); |
|
1272 | 1272 | if ($globalTimezone != '') { |
1273 | 1273 | date_default_timezone_set($globalTimezone); |
1274 | 1274 | $datetime = new DateTime($date); |
@@ -1276,12 +1276,12 @@ discard block |
||
1276 | 1276 | } else $offset = '+00:00'; |
1277 | 1277 | |
1278 | 1278 | if ($globalDBdriver == 'mysql') { |
1279 | - $query = "SELECT HOUR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1279 | + $query = "SELECT HOUR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1280 | 1280 | FROM marine_output".$filter_query." DATE(CONVERT_TZ(marine_output.date,'+00:00', :offset)) = :date |
1281 | 1281 | GROUP BY hour_name |
1282 | 1282 | ORDER BY hour_name ASC"; |
1283 | 1283 | } else { |
1284 | - $query = "SELECT EXTRACT(HOUR FROM marine_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1284 | + $query = "SELECT EXTRACT(HOUR FROM marine_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1285 | 1285 | FROM marine_output".$filter_query." to_char(marine_output.date AT TIME ZONE INTERVAL :offset, 'YYYY-mm-dd') = :date |
1286 | 1286 | GROUP BY hour_name |
1287 | 1287 | ORDER BY hour_name ASC"; |
@@ -1293,7 +1293,7 @@ discard block |
||
1293 | 1293 | $hour_array = array(); |
1294 | 1294 | $temp_array = array(); |
1295 | 1295 | |
1296 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1296 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1297 | 1297 | { |
1298 | 1298 | $temp_array['hour_name'] = $row['hour_name']; |
1299 | 1299 | $temp_array['hour_count'] = $row['hour_count']; |
@@ -1315,8 +1315,8 @@ discard block |
||
1315 | 1315 | public function countAllHoursByIdent($ident, $filters = array()) |
1316 | 1316 | { |
1317 | 1317 | global $globalTimezone, $globalDBdriver; |
1318 | - $filter_query = $this->getFilter($filters,true,true); |
|
1319 | - $ident = filter_var($ident,FILTER_SANITIZE_STRING); |
|
1318 | + $filter_query = $this->getFilter($filters, true, true); |
|
1319 | + $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
1320 | 1320 | if ($globalTimezone != '') { |
1321 | 1321 | date_default_timezone_set($globalTimezone); |
1322 | 1322 | $datetime = new DateTime(); |
@@ -1324,12 +1324,12 @@ discard block |
||
1324 | 1324 | } else $offset = '+00:00'; |
1325 | 1325 | |
1326 | 1326 | if ($globalDBdriver == 'mysql') { |
1327 | - $query = "SELECT HOUR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1327 | + $query = "SELECT HOUR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1328 | 1328 | FROM marine_output".$filter_query." marine_output.ident = :ident |
1329 | 1329 | GROUP BY hour_name |
1330 | 1330 | ORDER BY hour_name ASC"; |
1331 | 1331 | } else { |
1332 | - $query = "SELECT EXTRACT(HOUR FROM marine_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1332 | + $query = "SELECT EXTRACT(HOUR FROM marine_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1333 | 1333 | FROM marine_output".$filter_query." marine_output.ident = :ident |
1334 | 1334 | GROUP BY hour_name |
1335 | 1335 | ORDER BY hour_name ASC"; |
@@ -1337,12 +1337,12 @@ discard block |
||
1337 | 1337 | |
1338 | 1338 | |
1339 | 1339 | $sth = $this->db->prepare($query); |
1340 | - $sth->execute(array(':ident' => $ident,':offset' => $offset)); |
|
1340 | + $sth->execute(array(':ident' => $ident, ':offset' => $offset)); |
|
1341 | 1341 | |
1342 | 1342 | $hour_array = array(); |
1343 | 1343 | $temp_array = array(); |
1344 | 1344 | |
1345 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1345 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1346 | 1346 | { |
1347 | 1347 | $temp_array['hour_name'] = $row['hour_name']; |
1348 | 1348 | $temp_array['hour_count'] = $row['hour_count']; |
@@ -1361,33 +1361,33 @@ discard block |
||
1361 | 1361 | * @return Integer the number of vessels |
1362 | 1362 | * |
1363 | 1363 | */ |
1364 | - public function countOverallMarine($filters = array(),$year = '',$month = '') |
|
1364 | + public function countOverallMarine($filters = array(), $year = '', $month = '') |
|
1365 | 1365 | { |
1366 | 1366 | global $globalDBdriver; |
1367 | 1367 | //$queryi = "SELECT COUNT(marine_output.marine_id) AS flight_count FROM marine_output"; |
1368 | - $queryi = "SELECT COUNT(DISTINCT marine_output.mmsi) AS flight_count FROM marine_output"; |
|
1368 | + $queryi = "SELECT COUNT(DISTINCT marine_output.mmsi) AS flight_count FROM marine_output"; |
|
1369 | 1369 | $query_values = array(); |
1370 | 1370 | $query = ''; |
1371 | 1371 | if ($year != '') { |
1372 | 1372 | if ($globalDBdriver == 'mysql') { |
1373 | 1373 | $query .= " AND YEAR(marine_output.date) = :year"; |
1374 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1374 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1375 | 1375 | } else { |
1376 | 1376 | $query .= " AND EXTRACT(YEAR FROM marine_output.date) = :year"; |
1377 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1377 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1378 | 1378 | } |
1379 | 1379 | } |
1380 | 1380 | if ($month != '') { |
1381 | 1381 | if ($globalDBdriver == 'mysql') { |
1382 | 1382 | $query .= " AND MONTH(marine_output.date) = :month"; |
1383 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1383 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1384 | 1384 | } else { |
1385 | 1385 | $query .= " AND EXTRACT(MONTH FROM marine_output.date) = :month"; |
1386 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1386 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1387 | 1387 | } |
1388 | 1388 | } |
1389 | 1389 | if (empty($query_values)) $queryi .= $this->getFilter($filters); |
1390 | - else $queryi .= $this->getFilter($filters,true,true).substr($query,4); |
|
1390 | + else $queryi .= $this->getFilter($filters, true, true).substr($query, 4); |
|
1391 | 1391 | |
1392 | 1392 | $sth = $this->db->prepare($queryi); |
1393 | 1393 | $sth->execute($query_values); |
@@ -1400,32 +1400,32 @@ discard block |
||
1400 | 1400 | * @return Integer the number of vessels |
1401 | 1401 | * |
1402 | 1402 | */ |
1403 | - public function countOverallMarineTypes($filters = array(),$year = '',$month = '') |
|
1403 | + public function countOverallMarineTypes($filters = array(), $year = '', $month = '') |
|
1404 | 1404 | { |
1405 | 1405 | global $globalDBdriver; |
1406 | - $queryi = "SELECT COUNT(DISTINCT marine_output.type) AS marine_count FROM marine_output"; |
|
1406 | + $queryi = "SELECT COUNT(DISTINCT marine_output.type) AS marine_count FROM marine_output"; |
|
1407 | 1407 | $query_values = array(); |
1408 | 1408 | $query = ''; |
1409 | 1409 | if ($year != '') { |
1410 | 1410 | if ($globalDBdriver == 'mysql') { |
1411 | 1411 | $query .= " AND YEAR(marine_output.date) = :year"; |
1412 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1412 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1413 | 1413 | } else { |
1414 | 1414 | $query .= " AND EXTRACT(YEAR FROM marine_output.date) = :year"; |
1415 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1415 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1416 | 1416 | } |
1417 | 1417 | } |
1418 | 1418 | if ($month != '') { |
1419 | 1419 | if ($globalDBdriver == 'mysql') { |
1420 | 1420 | $query .= " AND MONTH(marine_output.date) = :month"; |
1421 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1421 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1422 | 1422 | } else { |
1423 | 1423 | $query .= " AND EXTRACT(MONTH FROM marine_output.date) = :month"; |
1424 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1424 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1425 | 1425 | } |
1426 | 1426 | } |
1427 | 1427 | if (empty($query_values)) $queryi .= $this->getFilter($filters); |
1428 | - else $queryi .= $this->getFilter($filters,true,true).substr($query,4); |
|
1428 | + else $queryi .= $this->getFilter($filters, true, true).substr($query, 4); |
|
1429 | 1429 | |
1430 | 1430 | $sth = $this->db->prepare($queryi); |
1431 | 1431 | $sth->execute($query_values); |
@@ -1442,7 +1442,7 @@ discard block |
||
1442 | 1442 | public function countAllHoursFromToday($filters = array()) |
1443 | 1443 | { |
1444 | 1444 | global $globalTimezone, $globalDBdriver; |
1445 | - $filter_query = $this->getFilter($filters,true,true); |
|
1445 | + $filter_query = $this->getFilter($filters, true, true); |
|
1446 | 1446 | if ($globalTimezone != '') { |
1447 | 1447 | date_default_timezone_set($globalTimezone); |
1448 | 1448 | $datetime = new DateTime(); |
@@ -1450,12 +1450,12 @@ discard block |
||
1450 | 1450 | } else $offset = '+00:00'; |
1451 | 1451 | |
1452 | 1452 | if ($globalDBdriver == 'mysql') { |
1453 | - $query = "SELECT HOUR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1453 | + $query = "SELECT HOUR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count |
|
1454 | 1454 | FROM marine_output".$filter_query." DATE(CONVERT_TZ(marine_output.date,'+00:00', :offset)) = CURDATE() |
1455 | 1455 | GROUP BY hour_name |
1456 | 1456 | ORDER BY hour_name ASC"; |
1457 | 1457 | } else { |
1458 | - $query = "SELECT EXTRACT(HOUR FROM marine_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1458 | + $query = "SELECT EXTRACT(HOUR FROM marine_output.date AT TIME ZONE INTERVAL :offset) AS hour_name, count(*) as hour_count |
|
1459 | 1459 | FROM marine_output".$filter_query." to_char(marine_output.date AT TIME ZONE INTERVAL :offset,'YYYY-mm-dd') = CAST(NOW() AS date) |
1460 | 1460 | GROUP BY hour_name |
1461 | 1461 | ORDER BY hour_name ASC"; |
@@ -1467,7 +1467,7 @@ discard block |
||
1467 | 1467 | $hour_array = array(); |
1468 | 1468 | $temp_array = array(); |
1469 | 1469 | |
1470 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1470 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1471 | 1471 | { |
1472 | 1472 | $temp_array['hour_name'] = $row['hour_name']; |
1473 | 1473 | $temp_array['hour_count'] = $row['hour_count']; |
@@ -1486,9 +1486,9 @@ discard block |
||
1486 | 1486 | */ |
1487 | 1487 | public function getMarineIDBasedOnFamMarineID($fammarine_id) |
1488 | 1488 | { |
1489 | - $fammarine_id = filter_var($fammarine_id,FILTER_SANITIZE_STRING); |
|
1489 | + $fammarine_id = filter_var($fammarine_id, FILTER_SANITIZE_STRING); |
|
1490 | 1490 | |
1491 | - $query = "SELECT marine_output.marine_id |
|
1491 | + $query = "SELECT marine_output.marine_id |
|
1492 | 1492 | FROM marine_output |
1493 | 1493 | WHERE marine_output.fammarine_id = '".$fammarine_id."'"; |
1494 | 1494 | |
@@ -1496,7 +1496,7 @@ discard block |
||
1496 | 1496 | $sth = $this->db->prepare($query); |
1497 | 1497 | $sth->execute(); |
1498 | 1498 | |
1499 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1499 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1500 | 1500 | { |
1501 | 1501 | return $row['marine_id']; |
1502 | 1502 | } |
@@ -1521,23 +1521,23 @@ discard block |
||
1521 | 1521 | } |
1522 | 1522 | |
1523 | 1523 | $current_date = date("Y-m-d H:i:s"); |
1524 | - $date = date("Y-m-d H:i:s",strtotime($dateString." UTC")); |
|
1524 | + $date = date("Y-m-d H:i:s", strtotime($dateString." UTC")); |
|
1525 | 1525 | |
1526 | 1526 | $diff = abs(strtotime($current_date) - strtotime($date)); |
1527 | 1527 | |
1528 | - $time_array['years'] = floor($diff / (365*60*60*24)); |
|
1528 | + $time_array['years'] = floor($diff/(365*60*60*24)); |
|
1529 | 1529 | $years = $time_array['years']; |
1530 | 1530 | |
1531 | - $time_array['months'] = floor(($diff - $years * 365*60*60*24) / (30*60*60*24)); |
|
1531 | + $time_array['months'] = floor(($diff - $years*365*60*60*24)/(30*60*60*24)); |
|
1532 | 1532 | $months = $time_array['months']; |
1533 | 1533 | |
1534 | - $time_array['days'] = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24)/ (60*60*24)); |
|
1534 | + $time_array['days'] = floor(($diff - $years*365*60*60*24 - $months*30*60*60*24)/(60*60*24)); |
|
1535 | 1535 | $days = $time_array['days']; |
1536 | - $time_array['hours'] = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24)/ (60*60)); |
|
1536 | + $time_array['hours'] = floor(($diff - $years*365*60*60*24 - $months*30*60*60*24 - $days*60*60*24)/(60*60)); |
|
1537 | 1537 | $hours = $time_array['hours']; |
1538 | - $time_array['minutes'] = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60)/ 60); |
|
1538 | + $time_array['minutes'] = floor(($diff - $years*365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60)/60); |
|
1539 | 1539 | $minutes = $time_array['minutes']; |
1540 | - $time_array['seconds'] = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60 - $minutes*60)); |
|
1540 | + $time_array['seconds'] = floor(($diff - $years*365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60 - $minutes*60)); |
|
1541 | 1541 | |
1542 | 1542 | return $time_array; |
1543 | 1543 | } |
@@ -1560,63 +1560,63 @@ discard block |
||
1560 | 1560 | $temp_array['direction_degree'] = $direction; |
1561 | 1561 | $temp_array['direction_shortname'] = "N"; |
1562 | 1562 | $temp_array['direction_fullname'] = "North"; |
1563 | - } elseif ($direction >= 22.5 && $direction < 45){ |
|
1563 | + } elseif ($direction >= 22.5 && $direction < 45) { |
|
1564 | 1564 | $temp_array['direction_degree'] = $direction; |
1565 | 1565 | $temp_array['direction_shortname'] = "NNE"; |
1566 | 1566 | $temp_array['direction_fullname'] = "North-Northeast"; |
1567 | - } elseif ($direction >= 45 && $direction < 67.5){ |
|
1567 | + } elseif ($direction >= 45 && $direction < 67.5) { |
|
1568 | 1568 | $temp_array['direction_degree'] = $direction; |
1569 | 1569 | $temp_array['direction_shortname'] = "NE"; |
1570 | 1570 | $temp_array['direction_fullname'] = "Northeast"; |
1571 | - } elseif ($direction >= 67.5 && $direction < 90){ |
|
1571 | + } elseif ($direction >= 67.5 && $direction < 90) { |
|
1572 | 1572 | $temp_array['direction_degree'] = $direction; |
1573 | 1573 | $temp_array['direction_shortname'] = "ENE"; |
1574 | 1574 | $temp_array['direction_fullname'] = "East-Northeast"; |
1575 | - } elseif ($direction >= 90 && $direction < 112.5){ |
|
1575 | + } elseif ($direction >= 90 && $direction < 112.5) { |
|
1576 | 1576 | $temp_array['direction_degree'] = $direction; |
1577 | 1577 | $temp_array['direction_shortname'] = "E"; |
1578 | 1578 | $temp_array['direction_fullname'] = "East"; |
1579 | - } elseif ($direction >= 112.5 && $direction < 135){ |
|
1579 | + } elseif ($direction >= 112.5 && $direction < 135) { |
|
1580 | 1580 | $temp_array['direction_degree'] = $direction; |
1581 | 1581 | $temp_array['direction_shortname'] = "ESE"; |
1582 | 1582 | $temp_array['direction_fullname'] = "East-Southeast"; |
1583 | - } elseif ($direction >= 135 && $direction < 157.5){ |
|
1583 | + } elseif ($direction >= 135 && $direction < 157.5) { |
|
1584 | 1584 | $temp_array['direction_degree'] = $direction; |
1585 | 1585 | $temp_array['direction_shortname'] = "SE"; |
1586 | 1586 | $temp_array['direction_fullname'] = "Southeast"; |
1587 | - } elseif ($direction >= 157.5 && $direction < 180){ |
|
1587 | + } elseif ($direction >= 157.5 && $direction < 180) { |
|
1588 | 1588 | $temp_array['direction_degree'] = $direction; |
1589 | 1589 | $temp_array['direction_shortname'] = "SSE"; |
1590 | 1590 | $temp_array['direction_fullname'] = "South-Southeast"; |
1591 | - } elseif ($direction >= 180 && $direction < 202.5){ |
|
1591 | + } elseif ($direction >= 180 && $direction < 202.5) { |
|
1592 | 1592 | $temp_array['direction_degree'] = $direction; |
1593 | 1593 | $temp_array['direction_shortname'] = "S"; |
1594 | 1594 | $temp_array['direction_fullname'] = "South"; |
1595 | - } elseif ($direction >= 202.5 && $direction < 225){ |
|
1595 | + } elseif ($direction >= 202.5 && $direction < 225) { |
|
1596 | 1596 | $temp_array['direction_degree'] = $direction; |
1597 | 1597 | $temp_array['direction_shortname'] = "SSW"; |
1598 | 1598 | $temp_array['direction_fullname'] = "South-Southwest"; |
1599 | - } elseif ($direction >= 225 && $direction < 247.5){ |
|
1599 | + } elseif ($direction >= 225 && $direction < 247.5) { |
|
1600 | 1600 | $temp_array['direction_degree'] = $direction; |
1601 | 1601 | $temp_array['direction_shortname'] = "SW"; |
1602 | 1602 | $temp_array['direction_fullname'] = "Southwest"; |
1603 | - } elseif ($direction >= 247.5 && $direction < 270){ |
|
1603 | + } elseif ($direction >= 247.5 && $direction < 270) { |
|
1604 | 1604 | $temp_array['direction_degree'] = $direction; |
1605 | 1605 | $temp_array['direction_shortname'] = "WSW"; |
1606 | 1606 | $temp_array['direction_fullname'] = "West-Southwest"; |
1607 | - } elseif ($direction >= 270 && $direction < 292.5){ |
|
1607 | + } elseif ($direction >= 270 && $direction < 292.5) { |
|
1608 | 1608 | $temp_array['direction_degree'] = $direction; |
1609 | 1609 | $temp_array['direction_shortname'] = "W"; |
1610 | 1610 | $temp_array['direction_fullname'] = "West"; |
1611 | - } elseif ($direction >= 292.5 && $direction < 315){ |
|
1611 | + } elseif ($direction >= 292.5 && $direction < 315) { |
|
1612 | 1612 | $temp_array['direction_degree'] = $direction; |
1613 | 1613 | $temp_array['direction_shortname'] = "WNW"; |
1614 | 1614 | $temp_array['direction_fullname'] = "West-Northwest"; |
1615 | - } elseif ($direction >= 315 && $direction < 337.5){ |
|
1615 | + } elseif ($direction >= 315 && $direction < 337.5) { |
|
1616 | 1616 | $temp_array['direction_degree'] = $direction; |
1617 | 1617 | $temp_array['direction_shortname'] = "NW"; |
1618 | 1618 | $temp_array['direction_fullname'] = "Northwest"; |
1619 | - } elseif ($direction >= 337.5 && $direction < 360){ |
|
1619 | + } elseif ($direction >= 337.5 && $direction < 360) { |
|
1620 | 1620 | $temp_array['direction_degree'] = $direction; |
1621 | 1621 | $temp_array['direction_shortname'] = "NNW"; |
1622 | 1622 | $temp_array['direction_fullname'] = "North-Northwest"; |
@@ -1633,11 +1633,11 @@ discard block |
||
1633 | 1633 | * @param Float $longitude longitute of the flight |
1634 | 1634 | * @return String the countrie |
1635 | 1635 | */ |
1636 | - public function getCountryFromLatitudeLongitude($latitude,$longitude) |
|
1636 | + public function getCountryFromLatitudeLongitude($latitude, $longitude) |
|
1637 | 1637 | { |
1638 | 1638 | global $globalDBdriver, $globalDebug; |
1639 | - $latitude = filter_var($latitude,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
1640 | - $longitude = filter_var($longitude,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
1639 | + $latitude = filter_var($latitude, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
1640 | + $longitude = filter_var($longitude, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
1641 | 1641 | |
1642 | 1642 | $Connection = new Connection($this->db); |
1643 | 1643 | if (!$Connection->tableExists('countries')) return ''; |
@@ -1677,7 +1677,7 @@ discard block |
||
1677 | 1677 | public function getCountryFromISO2($iso2) |
1678 | 1678 | { |
1679 | 1679 | global $globalDBdriver, $globalDebug; |
1680 | - $iso2 = filter_var($iso2,FILTER_SANITIZE_STRING); |
|
1680 | + $iso2 = filter_var($iso2, FILTER_SANITIZE_STRING); |
|
1681 | 1681 | |
1682 | 1682 | $Connection = new Connection($this->db); |
1683 | 1683 | if (!$Connection->tableExists('countries')) return ''; |
@@ -1725,7 +1725,7 @@ discard block |
||
1725 | 1725 | |
1726 | 1726 | $bitly_data = json_decode($bitly_data); |
1727 | 1727 | $bitly_url = ''; |
1728 | - if ($bitly_data->status_txt = "OK"){ |
|
1728 | + if ($bitly_data->status_txt = "OK") { |
|
1729 | 1729 | $bitly_url = $bitly_data->data->url; |
1730 | 1730 | } |
1731 | 1731 | |
@@ -1739,11 +1739,11 @@ discard block |
||
1739 | 1739 | * @return Array the vessel type list |
1740 | 1740 | * |
1741 | 1741 | */ |
1742 | - public function countAllMarineTypes($limit = true,$olderthanmonths = 0,$sincedate = '',$filters = array(),$year = '',$month = '',$day = '') |
|
1742 | + public function countAllMarineTypes($limit = true, $olderthanmonths = 0, $sincedate = '', $filters = array(), $year = '', $month = '', $day = '') |
|
1743 | 1743 | { |
1744 | 1744 | global $globalDBdriver; |
1745 | - $filter_query = $this->getFilter($filters,true,true); |
|
1746 | - $query = "SELECT marine_output.type AS marine_type, COUNT(marine_output.type) AS marine_type_count |
|
1745 | + $filter_query = $this->getFilter($filters, true, true); |
|
1746 | + $query = "SELECT marine_output.type AS marine_type, COUNT(marine_output.type) AS marine_type_count |
|
1747 | 1747 | FROM marine_output ".$filter_query." marine_output.type <> ''"; |
1748 | 1748 | if ($olderthanmonths > 0) { |
1749 | 1749 | if ($globalDBdriver == 'mysql') { |
@@ -1763,28 +1763,28 @@ discard block |
||
1763 | 1763 | if ($year != '') { |
1764 | 1764 | if ($globalDBdriver == 'mysql') { |
1765 | 1765 | $query .= " AND YEAR(marine_output.date) = :year"; |
1766 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1766 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1767 | 1767 | } else { |
1768 | 1768 | $query .= " AND EXTRACT(YEAR FROM marine_output.date) = :year"; |
1769 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1769 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1770 | 1770 | } |
1771 | 1771 | } |
1772 | 1772 | if ($month != '') { |
1773 | 1773 | if ($globalDBdriver == 'mysql') { |
1774 | 1774 | $query .= " AND MONTH(marine_output.date) = :month"; |
1775 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1775 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1776 | 1776 | } else { |
1777 | 1777 | $query .= " AND EXTRACT(MONTH FROM marine_output.date) = :month"; |
1778 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1778 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1779 | 1779 | } |
1780 | 1780 | } |
1781 | 1781 | if ($day != '') { |
1782 | 1782 | if ($globalDBdriver == 'mysql') { |
1783 | 1783 | $query .= " AND DAY(marine_output.date) = :day"; |
1784 | - $query_values = array_merge($query_values,array(':day' => $day)); |
|
1784 | + $query_values = array_merge($query_values, array(':day' => $day)); |
|
1785 | 1785 | } else { |
1786 | 1786 | $query .= " AND EXTRACT(DAY FROM marine_output.date) = :day"; |
1787 | - $query_values = array_merge($query_values,array(':day' => $day)); |
|
1787 | + $query_values = array_merge($query_values, array(':day' => $day)); |
|
1788 | 1788 | } |
1789 | 1789 | } |
1790 | 1790 | $query .= " GROUP BY marine_output.type ORDER BY marine_type_count DESC"; |
@@ -1793,7 +1793,7 @@ discard block |
||
1793 | 1793 | $sth->execute($query_values); |
1794 | 1794 | $marine_array = array(); |
1795 | 1795 | $temp_array = array(); |
1796 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1796 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1797 | 1797 | { |
1798 | 1798 | $temp_array['marine_type'] = $row['marine_type']; |
1799 | 1799 | $temp_array['marine_type_count'] = $row['marine_type_count']; |
@@ -1804,7 +1804,7 @@ discard block |
||
1804 | 1804 | |
1805 | 1805 | public function getOrderBy() |
1806 | 1806 | { |
1807 | - $orderby = array("aircraft_asc" => array("key" => "aircraft_asc", "value" => "Aircraft Type - ASC", "sql" => "ORDER BY marine_output.aircraft_icao ASC"), "aircraft_desc" => array("key" => "aircraft_desc", "value" => "Aircraft Type - DESC", "sql" => "ORDER BY marine_output.aircraft_icao DESC"),"manufacturer_asc" => array("key" => "manufacturer_asc", "value" => "Aircraft Manufacturer - ASC", "sql" => "ORDER BY marine_output.aircraft_manufacturer ASC"), "manufacturer_desc" => array("key" => "manufacturer_desc", "value" => "Aircraft Manufacturer - DESC", "sql" => "ORDER BY marine_output.aircraft_manufacturer DESC"),"airline_name_asc" => array("key" => "airline_name_asc", "value" => "Airline Name - ASC", "sql" => "ORDER BY marine_output.airline_name ASC"), "airline_name_desc" => array("key" => "airline_name_desc", "value" => "Airline Name - DESC", "sql" => "ORDER BY marine_output.airline_name DESC"), "ident_asc" => array("key" => "ident_asc", "value" => "Ident - ASC", "sql" => "ORDER BY marine_output.ident ASC"), "ident_desc" => array("key" => "ident_desc", "value" => "Ident - DESC", "sql" => "ORDER BY marine_output.ident DESC"), "airport_departure_asc" => array("key" => "airport_departure_asc", "value" => "Departure Airport - ASC", "sql" => "ORDER BY marine_output.departure_airport_city ASC"), "airport_departure_desc" => array("key" => "airport_departure_desc", "value" => "Departure Airport - DESC", "sql" => "ORDER BY marine_output.departure_airport_city DESC"), "airport_arrival_asc" => array("key" => "airport_arrival_asc", "value" => "Arrival Airport - ASC", "sql" => "ORDER BY marine_output.arrival_airport_city ASC"), "airport_arrival_desc" => array("key" => "airport_arrival_desc", "value" => "Arrival Airport - DESC", "sql" => "ORDER BY marine_output.arrival_airport_city DESC"), "date_asc" => array("key" => "date_asc", "value" => "Date - ASC", "sql" => "ORDER BY marine_output.date ASC"), "date_desc" => array("key" => "date_desc", "value" => "Date - DESC", "sql" => "ORDER BY marine_output.date DESC"),"distance_asc" => array("key" => "distance_asc","value" => "Distance - ASC","sql" => "ORDER BY distance ASC"),"distance_desc" => array("key" => "distance_desc","value" => "Distance - DESC","sql" => "ORDER BY distance DESC")); |
|
1807 | + $orderby = array("aircraft_asc" => array("key" => "aircraft_asc", "value" => "Aircraft Type - ASC", "sql" => "ORDER BY marine_output.aircraft_icao ASC"), "aircraft_desc" => array("key" => "aircraft_desc", "value" => "Aircraft Type - DESC", "sql" => "ORDER BY marine_output.aircraft_icao DESC"), "manufacturer_asc" => array("key" => "manufacturer_asc", "value" => "Aircraft Manufacturer - ASC", "sql" => "ORDER BY marine_output.aircraft_manufacturer ASC"), "manufacturer_desc" => array("key" => "manufacturer_desc", "value" => "Aircraft Manufacturer - DESC", "sql" => "ORDER BY marine_output.aircraft_manufacturer DESC"), "airline_name_asc" => array("key" => "airline_name_asc", "value" => "Airline Name - ASC", "sql" => "ORDER BY marine_output.airline_name ASC"), "airline_name_desc" => array("key" => "airline_name_desc", "value" => "Airline Name - DESC", "sql" => "ORDER BY marine_output.airline_name DESC"), "ident_asc" => array("key" => "ident_asc", "value" => "Ident - ASC", "sql" => "ORDER BY marine_output.ident ASC"), "ident_desc" => array("key" => "ident_desc", "value" => "Ident - DESC", "sql" => "ORDER BY marine_output.ident DESC"), "airport_departure_asc" => array("key" => "airport_departure_asc", "value" => "Departure Airport - ASC", "sql" => "ORDER BY marine_output.departure_airport_city ASC"), "airport_departure_desc" => array("key" => "airport_departure_desc", "value" => "Departure Airport - DESC", "sql" => "ORDER BY marine_output.departure_airport_city DESC"), "airport_arrival_asc" => array("key" => "airport_arrival_asc", "value" => "Arrival Airport - ASC", "sql" => "ORDER BY marine_output.arrival_airport_city ASC"), "airport_arrival_desc" => array("key" => "airport_arrival_desc", "value" => "Arrival Airport - DESC", "sql" => "ORDER BY marine_output.arrival_airport_city DESC"), "date_asc" => array("key" => "date_asc", "value" => "Date - ASC", "sql" => "ORDER BY marine_output.date ASC"), "date_desc" => array("key" => "date_desc", "value" => "Date - DESC", "sql" => "ORDER BY marine_output.date DESC"), "distance_asc" => array("key" => "distance_asc", "value" => "Distance - ASC", "sql" => "ORDER BY distance ASC"), "distance_desc" => array("key" => "distance_desc", "value" => "Distance - DESC", "sql" => "ORDER BY distance DESC")); |
|
1808 | 1808 | |
1809 | 1809 | return $orderby; |
1810 | 1810 |