|
@@ -14,62 +14,62 @@ discard block |
|
|
block discarded – undo |
|
14
|
14
|
* @param Array $filter the filter |
|
15
|
15
|
* @return Array the SQL part |
|
16
|
16
|
*/ |
|
17
|
|
- public function getFilter($filter = array(),$where = false,$and = false) { |
|
|
17
|
+ public function getFilter($filter = array(), $where = false, $and = false) { |
|
18
|
18
|
global $globalFilter, $globalStatsFilters, $globalFilterName, $globalDBdriver; |
|
19
|
19
|
$filters = array(); |
|
20
|
20
|
if (is_array($globalStatsFilters) && isset($globalStatsFilters[$globalFilterName])) { |
|
21
|
21
|
if (isset($globalStatsFilters[$globalFilterName][0]['source'])) { |
|
22
|
22
|
$filters = $globalStatsFilters[$globalFilterName]; |
|
23
|
23
|
} else { |
|
24
|
|
- $filter = array_merge($filter,$globalStatsFilters[$globalFilterName]); |
|
|
24
|
+ $filter = array_merge($filter, $globalStatsFilters[$globalFilterName]); |
|
25
|
25
|
} |
|
26
|
26
|
} |
|
27
|
27
|
if (isset($filter[0]['source'])) { |
|
28
|
|
- $filters = array_merge($filters,$filter); |
|
|
28
|
+ $filters = array_merge($filters, $filter); |
|
29
|
29
|
} |
|
30
|
|
- if (is_array($globalFilter)) $filter = array_merge($filter,$globalFilter); |
|
|
30
|
+ if (is_array($globalFilter)) $filter = array_merge($filter, $globalFilter); |
|
31
|
31
|
$filter_query_join = ''; |
|
32
|
32
|
$filter_query_where = ''; |
|
33
|
|
- foreach($filters as $flt) { |
|
|
33
|
+ foreach ($filters as $flt) { |
|
34
|
34
|
if (isset($flt['airlines']) && !empty($flt['airlines'])) { |
|
35
|
35
|
if ($flt['airlines'][0] != '') { |
|
36
|
36
|
if (isset($flt['source'])) { |
|
37
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$flt['airlines'])."') AND spotter_archive_output.format_source IN ('".implode("','",$flt['source'])."')) saff ON saff.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
37
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','", $flt['airlines'])."') AND spotter_archive_output.format_source IN ('".implode("','", $flt['source'])."')) saff ON saff.flightaware_id = spotter_archive_output.flightaware_id"; |
|
38
|
38
|
} else { |
|
39
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$flt['airlines'])."')) saff ON saff.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
39
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','", $flt['airlines'])."')) saff ON saff.flightaware_id = spotter_archive_output.flightaware_id"; |
|
40
|
40
|
} |
|
41
|
41
|
} |
|
42
|
42
|
} |
|
43
|
43
|
if (isset($flt['pilots_id']) && !empty($flt['pilots_id'])) { |
|
44
|
44
|
if (isset($flt['source'])) { |
|
45
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$flt['pilots_id'])."') AND spotter_archive_output.format_source IN ('".implode("','",$flt['source'])."')) sp ON sp.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
45
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','", $flt['pilots_id'])."') AND spotter_archive_output.format_source IN ('".implode("','", $flt['source'])."')) sp ON sp.flightaware_id = spotter_archive_output.flightaware_id"; |
|
46
|
46
|
} else { |
|
47
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$flt['pilots_id'])."')) sp ON sp.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
47
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','", $flt['pilots_id'])."')) sp ON sp.flightaware_id = spotter_archive_output.flightaware_id"; |
|
48
|
48
|
} |
|
49
|
49
|
} |
|
50
|
50
|
if (isset($flt['idents']) && !empty($flt['idents'])) { |
|
51
|
51
|
if (isset($flt['source'])) { |
|
52
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.ident IN ('".implode("','",$flt['idents'])."') AND spotter_archive_output.format_source IN ('".implode("','",$flt['source'])."')) spi ON spi.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
52
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.ident IN ('".implode("','", $flt['idents'])."') AND spotter_archive_output.format_source IN ('".implode("','", $flt['source'])."')) spi ON spi.flightaware_id = spotter_archive_output.flightaware_id"; |
|
53
|
53
|
} else { |
|
54
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.ident IN ('".implode("','",$flt['idents'])."')) spi ON spi.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
54
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.ident IN ('".implode("','", $flt['idents'])."')) spi ON spi.flightaware_id = spotter_archive_output.flightaware_id"; |
|
55
|
55
|
} |
|
56
|
56
|
} |
|
57
|
57
|
if (isset($flt['registrations']) && !empty($flt['registrations'])) { |
|
58
|
58
|
if (isset($flt['source'])) { |
|
59
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.registration IN ('".implode("','",$flt['registrations'])."') AND spotter_archive_output.format_source IN ('".implode("','",$flt['source'])."')) sre ON sre.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
59
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.registration IN ('".implode("','", $flt['registrations'])."') AND spotter_archive_output.format_source IN ('".implode("','", $flt['source'])."')) sre ON sre.flightaware_id = spotter_archive_output.flightaware_id"; |
|
60
|
60
|
} else { |
|
61
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.registration IN ('".implode("','",$flt['registrations'])."')) sre ON sre.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
61
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.registration IN ('".implode("','", $flt['registrations'])."')) sre ON sre.flightaware_id = spotter_archive_output.flightaware_id"; |
|
62
|
62
|
} |
|
63
|
63
|
} |
|
64
|
64
|
if ((isset($flt['airlines']) && empty($flt['airlines']) && isset($flt['pilots_id']) && empty($flt['pilots_id']) && isset($flt['idents']) && empty($flt['idents']) && isset($flt['registrations']) && empty($flt['registrations'])) || (!isset($flt['airlines']) && !isset($flt['pilots_id']) && !isset($flt['idents']) && !isset($flt['registrations']))) { |
|
65
|
65
|
if (isset($flt['source'])) { |
|
66
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_output.format_source IN ('".implode("','",$flt['source'])."')) saa ON saa.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
66
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_output.format_source IN ('".implode("','", $flt['source'])."')) saa ON saa.flightaware_id = spotter_archive_output.flightaware_id"; |
|
67
|
67
|
} |
|
68
|
68
|
} |
|
69
|
69
|
} |
|
70
|
70
|
if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
|
71
|
71
|
if ($filter['airlines'][0] != '') { |
|
72
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) saf ON saf.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
72
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) saf ON saf.flightaware_id = spotter_archive_output.flightaware_id"; |
|
73
|
73
|
} |
|
74
|
74
|
} |
|
75
|
75
|
|
|
@@ -77,16 +77,16 @@ discard block |
|
|
block discarded – undo |
|
77
|
77
|
$filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive_output.flightaware_id "; |
|
78
|
78
|
} |
|
79
|
79
|
if (isset($filter['pilots_id']) && !empty($filter['pilots_id'])) { |
|
80
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$filter['pilots_id'])."')) spi ON spi.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
80
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','", $filter['pilots_id'])."')) spi ON spi.flightaware_id = spotter_archive_output.flightaware_id"; |
|
81
|
81
|
} |
|
82
|
82
|
if (isset($filter['source']) && !empty($filter['source'])) { |
|
83
|
|
- $filter_query_where .= " AND format_source IN ('".implode("','",$filter['source'])."')"; |
|
|
83
|
+ $filter_query_where .= " AND format_source IN ('".implode("','", $filter['source'])."')"; |
|
84
|
84
|
} |
|
85
|
85
|
if (isset($filter['ident']) && !empty($filter['ident'])) { |
|
86
|
86
|
$filter_query_where .= " AND ident = '".$filter['ident']."'"; |
|
87
|
87
|
} |
|
88
|
88
|
if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
|
89
|
|
- $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
|
89
|
+ $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
90
|
90
|
} |
|
91
|
91
|
if ((isset($filter['year']) && $filter['year'] != '') || (isset($filter['month']) && $filter['month'] != '') || (isset($filter['day']) && $filter['day'] != '')) { |
|
92
|
92
|
$filter_query_date = ''; |
|
@@ -112,41 +112,41 @@ discard block |
|
|
block discarded – undo |
|
112
|
112
|
$filter_query_date .= " AND EXTRACT(DAY FROM spotter_archive_output.date) = '".$filter['day']."'"; |
|
113
|
113
|
} |
|
114
|
114
|
} |
|
115
|
|
- $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output".preg_replace('/^ AND/',' WHERE',$filter_query_date).") sd ON sd.flightaware_id = spotter_archive_output.flightaware_id"; |
|
|
115
|
+ $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output".preg_replace('/^ AND/', ' WHERE', $filter_query_date).") sd ON sd.flightaware_id = spotter_archive_output.flightaware_id"; |
|
116
|
116
|
} |
|
117
|
117
|
if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE'; |
|
118
|
118
|
elseif ($filter_query_where != '' && $and) $filter_query_where .= ' AND'; |
|
119
|
119
|
if ($filter_query_where != '') { |
|
120
|
|
- $filter_query_where = preg_replace('/^ AND/',' WHERE',$filter_query_where); |
|
|
120
|
+ $filter_query_where = preg_replace('/^ AND/', ' WHERE', $filter_query_where); |
|
121
|
121
|
} |
|
122
|
122
|
$filter_query = $filter_query_join.$filter_query_where; |
|
123
|
123
|
return $filter_query; |
|
124
|
124
|
} |
|
125
|
125
|
|
|
126
|
126
|
// Spotter_archive |
|
127
|
|
- public function addSpotterArchiveData($flightaware_id = '', $ident = '', $registration = '', $airline_name = '', $airline_icao = '', $airline_country = '', $airline_type = '', $aircraft_icao = '', $aircraft_shadow = '', $aircraft_name = '', $aircraft_manufacturer = '', $departure_airport_icao = '', $departure_airport_name = '', $departure_airport_city = '', $departure_airport_country = '', $departure_airport_time = '',$arrival_airport_icao = '', $arrival_airport_name = '', $arrival_airport_city ='', $arrival_airport_country = '', $arrival_airport_time = '', $route_stop = '', $date = '',$latitude = '', $longitude = '', $waypoints = '', $altitude = '', $real_altitude = '',$heading = '', $ground_speed = '', $squawk = '', $ModeS = '', $pilot_id = '', $pilot_name = '',$verticalrate = '',$format_source = '', $source_name = '', $over_country = '') { |
|
|
127
|
+ public function addSpotterArchiveData($flightaware_id = '', $ident = '', $registration = '', $airline_name = '', $airline_icao = '', $airline_country = '', $airline_type = '', $aircraft_icao = '', $aircraft_shadow = '', $aircraft_name = '', $aircraft_manufacturer = '', $departure_airport_icao = '', $departure_airport_name = '', $departure_airport_city = '', $departure_airport_country = '', $departure_airport_time = '', $arrival_airport_icao = '', $arrival_airport_name = '', $arrival_airport_city = '', $arrival_airport_country = '', $arrival_airport_time = '', $route_stop = '', $date = '', $latitude = '', $longitude = '', $waypoints = '', $altitude = '', $real_altitude = '', $heading = '', $ground_speed = '', $squawk = '', $ModeS = '', $pilot_id = '', $pilot_name = '', $verticalrate = '', $format_source = '', $source_name = '', $over_country = '') { |
|
128
|
128
|
require_once(dirname(__FILE__).'/class.Spotter.php'); |
|
129
|
129
|
if ($over_country == '') { |
|
130
|
130
|
$Spotter = new Spotter($this->db); |
|
131
|
|
- $data_country = $Spotter->getCountryFromLatitudeLongitude($latitude,$longitude); |
|
|
131
|
+ $data_country = $Spotter->getCountryFromLatitudeLongitude($latitude, $longitude); |
|
132
|
132
|
if (!empty($data_country)) $country = $data_country['iso2']; |
|
133
|
133
|
else $country = ''; |
|
134
|
134
|
} else $country = $over_country; |
|
135
|
|
- if ($airline_type === NULL) $airline_type =''; |
|
|
135
|
+ if ($airline_type === NULL) $airline_type = ''; |
|
136
|
136
|
|
|
137
|
137
|
//if ($country == '') echo "\n".'************ UNKNOW COUNTRY ****************'."\n"; |
|
138
|
138
|
//else echo "\n".'*/*/*/*/*/*/*/ Country : '.$country.' */*/*/*/*/*/*/*/*/'."\n"; |
|
139
|
139
|
|
|
140
|
140
|
// Route is not added in spotter_archive |
|
141
|
|
- $query = "INSERT INTO spotter_archive (flightaware_id, ident, registration, airline_name, airline_icao, airline_country, airline_type, aircraft_icao, aircraft_shadow, aircraft_name, aircraft_manufacturer, departure_airport_icao, departure_airport_name, departure_airport_city, departure_airport_country, departure_airport_time,arrival_airport_icao, arrival_airport_name, arrival_airport_city, arrival_airport_country, arrival_airport_time, route_stop, date,latitude, longitude, waypoints, altitude, heading, ground_speed, squawk, ModeS, pilot_id, pilot_name, verticalrate,format_source,over_country,source_name,real_altitude) |
|
|
141
|
+ $query = "INSERT INTO spotter_archive (flightaware_id, ident, registration, airline_name, airline_icao, airline_country, airline_type, aircraft_icao, aircraft_shadow, aircraft_name, aircraft_manufacturer, departure_airport_icao, departure_airport_name, departure_airport_city, departure_airport_country, departure_airport_time,arrival_airport_icao, arrival_airport_name, arrival_airport_city, arrival_airport_country, arrival_airport_time, route_stop, date,latitude, longitude, waypoints, altitude, heading, ground_speed, squawk, ModeS, pilot_id, pilot_name, verticalrate,format_source,over_country,source_name,real_altitude) |
|
142
|
142
|
VALUES (:flightaware_id, :ident, :registration, :airline_name, :airline_icao, :airline_country, :airline_type, :aircraft_icao, :aircraft_shadow, :aircraft_name, :aircraft_manufacturer, :departure_airport_icao, :departure_airport_name, :departure_airport_city, :departure_airport_country, :departure_airport_time,:arrival_airport_icao, :arrival_airport_name, :arrival_airport_city, :arrival_airport_country, :arrival_airport_time, :route_stop, :date,:latitude, :longitude, :waypoints, :altitude, :heading, :ground_speed, :squawk, :ModeS, :pilot_id, :pilot_name, :verticalrate, :format_source, :over_country, :source_name,:real_altitude)"; |
|
143
|
143
|
|
|
144
|
|
- $query_values = array(':flightaware_id' => $flightaware_id, ':ident' => $ident, ':registration' => $registration, ':airline_name' => $airline_name, ':airline_icao' => $airline_icao, ':airline_country' => $airline_country, ':airline_type' => $airline_type, ':aircraft_icao' => $aircraft_icao, ':aircraft_shadow' => $aircraft_shadow, ':aircraft_name' => $aircraft_name, ':aircraft_manufacturer' => $aircraft_manufacturer, ':departure_airport_icao' => $departure_airport_icao, ':departure_airport_name' => $departure_airport_name, ':departure_airport_city' => $departure_airport_city, ':departure_airport_country' => $departure_airport_country, ':departure_airport_time' => $departure_airport_time,':arrival_airport_icao' => $arrival_airport_icao, ':arrival_airport_name' => $arrival_airport_name, ':arrival_airport_city' => $arrival_airport_city, ':arrival_airport_country' => $arrival_airport_country, ':arrival_airport_time' => $arrival_airport_time, ':route_stop' => $route_stop, ':date' => $date,':latitude' => $latitude, ':longitude' => $longitude, ':waypoints' => $waypoints, ':altitude' => $altitude, ':heading' => $heading, ':ground_speed' => $ground_speed, ':squawk' => $squawk, ':ModeS' => $ModeS, ':pilot_id' => $pilot_id, ':pilot_name' => $pilot_name, ':verticalrate' => $verticalrate, ':format_source' => $format_source, ':over_country' => $country, ':source_name' => $source_name,':real_altitude' => $real_altitude); |
|
|
144
|
+ $query_values = array(':flightaware_id' => $flightaware_id, ':ident' => $ident, ':registration' => $registration, ':airline_name' => $airline_name, ':airline_icao' => $airline_icao, ':airline_country' => $airline_country, ':airline_type' => $airline_type, ':aircraft_icao' => $aircraft_icao, ':aircraft_shadow' => $aircraft_shadow, ':aircraft_name' => $aircraft_name, ':aircraft_manufacturer' => $aircraft_manufacturer, ':departure_airport_icao' => $departure_airport_icao, ':departure_airport_name' => $departure_airport_name, ':departure_airport_city' => $departure_airport_city, ':departure_airport_country' => $departure_airport_country, ':departure_airport_time' => $departure_airport_time, ':arrival_airport_icao' => $arrival_airport_icao, ':arrival_airport_name' => $arrival_airport_name, ':arrival_airport_city' => $arrival_airport_city, ':arrival_airport_country' => $arrival_airport_country, ':arrival_airport_time' => $arrival_airport_time, ':route_stop' => $route_stop, ':date' => $date, ':latitude' => $latitude, ':longitude' => $longitude, ':waypoints' => $waypoints, ':altitude' => $altitude, ':heading' => $heading, ':ground_speed' => $ground_speed, ':squawk' => $squawk, ':ModeS' => $ModeS, ':pilot_id' => $pilot_id, ':pilot_name' => $pilot_name, ':verticalrate' => $verticalrate, ':format_source' => $format_source, ':over_country' => $country, ':source_name' => $source_name, ':real_altitude' => $real_altitude); |
|
145
|
145
|
try { |
|
146
|
146
|
$sth = $this->db->prepare($query); |
|
147
|
147
|
$sth->execute($query_values); |
|
148
|
148
|
$sth->closeCursor(); |
|
149
|
|
- } catch(PDOException $e) { |
|
|
149
|
+ } catch (PDOException $e) { |
|
150
|
150
|
return "error : ".$e->getMessage(); |
|
151
|
151
|
} |
|
152
|
152
|
return "success"; |
|
@@ -166,9 +166,9 @@ discard block |
|
|
block discarded – undo |
|
166
|
166
|
|
|
167
|
167
|
$ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
168
|
168
|
//$query = "SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
169
|
|
- $query = "SELECT spotter_archive.* FROM spotter_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
|
169
|
+ $query = "SELECT spotter_archive.* FROM spotter_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
170
|
170
|
|
|
171
|
|
- $spotter_array = $Spotter->getDataFromDB($query,array(':ident' => $ident)); |
|
|
171
|
+ $spotter_array = $Spotter->getDataFromDB($query, array(':ident' => $ident)); |
|
172
|
172
|
|
|
173
|
173
|
return $spotter_array; |
|
174
|
174
|
} |
|
@@ -187,7 +187,7 @@ discard block |
|
|
block discarded – undo |
|
187
|
187
|
$id = filter_var($id, FILTER_SANITIZE_STRING); |
|
188
|
188
|
//$query = SpotterArchive->$global_query." WHERE spotter_archive.flightaware_id = :id"; |
|
189
|
189
|
//$query = "SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.flightaware_id = :id GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
190
|
|
- $query = "SELECT * FROM spotter_archive WHERE flightaware_id = :id ORDER BY date DESC LIMIT 1"; |
|
|
190
|
+ $query = "SELECT * FROM spotter_archive WHERE flightaware_id = :id ORDER BY date DESC LIMIT 1"; |
|
191
|
191
|
|
|
192
|
192
|
// $spotter_array = Spotter->getDataFromDB($query,array(':id' => $id)); |
|
193
|
193
|
/* |
|
@@ -200,7 +200,7 @@ discard block |
|
|
block discarded – undo |
|
200
|
200
|
} |
|
201
|
201
|
$spotter_array = $sth->fetchAll(PDO->FETCH_ASSOC); |
|
202
|
202
|
*/ |
|
203
|
|
- $spotter_array = $Spotter->getDataFromDB($query,array(':id' => $id)); |
|
|
203
|
+ $spotter_array = $Spotter->getDataFromDB($query, array(':id' => $id)); |
|
204
|
204
|
|
|
205
|
205
|
return $spotter_array; |
|
206
|
206
|
} |
|
@@ -215,14 +215,14 @@ discard block |
|
|
block discarded – undo |
|
215
|
215
|
{ |
|
216
|
216
|
date_default_timezone_set('UTC'); |
|
217
|
217
|
$id = filter_var($id, FILTER_SANITIZE_STRING); |
|
218
|
|
- $query = $this->global_query." WHERE spotter_archive.flightaware_id = :id ORDER BY date"; |
|
|
218
|
+ $query = $this->global_query." WHERE spotter_archive.flightaware_id = :id ORDER BY date"; |
|
219
|
219
|
|
|
220
|
220
|
// $spotter_array = Spotter->getDataFromDB($query,array(':id' => $id)); |
|
221
|
221
|
|
|
222
|
222
|
try { |
|
223
|
223
|
$sth = $this->db->prepare($query); |
|
224
|
224
|
$sth->execute(array(':id' => $id)); |
|
225
|
|
- } catch(PDOException $e) { |
|
|
225
|
+ } catch (PDOException $e) { |
|
226
|
226
|
echo $e->getMessage(); |
|
227
|
227
|
die; |
|
228
|
228
|
} |
|
@@ -241,14 +241,14 @@ discard block |
|
|
block discarded – undo |
|
241
|
241
|
{ |
|
242
|
242
|
date_default_timezone_set('UTC'); |
|
243
|
243
|
$id = filter_var($id, FILTER_SANITIZE_STRING); |
|
244
|
|
- $query = "SELECT spotter_archive.latitude, spotter_archive.longitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id"; |
|
|
244
|
+ $query = "SELECT spotter_archive.latitude, spotter_archive.longitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id"; |
|
245
|
245
|
|
|
246
|
246
|
// $spotter_array = Spotter->getDataFromDB($query,array(':id' => $id)); |
|
247
|
247
|
|
|
248
|
248
|
try { |
|
249
|
249
|
$sth = $this->db->prepare($query); |
|
250
|
250
|
$sth->execute(array(':id' => $id)); |
|
251
|
|
- } catch(PDOException $e) { |
|
|
251
|
+ } catch (PDOException $e) { |
|
252
|
252
|
echo $e->getMessage(); |
|
253
|
253
|
die; |
|
254
|
254
|
} |
|
@@ -270,12 +270,12 @@ discard block |
|
|
block discarded – undo |
|
270
|
270
|
date_default_timezone_set('UTC'); |
|
271
|
271
|
|
|
272
|
272
|
$ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
273
|
|
- $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.ident = :ident AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
|
273
|
+ $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.ident = :ident AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
274
|
274
|
|
|
275
|
275
|
try { |
|
276
|
276
|
$sth = $this->db->prepare($query); |
|
277
|
277
|
$sth->execute(array(':ident' => $ident)); |
|
278
|
|
- } catch(PDOException $e) { |
|
|
278
|
+ } catch (PDOException $e) { |
|
279
|
279
|
echo $e->getMessage(); |
|
280
|
280
|
die; |
|
281
|
281
|
} |
|
@@ -296,12 +296,12 @@ discard block |
|
|
block discarded – undo |
|
296
|
296
|
date_default_timezone_set('UTC'); |
|
297
|
297
|
|
|
298
|
298
|
$id = filter_var($id, FILTER_SANITIZE_STRING); |
|
299
|
|
- $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
|
299
|
+ $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
300
|
300
|
|
|
301
|
301
|
try { |
|
302
|
302
|
$sth = $this->db->prepare($query); |
|
303
|
303
|
$sth->execute(array(':id' => $id)); |
|
304
|
|
- } catch(PDOException $e) { |
|
|
304
|
+ } catch (PDOException $e) { |
|
305
|
305
|
echo $e->getMessage(); |
|
306
|
306
|
die; |
|
307
|
307
|
} |
|
@@ -322,12 +322,12 @@ discard block |
|
|
block discarded – undo |
|
322
|
322
|
date_default_timezone_set('UTC'); |
|
323
|
323
|
|
|
324
|
324
|
$id = filter_var($id, FILTER_SANITIZE_STRING); |
|
325
|
|
- $query = "SELECT spotter_archive.altitude, spotter_archive.real_altitude,spotter_archive.ground_speed, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id ORDER BY date"; |
|
|
325
|
+ $query = "SELECT spotter_archive.altitude, spotter_archive.real_altitude,spotter_archive.ground_speed, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id ORDER BY date"; |
|
326
|
326
|
|
|
327
|
327
|
try { |
|
328
|
328
|
$sth = $this->db->prepare($query); |
|
329
|
329
|
$sth->execute(array(':id' => $id)); |
|
330
|
|
- } catch(PDOException $e) { |
|
|
330
|
+ } catch (PDOException $e) { |
|
331
|
331
|
echo $e->getMessage(); |
|
332
|
332
|
die; |
|
333
|
333
|
} |
|
@@ -349,13 +349,13 @@ discard block |
|
|
block discarded – undo |
|
349
|
349
|
date_default_timezone_set('UTC'); |
|
350
|
350
|
|
|
351
|
351
|
$ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
352
|
|
- $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
|
352
|
+ $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
353
|
353
|
// $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.ident = :ident"; |
|
354
|
354
|
|
|
355
|
355
|
try { |
|
356
|
356
|
$sth = $this->db->prepare($query); |
|
357
|
357
|
$sth->execute(array(':ident' => $ident)); |
|
358
|
|
- } catch(PDOException $e) { |
|
|
358
|
+ } catch (PDOException $e) { |
|
359
|
359
|
echo $e->getMessage(); |
|
360
|
360
|
die; |
|
361
|
361
|
} |
|
@@ -372,13 +372,13 @@ discard block |
|
|
block discarded – undo |
|
372
|
372
|
* @return Array the spotter information |
|
373
|
373
|
* |
|
374
|
374
|
*/ |
|
375
|
|
- public function getSpotterArchiveData($ident,$flightaware_id,$date) |
|
|
375
|
+ public function getSpotterArchiveData($ident, $flightaware_id, $date) |
|
376
|
376
|
{ |
|
377
|
377
|
$Spotter = new Spotter($this->db); |
|
378
|
378
|
$ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
379
|
|
- $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.flightaware_id = :flightaware_id AND l.date LIKE :date GROUP BY l.flightaware_id) s on spotter_live.flightaware_id = s.flightaware_id AND spotter_live.date = s.maxdate"; |
|
|
379
|
+ $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.flightaware_id = :flightaware_id AND l.date LIKE :date GROUP BY l.flightaware_id) s on spotter_live.flightaware_id = s.flightaware_id AND spotter_live.date = s.maxdate"; |
|
380
|
380
|
|
|
381
|
|
- $spotter_array = $Spotter->getDataFromDB($query,array(':ident' => $ident,':flightaware_id' => $flightaware_id,':date' => $date.'%')); |
|
|
381
|
+ $spotter_array = $Spotter->getDataFromDB($query, array(':ident' => $ident, ':flightaware_id' => $flightaware_id, ':date' => $date.'%')); |
|
382
|
382
|
|
|
383
|
383
|
return $spotter_array; |
|
384
|
384
|
} |
|
@@ -394,7 +394,7 @@ discard block |
|
|
block discarded – undo |
|
394
|
394
|
try { |
|
395
|
395
|
$sth = $this->db->prepare($query); |
|
396
|
396
|
$sth->execute(); |
|
397
|
|
- } catch(PDOException $e) { |
|
|
397
|
+ } catch (PDOException $e) { |
|
398
|
398
|
echo $e->getMessage(); |
|
399
|
399
|
die; |
|
400
|
400
|
} |
|
@@ -406,24 +406,24 @@ discard block |
|
|
block discarded – undo |
|
406
|
406
|
* @return Array the spotter information |
|
407
|
407
|
* |
|
408
|
408
|
*/ |
|
409
|
|
- public function getMinLiveSpotterData($begindate,$enddate,$filter = array()) |
|
|
409
|
+ public function getMinLiveSpotterData($begindate, $enddate, $filter = array()) |
|
410
|
410
|
{ |
|
411
|
411
|
global $globalDBdriver, $globalLiveInterval; |
|
412
|
412
|
date_default_timezone_set('UTC'); |
|
413
|
413
|
|
|
414
|
414
|
$filter_query = ''; |
|
415
|
415
|
if (isset($filter['source']) && !empty($filter['source'])) { |
|
416
|
|
- $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
|
416
|
+ $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
417
|
417
|
} |
|
418
|
418
|
// Use spotter_output also ? |
|
419
|
419
|
if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
|
420
|
|
- $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
|
420
|
+ $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
421
|
421
|
} |
|
422
|
422
|
if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
|
423
|
423
|
$filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
|
424
|
424
|
} |
|
425
|
425
|
if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
|
426
|
|
- $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
|
426
|
+ $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
427
|
427
|
} |
|
428
|
428
|
|
|
429
|
429
|
//if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
|
@@ -442,14 +442,14 @@ discard block |
|
|
block discarded – undo |
|
442
|
442
|
GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id |
|
443
|
443
|
AND spotter_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON spotter_archive.aircraft_icao = a.icao'; |
|
444
|
444
|
*/ |
|
445
|
|
- $query = 'SELECT spotter_archive.date,spotter_archive.flightaware_id, spotter_archive.ident, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
|
445
|
+ $query = 'SELECT spotter_archive.date,spotter_archive.flightaware_id, spotter_archive.ident, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
446
|
446
|
FROM spotter_archive |
|
447
|
447
|
INNER JOIN (SELECT * FROM aircraft) a on spotter_archive.aircraft_icao = a.icao |
|
448
|
448
|
WHERE spotter_archive.date BETWEEN '."'".$begindate."'".' AND '."'".$begindate."'".' |
|
449
|
449
|
'.$filter_query.' ORDER BY flightaware_id'; |
|
450
|
450
|
} else { |
|
451
|
451
|
//$query = 'SELECT spotter_archive.ident, spotter_archive.flightaware_id, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$globalLiveInterval.' SECOND) <= l.date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate '.$filter_query.'INNER JOIN (SELECT * FROM aircraft) a on spotter_archive.aircraft_icao = a.icao'; |
|
452
|
|
- $query = 'SELECT spotter_archive.date,spotter_archive.flightaware_id, spotter_archive.ident, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
|
452
|
+ $query = 'SELECT spotter_archive.date,spotter_archive.flightaware_id, spotter_archive.ident, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
453
|
453
|
FROM spotter_archive |
|
454
|
454
|
INNER JOIN (SELECT * FROM aircraft) a on spotter_archive.aircraft_icao = a.icao |
|
455
|
455
|
WHERE spotter_archive.date >= '."'".$begindate."'".' AND spotter_archive.date <= '."'".$enddate."'".' |
|
@@ -459,7 +459,7 @@ discard block |
|
|
block discarded – undo |
|
459
|
459
|
try { |
|
460
|
460
|
$sth = $this->db->prepare($query); |
|
461
|
461
|
$sth->execute(); |
|
462
|
|
- } catch(PDOException $e) { |
|
|
462
|
+ } catch (PDOException $e) { |
|
463
|
463
|
echo $e->getMessage(); |
|
464
|
464
|
die; |
|
465
|
465
|
} |
|
@@ -474,24 +474,24 @@ discard block |
|
|
block discarded – undo |
|
474
|
474
|
* @return Array the spotter information |
|
475
|
475
|
* |
|
476
|
476
|
*/ |
|
477
|
|
- public function getMinLiveSpotterDataPlayback($begindate,$enddate,$filter = array()) |
|
|
477
|
+ public function getMinLiveSpotterDataPlayback($begindate, $enddate, $filter = array()) |
|
478
|
478
|
{ |
|
479
|
479
|
global $globalDBdriver, $globalLiveInterval; |
|
480
|
480
|
date_default_timezone_set('UTC'); |
|
481
|
481
|
|
|
482
|
482
|
$filter_query = ''; |
|
483
|
483
|
if (isset($filter['source']) && !empty($filter['source'])) { |
|
484
|
|
- $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
|
484
|
+ $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
485
|
485
|
} |
|
486
|
486
|
// Should use spotter_output also ? |
|
487
|
487
|
if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
|
488
|
|
- $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
|
488
|
+ $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
489
|
489
|
} |
|
490
|
490
|
if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
|
491
|
491
|
$filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
|
492
|
492
|
} |
|
493
|
493
|
if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
|
494
|
|
- $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
|
494
|
+ $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
495
|
495
|
} |
|
496
|
496
|
|
|
497
|
497
|
//if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
|
@@ -501,7 +501,7 @@ discard block |
|
|
block discarded – undo |
|
501
|
501
|
FROM spotter_archive |
|
502
|
502
|
INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE (l.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON spotter_archive.aircraft_icao = a.icao'; |
|
503
|
503
|
*/ |
|
504
|
|
- $query = 'SELECT a.aircraft_shadow, spotter_archive_output.ident, spotter_archive_output.flightaware_id, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk |
|
|
504
|
+ $query = 'SELECT a.aircraft_shadow, spotter_archive_output.ident, spotter_archive_output.flightaware_id, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk |
|
505
|
505
|
FROM spotter_archive_output |
|
506
|
506
|
LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON spotter_archive_output.aircraft_icao = a.icao |
|
507
|
507
|
WHERE (spotter_archive_output.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') |
|
@@ -516,7 +516,7 @@ discard block |
|
|
block discarded – undo |
|
516
|
516
|
WHERE spotter_archive_output.date >= '."'".$begindate."'".' AND spotter_archive_output.date <= '."'".$enddate."'".' |
|
517
|
517
|
'.$filter_query.' GROUP BY spotter_archive_output.flightaware_id, spotter_archive_output.ident, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao, spotter_archive_output.arrival_airport_icao, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow'; |
|
518
|
518
|
*/ |
|
519
|
|
- $query = 'SELECT DISTINCT spotter_archive_output.flightaware_id, spotter_archive_output.ident, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow |
|
|
519
|
+ $query = 'SELECT DISTINCT spotter_archive_output.flightaware_id, spotter_archive_output.ident, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow |
|
520
|
520
|
FROM spotter_archive_output |
|
521
|
521
|
INNER JOIN (SELECT * FROM aircraft) a on spotter_archive_output.aircraft_icao = a.icao |
|
522
|
522
|
WHERE spotter_archive_output.date >= '."'".$begindate."'".' AND spotter_archive_output.date <= '."'".$enddate."'".' |
|
@@ -528,7 +528,7 @@ discard block |
|
|
block discarded – undo |
|
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
|
} |
|
@@ -543,23 +543,23 @@ discard block |
|
|
block discarded – undo |
|
543
|
543
|
* @return Array the spotter information |
|
544
|
544
|
* |
|
545
|
545
|
*/ |
|
546
|
|
- public function getLiveSpotterCount($begindate,$enddate,$filter = array()) |
|
|
546
|
+ public function getLiveSpotterCount($begindate, $enddate, $filter = array()) |
|
547
|
547
|
{ |
|
548
|
548
|
global $globalDBdriver, $globalLiveInterval; |
|
549
|
549
|
date_default_timezone_set('UTC'); |
|
550
|
550
|
|
|
551
|
551
|
$filter_query = ''; |
|
552
|
552
|
if (isset($filter['source']) && !empty($filter['source'])) { |
|
553
|
|
- $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
|
553
|
+ $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
554
|
554
|
} |
|
555
|
555
|
if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
|
556
|
|
- $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
|
556
|
+ $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
557
|
557
|
} |
|
558
|
558
|
if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
|
559
|
559
|
$filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
|
560
|
560
|
} |
|
561
|
561
|
if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
|
562
|
|
- $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
|
562
|
+ $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
563
|
563
|
} |
|
564
|
564
|
|
|
565
|
565
|
//if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
|
@@ -574,7 +574,7 @@ discard block |
|
|
block discarded – undo |
|
574
|
574
|
try { |
|
575
|
575
|
$sth = $this->db->prepare($query); |
|
576
|
576
|
$sth->execute(); |
|
577
|
|
- } catch(PDOException $e) { |
|
|
577
|
+ } catch (PDOException $e) { |
|
578
|
578
|
echo $e->getMessage(); |
|
579
|
579
|
die; |
|
580
|
580
|
} |
|
@@ -594,7 +594,7 @@ discard block |
|
|
block discarded – undo |
|
594
|
594
|
* @return Array the spotter information |
|
595
|
595
|
* |
|
596
|
596
|
*/ |
|
597
|
|
- public function searchSpotterData($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()) |
|
|
597
|
+ public function searchSpotterData($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()) |
|
598
|
598
|
{ |
|
599
|
599
|
global $globalTimezone, $globalDBdriver; |
|
600
|
600
|
require_once(dirname(__FILE__).'/class.Translation.php'); |
|
@@ -616,7 +616,7 @@ discard block |
|
|
block discarded – undo |
|
616
|
616
|
|
|
617
|
617
|
$q_array = explode(" ", $q); |
|
618
|
618
|
|
|
619
|
|
- foreach ($q_array as $q_item){ |
|
|
619
|
+ foreach ($q_array as $q_item) { |
|
620
|
620
|
$additional_query .= " AND ("; |
|
621
|
621
|
$additional_query .= "(spotter_archive_output.spotter_id like '%".$q_item."%') OR "; |
|
622
|
622
|
$additional_query .= "(spotter_archive_output.aircraft_icao like '%".$q_item."%') OR "; |
|
@@ -648,7 +648,7 @@ discard block |
|
|
block discarded – undo |
|
648
|
648
|
|
|
649
|
649
|
if ($registration != "") |
|
650
|
650
|
{ |
|
651
|
|
- $registration = filter_var($registration,FILTER_SANITIZE_STRING); |
|
|
651
|
+ $registration = filter_var($registration, FILTER_SANITIZE_STRING); |
|
652
|
652
|
if (!is_string($registration)) |
|
653
|
653
|
{ |
|
654
|
654
|
return false; |
|
@@ -659,7 +659,7 @@ discard block |
|
|
block discarded – undo |
|
659
|
659
|
|
|
660
|
660
|
if ($aircraft_icao != "") |
|
661
|
661
|
{ |
|
662
|
|
- $aircraft_icao = filter_var($aircraft_icao,FILTER_SANITIZE_STRING); |
|
|
662
|
+ $aircraft_icao = filter_var($aircraft_icao, FILTER_SANITIZE_STRING); |
|
663
|
663
|
if (!is_string($aircraft_icao)) |
|
664
|
664
|
{ |
|
665
|
665
|
return false; |
|
@@ -670,7 +670,7 @@ discard block |
|
|
block discarded – undo |
|
670
|
670
|
|
|
671
|
671
|
if ($aircraft_manufacturer != "") |
|
672
|
672
|
{ |
|
673
|
|
- $aircraft_manufacturer = filter_var($aircraft_manufacturer,FILTER_SANITIZE_STRING); |
|
|
673
|
+ $aircraft_manufacturer = filter_var($aircraft_manufacturer, FILTER_SANITIZE_STRING); |
|
674
|
674
|
if (!is_string($aircraft_manufacturer)) |
|
675
|
675
|
{ |
|
676
|
676
|
return false; |
|
@@ -691,7 +691,7 @@ discard block |
|
|
block discarded – undo |
|
691
|
691
|
|
|
692
|
692
|
if ($airline_icao != "") |
|
693
|
693
|
{ |
|
694
|
|
- $airline_icao = filter_var($airline_icao,FILTER_SANITIZE_STRING); |
|
|
694
|
+ $airline_icao = filter_var($airline_icao, FILTER_SANITIZE_STRING); |
|
695
|
695
|
if (!is_string($airline_icao)) |
|
696
|
696
|
{ |
|
697
|
697
|
return false; |
|
@@ -702,7 +702,7 @@ discard block |
|
|
block discarded – undo |
|
702
|
702
|
|
|
703
|
703
|
if ($airline_country != "") |
|
704
|
704
|
{ |
|
705
|
|
- $airline_country = filter_var($airline_country,FILTER_SANITIZE_STRING); |
|
|
705
|
+ $airline_country = filter_var($airline_country, FILTER_SANITIZE_STRING); |
|
706
|
706
|
if (!is_string($airline_country)) |
|
707
|
707
|
{ |
|
708
|
708
|
return false; |
|
@@ -713,7 +713,7 @@ discard block |
|
|
block discarded – undo |
|
713
|
713
|
|
|
714
|
714
|
if ($airline_type != "") |
|
715
|
715
|
{ |
|
716
|
|
- $airline_type = filter_var($airline_type,FILTER_SANITIZE_STRING); |
|
|
716
|
+ $airline_type = filter_var($airline_type, FILTER_SANITIZE_STRING); |
|
717
|
717
|
if (!is_string($airline_type)) |
|
718
|
718
|
{ |
|
719
|
719
|
return false; |
|
@@ -735,7 +735,7 @@ discard block |
|
|
block discarded – undo |
|
735
|
735
|
|
|
736
|
736
|
if ($airport != "") |
|
737
|
737
|
{ |
|
738
|
|
- $airport = filter_var($airport,FILTER_SANITIZE_STRING); |
|
|
738
|
+ $airport = filter_var($airport, FILTER_SANITIZE_STRING); |
|
739
|
739
|
if (!is_string($airport)) |
|
740
|
740
|
{ |
|
741
|
741
|
return false; |
|
@@ -746,7 +746,7 @@ discard block |
|
|
block discarded – undo |
|
746
|
746
|
|
|
747
|
747
|
if ($airport_country != "") |
|
748
|
748
|
{ |
|
749
|
|
- $airport_country = filter_var($airport_country,FILTER_SANITIZE_STRING); |
|
|
749
|
+ $airport_country = filter_var($airport_country, FILTER_SANITIZE_STRING); |
|
750
|
750
|
if (!is_string($airport_country)) |
|
751
|
751
|
{ |
|
752
|
752
|
return false; |
|
@@ -757,7 +757,7 @@ discard block |
|
|
block discarded – undo |
|
757
|
757
|
|
|
758
|
758
|
if ($callsign != "") |
|
759
|
759
|
{ |
|
760
|
|
- $callsign = filter_var($callsign,FILTER_SANITIZE_STRING); |
|
|
760
|
+ $callsign = filter_var($callsign, FILTER_SANITIZE_STRING); |
|
761
|
761
|
if (!is_string($callsign)) |
|
762
|
762
|
{ |
|
763
|
763
|
return false; |
|
@@ -765,7 +765,7 @@ discard block |
|
|
block discarded – undo |
|
765
|
765
|
$translate = $Translation->ident2icao($callsign); |
|
766
|
766
|
if ($translate != $callsign) { |
|
767
|
767
|
$additional_query .= " AND (spotter_archive_output.ident = :callsign OR spotter_archive_output.ident = :translate)"; |
|
768
|
|
- $query_values = array_merge($query_values,array(':callsign' => $callsign,':translate' => $translate)); |
|
|
768
|
+ $query_values = array_merge($query_values, array(':callsign' => $callsign, ':translate' => $translate)); |
|
769
|
769
|
} else { |
|
770
|
770
|
$additional_query .= " AND (spotter_archive_output.ident = '".$callsign."')"; |
|
771
|
771
|
} |
|
@@ -774,7 +774,7 @@ discard block |
|
|
block discarded – undo |
|
774
|
774
|
|
|
775
|
775
|
if ($owner != "") |
|
776
|
776
|
{ |
|
777
|
|
- $owner = filter_var($owner,FILTER_SANITIZE_STRING); |
|
|
777
|
+ $owner = filter_var($owner, FILTER_SANITIZE_STRING); |
|
778
|
778
|
if (!is_string($owner)) |
|
779
|
779
|
{ |
|
780
|
780
|
return false; |
|
@@ -785,7 +785,7 @@ discard block |
|
|
block discarded – undo |
|
785
|
785
|
|
|
786
|
786
|
if ($pilot_name != "") |
|
787
|
787
|
{ |
|
788
|
|
- $pilot_name = filter_var($pilot_name,FILTER_SANITIZE_STRING); |
|
|
788
|
+ $pilot_name = filter_var($pilot_name, FILTER_SANITIZE_STRING); |
|
789
|
789
|
if (!is_string($pilot_name)) |
|
790
|
790
|
{ |
|
791
|
791
|
return false; |
|
@@ -796,7 +796,7 @@ discard block |
|
|
block discarded – undo |
|
796
|
796
|
|
|
797
|
797
|
if ($pilot_id != "") |
|
798
|
798
|
{ |
|
799
|
|
- $pilot_id = filter_var($pilot_id,FILTER_SANITIZE_NUMBER_INT); |
|
|
799
|
+ $pilot_id = filter_var($pilot_id, FILTER_SANITIZE_NUMBER_INT); |
|
800
|
800
|
if (!is_string($pilot_id)) |
|
801
|
801
|
{ |
|
802
|
802
|
return false; |
|
@@ -807,7 +807,7 @@ discard block |
|
|
block discarded – undo |
|
807
|
807
|
|
|
808
|
808
|
if ($departure_airport_route != "") |
|
809
|
809
|
{ |
|
810
|
|
- $departure_airport_route = filter_var($departure_airport_route,FILTER_SANITIZE_STRING); |
|
|
810
|
+ $departure_airport_route = filter_var($departure_airport_route, FILTER_SANITIZE_STRING); |
|
811
|
811
|
if (!is_string($departure_airport_route)) |
|
812
|
812
|
{ |
|
813
|
813
|
return false; |
|
@@ -818,7 +818,7 @@ discard block |
|
|
block discarded – undo |
|
818
|
818
|
|
|
819
|
819
|
if ($arrival_airport_route != "") |
|
820
|
820
|
{ |
|
821
|
|
- $arrival_airport_route = filter_var($arrival_airport_route,FILTER_SANITIZE_STRING); |
|
|
821
|
+ $arrival_airport_route = filter_var($arrival_airport_route, FILTER_SANITIZE_STRING); |
|
822
|
822
|
if (!is_string($arrival_airport_route)) |
|
823
|
823
|
{ |
|
824
|
824
|
return false; |
|
@@ -831,8 +831,8 @@ discard block |
|
|
block discarded – undo |
|
831
|
831
|
{ |
|
832
|
832
|
$altitude_array = explode(",", $altitude); |
|
833
|
833
|
|
|
834
|
|
- $altitude_array[0] = filter_var($altitude_array[0],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
835
|
|
- $altitude_array[1] = filter_var($altitude_array[1],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
|
834
|
+ $altitude_array[0] = filter_var($altitude_array[0], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
|
835
|
+ $altitude_array[1] = filter_var($altitude_array[1], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
836
|
836
|
|
|
837
|
837
|
|
|
838
|
838
|
if ($altitude_array[1] != "") |
|
@@ -849,8 +849,8 @@ discard block |
|
|
block discarded – undo |
|
849
|
849
|
if ($date_posted != "") |
|
850
|
850
|
{ |
|
851
|
851
|
$date_array = explode(",", $date_posted); |
|
852
|
|
- $date_array[0] = filter_var($date_array[0],FILTER_SANITIZE_STRING); |
|
853
|
|
- $date_array[1] = filter_var($date_array[1],FILTER_SANITIZE_STRING); |
|
|
852
|
+ $date_array[0] = filter_var($date_array[0], FILTER_SANITIZE_STRING); |
|
|
853
|
+ $date_array[1] = filter_var($date_array[1], FILTER_SANITIZE_STRING); |
|
854
|
854
|
if ($globalTimezone != '') { |
|
855
|
855
|
date_default_timezone_set($globalTimezone); |
|
856
|
856
|
$datetime = new DateTime(); |
|
@@ -877,8 +877,8 @@ discard block |
|
|
block discarded – undo |
|
877
|
877
|
if ($limit != "") |
|
878
|
878
|
{ |
|
879
|
879
|
$limit_array = explode(",", $limit); |
|
880
|
|
- $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
881
|
|
- $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
|
880
|
+ $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
|
881
|
+ $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
882
|
882
|
if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
|
883
|
883
|
{ |
|
884
|
884
|
//$limit_query = " LIMIT ".$limit_array[0].",".$limit_array[1]; |
|
@@ -886,8 +886,8 @@ discard block |
|
|
block discarded – undo |
|
886
|
886
|
} |
|
887
|
887
|
} |
|
888
|
888
|
if ($origLat != "" && $origLon != "" && $dist != "") { |
|
889
|
|
- $dist = number_format($dist*0.621371,2,'.',''); |
|
890
|
|
- $query="SELECT spotter_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(spotter_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(spotter_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(spotter_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
|
889
|
+ $dist = number_format($dist*0.621371, 2, '.', ''); |
|
|
890
|
+ $query = "SELECT spotter_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(spotter_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(spotter_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(spotter_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
891
|
891
|
FROM spotter_archive_output, spotter_archive WHERE spotter_output_archive.flightaware_id = spotter_archive.flightaware_id AND spotter_output.ident <> '' ".$additional_query."AND CAST(spotter_archive.longitude as double precision) between ($origLon-$dist/ABS(cos(radians($origLat))*69)) and ($origLon+$dist/ABS(cos(radians($origLat))*69)) and CAST(spotter_archive.latitude as double precision) between ($origLat-($dist/69)) and ($origLat+($dist/69)) |
|
892
|
892
|
AND (3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(spotter_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(spotter_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(spotter_archive.longitude as double precision))*pi()/180/2),2)))) < $dist".$filter_query." ORDER BY distance"; |
|
893
|
893
|
} else { |
|
@@ -903,12 +903,12 @@ discard block |
|
|
block discarded – undo |
|
903
|
903
|
$additional_query .= " AND (spotter_archive_output.waypoints <> '')"; |
|
904
|
904
|
} |
|
905
|
905
|
|
|
906
|
|
- $query = "SELECT spotter_archive_output.* FROM spotter_archive_output |
|
|
906
|
+ $query = "SELECT spotter_archive_output.* FROM spotter_archive_output |
|
907
|
907
|
WHERE spotter_archive_output.ident <> '' |
|
908
|
908
|
".$additional_query." |
|
909
|
909
|
".$filter_query.$orderby_query; |
|
910
|
910
|
} |
|
911
|
|
- $spotter_array = $Spotter->getDataFromDB($query, $query_values,$limit_query); |
|
|
911
|
+ $spotter_array = $Spotter->getDataFromDB($query, $query_values, $limit_query); |
|
912
|
912
|
return $spotter_array; |
|
913
|
913
|
} |
|
914
|
914
|
|
|
@@ -923,7 +923,7 @@ discard block |
|
|
block discarded – undo |
|
923
|
923
|
try { |
|
924
|
924
|
$sth = $this->db->prepare($query); |
|
925
|
925
|
$sth->execute(); |
|
926
|
|
- } catch(PDOException $e) { |
|
|
926
|
+ } catch (PDOException $e) { |
|
927
|
927
|
return "error"; |
|
928
|
928
|
} |
|
929
|
929
|
} |
|
@@ -960,8 +960,8 @@ discard block |
|
|
block discarded – undo |
|
960
|
960
|
{ |
|
961
|
961
|
$limit_array = explode(",", $limit); |
|
962
|
962
|
|
|
963
|
|
- $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
964
|
|
- $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
|
963
|
+ $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
|
964
|
+ $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
965
|
965
|
|
|
966
|
966
|
if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
|
967
|
967
|
{ |
|
@@ -1002,7 +1002,7 @@ discard block |
|
|
block discarded – undo |
|
1002
|
1002
|
$query_values = array(); |
|
1003
|
1003
|
$limit_query = ''; |
|
1004
|
1004
|
$additional_query = ''; |
|
1005
|
|
- $filter_query = $this->getFilter($filter,true,true); |
|
|
1005
|
+ $filter_query = $this->getFilter($filter, true, true); |
|
1006
|
1006
|
|
|
1007
|
1007
|
if ($owner != "") |
|
1008
|
1008
|
{ |
|
@@ -1019,8 +1019,8 @@ discard block |
|
|
block discarded – undo |
|
1019
|
1019
|
{ |
|
1020
|
1020
|
$limit_array = explode(",", $limit); |
|
1021
|
1021
|
|
|
1022
|
|
- $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1023
|
|
- $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
|
1022
|
+ $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
|
1023
|
+ $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1024
|
1024
|
|
|
1025
|
1025
|
if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
|
1026
|
1026
|
{ |
|
@@ -1060,7 +1060,7 @@ discard block |
|
|
block discarded – undo |
|
1060
|
1060
|
$query_values = array(); |
|
1061
|
1061
|
$limit_query = ''; |
|
1062
|
1062
|
$additional_query = ''; |
|
1063
|
|
- $filter_query = $this->getFilter($filter,true,true); |
|
|
1063
|
+ $filter_query = $this->getFilter($filter, true, true); |
|
1064
|
1064
|
|
|
1065
|
1065
|
if ($pilot != "") |
|
1066
|
1066
|
{ |
|
@@ -1072,8 +1072,8 @@ discard block |
|
|
block discarded – undo |
|
1072
|
1072
|
{ |
|
1073
|
1073
|
$limit_array = explode(",", $limit); |
|
1074
|
1074
|
|
|
1075
|
|
- $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1076
|
|
- $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
|
1075
|
+ $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
|
1076
|
+ $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1077
|
1077
|
|
|
1078
|
1078
|
if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
|
1079
|
1079
|
{ |
|
@@ -1103,7 +1103,7 @@ discard block |
|
|
block discarded – undo |
|
1103
|
1103
|
* @return Array the airline country list |
|
1104
|
1104
|
* |
|
1105
|
1105
|
*/ |
|
1106
|
|
- public function countAllFlightOverCountries($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
|
1106
|
+ public function countAllFlightOverCountries($limit = true, $olderthanmonths = 0, $sincedate = '') |
|
1107
|
1107
|
{ |
|
1108
|
1108
|
global $globalDBdriver; |
|
1109
|
1109
|
/* |
|
@@ -1132,7 +1132,7 @@ discard block |
|
|
block discarded – undo |
|
1132
|
1132
|
$flight_array = array(); |
|
1133
|
1133
|
$temp_array = array(); |
|
1134
|
1134
|
|
|
1135
|
|
- while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
|
1135
|
+ while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1136
|
1136
|
{ |
|
1137
|
1137
|
$temp_array['flight_count'] = $row['nb']; |
|
1138
|
1138
|
$temp_array['flight_country'] = $row['name']; |
|
@@ -1149,7 +1149,7 @@ discard block |
|
|
block discarded – undo |
|
1149
|
1149
|
* @return Array the airline country list |
|
1150
|
1150
|
* |
|
1151
|
1151
|
*/ |
|
1152
|
|
- public function countAllFlightOverCountriesByAirlines($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
|
1152
|
+ public function countAllFlightOverCountriesByAirlines($limit = true, $olderthanmonths = 0, $sincedate = '') |
|
1153
|
1153
|
{ |
|
1154
|
1154
|
global $globalDBdriver; |
|
1155
|
1155
|
/* |
|
@@ -1178,7 +1178,7 @@ discard block |
|
|
block discarded – undo |
|
1178
|
1178
|
$flight_array = array(); |
|
1179
|
1179
|
$temp_array = array(); |
|
1180
|
1180
|
|
|
1181
|
|
- while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
|
1181
|
+ while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1182
|
1182
|
{ |
|
1183
|
1183
|
$temp_array['airline_icao'] = $row['airline_icao']; |
|
1184
|
1184
|
$temp_array['flight_count'] = $row['nb']; |
|
@@ -1196,14 +1196,14 @@ discard block |
|
|
block discarded – undo |
|
1196
|
1196
|
* @return Array the spotter information |
|
1197
|
1197
|
* |
|
1198
|
1198
|
*/ |
|
1199
|
|
- public function getDateArchiveSpotterDataById($id,$date) |
|
|
1199
|
+ public function getDateArchiveSpotterDataById($id, $date) |
|
1200
|
1200
|
{ |
|
1201
|
1201
|
$Spotter = new Spotter($this->db); |
|
1202
|
1202
|
date_default_timezone_set('UTC'); |
|
1203
|
1203
|
$id = filter_var($id, FILTER_SANITIZE_STRING); |
|
1204
|
|
- $query = 'SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.flightaware_id = :id AND l.date <= :date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate ORDER BY spotter_archive.date DESC'; |
|
1205
|
|
- $date = date('c',$date); |
|
1206
|
|
- $spotter_array = $Spotter->getDataFromDB($query,array(':id' => $id,':date' => $date)); |
|
|
1204
|
+ $query = 'SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.flightaware_id = :id AND l.date <= :date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate ORDER BY spotter_archive.date DESC'; |
|
|
1205
|
+ $date = date('c', $date); |
|
|
1206
|
+ $spotter_array = $Spotter->getDataFromDB($query, array(':id' => $id, ':date' => $date)); |
|
1207
|
1207
|
return $spotter_array; |
|
1208
|
1208
|
} |
|
1209
|
1209
|
|
|
@@ -1213,14 +1213,14 @@ discard block |
|
|
block discarded – undo |
|
1213
|
1213
|
* @return Array the spotter information |
|
1214
|
1214
|
* |
|
1215
|
1215
|
*/ |
|
1216
|
|
- public function getDateArchiveSpotterDataByIdent($ident,$date) |
|
|
1216
|
+ public function getDateArchiveSpotterDataByIdent($ident, $date) |
|
1217
|
1217
|
{ |
|
1218
|
1218
|
$Spotter = new Spotter($this->db); |
|
1219
|
1219
|
date_default_timezone_set('UTC'); |
|
1220
|
1220
|
$ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
1221
|
|
- $query = 'SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident AND l.date <= :date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate ORDER BY spotter_archive.date DESC'; |
|
1222
|
|
- $date = date('c',$date); |
|
1223
|
|
- $spotter_array = $Spotter->getDataFromDB($query,array(':ident' => $ident,':date' => $date)); |
|
|
1221
|
+ $query = 'SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident AND l.date <= :date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate ORDER BY spotter_archive.date DESC'; |
|
|
1222
|
+ $date = date('c', $date); |
|
|
1223
|
+ $spotter_array = $Spotter->getDataFromDB($query, array(':ident' => $ident, ':date' => $date)); |
|
1224
|
1224
|
return $spotter_array; |
|
1225
|
1225
|
} |
|
1226
|
1226
|
|
|
@@ -1230,7 +1230,7 @@ discard block |
|
|
block discarded – undo |
|
1230
|
1230
|
* @return Array the spotter information |
|
1231
|
1231
|
* |
|
1232
|
1232
|
*/ |
|
1233
|
|
- public function getSpotterDataByAirport($airport = '', $limit = '', $sort = '',$filters = array()) |
|
|
1233
|
+ public function getSpotterDataByAirport($airport = '', $limit = '', $sort = '', $filters = array()) |
|
1234
|
1234
|
{ |
|
1235
|
1235
|
global $global_query; |
|
1236
|
1236
|
$Spotter = new Spotter($this->db); |
|
@@ -1238,7 +1238,7 @@ discard block |
|
|
block discarded – undo |
|
1238
|
1238
|
$query_values = array(); |
|
1239
|
1239
|
$limit_query = ''; |
|
1240
|
1240
|
$additional_query = ''; |
|
1241
|
|
- $filter_query = $this->getFilter($filters,true,true); |
|
|
1241
|
+ $filter_query = $this->getFilter($filters, true, true); |
|
1242
|
1242
|
|
|
1243
|
1243
|
if ($airport != "") |
|
1244
|
1244
|
{ |
|
@@ -1255,8 +1255,8 @@ discard block |
|
|
block discarded – undo |
|
1255
|
1255
|
{ |
|
1256
|
1256
|
$limit_array = explode(",", $limit); |
|
1257
|
1257
|
|
|
1258
|
|
- $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1259
|
|
- $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
|
1258
|
+ $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
|
1259
|
+ $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1260
|
1260
|
|
|
1261
|
1261
|
if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
|
1262
|
1262
|
{ |