@@ -18,6 +18,10 @@ discard block |
||
18 | 18 | $this->db = $Connection->db(); |
19 | 19 | } |
20 | 20 | |
21 | + /** |
|
22 | + * @param string $type |
|
23 | + * @param string $stats_date |
|
24 | + */ |
|
21 | 25 | public function addLastStatsUpdate($type,$stats_date) { |
22 | 26 | $query = "DELETE FROM config WHERE name = :type; |
23 | 27 | INSERT INTO config (name,value) VALUES (:type,:stats_date);"; |
@@ -961,6 +965,10 @@ discard block |
||
961 | 965 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
962 | 966 | return $all; |
963 | 967 | } |
968 | + |
|
969 | + /** |
|
970 | + * @param string $type |
|
971 | + */ |
|
964 | 972 | public function deleteStatsByType($type,$stats_airline = '', $filter_name = '') { |
965 | 973 | if ($filter_name == '') $filter_name = $this->filter_name; |
966 | 974 | $query = "DELETE FROM stats WHERE stats_type = :type AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
@@ -974,6 +982,11 @@ discard block |
||
974 | 982 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
975 | 983 | return $all; |
976 | 984 | } |
985 | + |
|
986 | + /** |
|
987 | + * @param string $type |
|
988 | + * @param string $year |
|
989 | + */ |
|
977 | 990 | public function getSumStats($type,$year,$stats_airline = '',$filter_name = '',$month = '') { |
978 | 991 | if ($filter_name == '') $filter_name = $this->filter_name; |
979 | 992 | global $globalArchiveMonths, $globalDBdriver; |
@@ -1118,6 +1131,10 @@ discard block |
||
1118 | 1131 | else return 0; |
1119 | 1132 | } |
1120 | 1133 | |
1134 | + /** |
|
1135 | + * @param string $type |
|
1136 | + * @param string $stats_date |
|
1137 | + */ |
|
1121 | 1138 | public function addStat($type,$cnt,$stats_date,$stats_airline = '',$filter_name = '') { |
1122 | 1139 | global $globalDBdriver; |
1123 | 1140 | if ($filter_name == '') $filter_name = $this->filter_name; |
@@ -1171,6 +1188,9 @@ discard block |
||
1171 | 1188 | } |
1172 | 1189 | */ |
1173 | 1190 | |
1191 | + /** |
|
1192 | + * @param string $stats_type |
|
1193 | + */ |
|
1174 | 1194 | public function getStatsSource($stats_type,$year = '',$month = '',$day = '') { |
1175 | 1195 | global $globalDBdriver; |
1176 | 1196 | $query = "SELECT * FROM stats_source WHERE stats_type = :stats_type"; |
@@ -1214,6 +1234,9 @@ discard block |
||
1214 | 1234 | return $all; |
1215 | 1235 | } |
1216 | 1236 | |
1237 | + /** |
|
1238 | + * @param string $stats_type |
|
1239 | + */ |
|
1217 | 1240 | public function addStatSource($data,$source_name,$stats_type,$date) { |
1218 | 1241 | global $globalDBdriver; |
1219 | 1242 | if ($globalDBdriver == 'mysql') { |
@@ -1229,6 +1252,10 @@ discard block |
||
1229 | 1252 | return "error : ".$e->getMessage(); |
1230 | 1253 | } |
1231 | 1254 | } |
1255 | + |
|
1256 | + /** |
|
1257 | + * @param string $type |
|
1258 | + */ |
|
1232 | 1259 | public function addStatFlight($type,$date_name,$cnt,$stats_airline = '',$filter_name = '') { |
1233 | 1260 | $query = "INSERT INTO stats_flight (stats_type,flight_date,cnt,stats_airline,filter_name) VALUES (:type,:flight_date,:cnt,:stats_airline,:filter_name)"; |
1234 | 1261 | $query_values = array(':type' => $type,':flight_date' => $date_name,':cnt' => $cnt, ':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
@@ -1495,6 +1522,10 @@ discard block |
||
1495 | 1522 | return "error : ".$e->getMessage(); |
1496 | 1523 | } |
1497 | 1524 | } |
1525 | + |
|
1526 | + /** |
|
1527 | + * @param string $type |
|
1528 | + */ |
|
1498 | 1529 | public function deleteStatFlight($type) { |
1499 | 1530 | $query = "DELETE FROM stats_flight WHERE stats_type = :type"; |
1500 | 1531 | $query_values = array(':type' => $type); |
@@ -1505,6 +1536,10 @@ discard block |
||
1505 | 1536 | return "error : ".$e->getMessage(); |
1506 | 1537 | } |
1507 | 1538 | } |
1539 | + |
|
1540 | + /** |
|
1541 | + * @param string $type |
|
1542 | + */ |
|
1508 | 1543 | public function deleteStatAirport($type) { |
1509 | 1544 | $query = "DELETE FROM stats_airport WHERE stats_type = :type"; |
1510 | 1545 | $query_values = array(':type' => $type); |
@@ -16,33 +16,33 @@ discard block |
||
16 | 16 | if (isset($globalFilterName)) $this->filter_name = $globalFilterName; |
17 | 17 | $Connection = new Connection($dbc); |
18 | 18 | $this->db = $Connection->db(); |
19 | - } |
|
19 | + } |
|
20 | 20 | |
21 | 21 | public function addLastStatsUpdate($type,$stats_date) { |
22 | - $query = "DELETE FROM config WHERE name = :type; |
|
22 | + $query = "DELETE FROM config WHERE name = :type; |
|
23 | 23 | INSERT INTO config (name,value) VALUES (:type,:stats_date);"; |
24 | - $query_values = array('type' => $type,':stats_date' => $stats_date); |
|
25 | - try { |
|
26 | - $sth = $this->db->prepare($query); |
|
27 | - $sth->execute($query_values); |
|
28 | - } catch(PDOException $e) { |
|
29 | - return "error : ".$e->getMessage(); |
|
30 | - } |
|
31 | - } |
|
24 | + $query_values = array('type' => $type,':stats_date' => $stats_date); |
|
25 | + try { |
|
26 | + $sth = $this->db->prepare($query); |
|
27 | + $sth->execute($query_values); |
|
28 | + } catch(PDOException $e) { |
|
29 | + return "error : ".$e->getMessage(); |
|
30 | + } |
|
31 | + } |
|
32 | 32 | |
33 | 33 | public function getLastStatsUpdate($type = 'last_update_stats') { |
34 | - $query = "SELECT value FROM config WHERE name = :type"; |
|
35 | - try { |
|
36 | - $sth = $this->db->prepare($query); |
|
37 | - $sth->execute(array(':type' => $type)); |
|
38 | - } catch(PDOException $e) { |
|
39 | - echo "error : ".$e->getMessage(); |
|
40 | - } |
|
41 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
42 | - return $all; |
|
43 | - } |
|
44 | - public function deleteStats($filter_name = '') { |
|
45 | - /* |
|
34 | + $query = "SELECT value FROM config WHERE name = :type"; |
|
35 | + try { |
|
36 | + $sth = $this->db->prepare($query); |
|
37 | + $sth->execute(array(':type' => $type)); |
|
38 | + } catch(PDOException $e) { |
|
39 | + echo "error : ".$e->getMessage(); |
|
40 | + } |
|
41 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
42 | + return $all; |
|
43 | + } |
|
44 | + public function deleteStats($filter_name = '') { |
|
45 | + /* |
|
46 | 46 | $query = "DELETE FROM config WHERE name = 'last_update_stats'"; |
47 | 47 | try { |
48 | 48 | $sth = $this->db->prepare($query); |
@@ -51,109 +51,109 @@ discard block |
||
51 | 51 | return "error : ".$e->getMessage(); |
52 | 52 | } |
53 | 53 | */ |
54 | - $query = "DELETE FROM stats WHERE filter_name = :filter_name;DELETE FROM stats_aircraft WHERE filter_name = :filter_name;DELETE FROM stats_airline WHERE filter_name = :filter_name;DELETE FROM stats_airport WHERE filter_name = :filter_name;DELETE FROM stats_callsign WHERE filter_name = :filter_name;DELETE FROM stats_country WHERE filter_name = :filter_name;DELETE FROM stats_flight WHERE filter_name = :filter_name;DELETE FROM stats_owner WHERE filter_name = :filter_name;DELETE FROM stats_pilot WHERE filter_name = :filter_name;DELETE FROM stats_registration WHERE filter_name = :filter_name;"; |
|
55 | - try { |
|
56 | - $sth = $this->db->prepare($query); |
|
57 | - $sth->execute(array(':filter_name' => $filter_name)); |
|
58 | - } catch(PDOException $e) { |
|
59 | - return "error : ".$e->getMessage(); |
|
60 | - } |
|
61 | - } |
|
62 | - public function deleteOldStats($filter_name = '') { |
|
63 | - if ($filter_name == '') { |
|
64 | - $query = "DELETE FROM config WHERE name = 'last_update_stats'"; |
|
65 | - } else { |
|
66 | - $query = "DELETE FROM config WHERE name = 'last_update_stats_".$filter_name."'"; |
|
67 | - } |
|
68 | - try { |
|
69 | - $sth = $this->db->prepare($query); |
|
70 | - $sth->execute(); |
|
71 | - } catch(PDOException $e) { |
|
72 | - return "error : ".$e->getMessage(); |
|
73 | - } |
|
54 | + $query = "DELETE FROM stats WHERE filter_name = :filter_name;DELETE FROM stats_aircraft WHERE filter_name = :filter_name;DELETE FROM stats_airline WHERE filter_name = :filter_name;DELETE FROM stats_airport WHERE filter_name = :filter_name;DELETE FROM stats_callsign WHERE filter_name = :filter_name;DELETE FROM stats_country WHERE filter_name = :filter_name;DELETE FROM stats_flight WHERE filter_name = :filter_name;DELETE FROM stats_owner WHERE filter_name = :filter_name;DELETE FROM stats_pilot WHERE filter_name = :filter_name;DELETE FROM stats_registration WHERE filter_name = :filter_name;"; |
|
55 | + try { |
|
56 | + $sth = $this->db->prepare($query); |
|
57 | + $sth->execute(array(':filter_name' => $filter_name)); |
|
58 | + } catch(PDOException $e) { |
|
59 | + return "error : ".$e->getMessage(); |
|
60 | + } |
|
61 | + } |
|
62 | + public function deleteOldStats($filter_name = '') { |
|
63 | + if ($filter_name == '') { |
|
64 | + $query = "DELETE FROM config WHERE name = 'last_update_stats'"; |
|
65 | + } else { |
|
66 | + $query = "DELETE FROM config WHERE name = 'last_update_stats_".$filter_name."'"; |
|
67 | + } |
|
68 | + try { |
|
69 | + $sth = $this->db->prepare($query); |
|
70 | + $sth->execute(); |
|
71 | + } catch(PDOException $e) { |
|
72 | + return "error : ".$e->getMessage(); |
|
73 | + } |
|
74 | 74 | |
75 | - $query = "DELETE FROM stats_aircraft WHERE filter_name = :filter_name;DELETE FROM stats_airline WHERE filter_name = :filter_name;DELETE FROM stats_callsign WHERE filter_name = :filter_name;DELETE FROM stats_country WHERE filter_name = :filter_name;DELETE FROM stats_owner WHERE filter_name = :filter_name;DELETE FROM stats_pilot WHERE filter_name = :filter_name;DELETE FROM stats_registration WHERE filter_name = :filter_name;"; |
|
76 | - try { |
|
77 | - $sth = $this->db->prepare($query); |
|
78 | - $sth->execute(array(':filter_name' => $filter_name)); |
|
79 | - } catch(PDOException $e) { |
|
80 | - return "error : ".$e->getMessage(); |
|
81 | - } |
|
82 | - } |
|
75 | + $query = "DELETE FROM stats_aircraft WHERE filter_name = :filter_name;DELETE FROM stats_airline WHERE filter_name = :filter_name;DELETE FROM stats_callsign WHERE filter_name = :filter_name;DELETE FROM stats_country WHERE filter_name = :filter_name;DELETE FROM stats_owner WHERE filter_name = :filter_name;DELETE FROM stats_pilot WHERE filter_name = :filter_name;DELETE FROM stats_registration WHERE filter_name = :filter_name;"; |
|
76 | + try { |
|
77 | + $sth = $this->db->prepare($query); |
|
78 | + $sth->execute(array(':filter_name' => $filter_name)); |
|
79 | + } catch(PDOException $e) { |
|
80 | + return "error : ".$e->getMessage(); |
|
81 | + } |
|
82 | + } |
|
83 | 83 | public function getAllAirlineNames($filter_name = '') { |
84 | 84 | if ($filter_name == '') $filter_name = $this->filter_name; |
85 | - $query = "SELECT * FROM stats_airline WHERE filter_name = :filter_name ORDER BY airline_name ASC"; |
|
86 | - try { |
|
87 | - $sth = $this->db->prepare($query); |
|
88 | - $sth->execute(array(':filter_name' => $filter_name)); |
|
89 | - } catch(PDOException $e) { |
|
90 | - echo "error : ".$e->getMessage(); |
|
91 | - } |
|
92 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
93 | - return $all; |
|
94 | - } |
|
85 | + $query = "SELECT * FROM stats_airline WHERE filter_name = :filter_name ORDER BY airline_name ASC"; |
|
86 | + try { |
|
87 | + $sth = $this->db->prepare($query); |
|
88 | + $sth->execute(array(':filter_name' => $filter_name)); |
|
89 | + } catch(PDOException $e) { |
|
90 | + echo "error : ".$e->getMessage(); |
|
91 | + } |
|
92 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
93 | + return $all; |
|
94 | + } |
|
95 | 95 | public function getAllAircraftTypes($stats_airline = '',$filter_name = '') { |
96 | 96 | if ($filter_name == '') $filter_name = $this->filter_name; |
97 | - $query = "SELECT * FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_manufacturer ASC"; |
|
98 | - try { |
|
99 | - $sth = $this->db->prepare($query); |
|
100 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
101 | - } catch(PDOException $e) { |
|
102 | - echo "error : ".$e->getMessage(); |
|
103 | - } |
|
104 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
105 | - return $all; |
|
106 | - } |
|
97 | + $query = "SELECT * FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_manufacturer ASC"; |
|
98 | + try { |
|
99 | + $sth = $this->db->prepare($query); |
|
100 | + $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
101 | + } catch(PDOException $e) { |
|
102 | + echo "error : ".$e->getMessage(); |
|
103 | + } |
|
104 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
105 | + return $all; |
|
106 | + } |
|
107 | 107 | public function getAllManufacturers($stats_airline = '',$filter_name = '') { |
108 | 108 | if ($filter_name == '') $filter_name = $this->filter_name; |
109 | - $query = "SELECT DISTINCT(aircraft_manufacturer) FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name AND aircraft_manufacturer <> '' ORDER BY aircraft_manufacturer ASC"; |
|
110 | - try { |
|
111 | - $sth = $this->db->prepare($query); |
|
112 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
113 | - } catch(PDOException $e) { |
|
114 | - echo "error : ".$e->getMessage(); |
|
115 | - } |
|
116 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
117 | - return $all; |
|
118 | - } |
|
109 | + $query = "SELECT DISTINCT(aircraft_manufacturer) FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name AND aircraft_manufacturer <> '' ORDER BY aircraft_manufacturer ASC"; |
|
110 | + try { |
|
111 | + $sth = $this->db->prepare($query); |
|
112 | + $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
113 | + } catch(PDOException $e) { |
|
114 | + echo "error : ".$e->getMessage(); |
|
115 | + } |
|
116 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
117 | + return $all; |
|
118 | + } |
|
119 | 119 | public function getAllAirportNames($stats_airline = '',$filter_name = '') { |
120 | 120 | if ($filter_name == '') $filter_name = $this->filter_name; |
121 | - $query = "SELECT airport_icao, airport_name,airport_city,airport_country FROM stats_airport WHERE stats_airline = :stats_airline AND filter_name = :filter_name AND stats_type = 'daily' GROUP BY airport_icao,airport_name,airport_city,airport_country ORDER BY airport_city ASC"; |
|
122 | - try { |
|
123 | - $sth = $this->db->prepare($query); |
|
124 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
125 | - } catch(PDOException $e) { |
|
126 | - echo "error : ".$e->getMessage(); |
|
127 | - } |
|
128 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
129 | - return $all; |
|
130 | - } |
|
121 | + $query = "SELECT airport_icao, airport_name,airport_city,airport_country FROM stats_airport WHERE stats_airline = :stats_airline AND filter_name = :filter_name AND stats_type = 'daily' GROUP BY airport_icao,airport_name,airport_city,airport_country ORDER BY airport_city ASC"; |
|
122 | + try { |
|
123 | + $sth = $this->db->prepare($query); |
|
124 | + $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
125 | + } catch(PDOException $e) { |
|
126 | + echo "error : ".$e->getMessage(); |
|
127 | + } |
|
128 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
129 | + return $all; |
|
130 | + } |
|
131 | 131 | |
132 | 132 | public function getAllOwnerNames($stats_airline = '',$filter_name = '') { |
133 | 133 | if ($filter_name == '') $filter_name = $this->filter_name; |
134 | - $query = "SELECT owner_name FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_name ASC"; |
|
135 | - try { |
|
136 | - $sth = $this->db->prepare($query); |
|
137 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
138 | - } catch(PDOException $e) { |
|
139 | - echo "error : ".$e->getMessage(); |
|
140 | - } |
|
141 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
142 | - return $all; |
|
143 | - } |
|
134 | + $query = "SELECT owner_name FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_name ASC"; |
|
135 | + try { |
|
136 | + $sth = $this->db->prepare($query); |
|
137 | + $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
138 | + } catch(PDOException $e) { |
|
139 | + echo "error : ".$e->getMessage(); |
|
140 | + } |
|
141 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
142 | + return $all; |
|
143 | + } |
|
144 | 144 | |
145 | 145 | public function getAllPilotNames($stats_airline = '',$filter_name = '') { |
146 | 146 | if ($filter_name == '') $filter_name = $this->filter_name; |
147 | - $query = "SELECT pilot_id,pilot_name FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_name ASC"; |
|
148 | - try { |
|
149 | - $sth = $this->db->prepare($query); |
|
150 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
151 | - } catch(PDOException $e) { |
|
152 | - echo "error : ".$e->getMessage(); |
|
153 | - } |
|
154 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
155 | - return $all; |
|
156 | - } |
|
147 | + $query = "SELECT pilot_id,pilot_name FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_name ASC"; |
|
148 | + try { |
|
149 | + $sth = $this->db->prepare($query); |
|
150 | + $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
151 | + } catch(PDOException $e) { |
|
152 | + echo "error : ".$e->getMessage(); |
|
153 | + } |
|
154 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
155 | + return $all; |
|
156 | + } |
|
157 | 157 | |
158 | 158 | |
159 | 159 | public function countAllAircraftTypes($limit = true, $stats_airline = '', $filter_name = '',$year = '', $month = '') { |
@@ -170,16 +170,16 @@ discard block |
||
170 | 170 | } |
171 | 171 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
172 | 172 | } else $all = array(); |
173 | - if (empty($all)) { |
|
174 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
175 | - if ($filter_name != '') { |
|
176 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
177 | - } |
|
178 | - $Spotter = new Spotter($this->db); |
|
179 | - //$all = $Spotter->countAllAircraftTypes($limit,0,'',$filters,$year,$month); |
|
180 | - $all = $Spotter->countAllAircraftTypes($limit,0,'',$filters); |
|
181 | - } |
|
182 | - return $all; |
|
173 | + if (empty($all)) { |
|
174 | + $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
175 | + if ($filter_name != '') { |
|
176 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
177 | + } |
|
178 | + $Spotter = new Spotter($this->db); |
|
179 | + //$all = $Spotter->countAllAircraftTypes($limit,0,'',$filters,$year,$month); |
|
180 | + $all = $Spotter->countAllAircraftTypes($limit,0,'',$filters); |
|
181 | + } |
|
182 | + return $all; |
|
183 | 183 | } |
184 | 184 | public function countAllAirlineCountries($limit = true,$filter_name = '',$year = '',$month = '') { |
185 | 185 | global $globalStatsFilters; |
@@ -195,17 +195,17 @@ discard block |
||
195 | 195 | } |
196 | 196 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
197 | 197 | } else $all = array(); |
198 | - if (empty($all)) { |
|
199 | - $Spotter = new Spotter($this->db); |
|
200 | - $filters = array(); |
|
201 | - $filters = array('year' => $year,'month' => $month); |
|
202 | - if ($filter_name != '') { |
|
203 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
204 | - } |
|
205 | - //$all = $Spotter->countAllAirlineCountries($limit,$filters,$year,$month); |
|
206 | - $all = $Spotter->countAllAirlineCountries($limit,$filters); |
|
207 | - } |
|
208 | - return $all; |
|
198 | + if (empty($all)) { |
|
199 | + $Spotter = new Spotter($this->db); |
|
200 | + $filters = array(); |
|
201 | + $filters = array('year' => $year,'month' => $month); |
|
202 | + if ($filter_name != '') { |
|
203 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
204 | + } |
|
205 | + //$all = $Spotter->countAllAirlineCountries($limit,$filters,$year,$month); |
|
206 | + $all = $Spotter->countAllAirlineCountries($limit,$filters); |
|
207 | + } |
|
208 | + return $all; |
|
209 | 209 | } |
210 | 210 | public function countAllAircraftManufacturers($limit = true,$stats_airline = '', $filter_name = '',$year = '', $month = '') { |
211 | 211 | global $globalStatsFilters; |
@@ -247,39 +247,39 @@ discard block |
||
247 | 247 | } |
248 | 248 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
249 | 249 | } else $all = array(); |
250 | - if (empty($all)) { |
|
250 | + if (empty($all)) { |
|
251 | 251 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
252 | 252 | if ($filter_name != '') { |
253 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
253 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
254 | 254 | } |
255 | 255 | $Spotter = new Spotter($this->db); |
256 | 256 | //$all = $Spotter->countAllArrivalCountries($limit,$filters,$year,$month); |
257 | 257 | $all = $Spotter->countAllArrivalCountries($limit,$filters); |
258 | - } |
|
259 | - return $all; |
|
258 | + } |
|
259 | + return $all; |
|
260 | 260 | } |
261 | 261 | public function countAllDepartureCountries($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
262 | 262 | global $globalStatsFilters; |
263 | 263 | if ($filter_name == '') $filter_name = $this->filter_name; |
264 | 264 | if ($limit) $query = "SELECT airport_country AS airport_departure_country, SUM(departure) as airport_departure_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_departure_country ORDER BY airport_departure_country_count DESC LIMIT 10 OFFSET 0"; |
265 | 265 | else $query = "SELECT airport_country AS airport_departure_country, SUM(departure) as airport_departure_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_departure_country ORDER BY airport_departure_country_count DESC"; |
266 | - try { |
|
267 | - $sth = $this->db->prepare($query); |
|
268 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
269 | - } catch(PDOException $e) { |
|
270 | - echo "error : ".$e->getMessage(); |
|
271 | - } |
|
272 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
273 | - if (empty($all)) { |
|
266 | + try { |
|
267 | + $sth = $this->db->prepare($query); |
|
268 | + $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
269 | + } catch(PDOException $e) { |
|
270 | + echo "error : ".$e->getMessage(); |
|
271 | + } |
|
272 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
273 | + if (empty($all)) { |
|
274 | 274 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
275 | 275 | if ($filter_name != '') { |
276 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
276 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
277 | 277 | } |
278 | 278 | $Spotter = new Spotter($this->db); |
279 | 279 | //$all = $Spotter->countAllDepartureCountries($filters,$year,$month); |
280 | 280 | $all = $Spotter->countAllDepartureCountries($filters); |
281 | - } |
|
282 | - return $all; |
|
281 | + } |
|
282 | + return $all; |
|
283 | 283 | } |
284 | 284 | |
285 | 285 | public function countAllAirlines($limit = true,$filter_name = '',$year = '',$month = '') { |
@@ -305,17 +305,17 @@ discard block |
||
305 | 305 | } |
306 | 306 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
307 | 307 | } else $all = array(); |
308 | - if (empty($all)) { |
|
309 | - $Spotter = new Spotter($this->db); |
|
310 | - $filters = array(); |
|
308 | + if (empty($all)) { |
|
309 | + $Spotter = new Spotter($this->db); |
|
310 | + $filters = array(); |
|
311 | 311 | $filters = array('year' => $year,'month' => $month); |
312 | - if ($filter_name != '') { |
|
313 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
312 | + if ($filter_name != '') { |
|
313 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
314 | 314 | } |
315 | 315 | //$all = $Spotter->countAllAirlines($limit,0,'',$filters,$year,$month); |
316 | - $all = $Spotter->countAllAirlines($limit,0,'',$filters); |
|
317 | - } |
|
318 | - return $all; |
|
316 | + $all = $Spotter->countAllAirlines($limit,0,'',$filters); |
|
317 | + } |
|
318 | + return $all; |
|
319 | 319 | } |
320 | 320 | public function countAllAircraftRegistrations($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
321 | 321 | global $globalStatsFilters; |
@@ -331,16 +331,16 @@ discard block |
||
331 | 331 | } |
332 | 332 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
333 | 333 | } else $all = array(); |
334 | - if (empty($all)) { |
|
334 | + if (empty($all)) { |
|
335 | 335 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
336 | 336 | if ($filter_name != '') { |
337 | 337 | $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
338 | 338 | } |
339 | - $Spotter = new Spotter($this->db); |
|
340 | - //$all = $Spotter->countAllAircraftRegistrations($limit,0,'',$filters,$year,$month); |
|
341 | - $all = $Spotter->countAllAircraftRegistrations($limit,0,'',$filters); |
|
342 | - } |
|
343 | - return $all; |
|
339 | + $Spotter = new Spotter($this->db); |
|
340 | + //$all = $Spotter->countAllAircraftRegistrations($limit,0,'',$filters,$year,$month); |
|
341 | + $all = $Spotter->countAllAircraftRegistrations($limit,0,'',$filters); |
|
342 | + } |
|
343 | + return $all; |
|
344 | 344 | } |
345 | 345 | public function countAllCallsigns($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
346 | 346 | global $globalStatsFilters; |
@@ -381,7 +381,7 @@ discard block |
||
381 | 381 | echo "error : ".$e->getMessage(); |
382 | 382 | } |
383 | 383 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
384 | - /* |
|
384 | + /* |
|
385 | 385 | if (empty($all)) { |
386 | 386 | $Spotter = new Spotter($this->db); |
387 | 387 | $all = $Spotter->countAllFlightOverCountries($limit); |
@@ -433,16 +433,16 @@ discard block |
||
433 | 433 | } |
434 | 434 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
435 | 435 | } else $all = array(); |
436 | - if (empty($all)) { |
|
436 | + if (empty($all)) { |
|
437 | 437 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
438 | 438 | if ($filter_name != '') { |
439 | 439 | $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
440 | 440 | } |
441 | - $Spotter = new Spotter($this->db); |
|
442 | - //$all = $Spotter->countAllOwners($limit,0,'',$filters,$year,$month); |
|
443 | - $all = $Spotter->countAllOwners($limit,0,'',$filters); |
|
444 | - } |
|
445 | - return $all; |
|
441 | + $Spotter = new Spotter($this->db); |
|
442 | + //$all = $Spotter->countAllOwners($limit,0,'',$filters,$year,$month); |
|
443 | + $all = $Spotter->countAllOwners($limit,0,'',$filters); |
|
444 | + } |
|
445 | + return $all; |
|
446 | 446 | } |
447 | 447 | public function countAllDepartureAirports($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
448 | 448 | global $globalStatsFilters; |
@@ -458,35 +458,35 @@ discard block |
||
458 | 458 | } |
459 | 459 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
460 | 460 | } else $all = array(); |
461 | - if (empty($all)) { |
|
461 | + if (empty($all)) { |
|
462 | 462 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
463 | - if ($filter_name != '') { |
|
464 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
463 | + if ($filter_name != '') { |
|
464 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
465 | 465 | } |
466 | - $Spotter = new Spotter($this->db); |
|
466 | + $Spotter = new Spotter($this->db); |
|
467 | 467 | // $pall = $Spotter->countAllDepartureAirports($limit,0,'',$filters,$year,$month); |
468 | 468 | // $dall = $Spotter->countAllDetectedDepartureAirports($limit,0,'',$filters,$year,$month); |
469 | - $pall = $Spotter->countAllDepartureAirports($limit,0,'',$filters); |
|
470 | - $dall = $Spotter->countAllDetectedDepartureAirports($limit,0,'',$filters); |
|
471 | - $all = array(); |
|
472 | - foreach ($pall as $value) { |
|
473 | - $icao = $value['airport_departure_icao']; |
|
474 | - $all[$icao] = $value; |
|
475 | - } |
|
469 | + $pall = $Spotter->countAllDepartureAirports($limit,0,'',$filters); |
|
470 | + $dall = $Spotter->countAllDetectedDepartureAirports($limit,0,'',$filters); |
|
471 | + $all = array(); |
|
472 | + foreach ($pall as $value) { |
|
473 | + $icao = $value['airport_departure_icao']; |
|
474 | + $all[$icao] = $value; |
|
475 | + } |
|
476 | 476 | |
477 | - foreach ($dall as $value) { |
|
478 | - $icao = $value['airport_departure_icao']; |
|
479 | - if (isset($all[$icao])) { |
|
480 | - $all[$icao]['airport_departure_icao_count'] = $all[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count']; |
|
481 | - } else $all[$icao] = $value; |
|
482 | - } |
|
483 | - $count = array(); |
|
484 | - foreach ($all as $key => $row) { |
|
485 | - $count[$key] = $row['airport_departure_icao_count']; |
|
486 | - } |
|
487 | - array_multisort($count,SORT_DESC,$all); |
|
488 | - } |
|
489 | - return $all; |
|
477 | + foreach ($dall as $value) { |
|
478 | + $icao = $value['airport_departure_icao']; |
|
479 | + if (isset($all[$icao])) { |
|
480 | + $all[$icao]['airport_departure_icao_count'] = $all[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count']; |
|
481 | + } else $all[$icao] = $value; |
|
482 | + } |
|
483 | + $count = array(); |
|
484 | + foreach ($all as $key => $row) { |
|
485 | + $count[$key] = $row['airport_departure_icao_count']; |
|
486 | + } |
|
487 | + array_multisort($count,SORT_DESC,$all); |
|
488 | + } |
|
489 | + return $all; |
|
490 | 490 | } |
491 | 491 | public function countAllArrivalAirports($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
492 | 492 | global $globalStatsFilters; |
@@ -512,26 +512,26 @@ discard block |
||
512 | 512 | // $dall = $Spotter->countAllDetectedArrivalAirports($limit,0,'',false,$filters,$year,$month); |
513 | 513 | $pall = $Spotter->countAllArrivalAirports($limit,0,'',false,$filters); |
514 | 514 | $dall = $Spotter->countAllDetectedArrivalAirports($limit,0,'',false,$filters); |
515 | - $all = array(); |
|
516 | - foreach ($pall as $value) { |
|
517 | - $icao = $value['airport_arrival_icao']; |
|
518 | - $all[$icao] = $value; |
|
519 | - } |
|
515 | + $all = array(); |
|
516 | + foreach ($pall as $value) { |
|
517 | + $icao = $value['airport_arrival_icao']; |
|
518 | + $all[$icao] = $value; |
|
519 | + } |
|
520 | 520 | |
521 | - foreach ($dall as $value) { |
|
522 | - $icao = $value['airport_arrival_icao']; |
|
523 | - if (isset($all[$icao])) { |
|
524 | - $all[$icao]['airport_arrival_icao_count'] = $all[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count']; |
|
525 | - } else $all[$icao] = $value; |
|
526 | - } |
|
527 | - $count = array(); |
|
528 | - foreach ($all as $key => $row) { |
|
529 | - $count[$key] = $row['airport_arrival_icao_count']; |
|
530 | - } |
|
531 | - array_multisort($count,SORT_DESC,$all); |
|
532 | - } |
|
521 | + foreach ($dall as $value) { |
|
522 | + $icao = $value['airport_arrival_icao']; |
|
523 | + if (isset($all[$icao])) { |
|
524 | + $all[$icao]['airport_arrival_icao_count'] = $all[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count']; |
|
525 | + } else $all[$icao] = $value; |
|
526 | + } |
|
527 | + $count = array(); |
|
528 | + foreach ($all as $key => $row) { |
|
529 | + $count[$key] = $row['airport_arrival_icao_count']; |
|
530 | + } |
|
531 | + array_multisort($count,SORT_DESC,$all); |
|
532 | + } |
|
533 | 533 | |
534 | - return $all; |
|
534 | + return $all; |
|
535 | 535 | } |
536 | 536 | public function countAllMonthsLastYear($limit = true,$stats_airline = '',$filter_name = '') { |
537 | 537 | global $globalDBdriver, $globalStatsFilters; |
@@ -544,23 +544,23 @@ discard block |
||
544 | 544 | else $query = "SELECT EXTRACT(MONTH FROM stats_date) as month_name, EXTRACT(YEAR FROM stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
545 | 545 | } |
546 | 546 | $query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
547 | - try { |
|
548 | - $sth = $this->db->prepare($query); |
|
549 | - $sth->execute($query_data); |
|
550 | - } catch(PDOException $e) { |
|
551 | - echo "error : ".$e->getMessage(); |
|
552 | - } |
|
553 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
554 | - if (empty($all)) { |
|
547 | + try { |
|
548 | + $sth = $this->db->prepare($query); |
|
549 | + $sth->execute($query_data); |
|
550 | + } catch(PDOException $e) { |
|
551 | + echo "error : ".$e->getMessage(); |
|
552 | + } |
|
553 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
554 | + if (empty($all)) { |
|
555 | 555 | $filters = array('airlines' => array($stats_airline)); |
556 | 556 | if ($filter_name != '') { |
557 | 557 | $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
558 | 558 | } |
559 | - $Spotter = new Spotter($this->db); |
|
560 | - $all = $Spotter->countAllMonthsLastYear($filters); |
|
561 | - } |
|
559 | + $Spotter = new Spotter($this->db); |
|
560 | + $all = $Spotter->countAllMonthsLastYear($filters); |
|
561 | + } |
|
562 | 562 | |
563 | - return $all; |
|
563 | + return $all; |
|
564 | 564 | } |
565 | 565 | |
566 | 566 | public function countAllDatesLastMonth($stats_airline = '',$filter_name = '') { |
@@ -568,22 +568,22 @@ discard block |
||
568 | 568 | if ($filter_name == '') $filter_name = $this->filter_name; |
569 | 569 | $query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'month' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
570 | 570 | $query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
571 | - try { |
|
572 | - $sth = $this->db->prepare($query); |
|
573 | - $sth->execute($query_data); |
|
574 | - } catch(PDOException $e) { |
|
575 | - echo "error : ".$e->getMessage(); |
|
576 | - } |
|
577 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
578 | - if (empty($all)) { |
|
571 | + try { |
|
572 | + $sth = $this->db->prepare($query); |
|
573 | + $sth->execute($query_data); |
|
574 | + } catch(PDOException $e) { |
|
575 | + echo "error : ".$e->getMessage(); |
|
576 | + } |
|
577 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
578 | + if (empty($all)) { |
|
579 | 579 | $filters = array('airlines' => array($stats_airline)); |
580 | 580 | if ($filter_name != '') { |
581 | 581 | $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
582 | 582 | } |
583 | - $Spotter = new Spotter($this->db); |
|
584 | - $all = $Spotter->countAllDatesLastMonth($filters); |
|
585 | - } |
|
586 | - return $all; |
|
583 | + $Spotter = new Spotter($this->db); |
|
584 | + $all = $Spotter->countAllDatesLastMonth($filters); |
|
585 | + } |
|
586 | + return $all; |
|
587 | 587 | } |
588 | 588 | public function countAllDatesLast7Days($stats_airline = '',$filter_name = '') { |
589 | 589 | global $globalDBdriver, $globalStatsFilters; |
@@ -594,66 +594,66 @@ discard block |
||
594 | 594 | $query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'month' AND flight_date::timestamp >= CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '7 DAYS' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
595 | 595 | } |
596 | 596 | $query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
597 | - try { |
|
598 | - $sth = $this->db->prepare($query); |
|
599 | - $sth->execute($query_data); |
|
600 | - } catch(PDOException $e) { |
|
601 | - echo "error : ".$e->getMessage(); |
|
602 | - } |
|
603 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
604 | - if (empty($all)) { |
|
597 | + try { |
|
598 | + $sth = $this->db->prepare($query); |
|
599 | + $sth->execute($query_data); |
|
600 | + } catch(PDOException $e) { |
|
601 | + echo "error : ".$e->getMessage(); |
|
602 | + } |
|
603 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
604 | + if (empty($all)) { |
|
605 | 605 | $filters = array('airlines' => array($stats_airline)); |
606 | 606 | if ($filter_name != '') { |
607 | 607 | $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
608 | 608 | } |
609 | - $Spotter = new Spotter($this->db); |
|
610 | - $all = $Spotter->countAllDatesLast7Days($filters); |
|
611 | - } |
|
612 | - return $all; |
|
609 | + $Spotter = new Spotter($this->db); |
|
610 | + $all = $Spotter->countAllDatesLast7Days($filters); |
|
611 | + } |
|
612 | + return $all; |
|
613 | 613 | } |
614 | 614 | public function countAllDates($stats_airline = '',$filter_name = '') { |
615 | 615 | global $globalStatsFilters; |
616 | 616 | if ($filter_name == '') $filter_name = $this->filter_name; |
617 | 617 | $query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'date' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
618 | 618 | $query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
619 | - try { |
|
620 | - $sth = $this->db->prepare($query); |
|
621 | - $sth->execute($query_data); |
|
622 | - } catch(PDOException $e) { |
|
623 | - echo "error : ".$e->getMessage(); |
|
624 | - } |
|
625 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
626 | - if (empty($all)) { |
|
619 | + try { |
|
620 | + $sth = $this->db->prepare($query); |
|
621 | + $sth->execute($query_data); |
|
622 | + } catch(PDOException $e) { |
|
623 | + echo "error : ".$e->getMessage(); |
|
624 | + } |
|
625 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
626 | + if (empty($all)) { |
|
627 | 627 | $filters = array('airlines' => array($stats_airline)); |
628 | 628 | if ($filter_name != '') { |
629 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
629 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
630 | 630 | } |
631 | - $Spotter = new Spotter($this->db); |
|
632 | - $all = $Spotter->countAllDates($filters); |
|
633 | - } |
|
634 | - return $all; |
|
631 | + $Spotter = new Spotter($this->db); |
|
632 | + $all = $Spotter->countAllDates($filters); |
|
633 | + } |
|
634 | + return $all; |
|
635 | 635 | } |
636 | 636 | public function countAllDatesByAirlines($filter_name = '') { |
637 | 637 | global $globalStatsFilters; |
638 | 638 | if ($filter_name == '') $filter_name = $this->filter_name; |
639 | 639 | $query = "SELECT stats_airline as airline_icao, flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'date' AND filter_name = :filter_name"; |
640 | 640 | $query_data = array('filter_name' => $filter_name); |
641 | - try { |
|
642 | - $sth = $this->db->prepare($query); |
|
643 | - $sth->execute($query_data); |
|
644 | - } catch(PDOException $e) { |
|
645 | - echo "error : ".$e->getMessage(); |
|
646 | - } |
|
647 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
648 | - if (empty($all)) { |
|
649 | - $filters = array(); |
|
650 | - if ($filter_name != '') { |
|
651 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
641 | + try { |
|
642 | + $sth = $this->db->prepare($query); |
|
643 | + $sth->execute($query_data); |
|
644 | + } catch(PDOException $e) { |
|
645 | + echo "error : ".$e->getMessage(); |
|
646 | + } |
|
647 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
648 | + if (empty($all)) { |
|
649 | + $filters = array(); |
|
650 | + if ($filter_name != '') { |
|
651 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
652 | 652 | } |
653 | - $Spotter = new Spotter($this->db); |
|
654 | - $all = $Spotter->countAllDatesByAirlines($filters); |
|
655 | - } |
|
656 | - return $all; |
|
653 | + $Spotter = new Spotter($this->db); |
|
654 | + $all = $Spotter->countAllDatesByAirlines($filters); |
|
655 | + } |
|
656 | + return $all; |
|
657 | 657 | } |
658 | 658 | public function countAllMonths($stats_airline = '',$filter_name = '') { |
659 | 659 | global $globalStatsFilters, $globalDBdriver; |
@@ -663,24 +663,24 @@ discard block |
||
663 | 663 | } else { |
664 | 664 | $query = "SELECT EXTRACT(YEAR FROM stats_date) AS year_name,EXTRACT(MONTH FROM stats_date) AS month_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
665 | 665 | } |
666 | - try { |
|
667 | - $sth = $this->db->prepare($query); |
|
668 | - $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
669 | - } catch(PDOException $e) { |
|
670 | - echo "error : ".$e->getMessage(); |
|
671 | - } |
|
672 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
666 | + try { |
|
667 | + $sth = $this->db->prepare($query); |
|
668 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
669 | + } catch(PDOException $e) { |
|
670 | + echo "error : ".$e->getMessage(); |
|
671 | + } |
|
672 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
673 | 673 | |
674 | - if (empty($all)) { |
|
674 | + if (empty($all)) { |
|
675 | 675 | $filters = array('airlines' => array($stats_airline)); |
676 | 676 | if ($filter_name != '') { |
677 | 677 | $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
678 | 678 | } |
679 | - $Spotter = new Spotter($this->db); |
|
680 | - $all = $Spotter->countAllMonths($filters); |
|
681 | - } |
|
679 | + $Spotter = new Spotter($this->db); |
|
680 | + $all = $Spotter->countAllMonths($filters); |
|
681 | + } |
|
682 | 682 | |
683 | - return $all; |
|
683 | + return $all; |
|
684 | 684 | } |
685 | 685 | public function countFatalitiesLast12Months() { |
686 | 686 | global $globalStatsFilters, $globalDBdriver; |
@@ -689,19 +689,19 @@ discard block |
||
689 | 689 | } else { |
690 | 690 | $query = "SELECT EXTRACT(YEAR FROM stats_date) AS year, EXTRACT(MONTH FROM stats_date) as month,cnt as count FROM stats WHERE stats_type = 'fatalities_bymonth' ORDER BY stats_date"; |
691 | 691 | } |
692 | - try { |
|
693 | - $sth = $this->db->prepare($query); |
|
694 | - $sth->execute(); |
|
695 | - } catch(PDOException $e) { |
|
696 | - echo "error : ".$e->getMessage(); |
|
697 | - } |
|
698 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
692 | + try { |
|
693 | + $sth = $this->db->prepare($query); |
|
694 | + $sth->execute(); |
|
695 | + } catch(PDOException $e) { |
|
696 | + echo "error : ".$e->getMessage(); |
|
697 | + } |
|
698 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
699 | 699 | |
700 | - if (empty($all)) { |
|
701 | - $Accident = new Spotter($this->db); |
|
702 | - $all = $Accident->countFatalitiesLast12Months(); |
|
703 | - } |
|
704 | - return $all; |
|
700 | + if (empty($all)) { |
|
701 | + $Accident = new Spotter($this->db); |
|
702 | + $all = $Accident->countFatalitiesLast12Months(); |
|
703 | + } |
|
704 | + return $all; |
|
705 | 705 | } |
706 | 706 | public function countFatalitiesByYear() { |
707 | 707 | global $globalStatsFilters, $globalDBdriver; |
@@ -710,40 +710,40 @@ discard block |
||
710 | 710 | } else { |
711 | 711 | $query = "SELECT EXTRACT(YEAR FROM stats_date) AS year, cnt as count FROM stats WHERE stats_type = 'fatalities_byyear' ORDER BY stats_date"; |
712 | 712 | } |
713 | - try { |
|
714 | - $sth = $this->db->prepare($query); |
|
715 | - $sth->execute(); |
|
716 | - } catch(PDOException $e) { |
|
717 | - echo "error : ".$e->getMessage(); |
|
718 | - } |
|
719 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
713 | + try { |
|
714 | + $sth = $this->db->prepare($query); |
|
715 | + $sth->execute(); |
|
716 | + } catch(PDOException $e) { |
|
717 | + echo "error : ".$e->getMessage(); |
|
718 | + } |
|
719 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
720 | 720 | |
721 | - if (empty($all)) { |
|
722 | - $Accident = new Spotter($this->db); |
|
723 | - $all = $Accident->countFatalitiesByYear(); |
|
724 | - } |
|
725 | - return $all; |
|
721 | + if (empty($all)) { |
|
722 | + $Accident = new Spotter($this->db); |
|
723 | + $all = $Accident->countFatalitiesByYear(); |
|
724 | + } |
|
725 | + return $all; |
|
726 | 726 | } |
727 | 727 | public function countAllMilitaryMonths($filter_name = '') { |
728 | 728 | global $globalStatsFilters; |
729 | 729 | if ($filter_name == '') $filter_name = $this->filter_name; |
730 | - $query = "SELECT YEAR(stats_date) AS year_name,MONTH(stats_date) AS month_name, cnt as date_count FROM stats WHERE stats_type = 'military_flights_bymonth' AND filter_name = :filter_name"; |
|
731 | - try { |
|
732 | - $sth = $this->db->prepare($query); |
|
733 | - $sth->execute(array(':filter_name' => $filter_name)); |
|
734 | - } catch(PDOException $e) { |
|
735 | - echo "error : ".$e->getMessage(); |
|
736 | - } |
|
737 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
738 | - if (empty($all)) { |
|
739 | - $filters = array(); |
|
740 | - if ($filter_name != '') { |
|
741 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
730 | + $query = "SELECT YEAR(stats_date) AS year_name,MONTH(stats_date) AS month_name, cnt as date_count FROM stats WHERE stats_type = 'military_flights_bymonth' AND filter_name = :filter_name"; |
|
731 | + try { |
|
732 | + $sth = $this->db->prepare($query); |
|
733 | + $sth->execute(array(':filter_name' => $filter_name)); |
|
734 | + } catch(PDOException $e) { |
|
735 | + echo "error : ".$e->getMessage(); |
|
736 | + } |
|
737 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
738 | + if (empty($all)) { |
|
739 | + $filters = array(); |
|
740 | + if ($filter_name != '') { |
|
741 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
742 | 742 | } |
743 | - $Spotter = new Spotter($this->db); |
|
744 | - $all = $Spotter->countAllMilitaryMonths($filters); |
|
745 | - } |
|
746 | - return $all; |
|
743 | + $Spotter = new Spotter($this->db); |
|
744 | + $all = $Spotter->countAllMilitaryMonths($filters); |
|
745 | + } |
|
746 | + return $all; |
|
747 | 747 | } |
748 | 748 | public function countAllHours($orderby = 'hour',$limit = true,$stats_airline = '',$filter_name = '') { |
749 | 749 | global $globalTimezone, $globalDBdriver, $globalStatsFilters; |
@@ -759,22 +759,22 @@ discard block |
||
759 | 759 | $query .= " ORDER BY CAST(flight_date AS integer) ASC"; |
760 | 760 | } |
761 | 761 | if ($orderby == 'count') $query .= " ORDER BY hour_count DESC"; |
762 | - try { |
|
763 | - $sth = $this->db->prepare($query); |
|
764 | - $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
765 | - } catch(PDOException $e) { |
|
766 | - echo "error : ".$e->getMessage(); |
|
767 | - } |
|
768 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
769 | - if (empty($all)) { |
|
762 | + try { |
|
763 | + $sth = $this->db->prepare($query); |
|
764 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
765 | + } catch(PDOException $e) { |
|
766 | + echo "error : ".$e->getMessage(); |
|
767 | + } |
|
768 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
769 | + if (empty($all)) { |
|
770 | 770 | $filters = array('airlines' => array($stats_airline)); |
771 | 771 | if ($filter_name != '') { |
772 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
772 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
773 | 773 | } |
774 | - $Spotter = new Spotter($this->db); |
|
775 | - $all = $Spotter->countAllHours($orderby,$filters); |
|
776 | - } |
|
777 | - return $all; |
|
774 | + $Spotter = new Spotter($this->db); |
|
775 | + $all = $Spotter->countAllHours($orderby,$filters); |
|
776 | + } |
|
777 | + return $all; |
|
778 | 778 | } |
779 | 779 | |
780 | 780 | public function countOverallFlights($stats_airline = '', $filter_name = '',$year = '',$month = '') { |
@@ -799,10 +799,10 @@ discard block |
||
799 | 799 | if ($year == '') $year = date('Y'); |
800 | 800 | $all = $this->getSumStats('military_flights_bymonth',$year,'',$filter_name,$month); |
801 | 801 | if (empty($all)) { |
802 | - $filters = array(); |
|
802 | + $filters = array(); |
|
803 | 803 | $filters = array('year' => $year,'month' => $month); |
804 | - if ($filter_name != '') { |
|
805 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
804 | + if ($filter_name != '') { |
|
805 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
806 | 806 | } |
807 | 807 | $Spotter = new Spotter($this->db); |
808 | 808 | //$all = $Spotter->countOverallMilitaryFlights($filters,$year,$month); |
@@ -866,10 +866,10 @@ discard block |
||
866 | 866 | $all = $result[0]['nb_airline']; |
867 | 867 | } else $all = $this->getSumStats('airlines_bymonth',$year,'',$filter_name,$month); |
868 | 868 | if (empty($all)) { |
869 | - $filters = array(); |
|
869 | + $filters = array(); |
|
870 | 870 | $filters = array('year' => $year,'month' => $month); |
871 | - if ($filter_name != '') { |
|
872 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
871 | + if ($filter_name != '') { |
|
872 | + $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
873 | 873 | } |
874 | 874 | $Spotter = new Spotter($this->db); |
875 | 875 | //$all = $Spotter->countOverallAirlines($filters,$year,$month); |
@@ -939,46 +939,46 @@ discard block |
||
939 | 939 | if ($filter_name == '') $filter_name = $this->filter_name; |
940 | 940 | $query = "SELECT * FROM stats_airport WHERE stats_type = 'daily' AND airport_icao = :airport_icao AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY date"; |
941 | 941 | $query_values = array(':airport_icao' => $airport_icao,':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
942 | - try { |
|
943 | - $sth = $this->db->prepare($query); |
|
944 | - $sth->execute($query_values); |
|
945 | - } catch(PDOException $e) { |
|
946 | - echo "error : ".$e->getMessage(); |
|
947 | - } |
|
948 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
949 | - return $all; |
|
942 | + try { |
|
943 | + $sth = $this->db->prepare($query); |
|
944 | + $sth->execute($query_values); |
|
945 | + } catch(PDOException $e) { |
|
946 | + echo "error : ".$e->getMessage(); |
|
947 | + } |
|
948 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
949 | + return $all; |
|
950 | 950 | } |
951 | 951 | public function getStats($type,$stats_airline = '', $filter_name = '') { |
952 | 952 | if ($filter_name == '') $filter_name = $this->filter_name; |
953 | - $query = "SELECT * FROM stats WHERE stats_type = :type AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY stats_date"; |
|
954 | - $query_values = array(':type' => $type,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
955 | - try { |
|
956 | - $sth = $this->db->prepare($query); |
|
957 | - $sth->execute($query_values); |
|
958 | - } catch(PDOException $e) { |
|
959 | - echo "error : ".$e->getMessage(); |
|
960 | - } |
|
961 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
962 | - return $all; |
|
963 | - } |
|
953 | + $query = "SELECT * FROM stats WHERE stats_type = :type AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY stats_date"; |
|
954 | + $query_values = array(':type' => $type,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
955 | + try { |
|
956 | + $sth = $this->db->prepare($query); |
|
957 | + $sth->execute($query_values); |
|
958 | + } catch(PDOException $e) { |
|
959 | + echo "error : ".$e->getMessage(); |
|
960 | + } |
|
961 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
962 | + return $all; |
|
963 | + } |
|
964 | 964 | public function deleteStatsByType($type,$stats_airline = '', $filter_name = '') { |
965 | 965 | if ($filter_name == '') $filter_name = $this->filter_name; |
966 | - $query = "DELETE FROM stats WHERE stats_type = :type AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
967 | - $query_values = array(':type' => $type,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
968 | - try { |
|
969 | - $sth = $this->db->prepare($query); |
|
970 | - $sth->execute($query_values); |
|
971 | - } catch(PDOException $e) { |
|
972 | - echo "error : ".$e->getMessage(); |
|
973 | - } |
|
974 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
975 | - return $all; |
|
976 | - } |
|
966 | + $query = "DELETE FROM stats WHERE stats_type = :type AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
967 | + $query_values = array(':type' => $type,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
968 | + try { |
|
969 | + $sth = $this->db->prepare($query); |
|
970 | + $sth->execute($query_values); |
|
971 | + } catch(PDOException $e) { |
|
972 | + echo "error : ".$e->getMessage(); |
|
973 | + } |
|
974 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
975 | + return $all; |
|
976 | + } |
|
977 | 977 | public function getSumStats($type,$year,$stats_airline = '',$filter_name = '',$month = '') { |
978 | 978 | if ($filter_name == '') $filter_name = $this->filter_name; |
979 | - global $globalArchiveMonths, $globalDBdriver; |
|
980 | - if ($globalDBdriver == 'mysql') { |
|
981 | - if ($month == '') { |
|
979 | + global $globalArchiveMonths, $globalDBdriver; |
|
980 | + if ($globalDBdriver == 'mysql') { |
|
981 | + if ($month == '') { |
|
982 | 982 | $query = "SELECT SUM(cnt) as total FROM stats WHERE stats_type = :type AND YEAR(stats_date) = :year AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
983 | 983 | $query_values = array(':type' => $type, ':year' => $year, ':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
984 | 984 | } else { |
@@ -993,165 +993,165 @@ discard block |
||
993 | 993 | $query = "SELECT SUM(cnt) as total FROM stats WHERE stats_type = :type AND EXTRACT(YEAR FROM stats_date) = :year AND EXTRACT(MONTH FROM stats_date) = :month AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
994 | 994 | $query_values = array(':type' => $type, ':year' => $year, ':stats_airline' => $stats_airline,':filter_name' => $filter_name,':month' => $month); |
995 | 995 | } |
996 | - } |
|
997 | - try { |
|
998 | - $sth = $this->db->prepare($query); |
|
999 | - $sth->execute($query_values); |
|
1000 | - } catch(PDOException $e) { |
|
1001 | - echo "error : ".$e->getMessage(); |
|
1002 | - } |
|
1003 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1004 | - return $all[0]['total']; |
|
1005 | - } |
|
996 | + } |
|
997 | + try { |
|
998 | + $sth = $this->db->prepare($query); |
|
999 | + $sth->execute($query_values); |
|
1000 | + } catch(PDOException $e) { |
|
1001 | + echo "error : ".$e->getMessage(); |
|
1002 | + } |
|
1003 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1004 | + return $all[0]['total']; |
|
1005 | + } |
|
1006 | 1006 | public function getStatsTotal($type, $stats_airline = '', $filter_name = '') { |
1007 | - global $globalArchiveMonths, $globalDBdriver; |
|
1007 | + global $globalArchiveMonths, $globalDBdriver; |
|
1008 | 1008 | if ($filter_name == '') $filter_name = $this->filter_name; |
1009 | - if ($globalDBdriver == 'mysql') { |
|
1009 | + if ($globalDBdriver == 'mysql') { |
|
1010 | 1010 | $query = "SELECT SUM(cnt) as total FROM stats WHERE stats_type = :type AND stats_date < DATE_SUB(UTC_TIMESTAMP(), INTERVAL ".$globalArchiveMonths." MONTH) AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
1011 | 1011 | } else { |
1012 | 1012 | $query = "SELECT SUM(cnt) as total FROM stats WHERE stats_type = :type AND stats_date < CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '".$globalArchiveMonths." MONTHS' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
1013 | - } |
|
1014 | - $query_values = array(':type' => $type, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
1015 | - try { |
|
1016 | - $sth = $this->db->prepare($query); |
|
1017 | - $sth->execute($query_values); |
|
1018 | - } catch(PDOException $e) { |
|
1019 | - echo "error : ".$e->getMessage(); |
|
1020 | - } |
|
1021 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1022 | - return $all[0]['total']; |
|
1023 | - } |
|
1013 | + } |
|
1014 | + $query_values = array(':type' => $type, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
1015 | + try { |
|
1016 | + $sth = $this->db->prepare($query); |
|
1017 | + $sth->execute($query_values); |
|
1018 | + } catch(PDOException $e) { |
|
1019 | + echo "error : ".$e->getMessage(); |
|
1020 | + } |
|
1021 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1022 | + return $all[0]['total']; |
|
1023 | + } |
|
1024 | 1024 | public function getStatsAircraftTotal($stats_airline = '', $filter_name = '') { |
1025 | - global $globalArchiveMonths, $globalDBdriver; |
|
1025 | + global $globalArchiveMonths, $globalDBdriver; |
|
1026 | 1026 | if ($filter_name == '') $filter_name = $this->filter_name; |
1027 | - if ($globalDBdriver == 'mysql') { |
|
1027 | + if ($globalDBdriver == 'mysql') { |
|
1028 | 1028 | $query = "SELECT SUM(cnt) as total FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name"; |
1029 | - } else { |
|
1029 | + } else { |
|
1030 | 1030 | $query = "SELECT SUM(cnt) as total FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name"; |
1031 | - } |
|
1032 | - try { |
|
1033 | - $sth = $this->db->prepare($query); |
|
1034 | - $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
1035 | - } catch(PDOException $e) { |
|
1036 | - echo "error : ".$e->getMessage(); |
|
1037 | - } |
|
1038 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1039 | - return $all[0]['total']; |
|
1040 | - } |
|
1031 | + } |
|
1032 | + try { |
|
1033 | + $sth = $this->db->prepare($query); |
|
1034 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
1035 | + } catch(PDOException $e) { |
|
1036 | + echo "error : ".$e->getMessage(); |
|
1037 | + } |
|
1038 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1039 | + return $all[0]['total']; |
|
1040 | + } |
|
1041 | 1041 | public function getStatsAirlineTotal($filter_name = '') { |
1042 | - global $globalArchiveMonths, $globalDBdriver; |
|
1042 | + global $globalArchiveMonths, $globalDBdriver; |
|
1043 | 1043 | if ($filter_name == '') $filter_name = $this->filter_name; |
1044 | - if ($globalDBdriver == 'mysql') { |
|
1044 | + if ($globalDBdriver == 'mysql') { |
|
1045 | 1045 | $query = "SELECT SUM(cnt) as total FROM stats_airline WHERE filter_name = :filter_name"; |
1046 | - } else { |
|
1046 | + } else { |
|
1047 | 1047 | $query = "SELECT SUM(cnt) as total FROM stats_airline WHERE filter_name = :filter_name"; |
1048 | - } |
|
1049 | - try { |
|
1050 | - $sth = $this->db->prepare($query); |
|
1051 | - $sth->execute(array(':filter_name' => $filter_name)); |
|
1052 | - } catch(PDOException $e) { |
|
1053 | - echo "error : ".$e->getMessage(); |
|
1054 | - } |
|
1055 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1056 | - return $all[0]['total']; |
|
1057 | - } |
|
1048 | + } |
|
1049 | + try { |
|
1050 | + $sth = $this->db->prepare($query); |
|
1051 | + $sth->execute(array(':filter_name' => $filter_name)); |
|
1052 | + } catch(PDOException $e) { |
|
1053 | + echo "error : ".$e->getMessage(); |
|
1054 | + } |
|
1055 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1056 | + return $all[0]['total']; |
|
1057 | + } |
|
1058 | 1058 | public function getStatsOwnerTotal($filter_name = '') { |
1059 | - global $globalArchiveMonths, $globalDBdriver; |
|
1059 | + global $globalArchiveMonths, $globalDBdriver; |
|
1060 | 1060 | if ($filter_name == '') $filter_name = $this->filter_name; |
1061 | - if ($globalDBdriver == 'mysql') { |
|
1061 | + if ($globalDBdriver == 'mysql') { |
|
1062 | 1062 | $query = "SELECT SUM(cnt) as total FROM stats_owner WHERE filter_name = :filter_name"; |
1063 | 1063 | } else { |
1064 | 1064 | $query = "SELECT SUM(cnt) as total FROM stats_owner WHERE filter_name = :filter_name"; |
1065 | - } |
|
1066 | - try { |
|
1067 | - $sth = $this->db->prepare($query); |
|
1068 | - $sth->execute(array(':filter_name' => $filter_name)); |
|
1069 | - } catch(PDOException $e) { |
|
1070 | - echo "error : ".$e->getMessage(); |
|
1071 | - } |
|
1072 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1073 | - return $all[0]['total']; |
|
1074 | - } |
|
1065 | + } |
|
1066 | + try { |
|
1067 | + $sth = $this->db->prepare($query); |
|
1068 | + $sth->execute(array(':filter_name' => $filter_name)); |
|
1069 | + } catch(PDOException $e) { |
|
1070 | + echo "error : ".$e->getMessage(); |
|
1071 | + } |
|
1072 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1073 | + return $all[0]['total']; |
|
1074 | + } |
|
1075 | 1075 | public function getStatsOwner($owner_name,$filter_name = '') { |
1076 | - global $globalArchiveMonths, $globalDBdriver; |
|
1076 | + global $globalArchiveMonths, $globalDBdriver; |
|
1077 | 1077 | if ($filter_name == '') $filter_name = $this->filter_name; |
1078 | 1078 | $query = "SELECT cnt FROM stats_owner WHERE filter_name = :filter_name AND owner_name = :owner_name"; |
1079 | - try { |
|
1080 | - $sth = $this->db->prepare($query); |
|
1081 | - $sth->execute(array(':filter_name' => $filter_name,':owner_name' => $owner_name)); |
|
1082 | - } catch(PDOException $e) { |
|
1083 | - echo "error : ".$e->getMessage(); |
|
1084 | - } |
|
1085 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1086 | - if (isset($all[0]['cnt'])) return $all[0]['cnt']; |
|
1087 | - else return 0; |
|
1088 | - } |
|
1079 | + try { |
|
1080 | + $sth = $this->db->prepare($query); |
|
1081 | + $sth->execute(array(':filter_name' => $filter_name,':owner_name' => $owner_name)); |
|
1082 | + } catch(PDOException $e) { |
|
1083 | + echo "error : ".$e->getMessage(); |
|
1084 | + } |
|
1085 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1086 | + if (isset($all[0]['cnt'])) return $all[0]['cnt']; |
|
1087 | + else return 0; |
|
1088 | + } |
|
1089 | 1089 | public function getStatsPilotTotal($filter_name = '') { |
1090 | - global $globalArchiveMonths, $globalDBdriver; |
|
1090 | + global $globalArchiveMonths, $globalDBdriver; |
|
1091 | 1091 | if ($filter_name == '') $filter_name = $this->filter_name; |
1092 | - if ($globalDBdriver == 'mysql') { |
|
1093 | - $query = "SELECT SUM(cnt) as total FROM stats_pilot WHERE filter_name = :filter_name"; |
|
1094 | - } else { |
|
1095 | - $query = "SELECT SUM(cnt) as total FROM stats_pilot WHERE filter_name = :filter_name"; |
|
1096 | - } |
|
1097 | - try { |
|
1098 | - $sth = $this->db->prepare($query); |
|
1099 | - $sth->execute(array(':filter_name' => $filter_name)); |
|
1100 | - } catch(PDOException $e) { |
|
1101 | - echo "error : ".$e->getMessage(); |
|
1102 | - } |
|
1103 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1104 | - return $all[0]['total']; |
|
1105 | - } |
|
1092 | + if ($globalDBdriver == 'mysql') { |
|
1093 | + $query = "SELECT SUM(cnt) as total FROM stats_pilot WHERE filter_name = :filter_name"; |
|
1094 | + } else { |
|
1095 | + $query = "SELECT SUM(cnt) as total FROM stats_pilot WHERE filter_name = :filter_name"; |
|
1096 | + } |
|
1097 | + try { |
|
1098 | + $sth = $this->db->prepare($query); |
|
1099 | + $sth->execute(array(':filter_name' => $filter_name)); |
|
1100 | + } catch(PDOException $e) { |
|
1101 | + echo "error : ".$e->getMessage(); |
|
1102 | + } |
|
1103 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1104 | + return $all[0]['total']; |
|
1105 | + } |
|
1106 | 1106 | public function getStatsPilot($pilot,$filter_name = '') { |
1107 | - global $globalArchiveMonths, $globalDBdriver; |
|
1107 | + global $globalArchiveMonths, $globalDBdriver; |
|
1108 | 1108 | if ($filter_name == '') $filter_name = $this->filter_name; |
1109 | 1109 | $query = "SELECT cnt FROM stats_pilot WHERE filter_name = :filter_name AND (pilot_name = :pilot OR pilot_id = :pilot)"; |
1110 | - try { |
|
1111 | - $sth = $this->db->prepare($query); |
|
1112 | - $sth->execute(array(':filter_name' => $filter_name,':pilot' => $pilot)); |
|
1113 | - } catch(PDOException $e) { |
|
1114 | - echo "error : ".$e->getMessage(); |
|
1115 | - } |
|
1116 | - $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1117 | - if (isset($all[0]['cnt'])) return $all[0]['cnt']; |
|
1118 | - else return 0; |
|
1119 | - } |
|
1110 | + try { |
|
1111 | + $sth = $this->db->prepare($query); |
|
1112 | + $sth->execute(array(':filter_name' => $filter_name,':pilot' => $pilot)); |
|
1113 | + } catch(PDOException $e) { |
|
1114 | + echo "error : ".$e->getMessage(); |
|
1115 | + } |
|
1116 | + $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
1117 | + if (isset($all[0]['cnt'])) return $all[0]['cnt']; |
|
1118 | + else return 0; |
|
1119 | + } |
|
1120 | 1120 | |
1121 | 1121 | public function addStat($type,$cnt,$stats_date,$stats_airline = '',$filter_name = '') { |
1122 | 1122 | global $globalDBdriver; |
1123 | 1123 | if ($filter_name == '') $filter_name = $this->filter_name; |
1124 | 1124 | if ($globalDBdriver == 'mysql') { |
1125 | 1125 | $query = "INSERT INTO stats (stats_type,cnt,stats_date,stats_airline,filter_name) VALUES (:type,:cnt,:stats_date,:stats_airline,:filter_name) ON DUPLICATE KEY UPDATE cnt = :cnt"; |
1126 | - } else { |
|
1126 | + } else { |
|
1127 | 1127 | $query = "UPDATE stats SET cnt = :cnt WHERE stats_type = :type AND stats_date = :stats_date AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats (stats_type,cnt,stats_date,stats_airline,filter_name) SELECT :type,:cnt,:stats_date,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats WHERE stats_type = :type AND stats_date = :stats_date AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1128 | 1128 | } |
1129 | - $query_values = array(':type' => $type,':cnt' => $cnt,':stats_date' => $stats_date, ':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1130 | - try { |
|
1131 | - $sth = $this->db->prepare($query); |
|
1132 | - $sth->execute($query_values); |
|
1133 | - } catch(PDOException $e) { |
|
1134 | - return "error : ".$e->getMessage(); |
|
1135 | - } |
|
1136 | - } |
|
1129 | + $query_values = array(':type' => $type,':cnt' => $cnt,':stats_date' => $stats_date, ':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1130 | + try { |
|
1131 | + $sth = $this->db->prepare($query); |
|
1132 | + $sth->execute($query_values); |
|
1133 | + } catch(PDOException $e) { |
|
1134 | + return "error : ".$e->getMessage(); |
|
1135 | + } |
|
1136 | + } |
|
1137 | 1137 | public function updateStat($type,$cnt,$stats_date,$stats_airline = '',$filter_name = '') { |
1138 | 1138 | global $globalDBdriver; |
1139 | 1139 | if ($filter_name == '') $filter_name = $this->filter_name; |
1140 | 1140 | if ($globalDBdriver == 'mysql') { |
1141 | 1141 | $query = "INSERT INTO stats (stats_type,cnt,stats_date,stats_airline,filter_name) VALUES (:type,:cnt,:stats_date,:stats_airline,:filter_name) ON DUPLICATE KEY UPDATE cnt = cnt+:cnt, stats_date = :date"; |
1142 | 1142 | } else { |
1143 | - //$query = "INSERT INTO stats (stats_type,cnt,stats_date) VALUES (:type,:cnt,:stats_date) ON DUPLICATE KEY UPDATE cnt = cnt+:cnt, stats_date = :date"; |
|
1143 | + //$query = "INSERT INTO stats (stats_type,cnt,stats_date) VALUES (:type,:cnt,:stats_date) ON DUPLICATE KEY UPDATE cnt = cnt+:cnt, stats_date = :date"; |
|
1144 | 1144 | $query = "UPDATE stats SET cnt = cnt+:cnt WHERE stats_type = :type AND stats_date = :stats_date AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats (stats_type,cnt,stats_date,stats_airline,filter_name) SELECT :type,:cnt,:stats_date,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats WHERE stats_type = :type AND stats_date = :stats_date AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1145 | - } |
|
1146 | - $query_values = array(':type' => $type,':cnt' => $cnt,':stats_date' => $stats_date,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1147 | - try { |
|
1148 | - $sth = $this->db->prepare($query); |
|
1149 | - $sth->execute($query_values); |
|
1150 | - } catch(PDOException $e) { |
|
1151 | - return "error : ".$e->getMessage(); |
|
1152 | - } |
|
1153 | - } |
|
1154 | - /* |
|
1145 | + } |
|
1146 | + $query_values = array(':type' => $type,':cnt' => $cnt,':stats_date' => $stats_date,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1147 | + try { |
|
1148 | + $sth = $this->db->prepare($query); |
|
1149 | + $sth->execute($query_values); |
|
1150 | + } catch(PDOException $e) { |
|
1151 | + return "error : ".$e->getMessage(); |
|
1152 | + } |
|
1153 | + } |
|
1154 | + /* |
|
1155 | 1155 | public function getStatsSource($date,$stats_type = '') { |
1156 | 1156 | if ($stats_type == '') { |
1157 | 1157 | $query = "SELECT * FROM stats_source WHERE stats_date = :date ORDER BY source_name"; |
@@ -1220,25 +1220,25 @@ discard block |
||
1220 | 1220 | $query = "INSERT INTO stats_source (source_data,source_name,stats_type,stats_date) VALUES (:data,:source_name,:stats_type,:stats_date) ON DUPLICATE KEY UPDATE source_data = :data"; |
1221 | 1221 | } else { |
1222 | 1222 | $query = "UPDATE stats_source SET source_data = :data WHERE stats_date = :stats_date AND source_name = :source_name AND stats_type = :stats_type; INSERT INTO stats_source (source_data,source_name,stats_type,stats_date) SELECT :data,:source_name,:stats_type,:stats_date WHERE NOT EXISTS (SELECT 1 FROM stats_source WHERE stats_date = :stats_date AND source_name = :source_name AND stats_type = :stats_type);"; |
1223 | - } |
|
1224 | - $query_values = array(':data' => $data,':stats_date' => $date,':source_name' => $source_name,':stats_type' => $stats_type); |
|
1225 | - try { |
|
1226 | - $sth = $this->db->prepare($query); |
|
1227 | - $sth->execute($query_values); |
|
1228 | - } catch(PDOException $e) { |
|
1229 | - return "error : ".$e->getMessage(); |
|
1230 | - } |
|
1231 | - } |
|
1232 | - public function addStatFlight($type,$date_name,$cnt,$stats_airline = '',$filter_name = '') { |
|
1233 | - $query = "INSERT INTO stats_flight (stats_type,flight_date,cnt,stats_airline,filter_name) VALUES (:type,:flight_date,:cnt,:stats_airline,:filter_name)"; |
|
1234 | - $query_values = array(':type' => $type,':flight_date' => $date_name,':cnt' => $cnt, ':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1235 | - try { |
|
1236 | - $sth = $this->db->prepare($query); |
|
1237 | - $sth->execute($query_values); |
|
1238 | - } catch(PDOException $e) { |
|
1239 | - return "error : ".$e->getMessage(); |
|
1240 | - } |
|
1241 | - } |
|
1223 | + } |
|
1224 | + $query_values = array(':data' => $data,':stats_date' => $date,':source_name' => $source_name,':stats_type' => $stats_type); |
|
1225 | + try { |
|
1226 | + $sth = $this->db->prepare($query); |
|
1227 | + $sth->execute($query_values); |
|
1228 | + } catch(PDOException $e) { |
|
1229 | + return "error : ".$e->getMessage(); |
|
1230 | + } |
|
1231 | + } |
|
1232 | + public function addStatFlight($type,$date_name,$cnt,$stats_airline = '',$filter_name = '') { |
|
1233 | + $query = "INSERT INTO stats_flight (stats_type,flight_date,cnt,stats_airline,filter_name) VALUES (:type,:flight_date,:cnt,:stats_airline,:filter_name)"; |
|
1234 | + $query_values = array(':type' => $type,':flight_date' => $date_name,':cnt' => $cnt, ':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1235 | + try { |
|
1236 | + $sth = $this->db->prepare($query); |
|
1237 | + $sth->execute($query_values); |
|
1238 | + } catch(PDOException $e) { |
|
1239 | + return "error : ".$e->getMessage(); |
|
1240 | + } |
|
1241 | + } |
|
1242 | 1242 | public function addStatAircraftRegistration($registration,$cnt,$aircraft_icao = '',$airline_icao = '',$filter_name = '',$reset = false) { |
1243 | 1243 | global $globalDBdriver; |
1244 | 1244 | if ($globalDBdriver == 'mysql') { |
@@ -1254,14 +1254,14 @@ discard block |
||
1254 | 1254 | $query = "UPDATE stats_registration SET cnt = cnt+:cnt WHERE registration = :registration AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats_registration (aircraft_icao,registration,cnt,stats_airline,filter_name) SELECT :aircraft_icao,:registration,:cnt,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_registration WHERE registration = :registration AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1255 | 1255 | } |
1256 | 1256 | } |
1257 | - $query_values = array(':aircraft_icao' => $aircraft_icao,':registration' => $registration,':cnt' => $cnt,':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1258 | - try { |
|
1259 | - $sth = $this->db->prepare($query); |
|
1260 | - $sth->execute($query_values); |
|
1261 | - } catch(PDOException $e) { |
|
1262 | - return "error : ".$e->getMessage(); |
|
1263 | - } |
|
1264 | - } |
|
1257 | + $query_values = array(':aircraft_icao' => $aircraft_icao,':registration' => $registration,':cnt' => $cnt,':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1258 | + try { |
|
1259 | + $sth = $this->db->prepare($query); |
|
1260 | + $sth->execute($query_values); |
|
1261 | + } catch(PDOException $e) { |
|
1262 | + return "error : ".$e->getMessage(); |
|
1263 | + } |
|
1264 | + } |
|
1265 | 1265 | public function addStatCallsign($callsign_icao,$cnt,$airline_icao = '', $filter_name = '', $reset = false) { |
1266 | 1266 | global $globalDBdriver; |
1267 | 1267 | if ($globalDBdriver == 'mysql') { |
@@ -1277,14 +1277,14 @@ discard block |
||
1277 | 1277 | $query = "UPDATE stats_callsign SET cnt = cnt+:cnt WHERE callsign_icao = :callsign_icao AND filter_name = :filter_name; INSERT INTO stats_callsign (callsign_icao,airline_icao,cnt,filter_name) SELECT :callsign_icao,:airline_icao,:cnt,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_callsign WHERE callsign_icao = :callsign_icao AND filter_name = :filter_name);"; |
1278 | 1278 | } |
1279 | 1279 | } |
1280 | - $query_values = array(':callsign_icao' => $callsign_icao,':airline_icao' => $airline_icao,':cnt' => $cnt, ':filter_name' => $filter_name); |
|
1281 | - try { |
|
1282 | - $sth = $this->db->prepare($query); |
|
1283 | - $sth->execute($query_values); |
|
1284 | - } catch(PDOException $e) { |
|
1285 | - return "error : ".$e->getMessage(); |
|
1286 | - } |
|
1287 | - } |
|
1280 | + $query_values = array(':callsign_icao' => $callsign_icao,':airline_icao' => $airline_icao,':cnt' => $cnt, ':filter_name' => $filter_name); |
|
1281 | + try { |
|
1282 | + $sth = $this->db->prepare($query); |
|
1283 | + $sth->execute($query_values); |
|
1284 | + } catch(PDOException $e) { |
|
1285 | + return "error : ".$e->getMessage(); |
|
1286 | + } |
|
1287 | + } |
|
1288 | 1288 | public function addStatCountry($iso2,$iso3,$name,$cnt,$airline_icao = '',$filter_name = '',$reset = false) { |
1289 | 1289 | global $globalDBdriver; |
1290 | 1290 | if ($globalDBdriver == 'mysql') { |
@@ -1300,14 +1300,14 @@ discard block |
||
1300 | 1300 | $query = "UPDATE stats_country SET cnt = cnt+:cnt WHERE iso2 = :iso2 AND filter_name = :filter_name AND stats_airline = :airline; INSERT INTO stats_country (iso2,iso3,name,cnt,stats_airline,filter_name) SELECT :iso2,:iso3,:name,:cnt,:airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_country WHERE iso2 = :iso2 AND filter_name = :filter_name AND stats_airline = :airline);"; |
1301 | 1301 | } |
1302 | 1302 | } |
1303 | - $query_values = array(':iso2' => $iso2,':iso3' => $iso3,':name' => $name,':cnt' => $cnt,':filter_name' => $filter_name,':airline' => $airline_icao); |
|
1304 | - try { |
|
1305 | - $sth = $this->db->prepare($query); |
|
1306 | - $sth->execute($query_values); |
|
1307 | - } catch(PDOException $e) { |
|
1308 | - return "error : ".$e->getMessage(); |
|
1309 | - } |
|
1310 | - } |
|
1303 | + $query_values = array(':iso2' => $iso2,':iso3' => $iso3,':name' => $name,':cnt' => $cnt,':filter_name' => $filter_name,':airline' => $airline_icao); |
|
1304 | + try { |
|
1305 | + $sth = $this->db->prepare($query); |
|
1306 | + $sth->execute($query_values); |
|
1307 | + } catch(PDOException $e) { |
|
1308 | + return "error : ".$e->getMessage(); |
|
1309 | + } |
|
1310 | + } |
|
1311 | 1311 | public function addStatAircraft($aircraft_icao,$cnt,$aircraft_name = '',$aircraft_manufacturer = '', $airline_icao = '', $filter_name = '', $reset = false) { |
1312 | 1312 | global $globalDBdriver; |
1313 | 1313 | if ($globalDBdriver == 'mysql') { |
@@ -1323,14 +1323,14 @@ discard block |
||
1323 | 1323 | $query = "UPDATE stats_aircraft SET cnt = cnt+:cnt, aircraft_name = :aircraft_name, aircraft_manufacturer = :aircraft_manufacturer, filter_name = :filter_name WHERE aircraft_icao = :aircraft_icao AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats_aircraft (aircraft_icao,aircraft_name,aircraft_manufacturer,cnt,stats_airline,filter_name) SELECT :aircraft_icao,:aircraft_name,:aircraft_manufacturer,:cnt,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_aircraft WHERE aircraft_icao = :aircraft_icao AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1324 | 1324 | } |
1325 | 1325 | } |
1326 | - $query_values = array(':aircraft_icao' => $aircraft_icao,':aircraft_name' => $aircraft_name,':cnt' => $cnt, ':aircraft_manufacturer' => $aircraft_manufacturer,':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1327 | - try { |
|
1328 | - $sth = $this->db->prepare($query); |
|
1329 | - $sth->execute($query_values); |
|
1330 | - } catch(PDOException $e) { |
|
1331 | - return "error : ".$e->getMessage(); |
|
1332 | - } |
|
1333 | - } |
|
1326 | + $query_values = array(':aircraft_icao' => $aircraft_icao,':aircraft_name' => $aircraft_name,':cnt' => $cnt, ':aircraft_manufacturer' => $aircraft_manufacturer,':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1327 | + try { |
|
1328 | + $sth = $this->db->prepare($query); |
|
1329 | + $sth->execute($query_values); |
|
1330 | + } catch(PDOException $e) { |
|
1331 | + return "error : ".$e->getMessage(); |
|
1332 | + } |
|
1333 | + } |
|
1334 | 1334 | public function addStatAirline($airline_icao,$cnt,$airline_name = '',$filter_name = '', $reset = false) { |
1335 | 1335 | global $globalDBdriver; |
1336 | 1336 | if ($globalDBdriver == 'mysql') { |
@@ -1346,14 +1346,14 @@ discard block |
||
1346 | 1346 | $query = "UPDATE stats_airline SET cnt = cnt+:cnt WHERE airline_icao = :airline_icao AND filter_name = :filter_name; INSERT INTO stats_airline (airline_icao,airline_name,cnt,filter_name) SELECT :airline_icao,:airline_name,:cnt,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_airline WHERE airline_icao = :airline_icao AND filter_name = :filter_name);"; |
1347 | 1347 | } |
1348 | 1348 | } |
1349 | - $query_values = array(':airline_icao' => $airline_icao,':airline_name' => $airline_name,':cnt' => $cnt,':filter_name' => $filter_name); |
|
1350 | - try { |
|
1351 | - $sth = $this->db->prepare($query); |
|
1352 | - $sth->execute($query_values); |
|
1353 | - } catch(PDOException $e) { |
|
1354 | - return "error : ".$e->getMessage(); |
|
1355 | - } |
|
1356 | - } |
|
1349 | + $query_values = array(':airline_icao' => $airline_icao,':airline_name' => $airline_name,':cnt' => $cnt,':filter_name' => $filter_name); |
|
1350 | + try { |
|
1351 | + $sth = $this->db->prepare($query); |
|
1352 | + $sth->execute($query_values); |
|
1353 | + } catch(PDOException $e) { |
|
1354 | + return "error : ".$e->getMessage(); |
|
1355 | + } |
|
1356 | + } |
|
1357 | 1357 | public function addStatOwner($owner_name,$cnt,$stats_airline = '', $filter_name = '', $reset = false) { |
1358 | 1358 | global $globalDBdriver; |
1359 | 1359 | if ($globalDBdriver == 'mysql') { |
@@ -1369,14 +1369,14 @@ discard block |
||
1369 | 1369 | $query = "UPDATE stats_owner SET cnt = cnt+:cnt WHERE owner_name = :owner_name AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats_owner (owner_name,cnt,stats_airline,filter_name) SELECT :owner_name,:cnt,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_owner WHERE owner_name = :owner_name AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1370 | 1370 | } |
1371 | 1371 | } |
1372 | - $query_values = array(':owner_name' => $owner_name,':cnt' => $cnt,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1373 | - try { |
|
1374 | - $sth = $this->db->prepare($query); |
|
1375 | - $sth->execute($query_values); |
|
1376 | - } catch(PDOException $e) { |
|
1377 | - return "error : ".$e->getMessage(); |
|
1378 | - } |
|
1379 | - } |
|
1372 | + $query_values = array(':owner_name' => $owner_name,':cnt' => $cnt,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1373 | + try { |
|
1374 | + $sth = $this->db->prepare($query); |
|
1375 | + $sth->execute($query_values); |
|
1376 | + } catch(PDOException $e) { |
|
1377 | + return "error : ".$e->getMessage(); |
|
1378 | + } |
|
1379 | + } |
|
1380 | 1380 | public function addStatPilot($pilot_id,$cnt,$pilot_name,$stats_airline = '',$filter_name = '',$format_source = '',$reset = false) { |
1381 | 1381 | global $globalDBdriver; |
1382 | 1382 | if ($globalDBdriver == 'mysql') { |
@@ -1392,14 +1392,14 @@ discard block |
||
1392 | 1392 | $query = "UPDATE stats_pilot SET cnt = cnt+:cnt, pilot_name = :pilot_name WHERE pilot_id = :pilot_id AND stats_airline = :stats_airline AND filter_name = :filter_name AND format_source = :format_source; INSERT INTO stats_pilot (pilot_id,cnt,pilot_name,stats_airline,filter_name,format_source) SELECT :pilot_id,:cnt,:pilot_name,:stats_airline,:filter_name,:format_source WHERE NOT EXISTS (SELECT 1 FROM stats_pilot WHERE pilot_id = :pilot_id AND stats_airline = :stats_airline AND filter_name = :filter_name AND format_source = :format_source);"; |
1393 | 1393 | } |
1394 | 1394 | } |
1395 | - $query_values = array(':pilot_id' => $pilot_id,':cnt' => $cnt,':pilot_name' => $pilot_name,':stats_airline' => $stats_airline,':filter_name' => $filter_name,':format_source' => $format_source); |
|
1396 | - try { |
|
1397 | - $sth = $this->db->prepare($query); |
|
1398 | - $sth->execute($query_values); |
|
1399 | - } catch(PDOException $e) { |
|
1400 | - return "error : ".$e->getMessage(); |
|
1401 | - } |
|
1402 | - } |
|
1395 | + $query_values = array(':pilot_id' => $pilot_id,':cnt' => $cnt,':pilot_name' => $pilot_name,':stats_airline' => $stats_airline,':filter_name' => $filter_name,':format_source' => $format_source); |
|
1396 | + try { |
|
1397 | + $sth = $this->db->prepare($query); |
|
1398 | + $sth->execute($query_values); |
|
1399 | + } catch(PDOException $e) { |
|
1400 | + return "error : ".$e->getMessage(); |
|
1401 | + } |
|
1402 | + } |
|
1403 | 1403 | public function addStatDepartureAirports($airport_icao,$airport_name,$airport_city,$airport_country,$departure,$airline_icao = '',$filter_name = '',$reset = false) { |
1404 | 1404 | global $globalDBdriver; |
1405 | 1405 | if ($airport_icao != '') { |
@@ -1423,8 +1423,8 @@ discard block |
||
1423 | 1423 | } catch(PDOException $e) { |
1424 | 1424 | return "error : ".$e->getMessage(); |
1425 | 1425 | } |
1426 | - } |
|
1427 | - } |
|
1426 | + } |
|
1427 | + } |
|
1428 | 1428 | public function addStatDepartureAirportsDaily($date,$airport_icao,$airport_name,$airport_city,$airport_country,$departure,$airline_icao = '',$filter_name = '') { |
1429 | 1429 | global $globalDBdriver; |
1430 | 1430 | if ($airport_icao != '') { |
@@ -1440,8 +1440,8 @@ discard block |
||
1440 | 1440 | } catch(PDOException $e) { |
1441 | 1441 | return "error : ".$e->getMessage(); |
1442 | 1442 | } |
1443 | - } |
|
1444 | - } |
|
1443 | + } |
|
1444 | + } |
|
1445 | 1445 | public function addStatArrivalAirports($airport_icao,$airport_name,$airport_city,$airport_country,$arrival,$airline_icao = '',$filter_name = '',$reset = false) { |
1446 | 1446 | global $globalDBdriver; |
1447 | 1447 | if ($airport_icao != '') { |
@@ -1458,15 +1458,15 @@ discard block |
||
1458 | 1458 | $query = "UPDATE stats_airport SET arrival = arrival+:arrival WHERE airport_icao = :airport_icao AND stats_type = 'yearly' AND stats_airline = :stats_airline AND date = :date AND filter_name = :filter_name; INSERT INTO stats_airport (airport_icao,airport_name,airport_city,airport_country,arrival,stats_type,date,stats_airline,filter_name) SELECT :airport_icao,:airport_name,:airport_city,:airport_country,:arrival,'yearly',:date,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_airport WHERE airport_icao = :airport_icao AND stats_type = 'yearly' AND stats_airline = :stats_airline AND date = :date AND filter_name = :filter_name);"; |
1459 | 1459 | } |
1460 | 1460 | } |
1461 | - $query_values = array(':airport_icao' => $airport_icao,':airport_name' => $airport_name,':airport_city' => $airport_city,':airport_country' => $airport_country,':arrival' => $arrival,':date' => date('Y').'-01-01 00:00:00',':stats_airline' => $airline_icao,':filter_name' => $filter_name); |
|
1461 | + $query_values = array(':airport_icao' => $airport_icao,':airport_name' => $airport_name,':airport_city' => $airport_city,':airport_country' => $airport_country,':arrival' => $arrival,':date' => date('Y').'-01-01 00:00:00',':stats_airline' => $airline_icao,':filter_name' => $filter_name); |
|
1462 | 1462 | try { |
1463 | - $sth = $this->db->prepare($query); |
|
1464 | - $sth->execute($query_values); |
|
1465 | - } catch(PDOException $e) { |
|
1466 | - return "error : ".$e->getMessage(); |
|
1467 | - } |
|
1468 | - } |
|
1469 | - } |
|
1463 | + $sth = $this->db->prepare($query); |
|
1464 | + $sth->execute($query_values); |
|
1465 | + } catch(PDOException $e) { |
|
1466 | + return "error : ".$e->getMessage(); |
|
1467 | + } |
|
1468 | + } |
|
1469 | + } |
|
1470 | 1470 | public function addStatArrivalAirportsDaily($date,$airport_icao,$airport_name,$airport_city,$airport_country,$arrival,$airline_icao = '',$filter_name = '') { |
1471 | 1471 | global $globalDBdriver; |
1472 | 1472 | if ($airport_icao != '') { |
@@ -1482,46 +1482,46 @@ discard block |
||
1482 | 1482 | } catch(PDOException $e) { |
1483 | 1483 | return "error : ".$e->getMessage(); |
1484 | 1484 | } |
1485 | - } |
|
1486 | - } |
|
1485 | + } |
|
1486 | + } |
|
1487 | 1487 | |
1488 | 1488 | public function deleteStat($id) { |
1489 | - $query = "DELETE FROM stats WHERE stats_id = :id"; |
|
1490 | - $query_values = array(':id' => $id); |
|
1491 | - try { |
|
1492 | - $sth = $this->db->prepare($query); |
|
1493 | - $sth->execute($query_values); |
|
1494 | - } catch(PDOException $e) { |
|
1495 | - return "error : ".$e->getMessage(); |
|
1496 | - } |
|
1497 | - } |
|
1489 | + $query = "DELETE FROM stats WHERE stats_id = :id"; |
|
1490 | + $query_values = array(':id' => $id); |
|
1491 | + try { |
|
1492 | + $sth = $this->db->prepare($query); |
|
1493 | + $sth->execute($query_values); |
|
1494 | + } catch(PDOException $e) { |
|
1495 | + return "error : ".$e->getMessage(); |
|
1496 | + } |
|
1497 | + } |
|
1498 | 1498 | public function deleteStatFlight($type) { |
1499 | - $query = "DELETE FROM stats_flight WHERE stats_type = :type"; |
|
1500 | - $query_values = array(':type' => $type); |
|
1501 | - try { |
|
1502 | - $sth = $this->db->prepare($query); |
|
1503 | - $sth->execute($query_values); |
|
1504 | - } catch(PDOException $e) { |
|
1505 | - return "error : ".$e->getMessage(); |
|
1506 | - } |
|
1507 | - } |
|
1499 | + $query = "DELETE FROM stats_flight WHERE stats_type = :type"; |
|
1500 | + $query_values = array(':type' => $type); |
|
1501 | + try { |
|
1502 | + $sth = $this->db->prepare($query); |
|
1503 | + $sth->execute($query_values); |
|
1504 | + } catch(PDOException $e) { |
|
1505 | + return "error : ".$e->getMessage(); |
|
1506 | + } |
|
1507 | + } |
|
1508 | 1508 | public function deleteStatAirport($type) { |
1509 | - $query = "DELETE FROM stats_airport WHERE stats_type = :type"; |
|
1510 | - $query_values = array(':type' => $type); |
|
1511 | - try { |
|
1512 | - $sth = $this->db->prepare($query); |
|
1513 | - $sth->execute($query_values); |
|
1514 | - } catch(PDOException $e) { |
|
1515 | - return "error : ".$e->getMessage(); |
|
1516 | - } |
|
1517 | - } |
|
1509 | + $query = "DELETE FROM stats_airport WHERE stats_type = :type"; |
|
1510 | + $query_values = array(':type' => $type); |
|
1511 | + try { |
|
1512 | + $sth = $this->db->prepare($query); |
|
1513 | + $sth->execute($query_values); |
|
1514 | + } catch(PDOException $e) { |
|
1515 | + return "error : ".$e->getMessage(); |
|
1516 | + } |
|
1517 | + } |
|
1518 | 1518 | |
1519 | - public function addOldStats() { |
|
1520 | - global $globalDebug, $globalArchiveMonths, $globalArchive, $globalArchiveYear, $globalDBdriver, $globalStatsFilters,$globalDeleteLastYearStats,$globalStatsReset,$globalStatsResetYear; |
|
1521 | - $Common = new Common(); |
|
1522 | - $Connection = new Connection(); |
|
1523 | - date_default_timezone_set('UTC'); |
|
1524 | - $last_update = $this->getLastStatsUpdate('last_update_stats'); |
|
1519 | + public function addOldStats() { |
|
1520 | + global $globalDebug, $globalArchiveMonths, $globalArchive, $globalArchiveYear, $globalDBdriver, $globalStatsFilters,$globalDeleteLastYearStats,$globalStatsReset,$globalStatsResetYear; |
|
1521 | + $Common = new Common(); |
|
1522 | + $Connection = new Connection(); |
|
1523 | + date_default_timezone_set('UTC'); |
|
1524 | + $last_update = $this->getLastStatsUpdate('last_update_stats'); |
|
1525 | 1525 | if ($globalDebug) echo 'Update stats !'."\n"; |
1526 | 1526 | if (isset($last_update[0]['value'])) { |
1527 | 1527 | $last_update_day = $last_update[0]['value']; |
@@ -1568,24 +1568,24 @@ discard block |
||
1568 | 1568 | if ($globalDebug) echo 'Count all departure airports...'."\n"; |
1569 | 1569 | $pall = $Spotter->countAllDepartureAirports(false,0,$last_update_day); |
1570 | 1570 | if ($globalDebug) echo 'Count all detected departure airports...'."\n"; |
1571 | - $dall = $Spotter->countAllDetectedDepartureAirports(false,0,$last_update_day); |
|
1571 | + $dall = $Spotter->countAllDetectedDepartureAirports(false,0,$last_update_day); |
|
1572 | 1572 | if ($globalDebug) echo 'Order departure airports...'."\n"; |
1573 | - $alldata = array(); |
|
1573 | + $alldata = array(); |
|
1574 | 1574 | |
1575 | - foreach ($pall as $value) { |
|
1576 | - $icao = $value['airport_departure_icao']; |
|
1577 | - $alldata[$icao] = $value; |
|
1578 | - } |
|
1579 | - foreach ($dall as $value) { |
|
1580 | - $icao = $value['airport_departure_icao']; |
|
1581 | - if (isset($alldata[$icao])) { |
|
1582 | - $alldata[$icao]['airport_departure_icao_count'] = $alldata[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count']; |
|
1583 | - } else $alldata[$icao] = $value; |
|
1584 | - } |
|
1585 | - $count = array(); |
|
1586 | - foreach ($alldata as $key => $row) { |
|
1587 | - $count[$key] = $row['airport_departure_icao_count']; |
|
1588 | - } |
|
1575 | + foreach ($pall as $value) { |
|
1576 | + $icao = $value['airport_departure_icao']; |
|
1577 | + $alldata[$icao] = $value; |
|
1578 | + } |
|
1579 | + foreach ($dall as $value) { |
|
1580 | + $icao = $value['airport_departure_icao']; |
|
1581 | + if (isset($alldata[$icao])) { |
|
1582 | + $alldata[$icao]['airport_departure_icao_count'] = $alldata[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count']; |
|
1583 | + } else $alldata[$icao] = $value; |
|
1584 | + } |
|
1585 | + $count = array(); |
|
1586 | + foreach ($alldata as $key => $row) { |
|
1587 | + $count[$key] = $row['airport_departure_icao_count']; |
|
1588 | + } |
|
1589 | 1589 | array_multisort($count,SORT_DESC,$alldata); |
1590 | 1590 | foreach ($alldata as $number) { |
1591 | 1591 | echo $this->addStatDepartureAirports($number['airport_departure_icao'],$number['airport_departure_name'],$number['airport_departure_city'],$number['airport_departure_country'],$number['airport_departure_icao_count'],'','',$reset); |
@@ -1593,25 +1593,25 @@ discard block |
||
1593 | 1593 | if ($globalDebug) echo 'Count all arrival airports...'."\n"; |
1594 | 1594 | $pall = $Spotter->countAllArrivalAirports(false,0,$last_update_day); |
1595 | 1595 | if ($globalDebug) echo 'Count all detected arrival airports...'."\n"; |
1596 | - $dall = $Spotter->countAllDetectedArrivalAirports(false,0,$last_update_day); |
|
1596 | + $dall = $Spotter->countAllDetectedArrivalAirports(false,0,$last_update_day); |
|
1597 | 1597 | if ($globalDebug) echo 'Order arrival airports...'."\n"; |
1598 | - $alldata = array(); |
|
1599 | - foreach ($pall as $value) { |
|
1600 | - $icao = $value['airport_arrival_icao']; |
|
1601 | - $alldata[$icao] = $value; |
|
1602 | - } |
|
1603 | - foreach ($dall as $value) { |
|
1604 | - $icao = $value['airport_arrival_icao']; |
|
1605 | - if (isset($alldata[$icao])) { |
|
1606 | - $alldata[$icao]['airport_arrival_icao_count'] = $alldata[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count']; |
|
1607 | - } else $alldata[$icao] = $value; |
|
1608 | - } |
|
1609 | - $count = array(); |
|
1610 | - foreach ($alldata as $key => $row) { |
|
1611 | - $count[$key] = $row['airport_arrival_icao_count']; |
|
1612 | - } |
|
1613 | - array_multisort($count,SORT_DESC,$alldata); |
|
1614 | - foreach ($alldata as $number) { |
|
1598 | + $alldata = array(); |
|
1599 | + foreach ($pall as $value) { |
|
1600 | + $icao = $value['airport_arrival_icao']; |
|
1601 | + $alldata[$icao] = $value; |
|
1602 | + } |
|
1603 | + foreach ($dall as $value) { |
|
1604 | + $icao = $value['airport_arrival_icao']; |
|
1605 | + if (isset($alldata[$icao])) { |
|
1606 | + $alldata[$icao]['airport_arrival_icao_count'] = $alldata[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count']; |
|
1607 | + } else $alldata[$icao] = $value; |
|
1608 | + } |
|
1609 | + $count = array(); |
|
1610 | + foreach ($alldata as $key => $row) { |
|
1611 | + $count[$key] = $row['airport_arrival_icao_count']; |
|
1612 | + } |
|
1613 | + array_multisort($count,SORT_DESC,$alldata); |
|
1614 | + foreach ($alldata as $number) { |
|
1615 | 1615 | echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],'','',$reset); |
1616 | 1616 | } |
1617 | 1617 | if ($Connection->tableExists('countries')) { |
@@ -1684,8 +1684,8 @@ discard block |
||
1684 | 1684 | // $pall = $Spotter->getLast7DaysAirportsDeparture(); |
1685 | 1685 | // $dall = $Spotter->getLast7DaysDetectedAirportsDeparture(); |
1686 | 1686 | $pall = $Spotter->getLast7DaysAirportsDeparture(); |
1687 | - $dall = $Spotter->getLast7DaysDetectedAirportsDeparture(); |
|
1688 | - /* |
|
1687 | + $dall = $Spotter->getLast7DaysDetectedAirportsDeparture(); |
|
1688 | + /* |
|
1689 | 1689 | $alldata = array(); |
1690 | 1690 | foreach ($pall as $value) { |
1691 | 1691 | $icao = $value['departure_airport_icao']; |
@@ -1704,29 +1704,29 @@ discard block |
||
1704 | 1704 | } |
1705 | 1705 | array_multisort($count,SORT_DESC,$alldata); |
1706 | 1706 | */ |
1707 | - foreach ($dall as $value) { |
|
1708 | - $icao = $value['departure_airport_icao']; |
|
1709 | - $ddate = $value['date']; |
|
1710 | - $find = false; |
|
1711 | - foreach ($pall as $pvalue) { |
|
1712 | - if ($pvalue['departure_airport_icao'] == $icao && $pvalue['date'] == $ddate) { |
|
1713 | - $pvalue['departure_airport_count'] = $pvalue['departure_airport_count'] + $value['departure_airport_count']; |
|
1714 | - $find = true; |
|
1715 | - break; |
|
1716 | - } |
|
1717 | - } |
|
1718 | - if ($find === false) { |
|
1719 | - $pall[] = $value; |
|
1720 | - } |
|
1721 | - } |
|
1722 | - $alldata = $pall; |
|
1707 | + foreach ($dall as $value) { |
|
1708 | + $icao = $value['departure_airport_icao']; |
|
1709 | + $ddate = $value['date']; |
|
1710 | + $find = false; |
|
1711 | + foreach ($pall as $pvalue) { |
|
1712 | + if ($pvalue['departure_airport_icao'] == $icao && $pvalue['date'] == $ddate) { |
|
1713 | + $pvalue['departure_airport_count'] = $pvalue['departure_airport_count'] + $value['departure_airport_count']; |
|
1714 | + $find = true; |
|
1715 | + break; |
|
1716 | + } |
|
1717 | + } |
|
1718 | + if ($find === false) { |
|
1719 | + $pall[] = $value; |
|
1720 | + } |
|
1721 | + } |
|
1722 | + $alldata = $pall; |
|
1723 | 1723 | foreach ($alldata as $number) { |
1724 | 1724 | $this->addStatDepartureAirportsDaily($number['date'],$number['departure_airport_icao'],$number['departure_airport_name'],$number['departure_airport_city'],$number['departure_airport_country'],$number['departure_airport_count']); |
1725 | 1725 | } |
1726 | 1726 | echo '...Arrival'."\n"; |
1727 | 1727 | $pall = $Spotter->getLast7DaysAirportsArrival(); |
1728 | - $dall = $Spotter->getLast7DaysDetectedAirportsArrival(); |
|
1729 | - /* |
|
1728 | + $dall = $Spotter->getLast7DaysDetectedAirportsArrival(); |
|
1729 | + /* |
|
1730 | 1730 | $alldata = array(); |
1731 | 1731 | foreach ($pall as $value) { |
1732 | 1732 | $icao = $value['arrival_airport_icao']; |
@@ -1746,22 +1746,22 @@ discard block |
||
1746 | 1746 | */ |
1747 | 1747 | |
1748 | 1748 | |
1749 | - foreach ($dall as $value) { |
|
1750 | - $icao = $value['arrival_airport_icao']; |
|
1751 | - $ddate = $value['date']; |
|
1752 | - $find = false; |
|
1753 | - foreach ($pall as $pvalue) { |
|
1754 | - if ($pvalue['arrival_airport_icao'] == $icao && $pvalue['date'] == $ddate) { |
|
1755 | - $pvalue['arrival_airport_count'] = $pvalue['arrival_airport_count'] + $value['arrival_airport_count']; |
|
1756 | - $find = true; |
|
1757 | - break; |
|
1758 | - } |
|
1759 | - } |
|
1760 | - if ($find === false) { |
|
1761 | - $pall[] = $value; |
|
1762 | - } |
|
1763 | - } |
|
1764 | - $alldata = $pall; |
|
1749 | + foreach ($dall as $value) { |
|
1750 | + $icao = $value['arrival_airport_icao']; |
|
1751 | + $ddate = $value['date']; |
|
1752 | + $find = false; |
|
1753 | + foreach ($pall as $pvalue) { |
|
1754 | + if ($pvalue['arrival_airport_icao'] == $icao && $pvalue['date'] == $ddate) { |
|
1755 | + $pvalue['arrival_airport_count'] = $pvalue['arrival_airport_count'] + $value['arrival_airport_count']; |
|
1756 | + $find = true; |
|
1757 | + break; |
|
1758 | + } |
|
1759 | + } |
|
1760 | + if ($find === false) { |
|
1761 | + $pall[] = $value; |
|
1762 | + } |
|
1763 | + } |
|
1764 | + $alldata = $pall; |
|
1765 | 1765 | foreach ($alldata as $number) { |
1766 | 1766 | $this->addStatArrivalAirportsDaily($number['date'],$number['arrival_airport_icao'],$number['arrival_airport_name'],$number['arrival_airport_city'],$number['arrival_airport_country'],$number['arrival_airport_count']); |
1767 | 1767 | } |
@@ -1836,51 +1836,51 @@ discard block |
||
1836 | 1836 | if ($globalDebug) echo 'Count all departure airports by airlines...'."\n"; |
1837 | 1837 | $pall = $Spotter->countAllDepartureAirportsByAirlines(false,0,$last_update_day); |
1838 | 1838 | if ($globalDebug) echo 'Count all detected departure airports by airlines...'."\n"; |
1839 | - $dall = $Spotter->countAllDetectedDepartureAirportsByAirlines(false,0,$last_update_day); |
|
1839 | + $dall = $Spotter->countAllDetectedDepartureAirportsByAirlines(false,0,$last_update_day); |
|
1840 | 1840 | if ($globalDebug) echo 'Order detected departure airports by airlines...'."\n"; |
1841 | - //$alldata = array(); |
|
1842 | - foreach ($dall as $value) { |
|
1843 | - $icao = $value['airport_departure_icao']; |
|
1844 | - $dicao = $value['airline_icao']; |
|
1845 | - $find = false; |
|
1846 | - foreach ($pall as $pvalue) { |
|
1847 | - if ($pvalue['airport_departure_icao'] == $icao && $pvalue['airline_icao'] = $dicao) { |
|
1848 | - $pvalue['airport_departure_icao_count'] = $pvalue['airport_departure_icao_count'] + $value['airport_departure_icao_count']; |
|
1849 | - $find = true; |
|
1850 | - break; |
|
1851 | - } |
|
1852 | - } |
|
1853 | - if ($find === false) { |
|
1854 | - $pall[] = $value; |
|
1855 | - } |
|
1856 | - } |
|
1857 | - $alldata = $pall; |
|
1841 | + //$alldata = array(); |
|
1842 | + foreach ($dall as $value) { |
|
1843 | + $icao = $value['airport_departure_icao']; |
|
1844 | + $dicao = $value['airline_icao']; |
|
1845 | + $find = false; |
|
1846 | + foreach ($pall as $pvalue) { |
|
1847 | + if ($pvalue['airport_departure_icao'] == $icao && $pvalue['airline_icao'] = $dicao) { |
|
1848 | + $pvalue['airport_departure_icao_count'] = $pvalue['airport_departure_icao_count'] + $value['airport_departure_icao_count']; |
|
1849 | + $find = true; |
|
1850 | + break; |
|
1851 | + } |
|
1852 | + } |
|
1853 | + if ($find === false) { |
|
1854 | + $pall[] = $value; |
|
1855 | + } |
|
1856 | + } |
|
1857 | + $alldata = $pall; |
|
1858 | 1858 | foreach ($alldata as $number) { |
1859 | 1859 | echo $this->addStatDepartureAirports($number['airport_departure_icao'],$number['airport_departure_name'],$number['airport_departure_city'],$number['airport_departure_country'],$number['airport_departure_icao_count'],$number['airline_icao'],'',$reset); |
1860 | 1860 | } |
1861 | 1861 | if ($globalDebug) echo 'Count all arrival airports by airlines...'."\n"; |
1862 | 1862 | $pall = $Spotter->countAllArrivalAirportsByAirlines(false,0,$last_update_day); |
1863 | 1863 | if ($globalDebug) echo 'Count all detected arrival airports by airlines...'."\n"; |
1864 | - $dall = $Spotter->countAllDetectedArrivalAirportsByAirlines(false,0,$last_update_day); |
|
1864 | + $dall = $Spotter->countAllDetectedArrivalAirportsByAirlines(false,0,$last_update_day); |
|
1865 | 1865 | if ($globalDebug) echo 'Order arrival airports by airlines...'."\n"; |
1866 | - //$alldata = array(); |
|
1867 | - foreach ($dall as $value) { |
|
1868 | - $icao = $value['airport_arrival_icao']; |
|
1869 | - $dicao = $value['airline_icao']; |
|
1870 | - $find = false; |
|
1871 | - foreach ($pall as $pvalue) { |
|
1872 | - if ($pvalue['airport_arrival_icao'] == $icao && $pvalue['airline_icao'] = $dicao) { |
|
1873 | - $pvalue['airport_arrival_icao_count'] = $pvalue['airport_arrival_icao_count'] + $value['airport_arrival_icao_count']; |
|
1874 | - $find = true; |
|
1875 | - break; |
|
1876 | - } |
|
1877 | - } |
|
1878 | - if ($find === false) { |
|
1879 | - $pall[] = $value; |
|
1880 | - } |
|
1881 | - } |
|
1882 | - $alldata = $pall; |
|
1883 | - foreach ($alldata as $number) { |
|
1866 | + //$alldata = array(); |
|
1867 | + foreach ($dall as $value) { |
|
1868 | + $icao = $value['airport_arrival_icao']; |
|
1869 | + $dicao = $value['airline_icao']; |
|
1870 | + $find = false; |
|
1871 | + foreach ($pall as $pvalue) { |
|
1872 | + if ($pvalue['airport_arrival_icao'] == $icao && $pvalue['airline_icao'] = $dicao) { |
|
1873 | + $pvalue['airport_arrival_icao_count'] = $pvalue['airport_arrival_icao_count'] + $value['airport_arrival_icao_count']; |
|
1874 | + $find = true; |
|
1875 | + break; |
|
1876 | + } |
|
1877 | + } |
|
1878 | + if ($find === false) { |
|
1879 | + $pall[] = $value; |
|
1880 | + } |
|
1881 | + } |
|
1882 | + $alldata = $pall; |
|
1883 | + foreach ($alldata as $number) { |
|
1884 | 1884 | if ($number['airline_icao'] != '') echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],$number['airline_icao'],'',$reset); |
1885 | 1885 | } |
1886 | 1886 | if ($globalDebug) echo 'Count all flights by months by airlines...'."\n"; |
@@ -1913,47 +1913,47 @@ discard block |
||
1913 | 1913 | } |
1914 | 1914 | if ($globalDebug) echo '...Departure'."\n"; |
1915 | 1915 | $pall = $Spotter->getLast7DaysAirportsDepartureByAirlines(); |
1916 | - $dall = $Spotter->getLast7DaysDetectedAirportsDepartureByAirlines(); |
|
1917 | - foreach ($dall as $value) { |
|
1918 | - $icao = $value['departure_airport_icao']; |
|
1919 | - $airline = $value['airline_icao']; |
|
1920 | - $ddate = $value['date']; |
|
1921 | - $find = false; |
|
1922 | - foreach ($pall as $pvalue) { |
|
1923 | - if ($pvalue['departure_airport_icao'] == $icao && $pvalue['date'] == $ddate && $pvalue['airline_icao'] = $airline) { |
|
1924 | - $pvalue['departure_airport_count'] = $pvalue['departure_airport_count'] + $value['departure_airport_count']; |
|
1925 | - $find = true; |
|
1926 | - break; |
|
1927 | - } |
|
1928 | - } |
|
1929 | - if ($find === false) { |
|
1930 | - $pall[] = $value; |
|
1931 | - } |
|
1932 | - } |
|
1933 | - $alldata = $pall; |
|
1916 | + $dall = $Spotter->getLast7DaysDetectedAirportsDepartureByAirlines(); |
|
1917 | + foreach ($dall as $value) { |
|
1918 | + $icao = $value['departure_airport_icao']; |
|
1919 | + $airline = $value['airline_icao']; |
|
1920 | + $ddate = $value['date']; |
|
1921 | + $find = false; |
|
1922 | + foreach ($pall as $pvalue) { |
|
1923 | + if ($pvalue['departure_airport_icao'] == $icao && $pvalue['date'] == $ddate && $pvalue['airline_icao'] = $airline) { |
|
1924 | + $pvalue['departure_airport_count'] = $pvalue['departure_airport_count'] + $value['departure_airport_count']; |
|
1925 | + $find = true; |
|
1926 | + break; |
|
1927 | + } |
|
1928 | + } |
|
1929 | + if ($find === false) { |
|
1930 | + $pall[] = $value; |
|
1931 | + } |
|
1932 | + } |
|
1933 | + $alldata = $pall; |
|
1934 | 1934 | foreach ($alldata as $number) { |
1935 | 1935 | $this->addStatDepartureAirportsDaily($number['date'],$number['departure_airport_icao'],$number['departure_airport_name'],$number['departure_airport_city'],$number['departure_airport_country'],$number['departure_airport_count'],$number['airline_icao']); |
1936 | 1936 | } |
1937 | 1937 | if ($globalDebug) echo '...Arrival'."\n"; |
1938 | 1938 | $pall = $Spotter->getLast7DaysAirportsArrivalByAirlines(); |
1939 | - $dall = $Spotter->getLast7DaysDetectedAirportsArrivalByAirlines(); |
|
1940 | - foreach ($dall as $value) { |
|
1941 | - $icao = $value['arrival_airport_icao']; |
|
1942 | - $airline = $value['airline_icao']; |
|
1943 | - $ddate = $value['date']; |
|
1944 | - $find = false; |
|
1945 | - foreach ($pall as $pvalue) { |
|
1946 | - if ($pvalue['arrival_airport_icao'] == $icao && $pvalue['date'] == $ddate && $pvalue['airline_icao'] == $airline) { |
|
1947 | - $pvalue['arrival_airport_count'] = $pvalue['arrival_airport_count'] + $value['arrival_airport_count']; |
|
1948 | - $find = true; |
|
1949 | - break; |
|
1950 | - } |
|
1951 | - } |
|
1952 | - if ($find === false) { |
|
1953 | - $pall[] = $value; |
|
1954 | - } |
|
1955 | - } |
|
1956 | - $alldata = $pall; |
|
1939 | + $dall = $Spotter->getLast7DaysDetectedAirportsArrivalByAirlines(); |
|
1940 | + foreach ($dall as $value) { |
|
1941 | + $icao = $value['arrival_airport_icao']; |
|
1942 | + $airline = $value['airline_icao']; |
|
1943 | + $ddate = $value['date']; |
|
1944 | + $find = false; |
|
1945 | + foreach ($pall as $pvalue) { |
|
1946 | + if ($pvalue['arrival_airport_icao'] == $icao && $pvalue['date'] == $ddate && $pvalue['airline_icao'] == $airline) { |
|
1947 | + $pvalue['arrival_airport_count'] = $pvalue['arrival_airport_count'] + $value['arrival_airport_count']; |
|
1948 | + $find = true; |
|
1949 | + break; |
|
1950 | + } |
|
1951 | + } |
|
1952 | + if ($find === false) { |
|
1953 | + $pall[] = $value; |
|
1954 | + } |
|
1955 | + } |
|
1956 | + $alldata = $pall; |
|
1957 | 1957 | foreach ($alldata as $number) { |
1958 | 1958 | $this->addStatArrivalAirportsDaily($number['date'],$number['arrival_airport_icao'],$number['arrival_airport_name'],$number['arrival_airport_city'],$number['arrival_airport_country'],$number['arrival_airport_count'],$number['airline_icao']); |
1959 | 1959 | } |
@@ -2038,44 +2038,44 @@ discard block |
||
2038 | 2038 | $this->addStatPilot($number['pilot_id'],$number['pilot_count'],$number['pilot_name'],'',$filter_name,$number['format_source'],$reset); |
2039 | 2039 | } |
2040 | 2040 | $pall = $Spotter->countAllDepartureAirports(false,0,$last_update_day,$filter); |
2041 | - $dall = $Spotter->countAllDetectedDepartureAirports(false,0,$last_update_day,$filter); |
|
2042 | - $alldata = array(); |
|
2043 | - foreach ($pall as $value) { |
|
2044 | - $icao = $value['airport_departure_icao']; |
|
2045 | - $alldata[$icao] = $value; |
|
2046 | - } |
|
2047 | - foreach ($dall as $value) { |
|
2048 | - $icao = $value['airport_departure_icao']; |
|
2049 | - if (isset($alldata[$icao])) { |
|
2050 | - $alldata[$icao]['airport_departure_icao_count'] = $alldata[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count']; |
|
2051 | - } else $alldata[$icao] = $value; |
|
2052 | - } |
|
2053 | - $count = array(); |
|
2054 | - foreach ($alldata as $key => $row) { |
|
2055 | - $count[$key] = $row['airport_departure_icao_count']; |
|
2056 | - } |
|
2041 | + $dall = $Spotter->countAllDetectedDepartureAirports(false,0,$last_update_day,$filter); |
|
2042 | + $alldata = array(); |
|
2043 | + foreach ($pall as $value) { |
|
2044 | + $icao = $value['airport_departure_icao']; |
|
2045 | + $alldata[$icao] = $value; |
|
2046 | + } |
|
2047 | + foreach ($dall as $value) { |
|
2048 | + $icao = $value['airport_departure_icao']; |
|
2049 | + if (isset($alldata[$icao])) { |
|
2050 | + $alldata[$icao]['airport_departure_icao_count'] = $alldata[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count']; |
|
2051 | + } else $alldata[$icao] = $value; |
|
2052 | + } |
|
2053 | + $count = array(); |
|
2054 | + foreach ($alldata as $key => $row) { |
|
2055 | + $count[$key] = $row['airport_departure_icao_count']; |
|
2056 | + } |
|
2057 | 2057 | array_multisort($count,SORT_DESC,$alldata); |
2058 | 2058 | foreach ($alldata as $number) { |
2059 | - echo $this->addStatDepartureAirports($number['airport_departure_icao'],$number['airport_departure_name'],$number['airport_departure_city'],$number['airport_departure_country'],$number['airport_departure_icao_count'],'',$filter_name,$reset); |
|
2059 | + echo $this->addStatDepartureAirports($number['airport_departure_icao'],$number['airport_departure_name'],$number['airport_departure_city'],$number['airport_departure_country'],$number['airport_departure_icao_count'],'',$filter_name,$reset); |
|
2060 | 2060 | } |
2061 | 2061 | $pall = $Spotter->countAllArrivalAirports(false,0,$last_update_day,false,$filter); |
2062 | - $dall = $Spotter->countAllDetectedArrivalAirports(false,0,$last_update_day,false,$filter); |
|
2062 | + $dall = $Spotter->countAllDetectedArrivalAirports(false,0,$last_update_day,false,$filter); |
|
2063 | 2063 | $alldata = array(); |
2064 | - foreach ($pall as $value) { |
|
2065 | - $icao = $value['airport_arrival_icao']; |
|
2066 | - $alldata[$icao] = $value; |
|
2067 | - } |
|
2068 | - foreach ($dall as $value) { |
|
2069 | - $icao = $value['airport_arrival_icao']; |
|
2070 | - if (isset($alldata[$icao])) { |
|
2071 | - $alldata[$icao]['airport_arrival_icao_count'] = $alldata[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count']; |
|
2072 | - } else $alldata[$icao] = $value; |
|
2073 | - } |
|
2074 | - $count = array(); |
|
2075 | - foreach ($alldata as $key => $row) { |
|
2076 | - $count[$key] = $row['airport_arrival_icao_count']; |
|
2077 | - } |
|
2078 | - array_multisort($count,SORT_DESC,$alldata); |
|
2064 | + foreach ($pall as $value) { |
|
2065 | + $icao = $value['airport_arrival_icao']; |
|
2066 | + $alldata[$icao] = $value; |
|
2067 | + } |
|
2068 | + foreach ($dall as $value) { |
|
2069 | + $icao = $value['airport_arrival_icao']; |
|
2070 | + if (isset($alldata[$icao])) { |
|
2071 | + $alldata[$icao]['airport_arrival_icao_count'] = $alldata[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count']; |
|
2072 | + } else $alldata[$icao] = $value; |
|
2073 | + } |
|
2074 | + $count = array(); |
|
2075 | + foreach ($alldata as $key => $row) { |
|
2076 | + $count[$key] = $row['airport_arrival_icao_count']; |
|
2077 | + } |
|
2078 | + array_multisort($count,SORT_DESC,$alldata); |
|
2079 | 2079 | foreach ($alldata as $number) { |
2080 | 2080 | echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],'',$filter_name,$reset); |
2081 | 2081 | } |
@@ -2108,45 +2108,45 @@ discard block |
||
2108 | 2108 | } |
2109 | 2109 | echo '...Departure'."\n"; |
2110 | 2110 | $pall = $Spotter->getLast7DaysAirportsDeparture('',$filter); |
2111 | - $dall = $Spotter->getLast7DaysDetectedAirportsDeparture('',$filter); |
|
2111 | + $dall = $Spotter->getLast7DaysDetectedAirportsDeparture('',$filter); |
|
2112 | 2112 | foreach ($dall as $value) { |
2113 | - $icao = $value['departure_airport_icao']; |
|
2114 | - $ddate = $value['date']; |
|
2115 | - $find = false; |
|
2116 | - foreach ($pall as $pvalue) { |
|
2117 | - if ($pvalue['departure_airport_icao'] == $icao && $pvalue['date'] == $ddate) { |
|
2118 | - $pvalue['departure_airport_count'] = $pvalue['departure_airport_count'] + $value['departure_airport_count']; |
|
2119 | - $find = true; |
|
2120 | - break; |
|
2121 | - } |
|
2122 | - } |
|
2123 | - if ($find === false) { |
|
2124 | - $pall[] = $value; |
|
2125 | - } |
|
2126 | - } |
|
2127 | - $alldata = $pall; |
|
2113 | + $icao = $value['departure_airport_icao']; |
|
2114 | + $ddate = $value['date']; |
|
2115 | + $find = false; |
|
2116 | + foreach ($pall as $pvalue) { |
|
2117 | + if ($pvalue['departure_airport_icao'] == $icao && $pvalue['date'] == $ddate) { |
|
2118 | + $pvalue['departure_airport_count'] = $pvalue['departure_airport_count'] + $value['departure_airport_count']; |
|
2119 | + $find = true; |
|
2120 | + break; |
|
2121 | + } |
|
2122 | + } |
|
2123 | + if ($find === false) { |
|
2124 | + $pall[] = $value; |
|
2125 | + } |
|
2126 | + } |
|
2127 | + $alldata = $pall; |
|
2128 | 2128 | foreach ($alldata as $number) { |
2129 | 2129 | $this->addStatDepartureAirportsDaily($number['date'],$number['departure_airport_icao'],$number['departure_airport_name'],$number['departure_airport_city'],$number['departure_airport_country'],$number['departure_airport_count'],'',$filter_name); |
2130 | 2130 | } |
2131 | 2131 | echo '...Arrival'."\n"; |
2132 | 2132 | $pall = $Spotter->getLast7DaysAirportsArrival('',$filter); |
2133 | - $dall = $Spotter->getLast7DaysDetectedAirportsArrival('',$filter); |
|
2133 | + $dall = $Spotter->getLast7DaysDetectedAirportsArrival('',$filter); |
|
2134 | 2134 | foreach ($dall as $value) { |
2135 | 2135 | $icao = $value['arrival_airport_icao']; |
2136 | 2136 | $ddate = $value['date']; |
2137 | - $find = false; |
|
2137 | + $find = false; |
|
2138 | 2138 | foreach ($pall as $pvalue) { |
2139 | - if ($pvalue['arrival_airport_icao'] == $icao && $pvalue['date'] == $ddate) { |
|
2140 | - $pvalue['arrival_airport_count'] = $pvalue['arrival_airport_count'] + $value['arrival_airport_count']; |
|
2141 | - $find = true; |
|
2142 | - break; |
|
2143 | - } |
|
2144 | - } |
|
2145 | - if ($find === false) { |
|
2146 | - $pall[] = $value; |
|
2147 | - } |
|
2148 | - } |
|
2149 | - $alldata = $pall; |
|
2139 | + if ($pvalue['arrival_airport_icao'] == $icao && $pvalue['date'] == $ddate) { |
|
2140 | + $pvalue['arrival_airport_count'] = $pvalue['arrival_airport_count'] + $value['arrival_airport_count']; |
|
2141 | + $find = true; |
|
2142 | + break; |
|
2143 | + } |
|
2144 | + } |
|
2145 | + if ($find === false) { |
|
2146 | + $pall[] = $value; |
|
2147 | + } |
|
2148 | + } |
|
2149 | + $alldata = $pall; |
|
2150 | 2150 | foreach ($alldata as $number) { |
2151 | 2151 | $this->addStatArrivalAirportsDaily($number['date'],$number['arrival_airport_icao'],$number['arrival_airport_name'],$number['arrival_airport_city'],$number['arrival_airport_country'],$number['arrival_airport_count'],'',$filter_name); |
2152 | 2152 | } |
@@ -18,14 +18,14 @@ discard block |
||
18 | 18 | $this->db = $Connection->db(); |
19 | 19 | } |
20 | 20 | |
21 | - public function addLastStatsUpdate($type,$stats_date) { |
|
21 | + public function addLastStatsUpdate($type, $stats_date) { |
|
22 | 22 | $query = "DELETE FROM config WHERE name = :type; |
23 | 23 | INSERT INTO config (name,value) VALUES (:type,:stats_date);"; |
24 | - $query_values = array('type' => $type,':stats_date' => $stats_date); |
|
24 | + $query_values = array('type' => $type, ':stats_date' => $stats_date); |
|
25 | 25 | try { |
26 | 26 | $sth = $this->db->prepare($query); |
27 | 27 | $sth->execute($query_values); |
28 | - } catch(PDOException $e) { |
|
28 | + } catch (PDOException $e) { |
|
29 | 29 | return "error : ".$e->getMessage(); |
30 | 30 | } |
31 | 31 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | try { |
36 | 36 | $sth = $this->db->prepare($query); |
37 | 37 | $sth->execute(array(':type' => $type)); |
38 | - } catch(PDOException $e) { |
|
38 | + } catch (PDOException $e) { |
|
39 | 39 | echo "error : ".$e->getMessage(); |
40 | 40 | } |
41 | 41 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | try { |
56 | 56 | $sth = $this->db->prepare($query); |
57 | 57 | $sth->execute(array(':filter_name' => $filter_name)); |
58 | - } catch(PDOException $e) { |
|
58 | + } catch (PDOException $e) { |
|
59 | 59 | return "error : ".$e->getMessage(); |
60 | 60 | } |
61 | 61 | } |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | try { |
69 | 69 | $sth = $this->db->prepare($query); |
70 | 70 | $sth->execute(); |
71 | - } catch(PDOException $e) { |
|
71 | + } catch (PDOException $e) { |
|
72 | 72 | return "error : ".$e->getMessage(); |
73 | 73 | } |
74 | 74 | |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | try { |
77 | 77 | $sth = $this->db->prepare($query); |
78 | 78 | $sth->execute(array(':filter_name' => $filter_name)); |
79 | - } catch(PDOException $e) { |
|
79 | + } catch (PDOException $e) { |
|
80 | 80 | return "error : ".$e->getMessage(); |
81 | 81 | } |
82 | 82 | } |
@@ -86,69 +86,69 @@ discard block |
||
86 | 86 | try { |
87 | 87 | $sth = $this->db->prepare($query); |
88 | 88 | $sth->execute(array(':filter_name' => $filter_name)); |
89 | - } catch(PDOException $e) { |
|
89 | + } catch (PDOException $e) { |
|
90 | 90 | echo "error : ".$e->getMessage(); |
91 | 91 | } |
92 | 92 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
93 | 93 | return $all; |
94 | 94 | } |
95 | - public function getAllAircraftTypes($stats_airline = '',$filter_name = '') { |
|
95 | + public function getAllAircraftTypes($stats_airline = '', $filter_name = '') { |
|
96 | 96 | if ($filter_name == '') $filter_name = $this->filter_name; |
97 | 97 | $query = "SELECT * FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_manufacturer ASC"; |
98 | 98 | try { |
99 | 99 | $sth = $this->db->prepare($query); |
100 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
101 | - } catch(PDOException $e) { |
|
100 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
101 | + } catch (PDOException $e) { |
|
102 | 102 | echo "error : ".$e->getMessage(); |
103 | 103 | } |
104 | 104 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
105 | 105 | return $all; |
106 | 106 | } |
107 | - public function getAllManufacturers($stats_airline = '',$filter_name = '') { |
|
107 | + public function getAllManufacturers($stats_airline = '', $filter_name = '') { |
|
108 | 108 | if ($filter_name == '') $filter_name = $this->filter_name; |
109 | 109 | $query = "SELECT DISTINCT(aircraft_manufacturer) FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name AND aircraft_manufacturer <> '' ORDER BY aircraft_manufacturer ASC"; |
110 | 110 | try { |
111 | 111 | $sth = $this->db->prepare($query); |
112 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
113 | - } catch(PDOException $e) { |
|
112 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
113 | + } catch (PDOException $e) { |
|
114 | 114 | echo "error : ".$e->getMessage(); |
115 | 115 | } |
116 | 116 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
117 | 117 | return $all; |
118 | 118 | } |
119 | - public function getAllAirportNames($stats_airline = '',$filter_name = '') { |
|
119 | + public function getAllAirportNames($stats_airline = '', $filter_name = '') { |
|
120 | 120 | if ($filter_name == '') $filter_name = $this->filter_name; |
121 | 121 | $query = "SELECT airport_icao, airport_name,airport_city,airport_country FROM stats_airport WHERE stats_airline = :stats_airline AND filter_name = :filter_name AND stats_type = 'daily' GROUP BY airport_icao,airport_name,airport_city,airport_country ORDER BY airport_city ASC"; |
122 | 122 | try { |
123 | 123 | $sth = $this->db->prepare($query); |
124 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
125 | - } catch(PDOException $e) { |
|
124 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
125 | + } catch (PDOException $e) { |
|
126 | 126 | echo "error : ".$e->getMessage(); |
127 | 127 | } |
128 | 128 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
129 | 129 | return $all; |
130 | 130 | } |
131 | 131 | |
132 | - public function getAllOwnerNames($stats_airline = '',$filter_name = '') { |
|
132 | + public function getAllOwnerNames($stats_airline = '', $filter_name = '') { |
|
133 | 133 | if ($filter_name == '') $filter_name = $this->filter_name; |
134 | 134 | $query = "SELECT owner_name FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_name ASC"; |
135 | 135 | try { |
136 | 136 | $sth = $this->db->prepare($query); |
137 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
138 | - } catch(PDOException $e) { |
|
137 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
138 | + } catch (PDOException $e) { |
|
139 | 139 | echo "error : ".$e->getMessage(); |
140 | 140 | } |
141 | 141 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
142 | 142 | return $all; |
143 | 143 | } |
144 | 144 | |
145 | - public function getAllPilotNames($stats_airline = '',$filter_name = '') { |
|
145 | + public function getAllPilotNames($stats_airline = '', $filter_name = '') { |
|
146 | 146 | if ($filter_name == '') $filter_name = $this->filter_name; |
147 | 147 | $query = "SELECT pilot_id,pilot_name FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_name ASC"; |
148 | 148 | try { |
149 | 149 | $sth = $this->db->prepare($query); |
150 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
151 | - } catch(PDOException $e) { |
|
150 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
151 | + } catch (PDOException $e) { |
|
152 | 152 | echo "error : ".$e->getMessage(); |
153 | 153 | } |
154 | 154 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | } |
157 | 157 | |
158 | 158 | |
159 | - public function countAllAircraftTypes($limit = true, $stats_airline = '', $filter_name = '',$year = '', $month = '') { |
|
159 | + public function countAllAircraftTypes($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
160 | 160 | global $globalStatsFilters; |
161 | 161 | if ($filter_name == '') $filter_name = $this->filter_name; |
162 | 162 | if ($year == '' && $month == '') { |
@@ -164,24 +164,24 @@ discard block |
||
164 | 164 | else $query = "SELECT aircraft_icao, cnt AS aircraft_icao_count, aircraft_name, aircraft_manufacturer FROM stats_aircraft WHERE aircraft_name <> '' AND aircraft_icao <> '' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_icao_count DESC"; |
165 | 165 | try { |
166 | 166 | $sth = $this->db->prepare($query); |
167 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
168 | - } catch(PDOException $e) { |
|
167 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
168 | + } catch (PDOException $e) { |
|
169 | 169 | echo "error : ".$e->getMessage(); |
170 | 170 | } |
171 | 171 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
172 | 172 | } else $all = array(); |
173 | 173 | if (empty($all)) { |
174 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
174 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
175 | 175 | if ($filter_name != '') { |
176 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
176 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
177 | 177 | } |
178 | 178 | $Spotter = new Spotter($this->db); |
179 | 179 | //$all = $Spotter->countAllAircraftTypes($limit,0,'',$filters,$year,$month); |
180 | - $all = $Spotter->countAllAircraftTypes($limit,0,'',$filters); |
|
180 | + $all = $Spotter->countAllAircraftTypes($limit, 0, '', $filters); |
|
181 | 181 | } |
182 | 182 | return $all; |
183 | 183 | } |
184 | - public function countAllAirlineCountries($limit = true,$filter_name = '',$year = '',$month = '') { |
|
184 | + public function countAllAirlineCountries($limit = true, $filter_name = '', $year = '', $month = '') { |
|
185 | 185 | global $globalStatsFilters; |
186 | 186 | if ($filter_name == '') $filter_name = $this->filter_name; |
187 | 187 | if ($year == '' && $month == '') { |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | try { |
191 | 191 | $sth = $this->db->prepare($query); |
192 | 192 | $sth->execute(array(':filter_name' => $filter_name)); |
193 | - } catch(PDOException $e) { |
|
193 | + } catch (PDOException $e) { |
|
194 | 194 | echo "error : ".$e->getMessage(); |
195 | 195 | } |
196 | 196 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -198,16 +198,16 @@ discard block |
||
198 | 198 | if (empty($all)) { |
199 | 199 | $Spotter = new Spotter($this->db); |
200 | 200 | $filters = array(); |
201 | - $filters = array('year' => $year,'month' => $month); |
|
201 | + $filters = array('year' => $year, 'month' => $month); |
|
202 | 202 | if ($filter_name != '') { |
203 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
203 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
204 | 204 | } |
205 | 205 | //$all = $Spotter->countAllAirlineCountries($limit,$filters,$year,$month); |
206 | - $all = $Spotter->countAllAirlineCountries($limit,$filters); |
|
206 | + $all = $Spotter->countAllAirlineCountries($limit, $filters); |
|
207 | 207 | } |
208 | 208 | return $all; |
209 | 209 | } |
210 | - public function countAllAircraftManufacturers($limit = true,$stats_airline = '', $filter_name = '',$year = '', $month = '') { |
|
210 | + public function countAllAircraftManufacturers($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
211 | 211 | global $globalStatsFilters; |
212 | 212 | if ($filter_name == '') $filter_name = $this->filter_name; |
213 | 213 | if ($year == '' && $month == '') { |
@@ -215,16 +215,16 @@ discard block |
||
215 | 215 | else $query = "SELECT aircraft_manufacturer, SUM(stats_aircraft.cnt) as aircraft_manufacturer_count FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY aircraft_manufacturer ORDER BY aircraft_manufacturer_count DESC"; |
216 | 216 | try { |
217 | 217 | $sth = $this->db->prepare($query); |
218 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
219 | - } catch(PDOException $e) { |
|
218 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
219 | + } catch (PDOException $e) { |
|
220 | 220 | echo "error : ".$e->getMessage(); |
221 | 221 | } |
222 | 222 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
223 | 223 | } else $all = array(); |
224 | 224 | if (empty($all)) { |
225 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
225 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
226 | 226 | if ($filter_name != '') { |
227 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
227 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
228 | 228 | } |
229 | 229 | $Spotter = new Spotter($this->db); |
230 | 230 | //$all = $Spotter->countAllAircraftManufacturers($filters,$year,$month); |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | return $all; |
234 | 234 | } |
235 | 235 | |
236 | - public function countAllArrivalCountries($limit = true, $stats_airline = '', $filter_name = '',$year = '', $month = '') { |
|
236 | + public function countAllArrivalCountries($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
237 | 237 | global $globalStatsFilters; |
238 | 238 | if ($filter_name == '') $filter_name = $this->filter_name; |
239 | 239 | if ($year == '' && $month == '') { |
@@ -241,20 +241,20 @@ discard block |
||
241 | 241 | else $query = "SELECT airport_country AS airport_arrival_country, SUM(arrival) as airport_arrival_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_arrival_country ORDER BY airport_arrival_country_count DESC"; |
242 | 242 | try { |
243 | 243 | $sth = $this->db->prepare($query); |
244 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
245 | - } catch(PDOException $e) { |
|
244 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
245 | + } catch (PDOException $e) { |
|
246 | 246 | echo "error : ".$e->getMessage(); |
247 | 247 | } |
248 | 248 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
249 | 249 | } else $all = array(); |
250 | 250 | if (empty($all)) { |
251 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
251 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
252 | 252 | if ($filter_name != '') { |
253 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
253 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
254 | 254 | } |
255 | 255 | $Spotter = new Spotter($this->db); |
256 | 256 | //$all = $Spotter->countAllArrivalCountries($limit,$filters,$year,$month); |
257 | - $all = $Spotter->countAllArrivalCountries($limit,$filters); |
|
257 | + $all = $Spotter->countAllArrivalCountries($limit, $filters); |
|
258 | 258 | } |
259 | 259 | return $all; |
260 | 260 | } |
@@ -265,15 +265,15 @@ discard block |
||
265 | 265 | else $query = "SELECT airport_country AS airport_departure_country, SUM(departure) as airport_departure_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_departure_country ORDER BY airport_departure_country_count DESC"; |
266 | 266 | try { |
267 | 267 | $sth = $this->db->prepare($query); |
268 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
269 | - } catch(PDOException $e) { |
|
268 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
269 | + } catch (PDOException $e) { |
|
270 | 270 | echo "error : ".$e->getMessage(); |
271 | 271 | } |
272 | 272 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
273 | 273 | if (empty($all)) { |
274 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
274 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
275 | 275 | if ($filter_name != '') { |
276 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
276 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
277 | 277 | } |
278 | 278 | $Spotter = new Spotter($this->db); |
279 | 279 | //$all = $Spotter->countAllDepartureCountries($filters,$year,$month); |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | return $all; |
283 | 283 | } |
284 | 284 | |
285 | - public function countAllAirlines($limit = true,$filter_name = '',$year = '',$month = '') { |
|
285 | + public function countAllAirlines($limit = true, $filter_name = '', $year = '', $month = '') { |
|
286 | 286 | global $globalStatsFilters, $globalVATSIM, $globalIVAO; |
287 | 287 | if ($filter_name == '') $filter_name = $this->filter_name; |
288 | 288 | if ($year == '' && $month == '') { |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | if (isset($forsource)) { |
292 | 292 | if ($limit) $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource = :forsource ORDER BY airline_count DESC LIMIT 10 OFFSET 0"; |
293 | 293 | else $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource = :forsource ORDER BY airline_count DESC"; |
294 | - $query_values = array(':filter_name' => $filter_name,':forsource' => $forsource); |
|
294 | + $query_values = array(':filter_name' => $filter_name, ':forsource' => $forsource); |
|
295 | 295 | } else { |
296 | 296 | if ($limit) $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource IS NULL ORDER BY airline_count DESC LIMIT 10 OFFSET 0"; |
297 | 297 | else $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource IS NULL ORDER BY airline_count DESC"; |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | try { |
301 | 301 | $sth = $this->db->prepare($query); |
302 | 302 | $sth->execute($query_values); |
303 | - } catch(PDOException $e) { |
|
303 | + } catch (PDOException $e) { |
|
304 | 304 | echo "error : ".$e->getMessage(); |
305 | 305 | } |
306 | 306 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -308,16 +308,16 @@ discard block |
||
308 | 308 | if (empty($all)) { |
309 | 309 | $Spotter = new Spotter($this->db); |
310 | 310 | $filters = array(); |
311 | - $filters = array('year' => $year,'month' => $month); |
|
311 | + $filters = array('year' => $year, 'month' => $month); |
|
312 | 312 | if ($filter_name != '') { |
313 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
313 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
314 | 314 | } |
315 | 315 | //$all = $Spotter->countAllAirlines($limit,0,'',$filters,$year,$month); |
316 | - $all = $Spotter->countAllAirlines($limit,0,'',$filters); |
|
316 | + $all = $Spotter->countAllAirlines($limit, 0, '', $filters); |
|
317 | 317 | } |
318 | 318 | return $all; |
319 | 319 | } |
320 | - public function countAllAircraftRegistrations($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
|
320 | + public function countAllAircraftRegistrations($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
321 | 321 | global $globalStatsFilters; |
322 | 322 | if ($filter_name == '') $filter_name = $this->filter_name; |
323 | 323 | if ($year == '' && $month == '') { |
@@ -325,24 +325,24 @@ discard block |
||
325 | 325 | else $query = "SELECT s.aircraft_icao, s.cnt AS aircraft_registration_count, a.type AS aircraft_name FROM stats_registration s, aircraft a WHERE s.registration <> '' AND a.icao = s.aircraft_icao AND s.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_registration_count DESC"; |
326 | 326 | try { |
327 | 327 | $sth = $this->db->prepare($query); |
328 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
329 | - } catch(PDOException $e) { |
|
328 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
329 | + } catch (PDOException $e) { |
|
330 | 330 | echo "error : ".$e->getMessage(); |
331 | 331 | } |
332 | 332 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
333 | 333 | } else $all = array(); |
334 | 334 | if (empty($all)) { |
335 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
335 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
336 | 336 | if ($filter_name != '') { |
337 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
337 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
338 | 338 | } |
339 | 339 | $Spotter = new Spotter($this->db); |
340 | 340 | //$all = $Spotter->countAllAircraftRegistrations($limit,0,'',$filters,$year,$month); |
341 | - $all = $Spotter->countAllAircraftRegistrations($limit,0,'',$filters); |
|
341 | + $all = $Spotter->countAllAircraftRegistrations($limit, 0, '', $filters); |
|
342 | 342 | } |
343 | 343 | return $all; |
344 | 344 | } |
345 | - public function countAllCallsigns($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
|
345 | + public function countAllCallsigns($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
346 | 346 | global $globalStatsFilters; |
347 | 347 | if ($filter_name == '') $filter_name = $this->filter_name; |
348 | 348 | if ($year == '' && $month == '') { |
@@ -350,24 +350,24 @@ discard block |
||
350 | 350 | else $query = "SELECT s.callsign_icao, s.cnt AS callsign_icao_count, a.name AS airline_name, a.icao as airline_icao FROM stats_callsign s, airlines a WHERE s.callsign_icao <> '' AND a.icao = s.airline_icao AND s.airline_icao = :stats_airline AND filter_name = :filter_name ORDER BY callsign_icao_count DESC"; |
351 | 351 | try { |
352 | 352 | $sth = $this->db->prepare($query); |
353 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
354 | - } catch(PDOException $e) { |
|
353 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
354 | + } catch (PDOException $e) { |
|
355 | 355 | echo "error : ".$e->getMessage(); |
356 | 356 | } |
357 | 357 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
358 | 358 | } else $all = array(); |
359 | 359 | if (empty($all)) { |
360 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
360 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
361 | 361 | if ($filter_name != '') { |
362 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
362 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
363 | 363 | } |
364 | 364 | $Spotter = new Spotter($this->db); |
365 | 365 | //$all = $Spotter->countAllCallsigns($limit,0,'',$filters,$year,$month); |
366 | - $all = $Spotter->countAllCallsigns($limit,0,'',$filters); |
|
366 | + $all = $Spotter->countAllCallsigns($limit, 0, '', $filters); |
|
367 | 367 | } |
368 | 368 | return $all; |
369 | 369 | } |
370 | - public function countAllFlightOverCountries($limit = true, $stats_airline = '',$filter_name = '',$year = '',$month = '') { |
|
370 | + public function countAllFlightOverCountries($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
371 | 371 | $Connection = new Connection(); |
372 | 372 | if ($filter_name == '') $filter_name = $this->filter_name; |
373 | 373 | if ($Connection->tableExists('countries')) { |
@@ -376,8 +376,8 @@ discard block |
||
376 | 376 | else $query = "SELECT countries.iso3 as flight_country_iso3, countries.iso2 as flight_country_iso2, countries.name as flight_country, cnt as flight_count, lat as flight_country_latitude, lon as flight_country_longitude FROM stats_country, countries WHERE stats_country.iso2 = countries.iso2 AND stats_country.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY flight_count DESC"; |
377 | 377 | try { |
378 | 378 | $sth = $this->db->prepare($query); |
379 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
380 | - } catch(PDOException $e) { |
|
379 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
380 | + } catch (PDOException $e) { |
|
381 | 381 | echo "error : ".$e->getMessage(); |
382 | 382 | } |
383 | 383 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | return array(); |
394 | 394 | } |
395 | 395 | } |
396 | - public function countAllPilots($limit = true,$stats_airline = '',$filter_name = '', $year = '',$month = '') { |
|
396 | + public function countAllPilots($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
397 | 397 | global $globalStatsFilters; |
398 | 398 | if ($filter_name == '') $filter_name = $this->filter_name; |
399 | 399 | if ($year == '' && $month == '') { |
@@ -401,25 +401,25 @@ discard block |
||
401 | 401 | else $query = "SELECT pilot_id, cnt AS pilot_count, pilot_name, format_source FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_count DESC"; |
402 | 402 | try { |
403 | 403 | $sth = $this->db->prepare($query); |
404 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
405 | - } catch(PDOException $e) { |
|
404 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
405 | + } catch (PDOException $e) { |
|
406 | 406 | echo "error : ".$e->getMessage(); |
407 | 407 | } |
408 | 408 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
409 | 409 | } else $all = array(); |
410 | 410 | if (empty($all)) { |
411 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
411 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
412 | 412 | if ($filter_name != '') { |
413 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
413 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
414 | 414 | } |
415 | 415 | $Spotter = new Spotter($this->db); |
416 | 416 | //$all = $Spotter->countAllPilots($limit,0,'',$filters,$year,$month); |
417 | - $all = $Spotter->countAllPilots($limit,0,'',$filters); |
|
417 | + $all = $Spotter->countAllPilots($limit, 0, '', $filters); |
|
418 | 418 | } |
419 | 419 | return $all; |
420 | 420 | } |
421 | 421 | |
422 | - public function countAllOwners($limit = true,$stats_airline = '', $filter_name = '',$year = '',$month = '') { |
|
422 | + public function countAllOwners($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
423 | 423 | global $globalStatsFilters; |
424 | 424 | if ($filter_name == '') $filter_name = $this->filter_name; |
425 | 425 | if ($year == '' && $month == '') { |
@@ -427,24 +427,24 @@ discard block |
||
427 | 427 | else $query = "SELECT owner_name, cnt AS owner_count FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_count DESC"; |
428 | 428 | try { |
429 | 429 | $sth = $this->db->prepare($query); |
430 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
431 | - } catch(PDOException $e) { |
|
430 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
431 | + } catch (PDOException $e) { |
|
432 | 432 | echo "error : ".$e->getMessage(); |
433 | 433 | } |
434 | 434 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
435 | 435 | } else $all = array(); |
436 | 436 | if (empty($all)) { |
437 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
437 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
438 | 438 | if ($filter_name != '') { |
439 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
439 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
440 | 440 | } |
441 | 441 | $Spotter = new Spotter($this->db); |
442 | 442 | //$all = $Spotter->countAllOwners($limit,0,'',$filters,$year,$month); |
443 | - $all = $Spotter->countAllOwners($limit,0,'',$filters); |
|
443 | + $all = $Spotter->countAllOwners($limit, 0, '', $filters); |
|
444 | 444 | } |
445 | 445 | return $all; |
446 | 446 | } |
447 | - public function countAllDepartureAirports($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
|
447 | + public function countAllDepartureAirports($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
448 | 448 | global $globalStatsFilters; |
449 | 449 | if ($filter_name == '') $filter_name = $this->filter_name; |
450 | 450 | if ($year == '' && $month == '') { |
@@ -452,22 +452,22 @@ discard block |
||
452 | 452 | else $query = "SELECT DISTINCT airport_icao AS airport_departure_icao,airport_city AS airport_departure_city,airport_country AS airport_departure_country,departure AS airport_departure_icao_count FROM stats_airport WHERE departure > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_departure_icao_count DESC"; |
453 | 453 | try { |
454 | 454 | $sth = $this->db->prepare($query); |
455 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
456 | - } catch(PDOException $e) { |
|
455 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
456 | + } catch (PDOException $e) { |
|
457 | 457 | echo "error : ".$e->getMessage(); |
458 | 458 | } |
459 | 459 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
460 | 460 | } else $all = array(); |
461 | 461 | if (empty($all)) { |
462 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
462 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
463 | 463 | if ($filter_name != '') { |
464 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
464 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
465 | 465 | } |
466 | 466 | $Spotter = new Spotter($this->db); |
467 | 467 | // $pall = $Spotter->countAllDepartureAirports($limit,0,'',$filters,$year,$month); |
468 | 468 | // $dall = $Spotter->countAllDetectedDepartureAirports($limit,0,'',$filters,$year,$month); |
469 | - $pall = $Spotter->countAllDepartureAirports($limit,0,'',$filters); |
|
470 | - $dall = $Spotter->countAllDetectedDepartureAirports($limit,0,'',$filters); |
|
469 | + $pall = $Spotter->countAllDepartureAirports($limit, 0, '', $filters); |
|
470 | + $dall = $Spotter->countAllDetectedDepartureAirports($limit, 0, '', $filters); |
|
471 | 471 | $all = array(); |
472 | 472 | foreach ($pall as $value) { |
473 | 473 | $icao = $value['airport_departure_icao']; |
@@ -484,11 +484,11 @@ discard block |
||
484 | 484 | foreach ($all as $key => $row) { |
485 | 485 | $count[$key] = $row['airport_departure_icao_count']; |
486 | 486 | } |
487 | - array_multisort($count,SORT_DESC,$all); |
|
487 | + array_multisort($count, SORT_DESC, $all); |
|
488 | 488 | } |
489 | 489 | return $all; |
490 | 490 | } |
491 | - public function countAllArrivalAirports($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
|
491 | + public function countAllArrivalAirports($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
492 | 492 | global $globalStatsFilters; |
493 | 493 | if ($filter_name == '') $filter_name = $this->filter_name; |
494 | 494 | if ($year == '' && $month == '') { |
@@ -496,22 +496,22 @@ discard block |
||
496 | 496 | else $query = "SELECT DISTINCT airport_icao AS airport_arrival_icao,airport_city AS airport_arrival_city,airport_country AS airport_arrival_country,arrival AS airport_arrival_icao_count FROM stats_airport WHERE arrival > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_arrival_icao_count DESC"; |
497 | 497 | try { |
498 | 498 | $sth = $this->db->prepare($query); |
499 | - $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
|
500 | - } catch(PDOException $e) { |
|
499 | + $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
|
500 | + } catch (PDOException $e) { |
|
501 | 501 | echo "error : ".$e->getMessage(); |
502 | 502 | } |
503 | 503 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
504 | 504 | } else $all = array(); |
505 | 505 | if (empty($all)) { |
506 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
506 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
507 | 507 | if ($filter_name != '') { |
508 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
508 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
509 | 509 | } |
510 | 510 | $Spotter = new Spotter($this->db); |
511 | 511 | // $pall = $Spotter->countAllArrivalAirports($limit,0,'',false,$filters,$year,$month); |
512 | 512 | // $dall = $Spotter->countAllDetectedArrivalAirports($limit,0,'',false,$filters,$year,$month); |
513 | - $pall = $Spotter->countAllArrivalAirports($limit,0,'',false,$filters); |
|
514 | - $dall = $Spotter->countAllDetectedArrivalAirports($limit,0,'',false,$filters); |
|
513 | + $pall = $Spotter->countAllArrivalAirports($limit, 0, '', false, $filters); |
|
514 | + $dall = $Spotter->countAllDetectedArrivalAirports($limit, 0, '', false, $filters); |
|
515 | 515 | $all = array(); |
516 | 516 | foreach ($pall as $value) { |
517 | 517 | $icao = $value['airport_arrival_icao']; |
@@ -528,12 +528,12 @@ discard block |
||
528 | 528 | foreach ($all as $key => $row) { |
529 | 529 | $count[$key] = $row['airport_arrival_icao_count']; |
530 | 530 | } |
531 | - array_multisort($count,SORT_DESC,$all); |
|
531 | + array_multisort($count, SORT_DESC, $all); |
|
532 | 532 | } |
533 | 533 | |
534 | 534 | return $all; |
535 | 535 | } |
536 | - public function countAllMonthsLastYear($limit = true,$stats_airline = '',$filter_name = '') { |
|
536 | + public function countAllMonthsLastYear($limit = true, $stats_airline = '', $filter_name = '') { |
|
537 | 537 | global $globalDBdriver, $globalStatsFilters; |
538 | 538 | if ($filter_name == '') $filter_name = $this->filter_name; |
539 | 539 | if ($globalDBdriver == 'mysql') { |
@@ -543,18 +543,18 @@ discard block |
||
543 | 543 | if ($limit) $query = "SELECT EXTRACT(MONTH FROM stats_date) as month_name, EXTRACT(YEAR FROM stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_date >= CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '12 MONTHS' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
544 | 544 | else $query = "SELECT EXTRACT(MONTH FROM stats_date) as month_name, EXTRACT(YEAR FROM stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
545 | 545 | } |
546 | - $query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
546 | + $query_data = array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
547 | 547 | try { |
548 | 548 | $sth = $this->db->prepare($query); |
549 | 549 | $sth->execute($query_data); |
550 | - } catch(PDOException $e) { |
|
550 | + } catch (PDOException $e) { |
|
551 | 551 | echo "error : ".$e->getMessage(); |
552 | 552 | } |
553 | 553 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
554 | 554 | if (empty($all)) { |
555 | 555 | $filters = array('airlines' => array($stats_airline)); |
556 | 556 | if ($filter_name != '') { |
557 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
557 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
558 | 558 | } |
559 | 559 | $Spotter = new Spotter($this->db); |
560 | 560 | $all = $Spotter->countAllMonthsLastYear($filters); |
@@ -563,29 +563,29 @@ discard block |
||
563 | 563 | return $all; |
564 | 564 | } |
565 | 565 | |
566 | - public function countAllDatesLastMonth($stats_airline = '',$filter_name = '') { |
|
566 | + public function countAllDatesLastMonth($stats_airline = '', $filter_name = '') { |
|
567 | 567 | global $globalStatsFilters; |
568 | 568 | if ($filter_name == '') $filter_name = $this->filter_name; |
569 | 569 | $query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'month' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
570 | - $query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
570 | + $query_data = array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
571 | 571 | try { |
572 | 572 | $sth = $this->db->prepare($query); |
573 | 573 | $sth->execute($query_data); |
574 | - } catch(PDOException $e) { |
|
574 | + } catch (PDOException $e) { |
|
575 | 575 | echo "error : ".$e->getMessage(); |
576 | 576 | } |
577 | 577 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
578 | 578 | if (empty($all)) { |
579 | 579 | $filters = array('airlines' => array($stats_airline)); |
580 | 580 | if ($filter_name != '') { |
581 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
581 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
582 | 582 | } |
583 | 583 | $Spotter = new Spotter($this->db); |
584 | 584 | $all = $Spotter->countAllDatesLastMonth($filters); |
585 | 585 | } |
586 | 586 | return $all; |
587 | 587 | } |
588 | - public function countAllDatesLast7Days($stats_airline = '',$filter_name = '') { |
|
588 | + public function countAllDatesLast7Days($stats_airline = '', $filter_name = '') { |
|
589 | 589 | global $globalDBdriver, $globalStatsFilters; |
590 | 590 | if ($filter_name == '') $filter_name = $this->filter_name; |
591 | 591 | if ($globalDBdriver == 'mysql') { |
@@ -593,40 +593,40 @@ discard block |
||
593 | 593 | } else { |
594 | 594 | $query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'month' AND flight_date::timestamp >= CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '7 DAYS' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
595 | 595 | } |
596 | - $query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
596 | + $query_data = array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
597 | 597 | try { |
598 | 598 | $sth = $this->db->prepare($query); |
599 | 599 | $sth->execute($query_data); |
600 | - } catch(PDOException $e) { |
|
600 | + } catch (PDOException $e) { |
|
601 | 601 | echo "error : ".$e->getMessage(); |
602 | 602 | } |
603 | 603 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
604 | 604 | if (empty($all)) { |
605 | 605 | $filters = array('airlines' => array($stats_airline)); |
606 | 606 | if ($filter_name != '') { |
607 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
607 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
608 | 608 | } |
609 | 609 | $Spotter = new Spotter($this->db); |
610 | 610 | $all = $Spotter->countAllDatesLast7Days($filters); |
611 | 611 | } |
612 | 612 | return $all; |
613 | 613 | } |
614 | - public function countAllDates($stats_airline = '',$filter_name = '') { |
|
614 | + public function countAllDates($stats_airline = '', $filter_name = '') { |
|
615 | 615 | global $globalStatsFilters; |
616 | 616 | if ($filter_name == '') $filter_name = $this->filter_name; |
617 | 617 | $query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'date' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
618 | - $query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
618 | + $query_data = array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
619 | 619 | try { |
620 | 620 | $sth = $this->db->prepare($query); |
621 | 621 | $sth->execute($query_data); |
622 | - } catch(PDOException $e) { |
|
622 | + } catch (PDOException $e) { |
|
623 | 623 | echo "error : ".$e->getMessage(); |
624 | 624 | } |
625 | 625 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
626 | 626 | if (empty($all)) { |
627 | 627 | $filters = array('airlines' => array($stats_airline)); |
628 | 628 | if ($filter_name != '') { |
629 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
629 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
630 | 630 | } |
631 | 631 | $Spotter = new Spotter($this->db); |
632 | 632 | $all = $Spotter->countAllDates($filters); |
@@ -641,21 +641,21 @@ discard block |
||
641 | 641 | try { |
642 | 642 | $sth = $this->db->prepare($query); |
643 | 643 | $sth->execute($query_data); |
644 | - } catch(PDOException $e) { |
|
644 | + } catch (PDOException $e) { |
|
645 | 645 | echo "error : ".$e->getMessage(); |
646 | 646 | } |
647 | 647 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
648 | 648 | if (empty($all)) { |
649 | 649 | $filters = array(); |
650 | 650 | if ($filter_name != '') { |
651 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
651 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
652 | 652 | } |
653 | 653 | $Spotter = new Spotter($this->db); |
654 | 654 | $all = $Spotter->countAllDatesByAirlines($filters); |
655 | 655 | } |
656 | 656 | return $all; |
657 | 657 | } |
658 | - public function countAllMonths($stats_airline = '',$filter_name = '') { |
|
658 | + public function countAllMonths($stats_airline = '', $filter_name = '') { |
|
659 | 659 | global $globalStatsFilters, $globalDBdriver; |
660 | 660 | if ($filter_name == '') $filter_name = $this->filter_name; |
661 | 661 | if ($globalDBdriver == 'mysql') { |
@@ -666,7 +666,7 @@ discard block |
||
666 | 666 | try { |
667 | 667 | $sth = $this->db->prepare($query); |
668 | 668 | $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
669 | - } catch(PDOException $e) { |
|
669 | + } catch (PDOException $e) { |
|
670 | 670 | echo "error : ".$e->getMessage(); |
671 | 671 | } |
672 | 672 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -674,7 +674,7 @@ discard block |
||
674 | 674 | if (empty($all)) { |
675 | 675 | $filters = array('airlines' => array($stats_airline)); |
676 | 676 | if ($filter_name != '') { |
677 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
677 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
678 | 678 | } |
679 | 679 | $Spotter = new Spotter($this->db); |
680 | 680 | $all = $Spotter->countAllMonths($filters); |
@@ -692,7 +692,7 @@ discard block |
||
692 | 692 | try { |
693 | 693 | $sth = $this->db->prepare($query); |
694 | 694 | $sth->execute(); |
695 | - } catch(PDOException $e) { |
|
695 | + } catch (PDOException $e) { |
|
696 | 696 | echo "error : ".$e->getMessage(); |
697 | 697 | } |
698 | 698 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -713,7 +713,7 @@ discard block |
||
713 | 713 | try { |
714 | 714 | $sth = $this->db->prepare($query); |
715 | 715 | $sth->execute(); |
716 | - } catch(PDOException $e) { |
|
716 | + } catch (PDOException $e) { |
|
717 | 717 | echo "error : ".$e->getMessage(); |
718 | 718 | } |
719 | 719 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -731,21 +731,21 @@ discard block |
||
731 | 731 | try { |
732 | 732 | $sth = $this->db->prepare($query); |
733 | 733 | $sth->execute(array(':filter_name' => $filter_name)); |
734 | - } catch(PDOException $e) { |
|
734 | + } catch (PDOException $e) { |
|
735 | 735 | echo "error : ".$e->getMessage(); |
736 | 736 | } |
737 | 737 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
738 | 738 | if (empty($all)) { |
739 | 739 | $filters = array(); |
740 | 740 | if ($filter_name != '') { |
741 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
741 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
742 | 742 | } |
743 | 743 | $Spotter = new Spotter($this->db); |
744 | 744 | $all = $Spotter->countAllMilitaryMonths($filters); |
745 | 745 | } |
746 | 746 | return $all; |
747 | 747 | } |
748 | - public function countAllHours($orderby = 'hour',$limit = true,$stats_airline = '',$filter_name = '') { |
|
748 | + public function countAllHours($orderby = 'hour', $limit = true, $stats_airline = '', $filter_name = '') { |
|
749 | 749 | global $globalTimezone, $globalDBdriver, $globalStatsFilters; |
750 | 750 | if ($filter_name == '') $filter_name = $this->filter_name; |
751 | 751 | if ($limit) $query = "SELECT flight_date as hour_name, cnt as hour_count FROM stats_flight WHERE stats_type = 'hour' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
@@ -762,30 +762,30 @@ discard block |
||
762 | 762 | try { |
763 | 763 | $sth = $this->db->prepare($query); |
764 | 764 | $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
765 | - } catch(PDOException $e) { |
|
765 | + } catch (PDOException $e) { |
|
766 | 766 | echo "error : ".$e->getMessage(); |
767 | 767 | } |
768 | 768 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
769 | 769 | if (empty($all)) { |
770 | 770 | $filters = array('airlines' => array($stats_airline)); |
771 | 771 | if ($filter_name != '') { |
772 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
772 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
773 | 773 | } |
774 | 774 | $Spotter = new Spotter($this->db); |
775 | - $all = $Spotter->countAllHours($orderby,$filters); |
|
775 | + $all = $Spotter->countAllHours($orderby, $filters); |
|
776 | 776 | } |
777 | 777 | return $all; |
778 | 778 | } |
779 | 779 | |
780 | - public function countOverallFlights($stats_airline = '', $filter_name = '',$year = '',$month = '') { |
|
780 | + public function countOverallFlights($stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
781 | 781 | global $globalStatsFilters; |
782 | 782 | if ($filter_name == '') $filter_name = $this->filter_name; |
783 | 783 | if ($year == '') $year = date('Y'); |
784 | - $all = $this->getSumStats('flights_bymonth',$year,$stats_airline,$filter_name,$month); |
|
784 | + $all = $this->getSumStats('flights_bymonth', $year, $stats_airline, $filter_name, $month); |
|
785 | 785 | if (empty($all)) { |
786 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
786 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
787 | 787 | if ($filter_name != '') { |
788 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
788 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
789 | 789 | } |
790 | 790 | $Spotter = new Spotter($this->db); |
791 | 791 | //$all = $Spotter->countOverallFlights($filters,$year,$month); |
@@ -793,16 +793,16 @@ discard block |
||
793 | 793 | } |
794 | 794 | return $all; |
795 | 795 | } |
796 | - public function countOverallMilitaryFlights($filter_name = '',$year = '', $month = '') { |
|
796 | + public function countOverallMilitaryFlights($filter_name = '', $year = '', $month = '') { |
|
797 | 797 | global $globalStatsFilters; |
798 | 798 | if ($filter_name == '') $filter_name = $this->filter_name; |
799 | 799 | if ($year == '') $year = date('Y'); |
800 | - $all = $this->getSumStats('military_flights_bymonth',$year,'',$filter_name,$month); |
|
800 | + $all = $this->getSumStats('military_flights_bymonth', $year, '', $filter_name, $month); |
|
801 | 801 | if (empty($all)) { |
802 | 802 | $filters = array(); |
803 | - $filters = array('year' => $year,'month' => $month); |
|
803 | + $filters = array('year' => $year, 'month' => $month); |
|
804 | 804 | if ($filter_name != '') { |
805 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
805 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
806 | 806 | } |
807 | 807 | $Spotter = new Spotter($this->db); |
808 | 808 | //$all = $Spotter->countOverallMilitaryFlights($filters,$year,$month); |
@@ -810,15 +810,15 @@ discard block |
||
810 | 810 | } |
811 | 811 | return $all; |
812 | 812 | } |
813 | - public function countOverallArrival($stats_airline = '',$filter_name = '', $year = '', $month = '') { |
|
813 | + public function countOverallArrival($stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
814 | 814 | global $globalStatsFilters; |
815 | 815 | if ($filter_name == '') $filter_name = $this->filter_name; |
816 | 816 | if ($year == '') $year = date('Y'); |
817 | - $all = $this->getSumStats('realarrivals_bymonth',$year,$stats_airline,$filter_name,$month); |
|
817 | + $all = $this->getSumStats('realarrivals_bymonth', $year, $stats_airline, $filter_name, $month); |
|
818 | 818 | if (empty($all)) { |
819 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
819 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
820 | 820 | if ($filter_name != '') { |
821 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
821 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
822 | 822 | } |
823 | 823 | $Spotter = new Spotter($this->db); |
824 | 824 | //$all = $Spotter->countOverallArrival($filters,$year,$month); |
@@ -826,24 +826,24 @@ discard block |
||
826 | 826 | } |
827 | 827 | return $all; |
828 | 828 | } |
829 | - public function countOverallAircrafts($stats_airline = '',$filter_name = '',$year = '', $month = '') { |
|
829 | + public function countOverallAircrafts($stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
830 | 830 | global $globalStatsFilters; |
831 | 831 | if ($filter_name == '') $filter_name = $this->filter_name; |
832 | 832 | if ($year == '' && $month == '') { |
833 | 833 | $query = "SELECT COUNT(*) AS nb FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name"; |
834 | 834 | try { |
835 | 835 | $sth = $this->db->prepare($query); |
836 | - $sth->execute(array(':filter_name' => $filter_name,':stats_airline' => $stats_airline)); |
|
837 | - } catch(PDOException $e) { |
|
836 | + $sth->execute(array(':filter_name' => $filter_name, ':stats_airline' => $stats_airline)); |
|
837 | + } catch (PDOException $e) { |
|
838 | 838 | echo "error : ".$e->getMessage(); |
839 | 839 | } |
840 | 840 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
841 | 841 | $all = $result[0]['nb']; |
842 | - } else $all = $this->getSumStats('aircrafts_bymonth',$year,$stats_airline,$filter_name,$month); |
|
842 | + } else $all = $this->getSumStats('aircrafts_bymonth', $year, $stats_airline, $filter_name, $month); |
|
843 | 843 | if (empty($all)) { |
844 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
844 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
845 | 845 | if ($filter_name != '') { |
846 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
846 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
847 | 847 | } |
848 | 848 | $Spotter = new Spotter($this->db); |
849 | 849 | //$all = $Spotter->countOverallAircrafts($filters,$year,$month); |
@@ -851,7 +851,7 @@ discard block |
||
851 | 851 | } |
852 | 852 | return $all; |
853 | 853 | } |
854 | - public function countOverallAirlines($filter_name = '',$year = '',$month = '') { |
|
854 | + public function countOverallAirlines($filter_name = '', $year = '', $month = '') { |
|
855 | 855 | global $globalStatsFilters; |
856 | 856 | if ($filter_name == '') $filter_name = $this->filter_name; |
857 | 857 | if ($year == '' && $month == '') { |
@@ -859,17 +859,17 @@ discard block |
||
859 | 859 | try { |
860 | 860 | $sth = $this->db->prepare($query); |
861 | 861 | $sth->execute(array(':filter_name' => $filter_name)); |
862 | - } catch(PDOException $e) { |
|
862 | + } catch (PDOException $e) { |
|
863 | 863 | echo "error : ".$e->getMessage(); |
864 | 864 | } |
865 | 865 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
866 | 866 | $all = $result[0]['nb_airline']; |
867 | - } else $all = $this->getSumStats('airlines_bymonth',$year,'',$filter_name,$month); |
|
867 | + } else $all = $this->getSumStats('airlines_bymonth', $year, '', $filter_name, $month); |
|
868 | 868 | if (empty($all)) { |
869 | 869 | $filters = array(); |
870 | - $filters = array('year' => $year,'month' => $month); |
|
870 | + $filters = array('year' => $year, 'month' => $month); |
|
871 | 871 | if ($filter_name != '') { |
872 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
872 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
873 | 873 | } |
874 | 874 | $Spotter = new Spotter($this->db); |
875 | 875 | //$all = $Spotter->countOverallAirlines($filters,$year,$month); |
@@ -877,7 +877,7 @@ discard block |
||
877 | 877 | } |
878 | 878 | return $all; |
879 | 879 | } |
880 | - public function countOverallOwners($stats_airline = '',$filter_name = '',$year = '', $month = '') { |
|
880 | + public function countOverallOwners($stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
881 | 881 | global $globalStatsFilters; |
882 | 882 | if ($filter_name == '') $filter_name = $this->filter_name; |
883 | 883 | if ($year == '' && $month == '') { |
@@ -886,18 +886,18 @@ discard block |
||
886 | 886 | try { |
887 | 887 | $sth = $this->db->prepare($query); |
888 | 888 | $sth->execute($query_values); |
889 | - } catch(PDOException $e) { |
|
889 | + } catch (PDOException $e) { |
|
890 | 890 | echo "error : ".$e->getMessage(); |
891 | 891 | } |
892 | 892 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
893 | 893 | $all = $result[0]['nb']; |
894 | 894 | } else { |
895 | - $all = $this->getSumStats('owners_bymonth',$year,$stats_airline,$filter_name,$month); |
|
895 | + $all = $this->getSumStats('owners_bymonth', $year, $stats_airline, $filter_name, $month); |
|
896 | 896 | } |
897 | 897 | if (empty($all)) { |
898 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
898 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
899 | 899 | if ($filter_name != '') { |
900 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
900 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
901 | 901 | } |
902 | 902 | $Spotter = new Spotter($this->db); |
903 | 903 | //$all = $Spotter->countOverallOwners($filters,$year,$month); |
@@ -905,7 +905,7 @@ discard block |
||
905 | 905 | } |
906 | 906 | return $all; |
907 | 907 | } |
908 | - public function countOverallPilots($stats_airline = '',$filter_name = '',$year = '',$month = '') { |
|
908 | + public function countOverallPilots($stats_airline = '', $filter_name = '', $year = '', $month = '') { |
|
909 | 909 | global $globalStatsFilters; |
910 | 910 | if ($filter_name == '') $filter_name = $this->filter_name; |
911 | 911 | //if ($year == '') $year = date('Y'); |
@@ -915,18 +915,18 @@ discard block |
||
915 | 915 | try { |
916 | 916 | $sth = $this->db->prepare($query); |
917 | 917 | $sth->execute($query_values); |
918 | - } catch(PDOException $e) { |
|
918 | + } catch (PDOException $e) { |
|
919 | 919 | echo "error : ".$e->getMessage(); |
920 | 920 | } |
921 | 921 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
922 | 922 | $all = $result[0]['nb']; |
923 | 923 | } else { |
924 | - $all = $this->getSumStats('pilots_bymonth',$year,$stats_airline,$filter_name,$month); |
|
924 | + $all = $this->getSumStats('pilots_bymonth', $year, $stats_airline, $filter_name, $month); |
|
925 | 925 | } |
926 | 926 | if (empty($all)) { |
927 | - $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
|
927 | + $filters = array('airlines' => array($stats_airline), 'year' => $year, 'month' => $month); |
|
928 | 928 | if ($filter_name != '') { |
929 | - $filters = array_merge($filters,$globalStatsFilters[$filter_name]); |
|
929 | + $filters = array_merge($filters, $globalStatsFilters[$filter_name]); |
|
930 | 930 | } |
931 | 931 | $Spotter = new Spotter($this->db); |
932 | 932 | //$all = $Spotter->countOverallPilots($filters,$year,$month); |
@@ -935,69 +935,69 @@ discard block |
||
935 | 935 | return $all; |
936 | 936 | } |
937 | 937 | |
938 | - public function getLast7DaysAirports($airport_icao = '', $stats_airline = '',$filter_name = '') { |
|
938 | + public function getLast7DaysAirports($airport_icao = '', $stats_airline = '', $filter_name = '') { |
|
939 | 939 | if ($filter_name == '') $filter_name = $this->filter_name; |
940 | 940 | $query = "SELECT * FROM stats_airport WHERE stats_type = 'daily' AND airport_icao = :airport_icao AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY date"; |
941 | - $query_values = array(':airport_icao' => $airport_icao,':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
941 | + $query_values = array(':airport_icao' => $airport_icao, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
942 | 942 | try { |
943 | 943 | $sth = $this->db->prepare($query); |
944 | 944 | $sth->execute($query_values); |
945 | - } catch(PDOException $e) { |
|
945 | + } catch (PDOException $e) { |
|
946 | 946 | echo "error : ".$e->getMessage(); |
947 | 947 | } |
948 | 948 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
949 | 949 | return $all; |
950 | 950 | } |
951 | - public function getStats($type,$stats_airline = '', $filter_name = '') { |
|
951 | + public function getStats($type, $stats_airline = '', $filter_name = '') { |
|
952 | 952 | if ($filter_name == '') $filter_name = $this->filter_name; |
953 | 953 | $query = "SELECT * FROM stats WHERE stats_type = :type AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY stats_date"; |
954 | - $query_values = array(':type' => $type,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
954 | + $query_values = array(':type' => $type, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
955 | 955 | try { |
956 | 956 | $sth = $this->db->prepare($query); |
957 | 957 | $sth->execute($query_values); |
958 | - } catch(PDOException $e) { |
|
958 | + } catch (PDOException $e) { |
|
959 | 959 | echo "error : ".$e->getMessage(); |
960 | 960 | } |
961 | 961 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
962 | 962 | return $all; |
963 | 963 | } |
964 | - public function deleteStatsByType($type,$stats_airline = '', $filter_name = '') { |
|
964 | + public function deleteStatsByType($type, $stats_airline = '', $filter_name = '') { |
|
965 | 965 | if ($filter_name == '') $filter_name = $this->filter_name; |
966 | 966 | $query = "DELETE FROM stats WHERE stats_type = :type AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
967 | - $query_values = array(':type' => $type,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
967 | + $query_values = array(':type' => $type, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
968 | 968 | try { |
969 | 969 | $sth = $this->db->prepare($query); |
970 | 970 | $sth->execute($query_values); |
971 | - } catch(PDOException $e) { |
|
971 | + } catch (PDOException $e) { |
|
972 | 972 | echo "error : ".$e->getMessage(); |
973 | 973 | } |
974 | 974 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
975 | 975 | return $all; |
976 | 976 | } |
977 | - public function getSumStats($type,$year,$stats_airline = '',$filter_name = '',$month = '') { |
|
977 | + public function getSumStats($type, $year, $stats_airline = '', $filter_name = '', $month = '') { |
|
978 | 978 | if ($filter_name == '') $filter_name = $this->filter_name; |
979 | 979 | global $globalArchiveMonths, $globalDBdriver; |
980 | 980 | if ($globalDBdriver == 'mysql') { |
981 | 981 | if ($month == '') { |
982 | 982 | $query = "SELECT SUM(cnt) as total FROM stats WHERE stats_type = :type AND YEAR(stats_date) = :year AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
983 | - $query_values = array(':type' => $type, ':year' => $year, ':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
983 | + $query_values = array(':type' => $type, ':year' => $year, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
984 | 984 | } else { |
985 | 985 | $query = "SELECT SUM(cnt) as total FROM stats WHERE stats_type = :type AND YEAR(stats_date) = :year AND MONTH(stats_date) = :month AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
986 | - $query_values = array(':type' => $type, ':year' => $year, ':stats_airline' => $stats_airline,':filter_name' => $filter_name,':month' => $month); |
|
986 | + $query_values = array(':type' => $type, ':year' => $year, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name, ':month' => $month); |
|
987 | 987 | } |
988 | 988 | } else { |
989 | 989 | if ($month == '') { |
990 | 990 | $query = "SELECT SUM(cnt) as total FROM stats WHERE stats_type = :type AND EXTRACT(YEAR FROM stats_date) = :year AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
991 | - $query_values = array(':type' => $type, ':year' => $year, ':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
991 | + $query_values = array(':type' => $type, ':year' => $year, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
992 | 992 | } else { |
993 | 993 | $query = "SELECT SUM(cnt) as total FROM stats WHERE stats_type = :type AND EXTRACT(YEAR FROM stats_date) = :year AND EXTRACT(MONTH FROM stats_date) = :month AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
994 | - $query_values = array(':type' => $type, ':year' => $year, ':stats_airline' => $stats_airline,':filter_name' => $filter_name,':month' => $month); |
|
994 | + $query_values = array(':type' => $type, ':year' => $year, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name, ':month' => $month); |
|
995 | 995 | } |
996 | 996 | } |
997 | 997 | try { |
998 | 998 | $sth = $this->db->prepare($query); |
999 | 999 | $sth->execute($query_values); |
1000 | - } catch(PDOException $e) { |
|
1000 | + } catch (PDOException $e) { |
|
1001 | 1001 | echo "error : ".$e->getMessage(); |
1002 | 1002 | } |
1003 | 1003 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -1015,7 +1015,7 @@ discard block |
||
1015 | 1015 | try { |
1016 | 1016 | $sth = $this->db->prepare($query); |
1017 | 1017 | $sth->execute($query_values); |
1018 | - } catch(PDOException $e) { |
|
1018 | + } catch (PDOException $e) { |
|
1019 | 1019 | echo "error : ".$e->getMessage(); |
1020 | 1020 | } |
1021 | 1021 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -1032,7 +1032,7 @@ discard block |
||
1032 | 1032 | try { |
1033 | 1033 | $sth = $this->db->prepare($query); |
1034 | 1034 | $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
1035 | - } catch(PDOException $e) { |
|
1035 | + } catch (PDOException $e) { |
|
1036 | 1036 | echo "error : ".$e->getMessage(); |
1037 | 1037 | } |
1038 | 1038 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -1049,7 +1049,7 @@ discard block |
||
1049 | 1049 | try { |
1050 | 1050 | $sth = $this->db->prepare($query); |
1051 | 1051 | $sth->execute(array(':filter_name' => $filter_name)); |
1052 | - } catch(PDOException $e) { |
|
1052 | + } catch (PDOException $e) { |
|
1053 | 1053 | echo "error : ".$e->getMessage(); |
1054 | 1054 | } |
1055 | 1055 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -1066,20 +1066,20 @@ discard block |
||
1066 | 1066 | try { |
1067 | 1067 | $sth = $this->db->prepare($query); |
1068 | 1068 | $sth->execute(array(':filter_name' => $filter_name)); |
1069 | - } catch(PDOException $e) { |
|
1069 | + } catch (PDOException $e) { |
|
1070 | 1070 | echo "error : ".$e->getMessage(); |
1071 | 1071 | } |
1072 | 1072 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
1073 | 1073 | return $all[0]['total']; |
1074 | 1074 | } |
1075 | - public function getStatsOwner($owner_name,$filter_name = '') { |
|
1075 | + public function getStatsOwner($owner_name, $filter_name = '') { |
|
1076 | 1076 | global $globalArchiveMonths, $globalDBdriver; |
1077 | 1077 | if ($filter_name == '') $filter_name = $this->filter_name; |
1078 | 1078 | $query = "SELECT cnt FROM stats_owner WHERE filter_name = :filter_name AND owner_name = :owner_name"; |
1079 | 1079 | try { |
1080 | 1080 | $sth = $this->db->prepare($query); |
1081 | - $sth->execute(array(':filter_name' => $filter_name,':owner_name' => $owner_name)); |
|
1082 | - } catch(PDOException $e) { |
|
1081 | + $sth->execute(array(':filter_name' => $filter_name, ':owner_name' => $owner_name)); |
|
1082 | + } catch (PDOException $e) { |
|
1083 | 1083 | echo "error : ".$e->getMessage(); |
1084 | 1084 | } |
1085 | 1085 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -1097,20 +1097,20 @@ discard block |
||
1097 | 1097 | try { |
1098 | 1098 | $sth = $this->db->prepare($query); |
1099 | 1099 | $sth->execute(array(':filter_name' => $filter_name)); |
1100 | - } catch(PDOException $e) { |
|
1100 | + } catch (PDOException $e) { |
|
1101 | 1101 | echo "error : ".$e->getMessage(); |
1102 | 1102 | } |
1103 | 1103 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
1104 | 1104 | return $all[0]['total']; |
1105 | 1105 | } |
1106 | - public function getStatsPilot($pilot,$filter_name = '') { |
|
1106 | + public function getStatsPilot($pilot, $filter_name = '') { |
|
1107 | 1107 | global $globalArchiveMonths, $globalDBdriver; |
1108 | 1108 | if ($filter_name == '') $filter_name = $this->filter_name; |
1109 | 1109 | $query = "SELECT cnt FROM stats_pilot WHERE filter_name = :filter_name AND (pilot_name = :pilot OR pilot_id = :pilot)"; |
1110 | 1110 | try { |
1111 | 1111 | $sth = $this->db->prepare($query); |
1112 | - $sth->execute(array(':filter_name' => $filter_name,':pilot' => $pilot)); |
|
1113 | - } catch(PDOException $e) { |
|
1112 | + $sth->execute(array(':filter_name' => $filter_name, ':pilot' => $pilot)); |
|
1113 | + } catch (PDOException $e) { |
|
1114 | 1114 | echo "error : ".$e->getMessage(); |
1115 | 1115 | } |
1116 | 1116 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -1118,7 +1118,7 @@ discard block |
||
1118 | 1118 | else return 0; |
1119 | 1119 | } |
1120 | 1120 | |
1121 | - public function addStat($type,$cnt,$stats_date,$stats_airline = '',$filter_name = '') { |
|
1121 | + public function addStat($type, $cnt, $stats_date, $stats_airline = '', $filter_name = '') { |
|
1122 | 1122 | global $globalDBdriver; |
1123 | 1123 | if ($filter_name == '') $filter_name = $this->filter_name; |
1124 | 1124 | if ($globalDBdriver == 'mysql') { |
@@ -1126,15 +1126,15 @@ discard block |
||
1126 | 1126 | } else { |
1127 | 1127 | $query = "UPDATE stats SET cnt = :cnt WHERE stats_type = :type AND stats_date = :stats_date AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats (stats_type,cnt,stats_date,stats_airline,filter_name) SELECT :type,:cnt,:stats_date,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats WHERE stats_type = :type AND stats_date = :stats_date AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1128 | 1128 | } |
1129 | - $query_values = array(':type' => $type,':cnt' => $cnt,':stats_date' => $stats_date, ':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1129 | + $query_values = array(':type' => $type, ':cnt' => $cnt, ':stats_date' => $stats_date, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
1130 | 1130 | try { |
1131 | 1131 | $sth = $this->db->prepare($query); |
1132 | 1132 | $sth->execute($query_values); |
1133 | - } catch(PDOException $e) { |
|
1133 | + } catch (PDOException $e) { |
|
1134 | 1134 | return "error : ".$e->getMessage(); |
1135 | 1135 | } |
1136 | 1136 | } |
1137 | - public function updateStat($type,$cnt,$stats_date,$stats_airline = '',$filter_name = '') { |
|
1137 | + public function updateStat($type, $cnt, $stats_date, $stats_airline = '', $filter_name = '') { |
|
1138 | 1138 | global $globalDBdriver; |
1139 | 1139 | if ($filter_name == '') $filter_name = $this->filter_name; |
1140 | 1140 | if ($globalDBdriver == 'mysql') { |
@@ -1143,11 +1143,11 @@ discard block |
||
1143 | 1143 | //$query = "INSERT INTO stats (stats_type,cnt,stats_date) VALUES (:type,:cnt,:stats_date) ON DUPLICATE KEY UPDATE cnt = cnt+:cnt, stats_date = :date"; |
1144 | 1144 | $query = "UPDATE stats SET cnt = cnt+:cnt WHERE stats_type = :type AND stats_date = :stats_date AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats (stats_type,cnt,stats_date,stats_airline,filter_name) SELECT :type,:cnt,:stats_date,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats WHERE stats_type = :type AND stats_date = :stats_date AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1145 | 1145 | } |
1146 | - $query_values = array(':type' => $type,':cnt' => $cnt,':stats_date' => $stats_date,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1146 | + $query_values = array(':type' => $type, ':cnt' => $cnt, ':stats_date' => $stats_date, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
1147 | 1147 | try { |
1148 | 1148 | $sth = $this->db->prepare($query); |
1149 | 1149 | $sth->execute($query_values); |
1150 | - } catch(PDOException $e) { |
|
1150 | + } catch (PDOException $e) { |
|
1151 | 1151 | return "error : ".$e->getMessage(); |
1152 | 1152 | } |
1153 | 1153 | } |
@@ -1171,75 +1171,75 @@ discard block |
||
1171 | 1171 | } |
1172 | 1172 | */ |
1173 | 1173 | |
1174 | - public function getStatsSource($stats_type,$year = '',$month = '',$day = '') { |
|
1174 | + public function getStatsSource($stats_type, $year = '', $month = '', $day = '') { |
|
1175 | 1175 | global $globalDBdriver; |
1176 | 1176 | $query = "SELECT * FROM stats_source WHERE stats_type = :stats_type"; |
1177 | 1177 | $query_values = array(); |
1178 | 1178 | if ($globalDBdriver == 'mysql') { |
1179 | 1179 | if ($year != '') { |
1180 | 1180 | $query .= ' AND YEAR(stats_date) = :year'; |
1181 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1181 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1182 | 1182 | } |
1183 | 1183 | if ($month != '') { |
1184 | 1184 | $query .= ' AND MONTH(stats_date) = :month'; |
1185 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1185 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1186 | 1186 | } |
1187 | 1187 | if ($day != '') { |
1188 | 1188 | $query .= ' AND DAY(stats_date) = :day'; |
1189 | - $query_values = array_merge($query_values,array(':day' => $day)); |
|
1189 | + $query_values = array_merge($query_values, array(':day' => $day)); |
|
1190 | 1190 | } |
1191 | 1191 | } else { |
1192 | 1192 | if ($year != '') { |
1193 | 1193 | $query .= ' AND EXTRACT(YEAR FROM stats_date) = :year'; |
1194 | - $query_values = array_merge($query_values,array(':year' => $year)); |
|
1194 | + $query_values = array_merge($query_values, array(':year' => $year)); |
|
1195 | 1195 | } |
1196 | 1196 | if ($month != '') { |
1197 | 1197 | $query .= ' AND EXTRACT(MONTH FROM stats_date) = :month'; |
1198 | - $query_values = array_merge($query_values,array(':month' => $month)); |
|
1198 | + $query_values = array_merge($query_values, array(':month' => $month)); |
|
1199 | 1199 | } |
1200 | 1200 | if ($day != '') { |
1201 | 1201 | $query .= ' AND EXTRACT(DAY FROM stats_date) = :day'; |
1202 | - $query_values = array_merge($query_values,array(':day' => $day)); |
|
1202 | + $query_values = array_merge($query_values, array(':day' => $day)); |
|
1203 | 1203 | } |
1204 | 1204 | } |
1205 | 1205 | $query .= " ORDER BY source_name"; |
1206 | - $query_values = array_merge($query_values,array(':stats_type' => $stats_type)); |
|
1206 | + $query_values = array_merge($query_values, array(':stats_type' => $stats_type)); |
|
1207 | 1207 | try { |
1208 | 1208 | $sth = $this->db->prepare($query); |
1209 | 1209 | $sth->execute($query_values); |
1210 | - } catch(PDOException $e) { |
|
1210 | + } catch (PDOException $e) { |
|
1211 | 1211 | echo "error : ".$e->getMessage(); |
1212 | 1212 | } |
1213 | 1213 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
1214 | 1214 | return $all; |
1215 | 1215 | } |
1216 | 1216 | |
1217 | - public function addStatSource($data,$source_name,$stats_type,$date) { |
|
1217 | + public function addStatSource($data, $source_name, $stats_type, $date) { |
|
1218 | 1218 | global $globalDBdriver; |
1219 | 1219 | if ($globalDBdriver == 'mysql') { |
1220 | 1220 | $query = "INSERT INTO stats_source (source_data,source_name,stats_type,stats_date) VALUES (:data,:source_name,:stats_type,:stats_date) ON DUPLICATE KEY UPDATE source_data = :data"; |
1221 | 1221 | } else { |
1222 | 1222 | $query = "UPDATE stats_source SET source_data = :data WHERE stats_date = :stats_date AND source_name = :source_name AND stats_type = :stats_type; INSERT INTO stats_source (source_data,source_name,stats_type,stats_date) SELECT :data,:source_name,:stats_type,:stats_date WHERE NOT EXISTS (SELECT 1 FROM stats_source WHERE stats_date = :stats_date AND source_name = :source_name AND stats_type = :stats_type);"; |
1223 | 1223 | } |
1224 | - $query_values = array(':data' => $data,':stats_date' => $date,':source_name' => $source_name,':stats_type' => $stats_type); |
|
1224 | + $query_values = array(':data' => $data, ':stats_date' => $date, ':source_name' => $source_name, ':stats_type' => $stats_type); |
|
1225 | 1225 | try { |
1226 | 1226 | $sth = $this->db->prepare($query); |
1227 | 1227 | $sth->execute($query_values); |
1228 | - } catch(PDOException $e) { |
|
1228 | + } catch (PDOException $e) { |
|
1229 | 1229 | return "error : ".$e->getMessage(); |
1230 | 1230 | } |
1231 | 1231 | } |
1232 | - public function addStatFlight($type,$date_name,$cnt,$stats_airline = '',$filter_name = '') { |
|
1232 | + public function addStatFlight($type, $date_name, $cnt, $stats_airline = '', $filter_name = '') { |
|
1233 | 1233 | $query = "INSERT INTO stats_flight (stats_type,flight_date,cnt,stats_airline,filter_name) VALUES (:type,:flight_date,:cnt,:stats_airline,:filter_name)"; |
1234 | - $query_values = array(':type' => $type,':flight_date' => $date_name,':cnt' => $cnt, ':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1234 | + $query_values = array(':type' => $type, ':flight_date' => $date_name, ':cnt' => $cnt, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
1235 | 1235 | try { |
1236 | 1236 | $sth = $this->db->prepare($query); |
1237 | 1237 | $sth->execute($query_values); |
1238 | - } catch(PDOException $e) { |
|
1238 | + } catch (PDOException $e) { |
|
1239 | 1239 | return "error : ".$e->getMessage(); |
1240 | 1240 | } |
1241 | 1241 | } |
1242 | - public function addStatAircraftRegistration($registration,$cnt,$aircraft_icao = '',$airline_icao = '',$filter_name = '',$reset = false) { |
|
1242 | + public function addStatAircraftRegistration($registration, $cnt, $aircraft_icao = '', $airline_icao = '', $filter_name = '', $reset = false) { |
|
1243 | 1243 | global $globalDBdriver; |
1244 | 1244 | if ($globalDBdriver == 'mysql') { |
1245 | 1245 | if ($reset) { |
@@ -1254,15 +1254,15 @@ discard block |
||
1254 | 1254 | $query = "UPDATE stats_registration SET cnt = cnt+:cnt WHERE registration = :registration AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats_registration (aircraft_icao,registration,cnt,stats_airline,filter_name) SELECT :aircraft_icao,:registration,:cnt,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_registration WHERE registration = :registration AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1255 | 1255 | } |
1256 | 1256 | } |
1257 | - $query_values = array(':aircraft_icao' => $aircraft_icao,':registration' => $registration,':cnt' => $cnt,':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1257 | + $query_values = array(':aircraft_icao' => $aircraft_icao, ':registration' => $registration, ':cnt' => $cnt, ':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1258 | 1258 | try { |
1259 | 1259 | $sth = $this->db->prepare($query); |
1260 | 1260 | $sth->execute($query_values); |
1261 | - } catch(PDOException $e) { |
|
1261 | + } catch (PDOException $e) { |
|
1262 | 1262 | return "error : ".$e->getMessage(); |
1263 | 1263 | } |
1264 | 1264 | } |
1265 | - public function addStatCallsign($callsign_icao,$cnt,$airline_icao = '', $filter_name = '', $reset = false) { |
|
1265 | + public function addStatCallsign($callsign_icao, $cnt, $airline_icao = '', $filter_name = '', $reset = false) { |
|
1266 | 1266 | global $globalDBdriver; |
1267 | 1267 | if ($globalDBdriver == 'mysql') { |
1268 | 1268 | if ($reset) { |
@@ -1277,15 +1277,15 @@ discard block |
||
1277 | 1277 | $query = "UPDATE stats_callsign SET cnt = cnt+:cnt WHERE callsign_icao = :callsign_icao AND filter_name = :filter_name; INSERT INTO stats_callsign (callsign_icao,airline_icao,cnt,filter_name) SELECT :callsign_icao,:airline_icao,:cnt,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_callsign WHERE callsign_icao = :callsign_icao AND filter_name = :filter_name);"; |
1278 | 1278 | } |
1279 | 1279 | } |
1280 | - $query_values = array(':callsign_icao' => $callsign_icao,':airline_icao' => $airline_icao,':cnt' => $cnt, ':filter_name' => $filter_name); |
|
1280 | + $query_values = array(':callsign_icao' => $callsign_icao, ':airline_icao' => $airline_icao, ':cnt' => $cnt, ':filter_name' => $filter_name); |
|
1281 | 1281 | try { |
1282 | 1282 | $sth = $this->db->prepare($query); |
1283 | 1283 | $sth->execute($query_values); |
1284 | - } catch(PDOException $e) { |
|
1284 | + } catch (PDOException $e) { |
|
1285 | 1285 | return "error : ".$e->getMessage(); |
1286 | 1286 | } |
1287 | 1287 | } |
1288 | - public function addStatCountry($iso2,$iso3,$name,$cnt,$airline_icao = '',$filter_name = '',$reset = false) { |
|
1288 | + public function addStatCountry($iso2, $iso3, $name, $cnt, $airline_icao = '', $filter_name = '', $reset = false) { |
|
1289 | 1289 | global $globalDBdriver; |
1290 | 1290 | if ($globalDBdriver == 'mysql') { |
1291 | 1291 | if ($reset) { |
@@ -1300,15 +1300,15 @@ discard block |
||
1300 | 1300 | $query = "UPDATE stats_country SET cnt = cnt+:cnt WHERE iso2 = :iso2 AND filter_name = :filter_name AND stats_airline = :airline; INSERT INTO stats_country (iso2,iso3,name,cnt,stats_airline,filter_name) SELECT :iso2,:iso3,:name,:cnt,:airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_country WHERE iso2 = :iso2 AND filter_name = :filter_name AND stats_airline = :airline);"; |
1301 | 1301 | } |
1302 | 1302 | } |
1303 | - $query_values = array(':iso2' => $iso2,':iso3' => $iso3,':name' => $name,':cnt' => $cnt,':filter_name' => $filter_name,':airline' => $airline_icao); |
|
1303 | + $query_values = array(':iso2' => $iso2, ':iso3' => $iso3, ':name' => $name, ':cnt' => $cnt, ':filter_name' => $filter_name, ':airline' => $airline_icao); |
|
1304 | 1304 | try { |
1305 | 1305 | $sth = $this->db->prepare($query); |
1306 | 1306 | $sth->execute($query_values); |
1307 | - } catch(PDOException $e) { |
|
1307 | + } catch (PDOException $e) { |
|
1308 | 1308 | return "error : ".$e->getMessage(); |
1309 | 1309 | } |
1310 | 1310 | } |
1311 | - public function addStatAircraft($aircraft_icao,$cnt,$aircraft_name = '',$aircraft_manufacturer = '', $airline_icao = '', $filter_name = '', $reset = false) { |
|
1311 | + public function addStatAircraft($aircraft_icao, $cnt, $aircraft_name = '', $aircraft_manufacturer = '', $airline_icao = '', $filter_name = '', $reset = false) { |
|
1312 | 1312 | global $globalDBdriver; |
1313 | 1313 | if ($globalDBdriver == 'mysql') { |
1314 | 1314 | if ($reset) { |
@@ -1323,15 +1323,15 @@ discard block |
||
1323 | 1323 | $query = "UPDATE stats_aircraft SET cnt = cnt+:cnt, aircraft_name = :aircraft_name, aircraft_manufacturer = :aircraft_manufacturer, filter_name = :filter_name WHERE aircraft_icao = :aircraft_icao AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats_aircraft (aircraft_icao,aircraft_name,aircraft_manufacturer,cnt,stats_airline,filter_name) SELECT :aircraft_icao,:aircraft_name,:aircraft_manufacturer,:cnt,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_aircraft WHERE aircraft_icao = :aircraft_icao AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1324 | 1324 | } |
1325 | 1325 | } |
1326 | - $query_values = array(':aircraft_icao' => $aircraft_icao,':aircraft_name' => $aircraft_name,':cnt' => $cnt, ':aircraft_manufacturer' => $aircraft_manufacturer,':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1326 | + $query_values = array(':aircraft_icao' => $aircraft_icao, ':aircraft_name' => $aircraft_name, ':cnt' => $cnt, ':aircraft_manufacturer' => $aircraft_manufacturer, ':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1327 | 1327 | try { |
1328 | 1328 | $sth = $this->db->prepare($query); |
1329 | 1329 | $sth->execute($query_values); |
1330 | - } catch(PDOException $e) { |
|
1330 | + } catch (PDOException $e) { |
|
1331 | 1331 | return "error : ".$e->getMessage(); |
1332 | 1332 | } |
1333 | 1333 | } |
1334 | - public function addStatAirline($airline_icao,$cnt,$airline_name = '',$filter_name = '', $reset = false) { |
|
1334 | + public function addStatAirline($airline_icao, $cnt, $airline_name = '', $filter_name = '', $reset = false) { |
|
1335 | 1335 | global $globalDBdriver; |
1336 | 1336 | if ($globalDBdriver == 'mysql') { |
1337 | 1337 | if ($reset) { |
@@ -1346,15 +1346,15 @@ discard block |
||
1346 | 1346 | $query = "UPDATE stats_airline SET cnt = cnt+:cnt WHERE airline_icao = :airline_icao AND filter_name = :filter_name; INSERT INTO stats_airline (airline_icao,airline_name,cnt,filter_name) SELECT :airline_icao,:airline_name,:cnt,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_airline WHERE airline_icao = :airline_icao AND filter_name = :filter_name);"; |
1347 | 1347 | } |
1348 | 1348 | } |
1349 | - $query_values = array(':airline_icao' => $airline_icao,':airline_name' => $airline_name,':cnt' => $cnt,':filter_name' => $filter_name); |
|
1349 | + $query_values = array(':airline_icao' => $airline_icao, ':airline_name' => $airline_name, ':cnt' => $cnt, ':filter_name' => $filter_name); |
|
1350 | 1350 | try { |
1351 | 1351 | $sth = $this->db->prepare($query); |
1352 | 1352 | $sth->execute($query_values); |
1353 | - } catch(PDOException $e) { |
|
1353 | + } catch (PDOException $e) { |
|
1354 | 1354 | return "error : ".$e->getMessage(); |
1355 | 1355 | } |
1356 | 1356 | } |
1357 | - public function addStatOwner($owner_name,$cnt,$stats_airline = '', $filter_name = '', $reset = false) { |
|
1357 | + public function addStatOwner($owner_name, $cnt, $stats_airline = '', $filter_name = '', $reset = false) { |
|
1358 | 1358 | global $globalDBdriver; |
1359 | 1359 | if ($globalDBdriver == 'mysql') { |
1360 | 1360 | if ($reset) { |
@@ -1369,15 +1369,15 @@ discard block |
||
1369 | 1369 | $query = "UPDATE stats_owner SET cnt = cnt+:cnt WHERE owner_name = :owner_name AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats_owner (owner_name,cnt,stats_airline,filter_name) SELECT :owner_name,:cnt,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_owner WHERE owner_name = :owner_name AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1370 | 1370 | } |
1371 | 1371 | } |
1372 | - $query_values = array(':owner_name' => $owner_name,':cnt' => $cnt,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
|
1372 | + $query_values = array(':owner_name' => $owner_name, ':cnt' => $cnt, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
|
1373 | 1373 | try { |
1374 | 1374 | $sth = $this->db->prepare($query); |
1375 | 1375 | $sth->execute($query_values); |
1376 | - } catch(PDOException $e) { |
|
1376 | + } catch (PDOException $e) { |
|
1377 | 1377 | return "error : ".$e->getMessage(); |
1378 | 1378 | } |
1379 | 1379 | } |
1380 | - public function addStatPilot($pilot_id,$cnt,$pilot_name,$stats_airline = '',$filter_name = '',$format_source = '',$reset = false) { |
|
1380 | + public function addStatPilot($pilot_id, $cnt, $pilot_name, $stats_airline = '', $filter_name = '', $format_source = '', $reset = false) { |
|
1381 | 1381 | global $globalDBdriver; |
1382 | 1382 | if ($globalDBdriver == 'mysql') { |
1383 | 1383 | if ($reset) { |
@@ -1392,15 +1392,15 @@ discard block |
||
1392 | 1392 | $query = "UPDATE stats_pilot SET cnt = cnt+:cnt, pilot_name = :pilot_name WHERE pilot_id = :pilot_id AND stats_airline = :stats_airline AND filter_name = :filter_name AND format_source = :format_source; INSERT INTO stats_pilot (pilot_id,cnt,pilot_name,stats_airline,filter_name,format_source) SELECT :pilot_id,:cnt,:pilot_name,:stats_airline,:filter_name,:format_source WHERE NOT EXISTS (SELECT 1 FROM stats_pilot WHERE pilot_id = :pilot_id AND stats_airline = :stats_airline AND filter_name = :filter_name AND format_source = :format_source);"; |
1393 | 1393 | } |
1394 | 1394 | } |
1395 | - $query_values = array(':pilot_id' => $pilot_id,':cnt' => $cnt,':pilot_name' => $pilot_name,':stats_airline' => $stats_airline,':filter_name' => $filter_name,':format_source' => $format_source); |
|
1395 | + $query_values = array(':pilot_id' => $pilot_id, ':cnt' => $cnt, ':pilot_name' => $pilot_name, ':stats_airline' => $stats_airline, ':filter_name' => $filter_name, ':format_source' => $format_source); |
|
1396 | 1396 | try { |
1397 | 1397 | $sth = $this->db->prepare($query); |
1398 | 1398 | $sth->execute($query_values); |
1399 | - } catch(PDOException $e) { |
|
1399 | + } catch (PDOException $e) { |
|
1400 | 1400 | return "error : ".$e->getMessage(); |
1401 | 1401 | } |
1402 | 1402 | } |
1403 | - public function addStatDepartureAirports($airport_icao,$airport_name,$airport_city,$airport_country,$departure,$airline_icao = '',$filter_name = '',$reset = false) { |
|
1403 | + public function addStatDepartureAirports($airport_icao, $airport_name, $airport_city, $airport_country, $departure, $airline_icao = '', $filter_name = '', $reset = false) { |
|
1404 | 1404 | global $globalDBdriver; |
1405 | 1405 | if ($airport_icao != '') { |
1406 | 1406 | if ($globalDBdriver == 'mysql') { |
@@ -1416,16 +1416,16 @@ discard block |
||
1416 | 1416 | $query = "UPDATE stats_airport SET departure = departure+:departure WHERE airport_icao = :airport_icao AND stats_type = 'yearly' AND stats_airline = :stats_airline AND date = :date AND filter_name = :filter_name; INSERT INTO stats_airport (airport_icao,airport_name,airport_city,airport_country,departure,stats_type,date,stats_airline,filter_name) SELECT :airport_icao,:airport_name,:airport_city,:airport_country,:departure,'yearly',:date,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_airport WHERE airport_icao = :airport_icao AND stats_type = 'yearly' AND stats_airline = :stats_airline AND date = :date AND filter_name = :filter_name);"; |
1417 | 1417 | } |
1418 | 1418 | } |
1419 | - $query_values = array(':airport_icao' => $airport_icao,':airport_name' => $airport_name,':airport_city' => $airport_city,':airport_country' => $airport_country,':departure' => $departure,':date' => date('Y').'-01-01 00:00:00', ':stats_airline' => $airline_icao,':filter_name' => $filter_name); |
|
1419 | + $query_values = array(':airport_icao' => $airport_icao, ':airport_name' => $airport_name, ':airport_city' => $airport_city, ':airport_country' => $airport_country, ':departure' => $departure, ':date' => date('Y').'-01-01 00:00:00', ':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1420 | 1420 | try { |
1421 | 1421 | $sth = $this->db->prepare($query); |
1422 | 1422 | $sth->execute($query_values); |
1423 | - } catch(PDOException $e) { |
|
1423 | + } catch (PDOException $e) { |
|
1424 | 1424 | return "error : ".$e->getMessage(); |
1425 | 1425 | } |
1426 | 1426 | } |
1427 | 1427 | } |
1428 | - public function addStatDepartureAirportsDaily($date,$airport_icao,$airport_name,$airport_city,$airport_country,$departure,$airline_icao = '',$filter_name = '') { |
|
1428 | + public function addStatDepartureAirportsDaily($date, $airport_icao, $airport_name, $airport_city, $airport_country, $departure, $airline_icao = '', $filter_name = '') { |
|
1429 | 1429 | global $globalDBdriver; |
1430 | 1430 | if ($airport_icao != '') { |
1431 | 1431 | if ($globalDBdriver == 'mysql') { |
@@ -1433,16 +1433,16 @@ discard block |
||
1433 | 1433 | } else { |
1434 | 1434 | $query = "UPDATE stats_airport SET departure = :departure WHERE airport_icao = :airport_icao AND stats_type = 'daily' AND date = :date AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats_airport (airport_icao,airport_name,airport_city,airport_country,departure,stats_type,date,stats_airline,filter_name) SELECT :airport_icao,:airport_name,:airport_city,:airport_country,:departure,'daily',:date,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_airport WHERE airport_icao = :airport_icao AND stats_type = 'daily' AND date = :date AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1435 | 1435 | } |
1436 | - $query_values = array(':airport_icao' => $airport_icao,':airport_name' => $airport_name,':airport_city' => $airport_city,':airport_country' => $airport_country,':departure' => $departure,':date' => $date,':stats_airline' => $airline_icao,':filter_name' => $filter_name); |
|
1436 | + $query_values = array(':airport_icao' => $airport_icao, ':airport_name' => $airport_name, ':airport_city' => $airport_city, ':airport_country' => $airport_country, ':departure' => $departure, ':date' => $date, ':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1437 | 1437 | try { |
1438 | 1438 | $sth = $this->db->prepare($query); |
1439 | 1439 | $sth->execute($query_values); |
1440 | - } catch(PDOException $e) { |
|
1440 | + } catch (PDOException $e) { |
|
1441 | 1441 | return "error : ".$e->getMessage(); |
1442 | 1442 | } |
1443 | 1443 | } |
1444 | 1444 | } |
1445 | - public function addStatArrivalAirports($airport_icao,$airport_name,$airport_city,$airport_country,$arrival,$airline_icao = '',$filter_name = '',$reset = false) { |
|
1445 | + public function addStatArrivalAirports($airport_icao, $airport_name, $airport_city, $airport_country, $arrival, $airline_icao = '', $filter_name = '', $reset = false) { |
|
1446 | 1446 | global $globalDBdriver; |
1447 | 1447 | if ($airport_icao != '') { |
1448 | 1448 | if ($globalDBdriver == 'mysql') { |
@@ -1458,16 +1458,16 @@ discard block |
||
1458 | 1458 | $query = "UPDATE stats_airport SET arrival = arrival+:arrival WHERE airport_icao = :airport_icao AND stats_type = 'yearly' AND stats_airline = :stats_airline AND date = :date AND filter_name = :filter_name; INSERT INTO stats_airport (airport_icao,airport_name,airport_city,airport_country,arrival,stats_type,date,stats_airline,filter_name) SELECT :airport_icao,:airport_name,:airport_city,:airport_country,:arrival,'yearly',:date,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_airport WHERE airport_icao = :airport_icao AND stats_type = 'yearly' AND stats_airline = :stats_airline AND date = :date AND filter_name = :filter_name);"; |
1459 | 1459 | } |
1460 | 1460 | } |
1461 | - $query_values = array(':airport_icao' => $airport_icao,':airport_name' => $airport_name,':airport_city' => $airport_city,':airport_country' => $airport_country,':arrival' => $arrival,':date' => date('Y').'-01-01 00:00:00',':stats_airline' => $airline_icao,':filter_name' => $filter_name); |
|
1461 | + $query_values = array(':airport_icao' => $airport_icao, ':airport_name' => $airport_name, ':airport_city' => $airport_city, ':airport_country' => $airport_country, ':arrival' => $arrival, ':date' => date('Y').'-01-01 00:00:00', ':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1462 | 1462 | try { |
1463 | 1463 | $sth = $this->db->prepare($query); |
1464 | 1464 | $sth->execute($query_values); |
1465 | - } catch(PDOException $e) { |
|
1465 | + } catch (PDOException $e) { |
|
1466 | 1466 | return "error : ".$e->getMessage(); |
1467 | 1467 | } |
1468 | 1468 | } |
1469 | 1469 | } |
1470 | - public function addStatArrivalAirportsDaily($date,$airport_icao,$airport_name,$airport_city,$airport_country,$arrival,$airline_icao = '',$filter_name = '') { |
|
1470 | + public function addStatArrivalAirportsDaily($date, $airport_icao, $airport_name, $airport_city, $airport_country, $arrival, $airline_icao = '', $filter_name = '') { |
|
1471 | 1471 | global $globalDBdriver; |
1472 | 1472 | if ($airport_icao != '') { |
1473 | 1473 | if ($globalDBdriver == 'mysql') { |
@@ -1475,11 +1475,11 @@ discard block |
||
1475 | 1475 | } else { |
1476 | 1476 | $query = "UPDATE stats_airport SET arrival = :arrival WHERE airport_icao = :airport_icao AND stats_type = 'daily' AND date = :date AND stats_airline = :stats_airline AND filter_name = :filter_name; INSERT INTO stats_airport (airport_icao,airport_name,airport_city,airport_country,arrival,stats_type,date,stats_airline,filter_name) SELECT :airport_icao,:airport_name,:airport_city,:airport_country,:arrival,'daily',:date,:stats_airline,:filter_name WHERE NOT EXISTS (SELECT 1 FROM stats_airport WHERE airport_icao = :airport_icao AND stats_type = 'daily' AND date = :date AND stats_airline = :stats_airline AND filter_name = :filter_name);"; |
1477 | 1477 | } |
1478 | - $query_values = array(':airport_icao' => $airport_icao,':airport_name' => $airport_name,':airport_city' => $airport_city,':airport_country' => $airport_country,':arrival' => $arrival, ':date' => $date,':stats_airline' => $airline_icao,':filter_name' => $filter_name); |
|
1478 | + $query_values = array(':airport_icao' => $airport_icao, ':airport_name' => $airport_name, ':airport_city' => $airport_city, ':airport_country' => $airport_country, ':arrival' => $arrival, ':date' => $date, ':stats_airline' => $airline_icao, ':filter_name' => $filter_name); |
|
1479 | 1479 | try { |
1480 | 1480 | $sth = $this->db->prepare($query); |
1481 | 1481 | $sth->execute($query_values); |
1482 | - } catch(PDOException $e) { |
|
1482 | + } catch (PDOException $e) { |
|
1483 | 1483 | return "error : ".$e->getMessage(); |
1484 | 1484 | } |
1485 | 1485 | } |
@@ -1491,7 +1491,7 @@ discard block |
||
1491 | 1491 | try { |
1492 | 1492 | $sth = $this->db->prepare($query); |
1493 | 1493 | $sth->execute($query_values); |
1494 | - } catch(PDOException $e) { |
|
1494 | + } catch (PDOException $e) { |
|
1495 | 1495 | return "error : ".$e->getMessage(); |
1496 | 1496 | } |
1497 | 1497 | } |
@@ -1501,7 +1501,7 @@ discard block |
||
1501 | 1501 | try { |
1502 | 1502 | $sth = $this->db->prepare($query); |
1503 | 1503 | $sth->execute($query_values); |
1504 | - } catch(PDOException $e) { |
|
1504 | + } catch (PDOException $e) { |
|
1505 | 1505 | return "error : ".$e->getMessage(); |
1506 | 1506 | } |
1507 | 1507 | } |
@@ -1511,13 +1511,13 @@ discard block |
||
1511 | 1511 | try { |
1512 | 1512 | $sth = $this->db->prepare($query); |
1513 | 1513 | $sth->execute($query_values); |
1514 | - } catch(PDOException $e) { |
|
1514 | + } catch (PDOException $e) { |
|
1515 | 1515 | return "error : ".$e->getMessage(); |
1516 | 1516 | } |
1517 | 1517 | } |
1518 | 1518 | |
1519 | 1519 | public function addOldStats() { |
1520 | - global $globalDebug, $globalArchiveMonths, $globalArchive, $globalArchiveYear, $globalDBdriver, $globalStatsFilters,$globalDeleteLastYearStats,$globalStatsReset,$globalStatsResetYear; |
|
1520 | + global $globalDebug, $globalArchiveMonths, $globalArchive, $globalArchiveYear, $globalDBdriver, $globalStatsFilters, $globalDeleteLastYearStats, $globalStatsReset, $globalStatsResetYear; |
|
1521 | 1521 | $Common = new Common(); |
1522 | 1522 | $Connection = new Connection(); |
1523 | 1523 | date_default_timezone_set('UTC'); |
@@ -1535,40 +1535,40 @@ discard block |
||
1535 | 1535 | $Spotter = new Spotter($this->db); |
1536 | 1536 | |
1537 | 1537 | if ($globalDebug) echo 'Count all aircraft types...'."\n"; |
1538 | - $alldata = $Spotter->countAllAircraftTypes(false,0,$last_update_day); |
|
1538 | + $alldata = $Spotter->countAllAircraftTypes(false, 0, $last_update_day); |
|
1539 | 1539 | foreach ($alldata as $number) { |
1540 | - $this->addStatAircraft($number['aircraft_icao'],$number['aircraft_icao_count'],$number['aircraft_name'],$number['aircraft_manufacturer'],'','',$reset); |
|
1540 | + $this->addStatAircraft($number['aircraft_icao'], $number['aircraft_icao_count'], $number['aircraft_name'], $number['aircraft_manufacturer'], '', '', $reset); |
|
1541 | 1541 | } |
1542 | 1542 | if ($globalDebug) echo 'Count all airlines...'."\n"; |
1543 | - $alldata = $Spotter->countAllAirlines(false,0,$last_update_day); |
|
1543 | + $alldata = $Spotter->countAllAirlines(false, 0, $last_update_day); |
|
1544 | 1544 | foreach ($alldata as $number) { |
1545 | - $this->addStatAirline($number['airline_icao'],$number['airline_count'],$number['airline_name'],'',$reset); |
|
1545 | + $this->addStatAirline($number['airline_icao'], $number['airline_count'], $number['airline_name'], '', $reset); |
|
1546 | 1546 | } |
1547 | 1547 | if ($globalDebug) echo 'Count all registrations...'."\n"; |
1548 | - $alldata = $Spotter->countAllAircraftRegistrations(false,0,$last_update_day); |
|
1548 | + $alldata = $Spotter->countAllAircraftRegistrations(false, 0, $last_update_day); |
|
1549 | 1549 | foreach ($alldata as $number) { |
1550 | - $this->addStatAircraftRegistration($number['registration'],$number['aircraft_registration_count'],$number['aircraft_icao'],'','',$reset); |
|
1550 | + $this->addStatAircraftRegistration($number['registration'], $number['aircraft_registration_count'], $number['aircraft_icao'], '', '', $reset); |
|
1551 | 1551 | } |
1552 | 1552 | if ($globalDebug) echo 'Count all callsigns...'."\n"; |
1553 | - $alldata = $Spotter->countAllCallsigns(false,0,$last_update_day); |
|
1553 | + $alldata = $Spotter->countAllCallsigns(false, 0, $last_update_day); |
|
1554 | 1554 | foreach ($alldata as $number) { |
1555 | - $this->addStatCallsign($number['callsign_icao'],$number['callsign_icao_count'],$number['airline_icao'],'',$reset); |
|
1555 | + $this->addStatCallsign($number['callsign_icao'], $number['callsign_icao_count'], $number['airline_icao'], '', $reset); |
|
1556 | 1556 | } |
1557 | 1557 | if ($globalDebug) echo 'Count all owners...'."\n"; |
1558 | - $alldata = $Spotter->countAllOwners(false,0,$last_update_day); |
|
1558 | + $alldata = $Spotter->countAllOwners(false, 0, $last_update_day); |
|
1559 | 1559 | foreach ($alldata as $number) { |
1560 | - $this->addStatOwner($number['owner_name'],$number['owner_count'],'','',$reset); |
|
1560 | + $this->addStatOwner($number['owner_name'], $number['owner_count'], '', '', $reset); |
|
1561 | 1561 | } |
1562 | 1562 | if ($globalDebug) echo 'Count all pilots...'."\n"; |
1563 | - $alldata = $Spotter->countAllPilots(false,0,$last_update_day); |
|
1563 | + $alldata = $Spotter->countAllPilots(false, 0, $last_update_day); |
|
1564 | 1564 | foreach ($alldata as $number) { |
1565 | - $this->addStatPilot($number['pilot_id'],$number['pilot_count'],$number['pilot_name'],'','',$number['format_source'],$reset); |
|
1565 | + $this->addStatPilot($number['pilot_id'], $number['pilot_count'], $number['pilot_name'], '', '', $number['format_source'], $reset); |
|
1566 | 1566 | } |
1567 | 1567 | |
1568 | 1568 | if ($globalDebug) echo 'Count all departure airports...'."\n"; |
1569 | - $pall = $Spotter->countAllDepartureAirports(false,0,$last_update_day); |
|
1569 | + $pall = $Spotter->countAllDepartureAirports(false, 0, $last_update_day); |
|
1570 | 1570 | if ($globalDebug) echo 'Count all detected departure airports...'."\n"; |
1571 | - $dall = $Spotter->countAllDetectedDepartureAirports(false,0,$last_update_day); |
|
1571 | + $dall = $Spotter->countAllDetectedDepartureAirports(false, 0, $last_update_day); |
|
1572 | 1572 | if ($globalDebug) echo 'Order departure airports...'."\n"; |
1573 | 1573 | $alldata = array(); |
1574 | 1574 | |
@@ -1586,14 +1586,14 @@ discard block |
||
1586 | 1586 | foreach ($alldata as $key => $row) { |
1587 | 1587 | $count[$key] = $row['airport_departure_icao_count']; |
1588 | 1588 | } |
1589 | - array_multisort($count,SORT_DESC,$alldata); |
|
1589 | + array_multisort($count, SORT_DESC, $alldata); |
|
1590 | 1590 | foreach ($alldata as $number) { |
1591 | - echo $this->addStatDepartureAirports($number['airport_departure_icao'],$number['airport_departure_name'],$number['airport_departure_city'],$number['airport_departure_country'],$number['airport_departure_icao_count'],'','',$reset); |
|
1591 | + echo $this->addStatDepartureAirports($number['airport_departure_icao'], $number['airport_departure_name'], $number['airport_departure_city'], $number['airport_departure_country'], $number['airport_departure_icao_count'], '', '', $reset); |
|
1592 | 1592 | } |
1593 | 1593 | if ($globalDebug) echo 'Count all arrival airports...'."\n"; |
1594 | - $pall = $Spotter->countAllArrivalAirports(false,0,$last_update_day); |
|
1594 | + $pall = $Spotter->countAllArrivalAirports(false, 0, $last_update_day); |
|
1595 | 1595 | if ($globalDebug) echo 'Count all detected arrival airports...'."\n"; |
1596 | - $dall = $Spotter->countAllDetectedArrivalAirports(false,0,$last_update_day); |
|
1596 | + $dall = $Spotter->countAllDetectedArrivalAirports(false, 0, $last_update_day); |
|
1597 | 1597 | if ($globalDebug) echo 'Order arrival airports...'."\n"; |
1598 | 1598 | $alldata = array(); |
1599 | 1599 | foreach ($pall as $value) { |
@@ -1610,16 +1610,16 @@ discard block |
||
1610 | 1610 | foreach ($alldata as $key => $row) { |
1611 | 1611 | $count[$key] = $row['airport_arrival_icao_count']; |
1612 | 1612 | } |
1613 | - array_multisort($count,SORT_DESC,$alldata); |
|
1613 | + array_multisort($count, SORT_DESC, $alldata); |
|
1614 | 1614 | foreach ($alldata as $number) { |
1615 | - echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],'','',$reset); |
|
1615 | + echo $this->addStatArrivalAirports($number['airport_arrival_icao'], $number['airport_arrival_name'], $number['airport_arrival_city'], $number['airport_arrival_country'], $number['airport_arrival_icao_count'], '', '', $reset); |
|
1616 | 1616 | } |
1617 | 1617 | if ($Connection->tableExists('countries')) { |
1618 | 1618 | if ($globalDebug) echo 'Count all flights by countries...'."\n"; |
1619 | 1619 | $SpotterArchive = new SpotterArchive(); |
1620 | - $alldata = $SpotterArchive->countAllFlightOverCountries(false,0,$last_update_day); |
|
1620 | + $alldata = $SpotterArchive->countAllFlightOverCountries(false, 0, $last_update_day); |
|
1621 | 1621 | foreach ($alldata as $number) { |
1622 | - $this->addStatCountry($number['flight_country_iso2'],$number['flight_country_iso3'],$number['flight_country'],$number['flight_count'],'','',$reset); |
|
1622 | + $this->addStatCountry($number['flight_country_iso2'], $number['flight_country_iso3'], $number['flight_country'], $number['flight_count'], '', '', $reset); |
|
1623 | 1623 | } |
1624 | 1624 | } |
1625 | 1625 | |
@@ -1628,12 +1628,12 @@ discard block |
||
1628 | 1628 | $this->deleteStatsByType('fatalities_byyear'); |
1629 | 1629 | $alldata = $Accident->countFatalitiesByYear(); |
1630 | 1630 | foreach ($alldata as $number) { |
1631 | - $this->addStat('fatalities_byyear',$number['count'],date('Y-m-d H:i:s',mktime(0,0,0,1,1,$number['year']))); |
|
1631 | + $this->addStat('fatalities_byyear', $number['count'], date('Y-m-d H:i:s', mktime(0, 0, 0, 1, 1, $number['year']))); |
|
1632 | 1632 | } |
1633 | 1633 | $this->deleteStatsByType('fatalities_bymonth'); |
1634 | 1634 | $alldata = $Accident->countFatalitiesLast12Months(); |
1635 | 1635 | foreach ($alldata as $number) { |
1636 | - $this->addStat('fatalities_bymonth',$number['count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month'],1,$number['year']))); |
|
1636 | + $this->addStat('fatalities_bymonth', $number['count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month'], 1, $number['year']))); |
|
1637 | 1637 | } |
1638 | 1638 | |
1639 | 1639 | |
@@ -1646,37 +1646,37 @@ discard block |
||
1646 | 1646 | $lastyear = false; |
1647 | 1647 | foreach ($alldata as $number) { |
1648 | 1648 | if ($number['year_name'] != date('Y')) $lastyear = true; |
1649 | - $this->addStat('flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
|
1649 | + $this->addStat('flights_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name']))); |
|
1650 | 1650 | } |
1651 | 1651 | if ($globalDebug) echo 'Count all military flights by months...'."\n"; |
1652 | 1652 | $alldata = $Spotter->countAllMilitaryMonths(); |
1653 | 1653 | foreach ($alldata as $number) { |
1654 | - $this->addStat('military_flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
|
1654 | + $this->addStat('military_flights_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name']))); |
|
1655 | 1655 | } |
1656 | 1656 | if ($globalDebug) echo 'Count all owners by months...'."\n"; |
1657 | 1657 | $alldata = $Spotter->countAllMonthsOwners(); |
1658 | 1658 | foreach ($alldata as $number) { |
1659 | - $this->addStat('owners_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
|
1659 | + $this->addStat('owners_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name']))); |
|
1660 | 1660 | } |
1661 | 1661 | if ($globalDebug) echo 'Count all pilots by months...'."\n"; |
1662 | 1662 | $alldata = $Spotter->countAllMonthsPilots(); |
1663 | 1663 | foreach ($alldata as $number) { |
1664 | - $this->addStat('pilots_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
|
1664 | + $this->addStat('pilots_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name']))); |
|
1665 | 1665 | } |
1666 | 1666 | if ($globalDebug) echo 'Count all airlines by months...'."\n"; |
1667 | 1667 | $alldata = $Spotter->countAllMonthsAirlines(); |
1668 | 1668 | foreach ($alldata as $number) { |
1669 | - $this->addStat('airlines_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
|
1669 | + $this->addStat('airlines_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name']))); |
|
1670 | 1670 | } |
1671 | 1671 | if ($globalDebug) echo 'Count all aircrafts by months...'."\n"; |
1672 | 1672 | $alldata = $Spotter->countAllMonthsAircrafts(); |
1673 | 1673 | foreach ($alldata as $number) { |
1674 | - $this->addStat('aircrafts_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
|
1674 | + $this->addStat('aircrafts_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name']))); |
|
1675 | 1675 | } |
1676 | 1676 | if ($globalDebug) echo 'Count all real arrivals by months...'."\n"; |
1677 | 1677 | $alldata = $Spotter->countAllMonthsRealArrivals(); |
1678 | 1678 | foreach ($alldata as $number) { |
1679 | - $this->addStat('realarrivals_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
|
1679 | + $this->addStat('realarrivals_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name']))); |
|
1680 | 1680 | } |
1681 | 1681 | if ($globalDebug) echo 'Airports data...'."\n"; |
1682 | 1682 | if ($globalDebug) echo '...Departure'."\n"; |
@@ -1721,7 +1721,7 @@ discard block |
||
1721 | 1721 | } |
1722 | 1722 | $alldata = $pall; |
1723 | 1723 | foreach ($alldata as $number) { |
1724 | - $this->addStatDepartureAirportsDaily($number['date'],$number['departure_airport_icao'],$number['departure_airport_name'],$number['departure_airport_city'],$number['departure_airport_country'],$number['departure_airport_count']); |
|
1724 | + $this->addStatDepartureAirportsDaily($number['date'], $number['departure_airport_icao'], $number['departure_airport_name'], $number['departure_airport_city'], $number['departure_airport_country'], $number['departure_airport_count']); |
|
1725 | 1725 | } |
1726 | 1726 | echo '...Arrival'."\n"; |
1727 | 1727 | $pall = $Spotter->getLast7DaysAirportsArrival(); |
@@ -1763,7 +1763,7 @@ discard block |
||
1763 | 1763 | } |
1764 | 1764 | $alldata = $pall; |
1765 | 1765 | foreach ($alldata as $number) { |
1766 | - $this->addStatArrivalAirportsDaily($number['date'],$number['arrival_airport_icao'],$number['arrival_airport_name'],$number['arrival_airport_city'],$number['arrival_airport_country'],$number['arrival_airport_count']); |
|
1766 | + $this->addStatArrivalAirportsDaily($number['date'], $number['arrival_airport_icao'], $number['arrival_airport_name'], $number['arrival_airport_city'], $number['arrival_airport_country'], $number['arrival_airport_count']); |
|
1767 | 1767 | } |
1768 | 1768 | |
1769 | 1769 | echo 'Flights data...'."\n"; |
@@ -1771,28 +1771,28 @@ discard block |
||
1771 | 1771 | echo '-> countAllDatesLastMonth...'."\n"; |
1772 | 1772 | $alldata = $Spotter->countAllDatesLastMonth(); |
1773 | 1773 | foreach ($alldata as $number) { |
1774 | - $this->addStatFlight('month',$number['date_name'],$number['date_count']); |
|
1774 | + $this->addStatFlight('month', $number['date_name'], $number['date_count']); |
|
1775 | 1775 | } |
1776 | 1776 | echo '-> countAllDates...'."\n"; |
1777 | 1777 | $previousdata = $this->countAllDates(); |
1778 | 1778 | $previousdatabyairlines = $this->countAllDatesByAirlines(); |
1779 | 1779 | $this->deleteStatFlight('date'); |
1780 | - $alldata = $Common->array_merge_noappend($previousdata,$Spotter->countAllDates()); |
|
1780 | + $alldata = $Common->array_merge_noappend($previousdata, $Spotter->countAllDates()); |
|
1781 | 1781 | $values = array(); |
1782 | 1782 | foreach ($alldata as $cnt) { |
1783 | 1783 | $values[] = $cnt['date_count']; |
1784 | 1784 | } |
1785 | - array_multisort($values,SORT_DESC,$alldata); |
|
1786 | - array_splice($alldata,11); |
|
1785 | + array_multisort($values, SORT_DESC, $alldata); |
|
1786 | + array_splice($alldata, 11); |
|
1787 | 1787 | foreach ($alldata as $number) { |
1788 | - $this->addStatFlight('date',$number['date_name'],$number['date_count']); |
|
1788 | + $this->addStatFlight('date', $number['date_name'], $number['date_count']); |
|
1789 | 1789 | } |
1790 | 1790 | |
1791 | 1791 | $this->deleteStatFlight('hour'); |
1792 | 1792 | echo '-> countAllHours...'."\n"; |
1793 | 1793 | $alldata = $Spotter->countAllHours('hour'); |
1794 | 1794 | foreach ($alldata as $number) { |
1795 | - $this->addStatFlight('hour',$number['hour_name'],$number['hour_count']); |
|
1795 | + $this->addStatFlight('hour', $number['hour_name'], $number['hour_count']); |
|
1796 | 1796 | } |
1797 | 1797 | |
1798 | 1798 | |
@@ -1802,41 +1802,41 @@ discard block |
||
1802 | 1802 | if ($Connection->tableExists('countries')) { |
1803 | 1803 | if ($globalDebug) echo 'Count all flights by countries by airlines...'."\n"; |
1804 | 1804 | $SpotterArchive = new SpotterArchive(); |
1805 | - $alldata = $SpotterArchive->countAllFlightOverCountriesByAirlines(false,0,$last_update_day); |
|
1805 | + $alldata = $SpotterArchive->countAllFlightOverCountriesByAirlines(false, 0, $last_update_day); |
|
1806 | 1806 | foreach ($alldata as $number) { |
1807 | - $this->addStatCountry($number['flight_country_iso2'],$number['flight_country_iso3'],$number['flight_country'],$number['flight_count'],$number['airline_icao'],'',$reset); |
|
1807 | + $this->addStatCountry($number['flight_country_iso2'], $number['flight_country_iso3'], $number['flight_country'], $number['flight_count'], $number['airline_icao'], '', $reset); |
|
1808 | 1808 | } |
1809 | 1809 | } |
1810 | 1810 | if ($globalDebug) echo 'Count all aircraft types by airlines...'."\n"; |
1811 | 1811 | $Spotter = new Spotter($this->db); |
1812 | - $alldata = $Spotter->countAllAircraftTypesByAirlines(false,0,$last_update_day); |
|
1812 | + $alldata = $Spotter->countAllAircraftTypesByAirlines(false, 0, $last_update_day); |
|
1813 | 1813 | foreach ($alldata as $number) { |
1814 | - $this->addStatAircraft($number['aircraft_icao'],$number['aircraft_icao_count'],$number['aircraft_name'],$number['aircraft_manufacturer'],$number['airline_icao'],'',$reset); |
|
1814 | + $this->addStatAircraft($number['aircraft_icao'], $number['aircraft_icao_count'], $number['aircraft_name'], $number['aircraft_manufacturer'], $number['airline_icao'], '', $reset); |
|
1815 | 1815 | } |
1816 | 1816 | if ($globalDebug) echo 'Count all aircraft registrations by airlines...'."\n"; |
1817 | - $alldata = $Spotter->countAllAircraftRegistrationsByAirlines(false,0,$last_update_day); |
|
1817 | + $alldata = $Spotter->countAllAircraftRegistrationsByAirlines(false, 0, $last_update_day); |
|
1818 | 1818 | foreach ($alldata as $number) { |
1819 | - $this->addStatAircraftRegistration($number['registration'],$number['aircraft_registration_count'],$number['aircraft_icao'],$number['airline_icao'],'',$reset); |
|
1819 | + $this->addStatAircraftRegistration($number['registration'], $number['aircraft_registration_count'], $number['aircraft_icao'], $number['airline_icao'], '', $reset); |
|
1820 | 1820 | } |
1821 | 1821 | if ($globalDebug) echo 'Count all callsigns by airlines...'."\n"; |
1822 | - $alldata = $Spotter->countAllCallsignsByAirlines(false,0,$last_update_day); |
|
1822 | + $alldata = $Spotter->countAllCallsignsByAirlines(false, 0, $last_update_day); |
|
1823 | 1823 | foreach ($alldata as $number) { |
1824 | - $this->addStatCallsign($number['callsign_icao'],$number['callsign_icao_count'],$number['airline_icao'],'',$reset); |
|
1824 | + $this->addStatCallsign($number['callsign_icao'], $number['callsign_icao_count'], $number['airline_icao'], '', $reset); |
|
1825 | 1825 | } |
1826 | 1826 | if ($globalDebug) echo 'Count all owners by airlines...'."\n"; |
1827 | - $alldata = $Spotter->countAllOwnersByAirlines(false,0,$last_update_day); |
|
1827 | + $alldata = $Spotter->countAllOwnersByAirlines(false, 0, $last_update_day); |
|
1828 | 1828 | foreach ($alldata as $number) { |
1829 | - $this->addStatOwner($number['owner_name'],$number['owner_count'],$number['airline_icao'],'',$reset); |
|
1829 | + $this->addStatOwner($number['owner_name'], $number['owner_count'], $number['airline_icao'], '', $reset); |
|
1830 | 1830 | } |
1831 | 1831 | if ($globalDebug) echo 'Count all pilots by airlines...'."\n"; |
1832 | - $alldata = $Spotter->countAllPilotsByAirlines(false,0,$last_update_day); |
|
1832 | + $alldata = $Spotter->countAllPilotsByAirlines(false, 0, $last_update_day); |
|
1833 | 1833 | foreach ($alldata as $number) { |
1834 | - $this->addStatPilot($number['pilot_id'],$number['pilot_count'],$number['pilot_name'],$number['airline_icao'],'',$number['format_source'],$reset); |
|
1834 | + $this->addStatPilot($number['pilot_id'], $number['pilot_count'], $number['pilot_name'], $number['airline_icao'], '', $number['format_source'], $reset); |
|
1835 | 1835 | } |
1836 | 1836 | if ($globalDebug) echo 'Count all departure airports by airlines...'."\n"; |
1837 | - $pall = $Spotter->countAllDepartureAirportsByAirlines(false,0,$last_update_day); |
|
1837 | + $pall = $Spotter->countAllDepartureAirportsByAirlines(false, 0, $last_update_day); |
|
1838 | 1838 | if ($globalDebug) echo 'Count all detected departure airports by airlines...'."\n"; |
1839 | - $dall = $Spotter->countAllDetectedDepartureAirportsByAirlines(false,0,$last_update_day); |
|
1839 | + $dall = $Spotter->countAllDetectedDepartureAirportsByAirlines(false, 0, $last_update_day); |
|
1840 | 1840 | if ($globalDebug) echo 'Order detected departure airports by airlines...'."\n"; |
1841 | 1841 | //$alldata = array(); |
1842 | 1842 | foreach ($dall as $value) { |
@@ -1856,12 +1856,12 @@ discard block |
||
1856 | 1856 | } |
1857 | 1857 | $alldata = $pall; |
1858 | 1858 | foreach ($alldata as $number) { |
1859 | - echo $this->addStatDepartureAirports($number['airport_departure_icao'],$number['airport_departure_name'],$number['airport_departure_city'],$number['airport_departure_country'],$number['airport_departure_icao_count'],$number['airline_icao'],'',$reset); |
|
1859 | + echo $this->addStatDepartureAirports($number['airport_departure_icao'], $number['airport_departure_name'], $number['airport_departure_city'], $number['airport_departure_country'], $number['airport_departure_icao_count'], $number['airline_icao'], '', $reset); |
|
1860 | 1860 | } |
1861 | 1861 | if ($globalDebug) echo 'Count all arrival airports by airlines...'."\n"; |
1862 | - $pall = $Spotter->countAllArrivalAirportsByAirlines(false,0,$last_update_day); |
|
1862 | + $pall = $Spotter->countAllArrivalAirportsByAirlines(false, 0, $last_update_day); |
|
1863 | 1863 | if ($globalDebug) echo 'Count all detected arrival airports by airlines...'."\n"; |
1864 | - $dall = $Spotter->countAllDetectedArrivalAirportsByAirlines(false,0,$last_update_day); |
|
1864 | + $dall = $Spotter->countAllDetectedArrivalAirportsByAirlines(false, 0, $last_update_day); |
|
1865 | 1865 | if ($globalDebug) echo 'Order arrival airports by airlines...'."\n"; |
1866 | 1866 | //$alldata = array(); |
1867 | 1867 | foreach ($dall as $value) { |
@@ -1881,7 +1881,7 @@ discard block |
||
1881 | 1881 | } |
1882 | 1882 | $alldata = $pall; |
1883 | 1883 | foreach ($alldata as $number) { |
1884 | - if ($number['airline_icao'] != '') echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],$number['airline_icao'],'',$reset); |
|
1884 | + if ($number['airline_icao'] != '') echo $this->addStatArrivalAirports($number['airport_arrival_icao'], $number['airport_arrival_name'], $number['airport_arrival_city'], $number['airport_arrival_country'], $number['airport_arrival_icao_count'], $number['airline_icao'], '', $reset); |
|
1885 | 1885 | } |
1886 | 1886 | if ($globalDebug) echo 'Count all flights by months by airlines...'."\n"; |
1887 | 1887 | $Spotter = new Spotter($this->db); |
@@ -1889,27 +1889,27 @@ discard block |
||
1889 | 1889 | $lastyear = false; |
1890 | 1890 | foreach ($alldata as $number) { |
1891 | 1891 | if ($number['year_name'] != date('Y')) $lastyear = true; |
1892 | - $this->addStat('flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']); |
|
1892 | + $this->addStat('flights_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name'])), $number['airline_icao']); |
|
1893 | 1893 | } |
1894 | 1894 | if ($globalDebug) echo 'Count all owners by months by airlines...'."\n"; |
1895 | 1895 | $alldata = $Spotter->countAllMonthsOwnersByAirlines(); |
1896 | 1896 | foreach ($alldata as $number) { |
1897 | - $this->addStat('owners_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']); |
|
1897 | + $this->addStat('owners_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name'])), $number['airline_icao']); |
|
1898 | 1898 | } |
1899 | 1899 | if ($globalDebug) echo 'Count all pilots by months by airlines...'."\n"; |
1900 | 1900 | $alldata = $Spotter->countAllMonthsPilotsByAirlines(); |
1901 | 1901 | foreach ($alldata as $number) { |
1902 | - $this->addStat('pilots_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']); |
|
1902 | + $this->addStat('pilots_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name'])), $number['airline_icao']); |
|
1903 | 1903 | } |
1904 | 1904 | if ($globalDebug) echo 'Count all aircrafts by months by airlines...'."\n"; |
1905 | 1905 | $alldata = $Spotter->countAllMonthsAircraftsByAirlines(); |
1906 | 1906 | foreach ($alldata as $number) { |
1907 | - $this->addStat('aircrafts_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']); |
|
1907 | + $this->addStat('aircrafts_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name'])), $number['airline_icao']); |
|
1908 | 1908 | } |
1909 | 1909 | if ($globalDebug) echo 'Count all real arrivals by months by airlines...'."\n"; |
1910 | 1910 | $alldata = $Spotter->countAllMonthsRealArrivalsByAirlines(); |
1911 | 1911 | foreach ($alldata as $number) { |
1912 | - $this->addStat('realarrivals_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']); |
|
1912 | + $this->addStat('realarrivals_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name'])), $number['airline_icao']); |
|
1913 | 1913 | } |
1914 | 1914 | if ($globalDebug) echo '...Departure'."\n"; |
1915 | 1915 | $pall = $Spotter->getLast7DaysAirportsDepartureByAirlines(); |
@@ -1932,7 +1932,7 @@ discard block |
||
1932 | 1932 | } |
1933 | 1933 | $alldata = $pall; |
1934 | 1934 | foreach ($alldata as $number) { |
1935 | - $this->addStatDepartureAirportsDaily($number['date'],$number['departure_airport_icao'],$number['departure_airport_name'],$number['departure_airport_city'],$number['departure_airport_country'],$number['departure_airport_count'],$number['airline_icao']); |
|
1935 | + $this->addStatDepartureAirportsDaily($number['date'], $number['departure_airport_icao'], $number['departure_airport_name'], $number['departure_airport_city'], $number['departure_airport_country'], $number['departure_airport_count'], $number['airline_icao']); |
|
1936 | 1936 | } |
1937 | 1937 | if ($globalDebug) echo '...Arrival'."\n"; |
1938 | 1938 | $pall = $Spotter->getLast7DaysAirportsArrivalByAirlines(); |
@@ -1955,32 +1955,32 @@ discard block |
||
1955 | 1955 | } |
1956 | 1956 | $alldata = $pall; |
1957 | 1957 | foreach ($alldata as $number) { |
1958 | - $this->addStatArrivalAirportsDaily($number['date'],$number['arrival_airport_icao'],$number['arrival_airport_name'],$number['arrival_airport_city'],$number['arrival_airport_country'],$number['arrival_airport_count'],$number['airline_icao']); |
|
1958 | + $this->addStatArrivalAirportsDaily($number['date'], $number['arrival_airport_icao'], $number['arrival_airport_name'], $number['arrival_airport_city'], $number['arrival_airport_country'], $number['arrival_airport_count'], $number['airline_icao']); |
|
1959 | 1959 | } |
1960 | 1960 | |
1961 | 1961 | if ($globalDebug) echo 'Flights data...'."\n"; |
1962 | 1962 | if ($globalDebug) echo '-> countAllDatesLastMonth...'."\n"; |
1963 | 1963 | $alldata = $Spotter->countAllDatesLastMonthByAirlines(); |
1964 | 1964 | foreach ($alldata as $number) { |
1965 | - $this->addStatFlight('month',$number['date_name'],$number['date_count'], $number['airline_icao']); |
|
1965 | + $this->addStatFlight('month', $number['date_name'], $number['date_count'], $number['airline_icao']); |
|
1966 | 1966 | } |
1967 | 1967 | if ($globalDebug) echo '-> countAllDates...'."\n"; |
1968 | 1968 | //$previousdata = $this->countAllDatesByAirlines(); |
1969 | - $alldata = $Common->array_merge_noappend($previousdatabyairlines,$Spotter->countAllDatesByAirlines()); |
|
1969 | + $alldata = $Common->array_merge_noappend($previousdatabyairlines, $Spotter->countAllDatesByAirlines()); |
|
1970 | 1970 | $values = array(); |
1971 | 1971 | foreach ($alldata as $cnt) { |
1972 | 1972 | $values[] = $cnt['date_count']; |
1973 | 1973 | } |
1974 | - array_multisort($values,SORT_DESC,$alldata); |
|
1975 | - array_splice($alldata,11); |
|
1974 | + array_multisort($values, SORT_DESC, $alldata); |
|
1975 | + array_splice($alldata, 11); |
|
1976 | 1976 | foreach ($alldata as $number) { |
1977 | - $this->addStatFlight('date',$number['date_name'],$number['date_count'],$number['airline_icao']); |
|
1977 | + $this->addStatFlight('date', $number['date_name'], $number['date_count'], $number['airline_icao']); |
|
1978 | 1978 | } |
1979 | 1979 | |
1980 | 1980 | if ($globalDebug) echo '-> countAllHours...'."\n"; |
1981 | 1981 | $alldata = $Spotter->countAllHoursByAirlines('hour'); |
1982 | 1982 | foreach ($alldata as $number) { |
1983 | - $this->addStatFlight('hour',$number['hour_name'],$number['hour_count'],$number['airline_icao']); |
|
1983 | + $this->addStatFlight('hour', $number['hour_name'], $number['hour_count'], $number['airline_icao']); |
|
1984 | 1984 | } |
1985 | 1985 | |
1986 | 1986 | |
@@ -2004,7 +2004,7 @@ discard block |
||
2004 | 2004 | $last_update_day = date('Y').'-01-01 00:00:00'; |
2005 | 2005 | } |
2006 | 2006 | } |
2007 | - if (isset($filter['DeleteLastYearStats']) && date('Y',strtotime($last_update_day)) != date('Y')) { |
|
2007 | + if (isset($filter['DeleteLastYearStats']) && date('Y', strtotime($last_update_day)) != date('Y')) { |
|
2008 | 2008 | $last_update_day = date('Y').'-01-01 00:00:00'; |
2009 | 2009 | $reset = true; |
2010 | 2010 | } |
@@ -2013,32 +2013,32 @@ discard block |
||
2013 | 2013 | // Count by filter |
2014 | 2014 | if ($globalDebug) echo '--- Stats for filter '.$filter_name.' ---'."\n"; |
2015 | 2015 | $Spotter = new Spotter($this->db); |
2016 | - $alldata = $Spotter->countAllAircraftTypes(false,0,$last_update_day,$filter); |
|
2016 | + $alldata = $Spotter->countAllAircraftTypes(false, 0, $last_update_day, $filter); |
|
2017 | 2017 | foreach ($alldata as $number) { |
2018 | - $this->addStatAircraft($number['aircraft_icao'],$number['aircraft_icao_count'],$number['aircraft_name'],$number['aircraft_manufacturer'],'',$filter_name,$reset); |
|
2018 | + $this->addStatAircraft($number['aircraft_icao'], $number['aircraft_icao_count'], $number['aircraft_name'], $number['aircraft_manufacturer'], '', $filter_name, $reset); |
|
2019 | 2019 | } |
2020 | - $alldata = $Spotter->countAllAirlines(false,0,$last_update_day,$filter); |
|
2020 | + $alldata = $Spotter->countAllAirlines(false, 0, $last_update_day, $filter); |
|
2021 | 2021 | foreach ($alldata as $number) { |
2022 | - $this->addStatAirline($number['airline_icao'],$number['airline_count'],$number['airline_name'],$filter_name,$reset); |
|
2022 | + $this->addStatAirline($number['airline_icao'], $number['airline_count'], $number['airline_name'], $filter_name, $reset); |
|
2023 | 2023 | } |
2024 | - $alldata = $Spotter->countAllAircraftRegistrations(false,0,$last_update_day,$filter); |
|
2024 | + $alldata = $Spotter->countAllAircraftRegistrations(false, 0, $last_update_day, $filter); |
|
2025 | 2025 | foreach ($alldata as $number) { |
2026 | - $this->addStatAircraftRegistration($number['registration'],$number['aircraft_registration_count'],$number['aircraft_icao'],'',$filter_name,$reset); |
|
2026 | + $this->addStatAircraftRegistration($number['registration'], $number['aircraft_registration_count'], $number['aircraft_icao'], '', $filter_name, $reset); |
|
2027 | 2027 | } |
2028 | - $alldata = $Spotter->countAllCallsigns(false,0,$last_update_day,$filter); |
|
2028 | + $alldata = $Spotter->countAllCallsigns(false, 0, $last_update_day, $filter); |
|
2029 | 2029 | foreach ($alldata as $number) { |
2030 | - $this->addStatCallsign($number['callsign_icao'],$number['callsign_icao_count'],'',$filter_name,$reset); |
|
2030 | + $this->addStatCallsign($number['callsign_icao'], $number['callsign_icao_count'], '', $filter_name, $reset); |
|
2031 | 2031 | } |
2032 | - $alldata = $Spotter->countAllOwners(false,0,$last_update_day,$filter); |
|
2032 | + $alldata = $Spotter->countAllOwners(false, 0, $last_update_day, $filter); |
|
2033 | 2033 | foreach ($alldata as $number) { |
2034 | - $this->addStatOwner($number['owner_name'],$number['owner_count'],'',$filter_name,$reset); |
|
2034 | + $this->addStatOwner($number['owner_name'], $number['owner_count'], '', $filter_name, $reset); |
|
2035 | 2035 | } |
2036 | - $alldata = $Spotter->countAllPilots(false,0,$last_update_day,$filter); |
|
2036 | + $alldata = $Spotter->countAllPilots(false, 0, $last_update_day, $filter); |
|
2037 | 2037 | foreach ($alldata as $number) { |
2038 | - $this->addStatPilot($number['pilot_id'],$number['pilot_count'],$number['pilot_name'],'',$filter_name,$number['format_source'],$reset); |
|
2038 | + $this->addStatPilot($number['pilot_id'], $number['pilot_count'], $number['pilot_name'], '', $filter_name, $number['format_source'], $reset); |
|
2039 | 2039 | } |
2040 | - $pall = $Spotter->countAllDepartureAirports(false,0,$last_update_day,$filter); |
|
2041 | - $dall = $Spotter->countAllDetectedDepartureAirports(false,0,$last_update_day,$filter); |
|
2040 | + $pall = $Spotter->countAllDepartureAirports(false, 0, $last_update_day, $filter); |
|
2041 | + $dall = $Spotter->countAllDetectedDepartureAirports(false, 0, $last_update_day, $filter); |
|
2042 | 2042 | $alldata = array(); |
2043 | 2043 | foreach ($pall as $value) { |
2044 | 2044 | $icao = $value['airport_departure_icao']; |
@@ -2054,12 +2054,12 @@ discard block |
||
2054 | 2054 | foreach ($alldata as $key => $row) { |
2055 | 2055 | $count[$key] = $row['airport_departure_icao_count']; |
2056 | 2056 | } |
2057 | - array_multisort($count,SORT_DESC,$alldata); |
|
2057 | + array_multisort($count, SORT_DESC, $alldata); |
|
2058 | 2058 | foreach ($alldata as $number) { |
2059 | - echo $this->addStatDepartureAirports($number['airport_departure_icao'],$number['airport_departure_name'],$number['airport_departure_city'],$number['airport_departure_country'],$number['airport_departure_icao_count'],'',$filter_name,$reset); |
|
2059 | + echo $this->addStatDepartureAirports($number['airport_departure_icao'], $number['airport_departure_name'], $number['airport_departure_city'], $number['airport_departure_country'], $number['airport_departure_icao_count'], '', $filter_name, $reset); |
|
2060 | 2060 | } |
2061 | - $pall = $Spotter->countAllArrivalAirports(false,0,$last_update_day,false,$filter); |
|
2062 | - $dall = $Spotter->countAllDetectedArrivalAirports(false,0,$last_update_day,false,$filter); |
|
2061 | + $pall = $Spotter->countAllArrivalAirports(false, 0, $last_update_day, false, $filter); |
|
2062 | + $dall = $Spotter->countAllDetectedArrivalAirports(false, 0, $last_update_day, false, $filter); |
|
2063 | 2063 | $alldata = array(); |
2064 | 2064 | foreach ($pall as $value) { |
2065 | 2065 | $icao = $value['airport_arrival_icao']; |
@@ -2075,40 +2075,40 @@ discard block |
||
2075 | 2075 | foreach ($alldata as $key => $row) { |
2076 | 2076 | $count[$key] = $row['airport_arrival_icao_count']; |
2077 | 2077 | } |
2078 | - array_multisort($count,SORT_DESC,$alldata); |
|
2078 | + array_multisort($count, SORT_DESC, $alldata); |
|
2079 | 2079 | foreach ($alldata as $number) { |
2080 | - echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],'',$filter_name,$reset); |
|
2080 | + echo $this->addStatArrivalAirports($number['airport_arrival_icao'], $number['airport_arrival_name'], $number['airport_arrival_city'], $number['airport_arrival_country'], $number['airport_arrival_icao_count'], '', $filter_name, $reset); |
|
2081 | 2081 | } |
2082 | 2082 | $Spotter = new Spotter($this->db); |
2083 | 2083 | $alldata = $Spotter->countAllMonths($filter); |
2084 | 2084 | $lastyear = false; |
2085 | 2085 | foreach ($alldata as $number) { |
2086 | 2086 | if ($number['year_name'] != date('Y')) $lastyear = true; |
2087 | - $this->addStat('flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),'',$filter_name); |
|
2087 | + $this->addStat('flights_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name'])), '', $filter_name); |
|
2088 | 2088 | } |
2089 | 2089 | $alldata = $Spotter->countAllMonthsOwners($filter); |
2090 | 2090 | foreach ($alldata as $number) { |
2091 | - $this->addStat('owners_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),'',$filter_name); |
|
2091 | + $this->addStat('owners_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name'])), '', $filter_name); |
|
2092 | 2092 | } |
2093 | 2093 | $alldata = $Spotter->countAllMonthsPilots($filter); |
2094 | 2094 | foreach ($alldata as $number) { |
2095 | - $this->addStat('pilots_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),'',$filter_name); |
|
2095 | + $this->addStat('pilots_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name'])), '', $filter_name); |
|
2096 | 2096 | } |
2097 | 2097 | $alldata = $Spotter->countAllMilitaryMonths($filter); |
2098 | 2098 | foreach ($alldata as $number) { |
2099 | - $this->addStat('military_flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),'',$filter_name); |
|
2099 | + $this->addStat('military_flights_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name'])), '', $filter_name); |
|
2100 | 2100 | } |
2101 | 2101 | $alldata = $Spotter->countAllMonthsAircrafts($filter); |
2102 | 2102 | foreach ($alldata as $number) { |
2103 | - $this->addStat('aircrafts_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),'',$filter_name); |
|
2103 | + $this->addStat('aircrafts_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name'])), '', $filter_name); |
|
2104 | 2104 | } |
2105 | 2105 | $alldata = $Spotter->countAllMonthsRealArrivals($filter); |
2106 | 2106 | foreach ($alldata as $number) { |
2107 | - $this->addStat('realarrivals_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),'',$filter_name); |
|
2107 | + $this->addStat('realarrivals_bymonth', $number['date_count'], date('Y-m-d H:i:s', mktime(0, 0, 0, $number['month_name'], 1, $number['year_name'])), '', $filter_name); |
|
2108 | 2108 | } |
2109 | 2109 | echo '...Departure'."\n"; |
2110 | - $pall = $Spotter->getLast7DaysAirportsDeparture('',$filter); |
|
2111 | - $dall = $Spotter->getLast7DaysDetectedAirportsDeparture('',$filter); |
|
2110 | + $pall = $Spotter->getLast7DaysAirportsDeparture('', $filter); |
|
2111 | + $dall = $Spotter->getLast7DaysDetectedAirportsDeparture('', $filter); |
|
2112 | 2112 | foreach ($dall as $value) { |
2113 | 2113 | $icao = $value['departure_airport_icao']; |
2114 | 2114 | $ddate = $value['date']; |
@@ -2126,11 +2126,11 @@ discard block |
||
2126 | 2126 | } |
2127 | 2127 | $alldata = $pall; |
2128 | 2128 | foreach ($alldata as $number) { |
2129 | - $this->addStatDepartureAirportsDaily($number['date'],$number['departure_airport_icao'],$number['departure_airport_name'],$number['departure_airport_city'],$number['departure_airport_country'],$number['departure_airport_count'],'',$filter_name); |
|
2129 | + $this->addStatDepartureAirportsDaily($number['date'], $number['departure_airport_icao'], $number['departure_airport_name'], $number['departure_airport_city'], $number['departure_airport_country'], $number['departure_airport_count'], '', $filter_name); |
|
2130 | 2130 | } |
2131 | 2131 | echo '...Arrival'."\n"; |
2132 | - $pall = $Spotter->getLast7DaysAirportsArrival('',$filter); |
|
2133 | - $dall = $Spotter->getLast7DaysDetectedAirportsArrival('',$filter); |
|
2132 | + $pall = $Spotter->getLast7DaysAirportsArrival('', $filter); |
|
2133 | + $dall = $Spotter->getLast7DaysDetectedAirportsArrival('', $filter); |
|
2134 | 2134 | foreach ($dall as $value) { |
2135 | 2135 | $icao = $value['arrival_airport_icao']; |
2136 | 2136 | $ddate = $value['date']; |
@@ -2148,40 +2148,40 @@ discard block |
||
2148 | 2148 | } |
2149 | 2149 | $alldata = $pall; |
2150 | 2150 | foreach ($alldata as $number) { |
2151 | - $this->addStatArrivalAirportsDaily($number['date'],$number['arrival_airport_icao'],$number['arrival_airport_name'],$number['arrival_airport_city'],$number['arrival_airport_country'],$number['arrival_airport_count'],'',$filter_name); |
|
2151 | + $this->addStatArrivalAirportsDaily($number['date'], $number['arrival_airport_icao'], $number['arrival_airport_name'], $number['arrival_airport_city'], $number['arrival_airport_country'], $number['arrival_airport_count'], '', $filter_name); |
|
2152 | 2152 | } |
2153 | 2153 | |
2154 | 2154 | echo 'Flights data...'."\n"; |
2155 | 2155 | echo '-> countAllDatesLastMonth...'."\n"; |
2156 | 2156 | $alldata = $Spotter->countAllDatesLastMonth($filter); |
2157 | 2157 | foreach ($alldata as $number) { |
2158 | - $this->addStatFlight('month',$number['date_name'],$number['date_count'], '',$filter_name); |
|
2158 | + $this->addStatFlight('month', $number['date_name'], $number['date_count'], '', $filter_name); |
|
2159 | 2159 | } |
2160 | 2160 | echo '-> countAllDates...'."\n"; |
2161 | - $previousdata = $this->countAllDates('',$filter_name); |
|
2162 | - $alldata = $Common->array_merge_noappend($previousdata,$Spotter->countAllDates($filter)); |
|
2161 | + $previousdata = $this->countAllDates('', $filter_name); |
|
2162 | + $alldata = $Common->array_merge_noappend($previousdata, $Spotter->countAllDates($filter)); |
|
2163 | 2163 | $values = array(); |
2164 | 2164 | foreach ($alldata as $cnt) { |
2165 | 2165 | $values[] = $cnt['date_count']; |
2166 | 2166 | } |
2167 | - array_multisort($values,SORT_DESC,$alldata); |
|
2168 | - array_splice($alldata,11); |
|
2167 | + array_multisort($values, SORT_DESC, $alldata); |
|
2168 | + array_splice($alldata, 11); |
|
2169 | 2169 | foreach ($alldata as $number) { |
2170 | - $this->addStatFlight('date',$number['date_name'],$number['date_count'],'',$filter_name); |
|
2170 | + $this->addStatFlight('date', $number['date_name'], $number['date_count'], '', $filter_name); |
|
2171 | 2171 | } |
2172 | 2172 | |
2173 | 2173 | echo '-> countAllHours...'."\n"; |
2174 | - $alldata = $Spotter->countAllHours('hour',$filter); |
|
2174 | + $alldata = $Spotter->countAllHours('hour', $filter); |
|
2175 | 2175 | foreach ($alldata as $number) { |
2176 | - $this->addStatFlight('hour',$number['hour_name'],$number['hour_count'],'',$filter_name); |
|
2176 | + $this->addStatFlight('hour', $number['hour_name'], $number['hour_count'], '', $filter_name); |
|
2177 | 2177 | } |
2178 | 2178 | echo 'Insert last stats update date...'."\n"; |
2179 | 2179 | date_default_timezone_set('UTC'); |
2180 | - $this->addLastStatsUpdate('last_update_stats_'.$filter_name,date('Y-m-d G:i:s')); |
|
2180 | + $this->addLastStatsUpdate('last_update_stats_'.$filter_name, date('Y-m-d G:i:s')); |
|
2181 | 2181 | if (isset($filter['DeleteLastYearStats']) && $filter['DeleteLastYearStats'] == true) { |
2182 | - if (date('Y',strtotime($last_update_day)) != date('Y')) { |
|
2182 | + if (date('Y', strtotime($last_update_day)) != date('Y')) { |
|
2183 | 2183 | $this->deleteOldStats($filter_name); |
2184 | - $this->addLastStatsUpdate('last_update_stats_'.$filter_name,date('Y').'-01-01 00:00:00'); |
|
2184 | + $this->addLastStatsUpdate('last_update_stats_'.$filter_name, date('Y').'-01-01 00:00:00'); |
|
2185 | 2185 | } |
2186 | 2186 | } |
2187 | 2187 | |
@@ -2194,16 +2194,16 @@ discard block |
||
2194 | 2194 | // SUM all previous month to put as year |
2195 | 2195 | $previous_year = date('Y'); |
2196 | 2196 | $previous_year--; |
2197 | - $this->addStat('aircrafts_byyear',$this->getSumStats('aircrafts_bymonth',$previous_year),$previous_year.'-01-01 00:00:00'); |
|
2198 | - $this->addStat('airlines_byyear',$this->getSumStats('airlines_bymonth',$previous_year),$previous_year.'-01-01 00:00:00'); |
|
2199 | - $this->addStat('owner_byyear',$this->getSumStats('owner_bymonth',$previous_year),$previous_year.'-01-01 00:00:00'); |
|
2200 | - $this->addStat('pilot_byyear',$this->getSumStats('pilot_bymonth',$previous_year),$previous_year.'-01-01 00:00:00'); |
|
2197 | + $this->addStat('aircrafts_byyear', $this->getSumStats('aircrafts_bymonth', $previous_year), $previous_year.'-01-01 00:00:00'); |
|
2198 | + $this->addStat('airlines_byyear', $this->getSumStats('airlines_bymonth', $previous_year), $previous_year.'-01-01 00:00:00'); |
|
2199 | + $this->addStat('owner_byyear', $this->getSumStats('owner_bymonth', $previous_year), $previous_year.'-01-01 00:00:00'); |
|
2200 | + $this->addStat('pilot_byyear', $this->getSumStats('pilot_bymonth', $previous_year), $previous_year.'-01-01 00:00:00'); |
|
2201 | 2201 | $allairlines = $this->getAllAirlineNames(); |
2202 | 2202 | foreach ($allairlines as $data) { |
2203 | - $this->addStat('aircrafts_byyear',$this->getSumStats('aircrafts_bymonth',$previous_year,$data['airline_icao']),$previous_year.'-01-01 00:00:00',$data['airline_icao']); |
|
2204 | - $this->addStat('airlines_byyear',$this->getSumStats('airlines_bymonth',$previous_year,$data['airline_icao']),$previous_year.'-01-01 00:00:00',$data['airline_icao']); |
|
2205 | - $this->addStat('owner_byyear',$this->getSumStats('owner_bymonth',$previous_year,$data['airline_icao']),$previous_year.'-01-01 00:00:00',$data['airline_icao']); |
|
2206 | - $this->addStat('pilot_byyear',$this->getSumStats('pilot_bymonth',$previous_year,$data['airline_icao']),$previous_year.'-01-01 00:00:00',$data['airline_icao']); |
|
2203 | + $this->addStat('aircrafts_byyear', $this->getSumStats('aircrafts_bymonth', $previous_year, $data['airline_icao']), $previous_year.'-01-01 00:00:00', $data['airline_icao']); |
|
2204 | + $this->addStat('airlines_byyear', $this->getSumStats('airlines_bymonth', $previous_year, $data['airline_icao']), $previous_year.'-01-01 00:00:00', $data['airline_icao']); |
|
2205 | + $this->addStat('owner_byyear', $this->getSumStats('owner_bymonth', $previous_year, $data['airline_icao']), $previous_year.'-01-01 00:00:00', $data['airline_icao']); |
|
2206 | + $this->addStat('pilot_byyear', $this->getSumStats('pilot_bymonth', $previous_year, $data['airline_icao']), $previous_year.'-01-01 00:00:00', $data['airline_icao']); |
|
2207 | 2207 | } |
2208 | 2208 | |
2209 | 2209 | if (isset($globalArchiveYear) && $globalArchiveYear) { |
@@ -2212,7 +2212,7 @@ discard block |
||
2212 | 2212 | try { |
2213 | 2213 | $sth = $this->db->prepare($query); |
2214 | 2214 | $sth->execute(); |
2215 | - } catch(PDOException $e) { |
|
2215 | + } catch (PDOException $e) { |
|
2216 | 2216 | return "error : ".$e->getMessage().' - query : '.$query."\n"; |
2217 | 2217 | } |
2218 | 2218 | } |
@@ -2221,15 +2221,15 @@ discard block |
||
2221 | 2221 | try { |
2222 | 2222 | $sth = $this->db->prepare($query); |
2223 | 2223 | $sth->execute(); |
2224 | - } catch(PDOException $e) { |
|
2224 | + } catch (PDOException $e) { |
|
2225 | 2225 | return "error : ".$e->getMessage().' - query : '.$query."\n"; |
2226 | 2226 | } |
2227 | 2227 | } |
2228 | 2228 | if (isset($globalDeleteLastYearStats) && $globalDeleteLastYearStats) { |
2229 | 2229 | $last_update = $this->getLastStatsUpdate('last_update_stats'); |
2230 | - if (date('Y',strtotime($last_update[0]['value'])) != date('Y')) { |
|
2230 | + if (date('Y', strtotime($last_update[0]['value'])) != date('Y')) { |
|
2231 | 2231 | $this->deleteOldStats(); |
2232 | - $this->addLastStatsUpdate('last_update_stats',date('Y').'-01-01 00:00:00'); |
|
2232 | + $this->addLastStatsUpdate('last_update_stats', date('Y').'-01-01 00:00:00'); |
|
2233 | 2233 | $lastyearupdate = true; |
2234 | 2234 | } |
2235 | 2235 | } |
@@ -2251,7 +2251,7 @@ discard block |
||
2251 | 2251 | try { |
2252 | 2252 | $sth = $this->db->prepare($query); |
2253 | 2253 | $sth->execute(); |
2254 | - } catch(PDOException $e) { |
|
2254 | + } catch (PDOException $e) { |
|
2255 | 2255 | return "error : ".$e->getMessage(); |
2256 | 2256 | } |
2257 | 2257 | } |
@@ -2265,14 +2265,14 @@ discard block |
||
2265 | 2265 | try { |
2266 | 2266 | $sth = $this->db->prepare($query); |
2267 | 2267 | $sth->execute(); |
2268 | - } catch(PDOException $e) { |
|
2268 | + } catch (PDOException $e) { |
|
2269 | 2269 | return "error : ".$e->getMessage(); |
2270 | 2270 | } |
2271 | 2271 | } |
2272 | 2272 | if (!isset($lastyearupdate)) { |
2273 | 2273 | echo 'Insert last stats update date...'."\n"; |
2274 | 2274 | date_default_timezone_set('UTC'); |
2275 | - $this->addLastStatsUpdate('last_update_stats',date('Y-m-d G:i:s')); |
|
2275 | + $this->addLastStatsUpdate('last_update_stats', date('Y-m-d G:i:s')); |
|
2276 | 2276 | } |
2277 | 2277 | if ($globalStatsResetYear) { |
2278 | 2278 | require_once(dirname(__FILE__).'/../install/class.settings.php'); |
@@ -13,7 +13,9 @@ discard block |
||
13 | 13 | |
14 | 14 | public function __construct($dbc = null) { |
15 | 15 | global $globalFilterName; |
16 | - if (isset($globalFilterName)) $this->filter_name = $globalFilterName; |
|
16 | + if (isset($globalFilterName)) { |
|
17 | + $this->filter_name = $globalFilterName; |
|
18 | + } |
|
17 | 19 | $Connection = new Connection($dbc); |
18 | 20 | $this->db = $Connection->db(); |
19 | 21 | } |
@@ -81,7 +83,9 @@ discard block |
||
81 | 83 | } |
82 | 84 | } |
83 | 85 | public function getAllAirlineNames($filter_name = '') { |
84 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
86 | + if ($filter_name == '') { |
|
87 | + $filter_name = $this->filter_name; |
|
88 | + } |
|
85 | 89 | $query = "SELECT * FROM stats_airline WHERE filter_name = :filter_name ORDER BY airline_name ASC"; |
86 | 90 | try { |
87 | 91 | $sth = $this->db->prepare($query); |
@@ -93,7 +97,9 @@ discard block |
||
93 | 97 | return $all; |
94 | 98 | } |
95 | 99 | public function getAllAircraftTypes($stats_airline = '',$filter_name = '') { |
96 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
100 | + if ($filter_name == '') { |
|
101 | + $filter_name = $this->filter_name; |
|
102 | + } |
|
97 | 103 | $query = "SELECT * FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_manufacturer ASC"; |
98 | 104 | try { |
99 | 105 | $sth = $this->db->prepare($query); |
@@ -105,7 +111,9 @@ discard block |
||
105 | 111 | return $all; |
106 | 112 | } |
107 | 113 | public function getAllManufacturers($stats_airline = '',$filter_name = '') { |
108 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
114 | + if ($filter_name == '') { |
|
115 | + $filter_name = $this->filter_name; |
|
116 | + } |
|
109 | 117 | $query = "SELECT DISTINCT(aircraft_manufacturer) FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name AND aircraft_manufacturer <> '' ORDER BY aircraft_manufacturer ASC"; |
110 | 118 | try { |
111 | 119 | $sth = $this->db->prepare($query); |
@@ -117,7 +125,9 @@ discard block |
||
117 | 125 | return $all; |
118 | 126 | } |
119 | 127 | public function getAllAirportNames($stats_airline = '',$filter_name = '') { |
120 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
128 | + if ($filter_name == '') { |
|
129 | + $filter_name = $this->filter_name; |
|
130 | + } |
|
121 | 131 | $query = "SELECT airport_icao, airport_name,airport_city,airport_country FROM stats_airport WHERE stats_airline = :stats_airline AND filter_name = :filter_name AND stats_type = 'daily' GROUP BY airport_icao,airport_name,airport_city,airport_country ORDER BY airport_city ASC"; |
122 | 132 | try { |
123 | 133 | $sth = $this->db->prepare($query); |
@@ -130,7 +140,9 @@ discard block |
||
130 | 140 | } |
131 | 141 | |
132 | 142 | public function getAllOwnerNames($stats_airline = '',$filter_name = '') { |
133 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
143 | + if ($filter_name == '') { |
|
144 | + $filter_name = $this->filter_name; |
|
145 | + } |
|
134 | 146 | $query = "SELECT owner_name FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_name ASC"; |
135 | 147 | try { |
136 | 148 | $sth = $this->db->prepare($query); |
@@ -143,7 +155,9 @@ discard block |
||
143 | 155 | } |
144 | 156 | |
145 | 157 | public function getAllPilotNames($stats_airline = '',$filter_name = '') { |
146 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
158 | + if ($filter_name == '') { |
|
159 | + $filter_name = $this->filter_name; |
|
160 | + } |
|
147 | 161 | $query = "SELECT pilot_id,pilot_name FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_name ASC"; |
148 | 162 | try { |
149 | 163 | $sth = $this->db->prepare($query); |
@@ -158,10 +172,15 @@ discard block |
||
158 | 172 | |
159 | 173 | public function countAllAircraftTypes($limit = true, $stats_airline = '', $filter_name = '',$year = '', $month = '') { |
160 | 174 | global $globalStatsFilters; |
161 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
175 | + if ($filter_name == '') { |
|
176 | + $filter_name = $this->filter_name; |
|
177 | + } |
|
162 | 178 | if ($year == '' && $month == '') { |
163 | - if ($limit) $query = "SELECT aircraft_icao, cnt AS aircraft_icao_count, aircraft_name, aircraft_manufacturer FROM stats_aircraft WHERE aircraft_name <> '' AND aircraft_icao <> '' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_icao_count DESC LIMIT 10 OFFSET 0"; |
|
164 | - else $query = "SELECT aircraft_icao, cnt AS aircraft_icao_count, aircraft_name, aircraft_manufacturer FROM stats_aircraft WHERE aircraft_name <> '' AND aircraft_icao <> '' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_icao_count DESC"; |
|
179 | + if ($limit) { |
|
180 | + $query = "SELECT aircraft_icao, cnt AS aircraft_icao_count, aircraft_name, aircraft_manufacturer FROM stats_aircraft WHERE aircraft_name <> '' AND aircraft_icao <> '' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_icao_count DESC LIMIT 10 OFFSET 0"; |
|
181 | + } else { |
|
182 | + $query = "SELECT aircraft_icao, cnt AS aircraft_icao_count, aircraft_name, aircraft_manufacturer FROM stats_aircraft WHERE aircraft_name <> '' AND aircraft_icao <> '' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_icao_count DESC"; |
|
183 | + } |
|
165 | 184 | try { |
166 | 185 | $sth = $this->db->prepare($query); |
167 | 186 | $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
@@ -169,7 +188,9 @@ discard block |
||
169 | 188 | echo "error : ".$e->getMessage(); |
170 | 189 | } |
171 | 190 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
172 | - } else $all = array(); |
|
191 | + } else { |
|
192 | + $all = array(); |
|
193 | + } |
|
173 | 194 | if (empty($all)) { |
174 | 195 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
175 | 196 | if ($filter_name != '') { |
@@ -183,10 +204,15 @@ discard block |
||
183 | 204 | } |
184 | 205 | public function countAllAirlineCountries($limit = true,$filter_name = '',$year = '',$month = '') { |
185 | 206 | global $globalStatsFilters; |
186 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
207 | + if ($filter_name == '') { |
|
208 | + $filter_name = $this->filter_name; |
|
209 | + } |
|
187 | 210 | if ($year == '' && $month == '') { |
188 | - if ($limit) $query = "SELECT airlines.country AS airline_country, SUM(stats_airline.cnt) as airline_country_count FROM stats_airline,airlines WHERE stats_airline.airline_icao=airlines.icao AND filter_name = :filter_name GROUP BY airline_country ORDER BY airline_country_count DESC LIMIT 10 OFFSET 0"; |
|
189 | - else $query = "SELECT airlines.country AS airline_country, SUM(stats_airline.cnt) as airline_country_count FROM stats_airline,airlines WHERE stats_airline.airline_icao=airlines.icao AND filter_name = :filter_name GROUP BY airline_country ORDER BY airline_country_count DESC"; |
|
211 | + if ($limit) { |
|
212 | + $query = "SELECT airlines.country AS airline_country, SUM(stats_airline.cnt) as airline_country_count FROM stats_airline,airlines WHERE stats_airline.airline_icao=airlines.icao AND filter_name = :filter_name GROUP BY airline_country ORDER BY airline_country_count DESC LIMIT 10 OFFSET 0"; |
|
213 | + } else { |
|
214 | + $query = "SELECT airlines.country AS airline_country, SUM(stats_airline.cnt) as airline_country_count FROM stats_airline,airlines WHERE stats_airline.airline_icao=airlines.icao AND filter_name = :filter_name GROUP BY airline_country ORDER BY airline_country_count DESC"; |
|
215 | + } |
|
190 | 216 | try { |
191 | 217 | $sth = $this->db->prepare($query); |
192 | 218 | $sth->execute(array(':filter_name' => $filter_name)); |
@@ -194,7 +220,9 @@ discard block |
||
194 | 220 | echo "error : ".$e->getMessage(); |
195 | 221 | } |
196 | 222 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
197 | - } else $all = array(); |
|
223 | + } else { |
|
224 | + $all = array(); |
|
225 | + } |
|
198 | 226 | if (empty($all)) { |
199 | 227 | $Spotter = new Spotter($this->db); |
200 | 228 | $filters = array(); |
@@ -209,10 +237,15 @@ discard block |
||
209 | 237 | } |
210 | 238 | public function countAllAircraftManufacturers($limit = true,$stats_airline = '', $filter_name = '',$year = '', $month = '') { |
211 | 239 | global $globalStatsFilters; |
212 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
240 | + if ($filter_name == '') { |
|
241 | + $filter_name = $this->filter_name; |
|
242 | + } |
|
213 | 243 | if ($year == '' && $month == '') { |
214 | - if ($limit) $query = "SELECT aircraft_manufacturer, SUM(stats_aircraft.cnt) as aircraft_manufacturer_count FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY aircraft_manufacturer ORDER BY aircraft_manufacturer_count DESC LIMIT 10 OFFSET 0"; |
|
215 | - else $query = "SELECT aircraft_manufacturer, SUM(stats_aircraft.cnt) as aircraft_manufacturer_count FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY aircraft_manufacturer ORDER BY aircraft_manufacturer_count DESC"; |
|
244 | + if ($limit) { |
|
245 | + $query = "SELECT aircraft_manufacturer, SUM(stats_aircraft.cnt) as aircraft_manufacturer_count FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY aircraft_manufacturer ORDER BY aircraft_manufacturer_count DESC LIMIT 10 OFFSET 0"; |
|
246 | + } else { |
|
247 | + $query = "SELECT aircraft_manufacturer, SUM(stats_aircraft.cnt) as aircraft_manufacturer_count FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY aircraft_manufacturer ORDER BY aircraft_manufacturer_count DESC"; |
|
248 | + } |
|
216 | 249 | try { |
217 | 250 | $sth = $this->db->prepare($query); |
218 | 251 | $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
@@ -220,7 +253,9 @@ discard block |
||
220 | 253 | echo "error : ".$e->getMessage(); |
221 | 254 | } |
222 | 255 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
223 | - } else $all = array(); |
|
256 | + } else { |
|
257 | + $all = array(); |
|
258 | + } |
|
224 | 259 | if (empty($all)) { |
225 | 260 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
226 | 261 | if ($filter_name != '') { |
@@ -235,10 +270,15 @@ discard block |
||
235 | 270 | |
236 | 271 | public function countAllArrivalCountries($limit = true, $stats_airline = '', $filter_name = '',$year = '', $month = '') { |
237 | 272 | global $globalStatsFilters; |
238 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
273 | + if ($filter_name == '') { |
|
274 | + $filter_name = $this->filter_name; |
|
275 | + } |
|
239 | 276 | if ($year == '' && $month == '') { |
240 | - if ($limit) $query = "SELECT airport_country AS airport_arrival_country, SUM(arrival) as airport_arrival_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_arrival_country ORDER BY airport_arrival_country_count DESC LIMIT 10 OFFSET 0"; |
|
241 | - else $query = "SELECT airport_country AS airport_arrival_country, SUM(arrival) as airport_arrival_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_arrival_country ORDER BY airport_arrival_country_count DESC"; |
|
277 | + if ($limit) { |
|
278 | + $query = "SELECT airport_country AS airport_arrival_country, SUM(arrival) as airport_arrival_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_arrival_country ORDER BY airport_arrival_country_count DESC LIMIT 10 OFFSET 0"; |
|
279 | + } else { |
|
280 | + $query = "SELECT airport_country AS airport_arrival_country, SUM(arrival) as airport_arrival_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_arrival_country ORDER BY airport_arrival_country_count DESC"; |
|
281 | + } |
|
242 | 282 | try { |
243 | 283 | $sth = $this->db->prepare($query); |
244 | 284 | $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
@@ -246,7 +286,9 @@ discard block |
||
246 | 286 | echo "error : ".$e->getMessage(); |
247 | 287 | } |
248 | 288 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
249 | - } else $all = array(); |
|
289 | + } else { |
|
290 | + $all = array(); |
|
291 | + } |
|
250 | 292 | if (empty($all)) { |
251 | 293 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
252 | 294 | if ($filter_name != '') { |
@@ -260,9 +302,14 @@ discard block |
||
260 | 302 | } |
261 | 303 | public function countAllDepartureCountries($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') { |
262 | 304 | global $globalStatsFilters; |
263 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
264 | - if ($limit) $query = "SELECT airport_country AS airport_departure_country, SUM(departure) as airport_departure_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_departure_country ORDER BY airport_departure_country_count DESC LIMIT 10 OFFSET 0"; |
|
265 | - else $query = "SELECT airport_country AS airport_departure_country, SUM(departure) as airport_departure_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_departure_country ORDER BY airport_departure_country_count DESC"; |
|
305 | + if ($filter_name == '') { |
|
306 | + $filter_name = $this->filter_name; |
|
307 | + } |
|
308 | + if ($limit) { |
|
309 | + $query = "SELECT airport_country AS airport_departure_country, SUM(departure) as airport_departure_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_departure_country ORDER BY airport_departure_country_count DESC LIMIT 10 OFFSET 0"; |
|
310 | + } else { |
|
311 | + $query = "SELECT airport_country AS airport_departure_country, SUM(departure) as airport_departure_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_departure_country ORDER BY airport_departure_country_count DESC"; |
|
312 | + } |
|
266 | 313 | try { |
267 | 314 | $sth = $this->db->prepare($query); |
268 | 315 | $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
@@ -284,17 +331,29 @@ discard block |
||
284 | 331 | |
285 | 332 | public function countAllAirlines($limit = true,$filter_name = '',$year = '',$month = '') { |
286 | 333 | global $globalStatsFilters, $globalVATSIM, $globalIVAO; |
287 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
334 | + if ($filter_name == '') { |
|
335 | + $filter_name = $this->filter_name; |
|
336 | + } |
|
288 | 337 | if ($year == '' && $month == '') { |
289 | - if ($globalVATSIM) $forsource = 'vatsim'; |
|
290 | - if ($globalIVAO) $forsource = 'ivao'; |
|
338 | + if ($globalVATSIM) { |
|
339 | + $forsource = 'vatsim'; |
|
340 | + } |
|
341 | + if ($globalIVAO) { |
|
342 | + $forsource = 'ivao'; |
|
343 | + } |
|
291 | 344 | if (isset($forsource)) { |
292 | - if ($limit) $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource = :forsource ORDER BY airline_count DESC LIMIT 10 OFFSET 0"; |
|
293 | - else $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource = :forsource ORDER BY airline_count DESC"; |
|
345 | + if ($limit) { |
|
346 | + $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource = :forsource ORDER BY airline_count DESC LIMIT 10 OFFSET 0"; |
|
347 | + } else { |
|
348 | + $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource = :forsource ORDER BY airline_count DESC"; |
|
349 | + } |
|
294 | 350 | $query_values = array(':filter_name' => $filter_name,':forsource' => $forsource); |
295 | 351 | } else { |
296 | - if ($limit) $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource IS NULL ORDER BY airline_count DESC LIMIT 10 OFFSET 0"; |
|
297 | - else $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource IS NULL ORDER BY airline_count DESC"; |
|
352 | + if ($limit) { |
|
353 | + $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource IS NULL ORDER BY airline_count DESC LIMIT 10 OFFSET 0"; |
|
354 | + } else { |
|
355 | + $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource IS NULL ORDER BY airline_count DESC"; |
|
356 | + } |
|
298 | 357 | $query_values = array(':filter_name' => $filter_name); |
299 | 358 | } |
300 | 359 | try { |
@@ -304,7 +363,9 @@ discard block |
||
304 | 363 | echo "error : ".$e->getMessage(); |
305 | 364 | } |
306 | 365 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
307 | - } else $all = array(); |
|
366 | + } else { |
|
367 | + $all = array(); |
|
368 | + } |
|
308 | 369 | if (empty($all)) { |
309 | 370 | $Spotter = new Spotter($this->db); |
310 | 371 | $filters = array(); |
@@ -319,10 +380,15 @@ discard block |
||
319 | 380 | } |
320 | 381 | public function countAllAircraftRegistrations($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
321 | 382 | global $globalStatsFilters; |
322 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
383 | + if ($filter_name == '') { |
|
384 | + $filter_name = $this->filter_name; |
|
385 | + } |
|
323 | 386 | if ($year == '' && $month == '') { |
324 | - if ($limit) $query = "SELECT s.aircraft_icao, s.cnt AS aircraft_registration_count, a.type AS aircraft_name, s.registration FROM stats_registration s, aircraft a WHERE s.registration <> '' AND a.icao = s.aircraft_icao AND s.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_registration_count DESC LIMIT 10 OFFSET 0"; |
|
325 | - else $query = "SELECT s.aircraft_icao, s.cnt AS aircraft_registration_count, a.type AS aircraft_name FROM stats_registration s, aircraft a WHERE s.registration <> '' AND a.icao = s.aircraft_icao AND s.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_registration_count DESC"; |
|
387 | + if ($limit) { |
|
388 | + $query = "SELECT s.aircraft_icao, s.cnt AS aircraft_registration_count, a.type AS aircraft_name, s.registration FROM stats_registration s, aircraft a WHERE s.registration <> '' AND a.icao = s.aircraft_icao AND s.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_registration_count DESC LIMIT 10 OFFSET 0"; |
|
389 | + } else { |
|
390 | + $query = "SELECT s.aircraft_icao, s.cnt AS aircraft_registration_count, a.type AS aircraft_name FROM stats_registration s, aircraft a WHERE s.registration <> '' AND a.icao = s.aircraft_icao AND s.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_registration_count DESC"; |
|
391 | + } |
|
326 | 392 | try { |
327 | 393 | $sth = $this->db->prepare($query); |
328 | 394 | $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
@@ -330,7 +396,9 @@ discard block |
||
330 | 396 | echo "error : ".$e->getMessage(); |
331 | 397 | } |
332 | 398 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
333 | - } else $all = array(); |
|
399 | + } else { |
|
400 | + $all = array(); |
|
401 | + } |
|
334 | 402 | if (empty($all)) { |
335 | 403 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
336 | 404 | if ($filter_name != '') { |
@@ -344,10 +412,15 @@ discard block |
||
344 | 412 | } |
345 | 413 | public function countAllCallsigns($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
346 | 414 | global $globalStatsFilters; |
347 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
415 | + if ($filter_name == '') { |
|
416 | + $filter_name = $this->filter_name; |
|
417 | + } |
|
348 | 418 | if ($year == '' && $month == '') { |
349 | - if ($limit) $query = "SELECT s.callsign_icao, s.cnt AS callsign_icao_count, a.name AS airline_name, a.icao as airline_icao FROM stats_callsign s, airlines a WHERE s.callsign_icao <> '' AND a.icao = s.airline_icao AND s.airline_icao = :stats_airline AND filter_name = :filter_name ORDER BY callsign_icao_count DESC LIMIT 10 OFFSET 0"; |
|
350 | - else $query = "SELECT s.callsign_icao, s.cnt AS callsign_icao_count, a.name AS airline_name, a.icao as airline_icao FROM stats_callsign s, airlines a WHERE s.callsign_icao <> '' AND a.icao = s.airline_icao AND s.airline_icao = :stats_airline AND filter_name = :filter_name ORDER BY callsign_icao_count DESC"; |
|
419 | + if ($limit) { |
|
420 | + $query = "SELECT s.callsign_icao, s.cnt AS callsign_icao_count, a.name AS airline_name, a.icao as airline_icao FROM stats_callsign s, airlines a WHERE s.callsign_icao <> '' AND a.icao = s.airline_icao AND s.airline_icao = :stats_airline AND filter_name = :filter_name ORDER BY callsign_icao_count DESC LIMIT 10 OFFSET 0"; |
|
421 | + } else { |
|
422 | + $query = "SELECT s.callsign_icao, s.cnt AS callsign_icao_count, a.name AS airline_name, a.icao as airline_icao FROM stats_callsign s, airlines a WHERE s.callsign_icao <> '' AND a.icao = s.airline_icao AND s.airline_icao = :stats_airline AND filter_name = :filter_name ORDER BY callsign_icao_count DESC"; |
|
423 | + } |
|
351 | 424 | try { |
352 | 425 | $sth = $this->db->prepare($query); |
353 | 426 | $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
@@ -355,7 +428,9 @@ discard block |
||
355 | 428 | echo "error : ".$e->getMessage(); |
356 | 429 | } |
357 | 430 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
358 | - } else $all = array(); |
|
431 | + } else { |
|
432 | + $all = array(); |
|
433 | + } |
|
359 | 434 | if (empty($all)) { |
360 | 435 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
361 | 436 | if ($filter_name != '') { |
@@ -369,11 +444,16 @@ discard block |
||
369 | 444 | } |
370 | 445 | public function countAllFlightOverCountries($limit = true, $stats_airline = '',$filter_name = '',$year = '',$month = '') { |
371 | 446 | $Connection = new Connection(); |
372 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
447 | + if ($filter_name == '') { |
|
448 | + $filter_name = $this->filter_name; |
|
449 | + } |
|
373 | 450 | if ($Connection->tableExists('countries')) { |
374 | 451 | if ($year == '' && $month == '') { |
375 | - if ($limit) $query = "SELECT countries.iso3 as flight_country_iso3, countries.iso2 as flight_country_iso2, countries.name as flight_country, cnt as flight_count, lat as flight_country_latitude, lon as flight_country_longitude FROM stats_country, countries WHERE stats_country.iso2 = countries.iso2 AND stats_country.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY flight_count DESC LIMIT 20 OFFSET 0"; |
|
376 | - else $query = "SELECT countries.iso3 as flight_country_iso3, countries.iso2 as flight_country_iso2, countries.name as flight_country, cnt as flight_count, lat as flight_country_latitude, lon as flight_country_longitude FROM stats_country, countries WHERE stats_country.iso2 = countries.iso2 AND stats_country.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY flight_count DESC"; |
|
452 | + if ($limit) { |
|
453 | + $query = "SELECT countries.iso3 as flight_country_iso3, countries.iso2 as flight_country_iso2, countries.name as flight_country, cnt as flight_count, lat as flight_country_latitude, lon as flight_country_longitude FROM stats_country, countries WHERE stats_country.iso2 = countries.iso2 AND stats_country.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY flight_count DESC LIMIT 20 OFFSET 0"; |
|
454 | + } else { |
|
455 | + $query = "SELECT countries.iso3 as flight_country_iso3, countries.iso2 as flight_country_iso2, countries.name as flight_country, cnt as flight_count, lat as flight_country_latitude, lon as flight_country_longitude FROM stats_country, countries WHERE stats_country.iso2 = countries.iso2 AND stats_country.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY flight_count DESC"; |
|
456 | + } |
|
377 | 457 | try { |
378 | 458 | $sth = $this->db->prepare($query); |
379 | 459 | $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
@@ -388,17 +468,24 @@ discard block |
||
388 | 468 | } |
389 | 469 | */ |
390 | 470 | return $all; |
391 | - } else return array(); |
|
471 | + } else { |
|
472 | + return array(); |
|
473 | + } |
|
392 | 474 | } else { |
393 | 475 | return array(); |
394 | 476 | } |
395 | 477 | } |
396 | 478 | public function countAllPilots($limit = true,$stats_airline = '',$filter_name = '', $year = '',$month = '') { |
397 | 479 | global $globalStatsFilters; |
398 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
480 | + if ($filter_name == '') { |
|
481 | + $filter_name = $this->filter_name; |
|
482 | + } |
|
399 | 483 | if ($year == '' && $month == '') { |
400 | - if ($limit) $query = "SELECT pilot_id, cnt AS pilot_count, pilot_name, format_source FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_count DESC LIMIT 10 OFFSET 0"; |
|
401 | - else $query = "SELECT pilot_id, cnt AS pilot_count, pilot_name, format_source FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_count DESC"; |
|
484 | + if ($limit) { |
|
485 | + $query = "SELECT pilot_id, cnt AS pilot_count, pilot_name, format_source FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_count DESC LIMIT 10 OFFSET 0"; |
|
486 | + } else { |
|
487 | + $query = "SELECT pilot_id, cnt AS pilot_count, pilot_name, format_source FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_count DESC"; |
|
488 | + } |
|
402 | 489 | try { |
403 | 490 | $sth = $this->db->prepare($query); |
404 | 491 | $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
@@ -406,7 +493,9 @@ discard block |
||
406 | 493 | echo "error : ".$e->getMessage(); |
407 | 494 | } |
408 | 495 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
409 | - } else $all = array(); |
|
496 | + } else { |
|
497 | + $all = array(); |
|
498 | + } |
|
410 | 499 | if (empty($all)) { |
411 | 500 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
412 | 501 | if ($filter_name != '') { |
@@ -421,10 +510,15 @@ discard block |
||
421 | 510 | |
422 | 511 | public function countAllOwners($limit = true,$stats_airline = '', $filter_name = '',$year = '',$month = '') { |
423 | 512 | global $globalStatsFilters; |
424 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
513 | + if ($filter_name == '') { |
|
514 | + $filter_name = $this->filter_name; |
|
515 | + } |
|
425 | 516 | if ($year == '' && $month == '') { |
426 | - if ($limit) $query = "SELECT owner_name, cnt AS owner_count FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_count DESC LIMIT 10 OFFSET 0"; |
|
427 | - else $query = "SELECT owner_name, cnt AS owner_count FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_count DESC"; |
|
517 | + if ($limit) { |
|
518 | + $query = "SELECT owner_name, cnt AS owner_count FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_count DESC LIMIT 10 OFFSET 0"; |
|
519 | + } else { |
|
520 | + $query = "SELECT owner_name, cnt AS owner_count FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_count DESC"; |
|
521 | + } |
|
428 | 522 | try { |
429 | 523 | $sth = $this->db->prepare($query); |
430 | 524 | $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
@@ -432,7 +526,9 @@ discard block |
||
432 | 526 | echo "error : ".$e->getMessage(); |
433 | 527 | } |
434 | 528 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
435 | - } else $all = array(); |
|
529 | + } else { |
|
530 | + $all = array(); |
|
531 | + } |
|
436 | 532 | if (empty($all)) { |
437 | 533 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
438 | 534 | if ($filter_name != '') { |
@@ -446,10 +542,15 @@ discard block |
||
446 | 542 | } |
447 | 543 | public function countAllDepartureAirports($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
448 | 544 | global $globalStatsFilters; |
449 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
545 | + if ($filter_name == '') { |
|
546 | + $filter_name = $this->filter_name; |
|
547 | + } |
|
450 | 548 | if ($year == '' && $month == '') { |
451 | - if ($limit) $query = "SELECT DISTINCT airport_icao AS airport_departure_icao,airport_city AS airport_departure_city,airport_country AS airport_departure_country,departure AS airport_departure_icao_count FROM stats_airport WHERE departure > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_departure_icao_count DESC LIMIT 10 OFFSET 0"; |
|
452 | - else $query = "SELECT DISTINCT airport_icao AS airport_departure_icao,airport_city AS airport_departure_city,airport_country AS airport_departure_country,departure AS airport_departure_icao_count FROM stats_airport WHERE departure > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_departure_icao_count DESC"; |
|
549 | + if ($limit) { |
|
550 | + $query = "SELECT DISTINCT airport_icao AS airport_departure_icao,airport_city AS airport_departure_city,airport_country AS airport_departure_country,departure AS airport_departure_icao_count FROM stats_airport WHERE departure > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_departure_icao_count DESC LIMIT 10 OFFSET 0"; |
|
551 | + } else { |
|
552 | + $query = "SELECT DISTINCT airport_icao AS airport_departure_icao,airport_city AS airport_departure_city,airport_country AS airport_departure_country,departure AS airport_departure_icao_count FROM stats_airport WHERE departure > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_departure_icao_count DESC"; |
|
553 | + } |
|
453 | 554 | try { |
454 | 555 | $sth = $this->db->prepare($query); |
455 | 556 | $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
@@ -457,7 +558,9 @@ discard block |
||
457 | 558 | echo "error : ".$e->getMessage(); |
458 | 559 | } |
459 | 560 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
460 | - } else $all = array(); |
|
561 | + } else { |
|
562 | + $all = array(); |
|
563 | + } |
|
461 | 564 | if (empty($all)) { |
462 | 565 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
463 | 566 | if ($filter_name != '') { |
@@ -478,7 +581,9 @@ discard block |
||
478 | 581 | $icao = $value['airport_departure_icao']; |
479 | 582 | if (isset($all[$icao])) { |
480 | 583 | $all[$icao]['airport_departure_icao_count'] = $all[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count']; |
481 | - } else $all[$icao] = $value; |
|
584 | + } else { |
|
585 | + $all[$icao] = $value; |
|
586 | + } |
|
482 | 587 | } |
483 | 588 | $count = array(); |
484 | 589 | foreach ($all as $key => $row) { |
@@ -490,10 +595,15 @@ discard block |
||
490 | 595 | } |
491 | 596 | public function countAllArrivalAirports($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') { |
492 | 597 | global $globalStatsFilters; |
493 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
598 | + if ($filter_name == '') { |
|
599 | + $filter_name = $this->filter_name; |
|
600 | + } |
|
494 | 601 | if ($year == '' && $month == '') { |
495 | - if ($limit) $query = "SELECT DISTINCT airport_icao AS airport_arrival_icao,airport_city AS airport_arrival_city,airport_country AS airport_arrival_country,arrival AS airport_arrival_icao_count FROM stats_airport WHERE arrival > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_arrival_icao_count DESC LIMIT 10 OFFSET 0"; |
|
496 | - else $query = "SELECT DISTINCT airport_icao AS airport_arrival_icao,airport_city AS airport_arrival_city,airport_country AS airport_arrival_country,arrival AS airport_arrival_icao_count FROM stats_airport WHERE arrival > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_arrival_icao_count DESC"; |
|
602 | + if ($limit) { |
|
603 | + $query = "SELECT DISTINCT airport_icao AS airport_arrival_icao,airport_city AS airport_arrival_city,airport_country AS airport_arrival_country,arrival AS airport_arrival_icao_count FROM stats_airport WHERE arrival > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_arrival_icao_count DESC LIMIT 10 OFFSET 0"; |
|
604 | + } else { |
|
605 | + $query = "SELECT DISTINCT airport_icao AS airport_arrival_icao,airport_city AS airport_arrival_city,airport_country AS airport_arrival_country,arrival AS airport_arrival_icao_count FROM stats_airport WHERE arrival > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_arrival_icao_count DESC"; |
|
606 | + } |
|
497 | 607 | try { |
498 | 608 | $sth = $this->db->prepare($query); |
499 | 609 | $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name)); |
@@ -501,7 +611,9 @@ discard block |
||
501 | 611 | echo "error : ".$e->getMessage(); |
502 | 612 | } |
503 | 613 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
504 | - } else $all = array(); |
|
614 | + } else { |
|
615 | + $all = array(); |
|
616 | + } |
|
505 | 617 | if (empty($all)) { |
506 | 618 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
507 | 619 | if ($filter_name != '') { |
@@ -522,7 +634,9 @@ discard block |
||
522 | 634 | $icao = $value['airport_arrival_icao']; |
523 | 635 | if (isset($all[$icao])) { |
524 | 636 | $all[$icao]['airport_arrival_icao_count'] = $all[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count']; |
525 | - } else $all[$icao] = $value; |
|
637 | + } else { |
|
638 | + $all[$icao] = $value; |
|
639 | + } |
|
526 | 640 | } |
527 | 641 | $count = array(); |
528 | 642 | foreach ($all as $key => $row) { |
@@ -535,13 +649,21 @@ discard block |
||
535 | 649 | } |
536 | 650 | public function countAllMonthsLastYear($limit = true,$stats_airline = '',$filter_name = '') { |
537 | 651 | global $globalDBdriver, $globalStatsFilters; |
538 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
652 | + if ($filter_name == '') { |
|
653 | + $filter_name = $this->filter_name; |
|
654 | + } |
|
539 | 655 | if ($globalDBdriver == 'mysql') { |
540 | - if ($limit) $query = "SELECT MONTH(stats_date) as month_name, YEAR(stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 12 MONTH) AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
541 | - else $query = "SELECT MONTH(stats_date) as month_name, YEAR(stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
656 | + if ($limit) { |
|
657 | + $query = "SELECT MONTH(stats_date) as month_name, YEAR(stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 12 MONTH) AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
658 | + } else { |
|
659 | + $query = "SELECT MONTH(stats_date) as month_name, YEAR(stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
660 | + } |
|
542 | 661 | } else { |
543 | - if ($limit) $query = "SELECT EXTRACT(MONTH FROM stats_date) as month_name, EXTRACT(YEAR FROM stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_date >= CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '12 MONTHS' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
544 | - else $query = "SELECT EXTRACT(MONTH FROM stats_date) as month_name, EXTRACT(YEAR FROM stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
662 | + if ($limit) { |
|
663 | + $query = "SELECT EXTRACT(MONTH FROM stats_date) as month_name, EXTRACT(YEAR FROM stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_date >= CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '12 MONTHS' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
664 | + } else { |
|
665 | + $query = "SELECT EXTRACT(MONTH FROM stats_date) as month_name, EXTRACT(YEAR FROM stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
666 | + } |
|
545 | 667 | } |
546 | 668 | $query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
547 | 669 | try { |
@@ -565,7 +687,9 @@ discard block |
||
565 | 687 | |
566 | 688 | public function countAllDatesLastMonth($stats_airline = '',$filter_name = '') { |
567 | 689 | global $globalStatsFilters; |
568 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
690 | + if ($filter_name == '') { |
|
691 | + $filter_name = $this->filter_name; |
|
692 | + } |
|
569 | 693 | $query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'month' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
570 | 694 | $query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
571 | 695 | try { |
@@ -587,7 +711,9 @@ discard block |
||
587 | 711 | } |
588 | 712 | public function countAllDatesLast7Days($stats_airline = '',$filter_name = '') { |
589 | 713 | global $globalDBdriver, $globalStatsFilters; |
590 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
714 | + if ($filter_name == '') { |
|
715 | + $filter_name = $this->filter_name; |
|
716 | + } |
|
591 | 717 | if ($globalDBdriver == 'mysql') { |
592 | 718 | $query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'month' AND flight_date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 7 DAY) AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
593 | 719 | } else { |
@@ -613,7 +739,9 @@ discard block |
||
613 | 739 | } |
614 | 740 | public function countAllDates($stats_airline = '',$filter_name = '') { |
615 | 741 | global $globalStatsFilters; |
616 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
742 | + if ($filter_name == '') { |
|
743 | + $filter_name = $this->filter_name; |
|
744 | + } |
|
617 | 745 | $query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'date' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
618 | 746 | $query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
619 | 747 | try { |
@@ -635,7 +763,9 @@ discard block |
||
635 | 763 | } |
636 | 764 | public function countAllDatesByAirlines($filter_name = '') { |
637 | 765 | global $globalStatsFilters; |
638 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
766 | + if ($filter_name == '') { |
|
767 | + $filter_name = $this->filter_name; |
|
768 | + } |
|
639 | 769 | $query = "SELECT stats_airline as airline_icao, flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'date' AND filter_name = :filter_name"; |
640 | 770 | $query_data = array('filter_name' => $filter_name); |
641 | 771 | try { |
@@ -657,7 +787,9 @@ discard block |
||
657 | 787 | } |
658 | 788 | public function countAllMonths($stats_airline = '',$filter_name = '') { |
659 | 789 | global $globalStatsFilters, $globalDBdriver; |
660 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
790 | + if ($filter_name == '') { |
|
791 | + $filter_name = $this->filter_name; |
|
792 | + } |
|
661 | 793 | if ($globalDBdriver == 'mysql') { |
662 | 794 | $query = "SELECT YEAR(stats_date) AS year_name,MONTH(stats_date) AS month_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
663 | 795 | } else { |
@@ -726,7 +858,9 @@ discard block |
||
726 | 858 | } |
727 | 859 | public function countAllMilitaryMonths($filter_name = '') { |
728 | 860 | global $globalStatsFilters; |
729 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
861 | + if ($filter_name == '') { |
|
862 | + $filter_name = $this->filter_name; |
|
863 | + } |
|
730 | 864 | $query = "SELECT YEAR(stats_date) AS year_name,MONTH(stats_date) AS month_name, cnt as date_count FROM stats WHERE stats_type = 'military_flights_bymonth' AND filter_name = :filter_name"; |
731 | 865 | try { |
732 | 866 | $sth = $this->db->prepare($query); |
@@ -747,9 +881,14 @@ discard block |
||
747 | 881 | } |
748 | 882 | public function countAllHours($orderby = 'hour',$limit = true,$stats_airline = '',$filter_name = '') { |
749 | 883 | global $globalTimezone, $globalDBdriver, $globalStatsFilters; |
750 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
751 | - if ($limit) $query = "SELECT flight_date as hour_name, cnt as hour_count FROM stats_flight WHERE stats_type = 'hour' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
752 | - else $query = "SELECT flight_date as hour_name, cnt as hour_count FROM stats_flight WHERE stats_type = 'hour' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
884 | + if ($filter_name == '') { |
|
885 | + $filter_name = $this->filter_name; |
|
886 | + } |
|
887 | + if ($limit) { |
|
888 | + $query = "SELECT flight_date as hour_name, cnt as hour_count FROM stats_flight WHERE stats_type = 'hour' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
889 | + } else { |
|
890 | + $query = "SELECT flight_date as hour_name, cnt as hour_count FROM stats_flight WHERE stats_type = 'hour' AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
|
891 | + } |
|
753 | 892 | if ($orderby == 'hour') { |
754 | 893 | /* |
755 | 894 | if ($globalDBdriver == 'mysql') { |
@@ -758,7 +897,9 @@ discard block |
||
758 | 897 | */ |
759 | 898 | $query .= " ORDER BY CAST(flight_date AS integer) ASC"; |
760 | 899 | } |
761 | - if ($orderby == 'count') $query .= " ORDER BY hour_count DESC"; |
|
900 | + if ($orderby == 'count') { |
|
901 | + $query .= " ORDER BY hour_count DESC"; |
|
902 | + } |
|
762 | 903 | try { |
763 | 904 | $sth = $this->db->prepare($query); |
764 | 905 | $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name)); |
@@ -779,8 +920,12 @@ discard block |
||
779 | 920 | |
780 | 921 | public function countOverallFlights($stats_airline = '', $filter_name = '',$year = '',$month = '') { |
781 | 922 | global $globalStatsFilters; |
782 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
783 | - if ($year == '') $year = date('Y'); |
|
923 | + if ($filter_name == '') { |
|
924 | + $filter_name = $this->filter_name; |
|
925 | + } |
|
926 | + if ($year == '') { |
|
927 | + $year = date('Y'); |
|
928 | + } |
|
784 | 929 | $all = $this->getSumStats('flights_bymonth',$year,$stats_airline,$filter_name,$month); |
785 | 930 | if (empty($all)) { |
786 | 931 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
@@ -795,8 +940,12 @@ discard block |
||
795 | 940 | } |
796 | 941 | public function countOverallMilitaryFlights($filter_name = '',$year = '', $month = '') { |
797 | 942 | global $globalStatsFilters; |
798 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
799 | - if ($year == '') $year = date('Y'); |
|
943 | + if ($filter_name == '') { |
|
944 | + $filter_name = $this->filter_name; |
|
945 | + } |
|
946 | + if ($year == '') { |
|
947 | + $year = date('Y'); |
|
948 | + } |
|
800 | 949 | $all = $this->getSumStats('military_flights_bymonth',$year,'',$filter_name,$month); |
801 | 950 | if (empty($all)) { |
802 | 951 | $filters = array(); |
@@ -812,8 +961,12 @@ discard block |
||
812 | 961 | } |
813 | 962 | public function countOverallArrival($stats_airline = '',$filter_name = '', $year = '', $month = '') { |
814 | 963 | global $globalStatsFilters; |
815 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
816 | - if ($year == '') $year = date('Y'); |
|
964 | + if ($filter_name == '') { |
|
965 | + $filter_name = $this->filter_name; |
|
966 | + } |
|
967 | + if ($year == '') { |
|
968 | + $year = date('Y'); |
|
969 | + } |
|
817 | 970 | $all = $this->getSumStats('realarrivals_bymonth',$year,$stats_airline,$filter_name,$month); |
818 | 971 | if (empty($all)) { |
819 | 972 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
@@ -828,7 +981,9 @@ discard block |
||
828 | 981 | } |
829 | 982 | public function countOverallAircrafts($stats_airline = '',$filter_name = '',$year = '', $month = '') { |
830 | 983 | global $globalStatsFilters; |
831 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
984 | + if ($filter_name == '') { |
|
985 | + $filter_name = $this->filter_name; |
|
986 | + } |
|
832 | 987 | if ($year == '' && $month == '') { |
833 | 988 | $query = "SELECT COUNT(*) AS nb FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name"; |
834 | 989 | try { |
@@ -839,7 +994,9 @@ discard block |
||
839 | 994 | } |
840 | 995 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
841 | 996 | $all = $result[0]['nb']; |
842 | - } else $all = $this->getSumStats('aircrafts_bymonth',$year,$stats_airline,$filter_name,$month); |
|
997 | + } else { |
|
998 | + $all = $this->getSumStats('aircrafts_bymonth',$year,$stats_airline,$filter_name,$month); |
|
999 | + } |
|
843 | 1000 | if (empty($all)) { |
844 | 1001 | $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month); |
845 | 1002 | if ($filter_name != '') { |
@@ -853,7 +1010,9 @@ discard block |
||
853 | 1010 | } |
854 | 1011 | public function countOverallAirlines($filter_name = '',$year = '',$month = '') { |
855 | 1012 | global $globalStatsFilters; |
856 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1013 | + if ($filter_name == '') { |
|
1014 | + $filter_name = $this->filter_name; |
|
1015 | + } |
|
857 | 1016 | if ($year == '' && $month == '') { |
858 | 1017 | $query = "SELECT COUNT(*) AS nb_airline FROM stats_airline WHERE filter_name = :filter_name"; |
859 | 1018 | try { |
@@ -864,7 +1023,9 @@ discard block |
||
864 | 1023 | } |
865 | 1024 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
866 | 1025 | $all = $result[0]['nb_airline']; |
867 | - } else $all = $this->getSumStats('airlines_bymonth',$year,'',$filter_name,$month); |
|
1026 | + } else { |
|
1027 | + $all = $this->getSumStats('airlines_bymonth',$year,'',$filter_name,$month); |
|
1028 | + } |
|
868 | 1029 | if (empty($all)) { |
869 | 1030 | $filters = array(); |
870 | 1031 | $filters = array('year' => $year,'month' => $month); |
@@ -879,7 +1040,9 @@ discard block |
||
879 | 1040 | } |
880 | 1041 | public function countOverallOwners($stats_airline = '',$filter_name = '',$year = '', $month = '') { |
881 | 1042 | global $globalStatsFilters; |
882 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1043 | + if ($filter_name == '') { |
|
1044 | + $filter_name = $this->filter_name; |
|
1045 | + } |
|
883 | 1046 | if ($year == '' && $month == '') { |
884 | 1047 | $query = "SELECT count(*) as nb FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name"; |
885 | 1048 | $query_values = array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
@@ -907,7 +1070,9 @@ discard block |
||
907 | 1070 | } |
908 | 1071 | public function countOverallPilots($stats_airline = '',$filter_name = '',$year = '',$month = '') { |
909 | 1072 | global $globalStatsFilters; |
910 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1073 | + if ($filter_name == '') { |
|
1074 | + $filter_name = $this->filter_name; |
|
1075 | + } |
|
911 | 1076 | //if ($year == '') $year = date('Y'); |
912 | 1077 | if ($year == '' && $month == '') { |
913 | 1078 | $query = "SELECT count(*) as nb FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name"; |
@@ -936,7 +1101,9 @@ discard block |
||
936 | 1101 | } |
937 | 1102 | |
938 | 1103 | public function getLast7DaysAirports($airport_icao = '', $stats_airline = '',$filter_name = '') { |
939 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1104 | + if ($filter_name == '') { |
|
1105 | + $filter_name = $this->filter_name; |
|
1106 | + } |
|
940 | 1107 | $query = "SELECT * FROM stats_airport WHERE stats_type = 'daily' AND airport_icao = :airport_icao AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY date"; |
941 | 1108 | $query_values = array(':airport_icao' => $airport_icao,':stats_airline' => $stats_airline, ':filter_name' => $filter_name); |
942 | 1109 | try { |
@@ -949,7 +1116,9 @@ discard block |
||
949 | 1116 | return $all; |
950 | 1117 | } |
951 | 1118 | public function getStats($type,$stats_airline = '', $filter_name = '') { |
952 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1119 | + if ($filter_name == '') { |
|
1120 | + $filter_name = $this->filter_name; |
|
1121 | + } |
|
953 | 1122 | $query = "SELECT * FROM stats WHERE stats_type = :type AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY stats_date"; |
954 | 1123 | $query_values = array(':type' => $type,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
955 | 1124 | try { |
@@ -962,7 +1131,9 @@ discard block |
||
962 | 1131 | return $all; |
963 | 1132 | } |
964 | 1133 | public function deleteStatsByType($type,$stats_airline = '', $filter_name = '') { |
965 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1134 | + if ($filter_name == '') { |
|
1135 | + $filter_name = $this->filter_name; |
|
1136 | + } |
|
966 | 1137 | $query = "DELETE FROM stats WHERE stats_type = :type AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
967 | 1138 | $query_values = array(':type' => $type,':stats_airline' => $stats_airline,':filter_name' => $filter_name); |
968 | 1139 | try { |
@@ -975,7 +1146,9 @@ discard block |
||
975 | 1146 | return $all; |
976 | 1147 | } |
977 | 1148 | public function getSumStats($type,$year,$stats_airline = '',$filter_name = '',$month = '') { |
978 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1149 | + if ($filter_name == '') { |
|
1150 | + $filter_name = $this->filter_name; |
|
1151 | + } |
|
979 | 1152 | global $globalArchiveMonths, $globalDBdriver; |
980 | 1153 | if ($globalDBdriver == 'mysql') { |
981 | 1154 | if ($month == '') { |
@@ -1005,7 +1178,9 @@ discard block |
||
1005 | 1178 | } |
1006 | 1179 | public function getStatsTotal($type, $stats_airline = '', $filter_name = '') { |
1007 | 1180 | global $globalArchiveMonths, $globalDBdriver; |
1008 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1181 | + if ($filter_name == '') { |
|
1182 | + $filter_name = $this->filter_name; |
|
1183 | + } |
|
1009 | 1184 | if ($globalDBdriver == 'mysql') { |
1010 | 1185 | $query = "SELECT SUM(cnt) as total FROM stats WHERE stats_type = :type AND stats_date < DATE_SUB(UTC_TIMESTAMP(), INTERVAL ".$globalArchiveMonths." MONTH) AND stats_airline = :stats_airline AND filter_name = :filter_name"; |
1011 | 1186 | } else { |
@@ -1023,7 +1198,9 @@ discard block |
||
1023 | 1198 | } |
1024 | 1199 | public function getStatsAircraftTotal($stats_airline = '', $filter_name = '') { |
1025 | 1200 | global $globalArchiveMonths, $globalDBdriver; |
1026 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1201 | + if ($filter_name == '') { |
|
1202 | + $filter_name = $this->filter_name; |
|
1203 | + } |
|
1027 | 1204 | if ($globalDBdriver == 'mysql') { |
1028 | 1205 | $query = "SELECT SUM(cnt) as total FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name"; |
1029 | 1206 | } else { |
@@ -1040,7 +1217,9 @@ discard block |
||
1040 | 1217 | } |
1041 | 1218 | public function getStatsAirlineTotal($filter_name = '') { |
1042 | 1219 | global $globalArchiveMonths, $globalDBdriver; |
1043 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1220 | + if ($filter_name == '') { |
|
1221 | + $filter_name = $this->filter_name; |
|
1222 | + } |
|
1044 | 1223 | if ($globalDBdriver == 'mysql') { |
1045 | 1224 | $query = "SELECT SUM(cnt) as total FROM stats_airline WHERE filter_name = :filter_name"; |
1046 | 1225 | } else { |
@@ -1057,7 +1236,9 @@ discard block |
||
1057 | 1236 | } |
1058 | 1237 | public function getStatsOwnerTotal($filter_name = '') { |
1059 | 1238 | global $globalArchiveMonths, $globalDBdriver; |
1060 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1239 | + if ($filter_name == '') { |
|
1240 | + $filter_name = $this->filter_name; |
|
1241 | + } |
|
1061 | 1242 | if ($globalDBdriver == 'mysql') { |
1062 | 1243 | $query = "SELECT SUM(cnt) as total FROM stats_owner WHERE filter_name = :filter_name"; |
1063 | 1244 | } else { |
@@ -1074,7 +1255,9 @@ discard block |
||
1074 | 1255 | } |
1075 | 1256 | public function getStatsOwner($owner_name,$filter_name = '') { |
1076 | 1257 | global $globalArchiveMonths, $globalDBdriver; |
1077 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1258 | + if ($filter_name == '') { |
|
1259 | + $filter_name = $this->filter_name; |
|
1260 | + } |
|
1078 | 1261 | $query = "SELECT cnt FROM stats_owner WHERE filter_name = :filter_name AND owner_name = :owner_name"; |
1079 | 1262 | try { |
1080 | 1263 | $sth = $this->db->prepare($query); |
@@ -1083,12 +1266,17 @@ discard block |
||
1083 | 1266 | echo "error : ".$e->getMessage(); |
1084 | 1267 | } |
1085 | 1268 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
1086 | - if (isset($all[0]['cnt'])) return $all[0]['cnt']; |
|
1087 | - else return 0; |
|
1269 | + if (isset($all[0]['cnt'])) { |
|
1270 | + return $all[0]['cnt']; |
|
1271 | + } else { |
|
1272 | + return 0; |
|
1273 | + } |
|
1088 | 1274 | } |
1089 | 1275 | public function getStatsPilotTotal($filter_name = '') { |
1090 | 1276 | global $globalArchiveMonths, $globalDBdriver; |
1091 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1277 | + if ($filter_name == '') { |
|
1278 | + $filter_name = $this->filter_name; |
|
1279 | + } |
|
1092 | 1280 | if ($globalDBdriver == 'mysql') { |
1093 | 1281 | $query = "SELECT SUM(cnt) as total FROM stats_pilot WHERE filter_name = :filter_name"; |
1094 | 1282 | } else { |
@@ -1105,7 +1293,9 @@ discard block |
||
1105 | 1293 | } |
1106 | 1294 | public function getStatsPilot($pilot,$filter_name = '') { |
1107 | 1295 | global $globalArchiveMonths, $globalDBdriver; |
1108 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1296 | + if ($filter_name == '') { |
|
1297 | + $filter_name = $this->filter_name; |
|
1298 | + } |
|
1109 | 1299 | $query = "SELECT cnt FROM stats_pilot WHERE filter_name = :filter_name AND (pilot_name = :pilot OR pilot_id = :pilot)"; |
1110 | 1300 | try { |
1111 | 1301 | $sth = $this->db->prepare($query); |
@@ -1114,13 +1304,18 @@ discard block |
||
1114 | 1304 | echo "error : ".$e->getMessage(); |
1115 | 1305 | } |
1116 | 1306 | $all = $sth->fetchAll(PDO::FETCH_ASSOC); |
1117 | - if (isset($all[0]['cnt'])) return $all[0]['cnt']; |
|
1118 | - else return 0; |
|
1307 | + if (isset($all[0]['cnt'])) { |
|
1308 | + return $all[0]['cnt']; |
|
1309 | + } else { |
|
1310 | + return 0; |
|
1311 | + } |
|
1119 | 1312 | } |
1120 | 1313 | |
1121 | 1314 | public function addStat($type,$cnt,$stats_date,$stats_airline = '',$filter_name = '') { |
1122 | 1315 | global $globalDBdriver; |
1123 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1316 | + if ($filter_name == '') { |
|
1317 | + $filter_name = $this->filter_name; |
|
1318 | + } |
|
1124 | 1319 | if ($globalDBdriver == 'mysql') { |
1125 | 1320 | $query = "INSERT INTO stats (stats_type,cnt,stats_date,stats_airline,filter_name) VALUES (:type,:cnt,:stats_date,:stats_airline,:filter_name) ON DUPLICATE KEY UPDATE cnt = :cnt"; |
1126 | 1321 | } else { |
@@ -1136,7 +1331,9 @@ discard block |
||
1136 | 1331 | } |
1137 | 1332 | public function updateStat($type,$cnt,$stats_date,$stats_airline = '',$filter_name = '') { |
1138 | 1333 | global $globalDBdriver; |
1139 | - if ($filter_name == '') $filter_name = $this->filter_name; |
|
1334 | + if ($filter_name == '') { |
|
1335 | + $filter_name = $this->filter_name; |
|
1336 | + } |
|
1140 | 1337 | if ($globalDBdriver == 'mysql') { |
1141 | 1338 | $query = "INSERT INTO stats (stats_type,cnt,stats_date,stats_airline,filter_name) VALUES (:type,:cnt,:stats_date,:stats_airline,:filter_name) ON DUPLICATE KEY UPDATE cnt = cnt+:cnt, stats_date = :date"; |
1142 | 1339 | } else { |
@@ -1522,10 +1719,14 @@ discard block |
||
1522 | 1719 | $Connection = new Connection(); |
1523 | 1720 | date_default_timezone_set('UTC'); |
1524 | 1721 | $last_update = $this->getLastStatsUpdate('last_update_stats'); |
1525 | - if ($globalDebug) echo 'Update stats !'."\n"; |
|
1722 | + if ($globalDebug) { |
|
1723 | + echo 'Update stats !'."\n"; |
|
1724 | + } |
|
1526 | 1725 | if (isset($last_update[0]['value'])) { |
1527 | 1726 | $last_update_day = $last_update[0]['value']; |
1528 | - } else $last_update_day = '2012-12-12 12:12:12'; |
|
1727 | + } else { |
|
1728 | + $last_update_day = '2012-12-12 12:12:12'; |
|
1729 | + } |
|
1529 | 1730 | $reset = false; |
1530 | 1731 | //if ($globalStatsResetYear && date('Y',strtotime($last_update_day)) != date('Y')) { |
1531 | 1732 | if ($globalStatsResetYear) { |
@@ -1534,42 +1735,60 @@ discard block |
||
1534 | 1735 | } |
1535 | 1736 | $Spotter = new Spotter($this->db); |
1536 | 1737 | |
1537 | - if ($globalDebug) echo 'Count all aircraft types...'."\n"; |
|
1738 | + if ($globalDebug) { |
|
1739 | + echo 'Count all aircraft types...'."\n"; |
|
1740 | + } |
|
1538 | 1741 | $alldata = $Spotter->countAllAircraftTypes(false,0,$last_update_day); |
1539 | 1742 | foreach ($alldata as $number) { |
1540 | 1743 | $this->addStatAircraft($number['aircraft_icao'],$number['aircraft_icao_count'],$number['aircraft_name'],$number['aircraft_manufacturer'],'','',$reset); |
1541 | 1744 | } |
1542 | - if ($globalDebug) echo 'Count all airlines...'."\n"; |
|
1745 | + if ($globalDebug) { |
|
1746 | + echo 'Count all airlines...'."\n"; |
|
1747 | + } |
|
1543 | 1748 | $alldata = $Spotter->countAllAirlines(false,0,$last_update_day); |
1544 | 1749 | foreach ($alldata as $number) { |
1545 | 1750 | $this->addStatAirline($number['airline_icao'],$number['airline_count'],$number['airline_name'],'',$reset); |
1546 | 1751 | } |
1547 | - if ($globalDebug) echo 'Count all registrations...'."\n"; |
|
1752 | + if ($globalDebug) { |
|
1753 | + echo 'Count all registrations...'."\n"; |
|
1754 | + } |
|
1548 | 1755 | $alldata = $Spotter->countAllAircraftRegistrations(false,0,$last_update_day); |
1549 | 1756 | foreach ($alldata as $number) { |
1550 | 1757 | $this->addStatAircraftRegistration($number['registration'],$number['aircraft_registration_count'],$number['aircraft_icao'],'','',$reset); |
1551 | 1758 | } |
1552 | - if ($globalDebug) echo 'Count all callsigns...'."\n"; |
|
1759 | + if ($globalDebug) { |
|
1760 | + echo 'Count all callsigns...'."\n"; |
|
1761 | + } |
|
1553 | 1762 | $alldata = $Spotter->countAllCallsigns(false,0,$last_update_day); |
1554 | 1763 | foreach ($alldata as $number) { |
1555 | 1764 | $this->addStatCallsign($number['callsign_icao'],$number['callsign_icao_count'],$number['airline_icao'],'',$reset); |
1556 | 1765 | } |
1557 | - if ($globalDebug) echo 'Count all owners...'."\n"; |
|
1766 | + if ($globalDebug) { |
|
1767 | + echo 'Count all owners...'."\n"; |
|
1768 | + } |
|
1558 | 1769 | $alldata = $Spotter->countAllOwners(false,0,$last_update_day); |
1559 | 1770 | foreach ($alldata as $number) { |
1560 | 1771 | $this->addStatOwner($number['owner_name'],$number['owner_count'],'','',$reset); |
1561 | 1772 | } |
1562 | - if ($globalDebug) echo 'Count all pilots...'."\n"; |
|
1773 | + if ($globalDebug) { |
|
1774 | + echo 'Count all pilots...'."\n"; |
|
1775 | + } |
|
1563 | 1776 | $alldata = $Spotter->countAllPilots(false,0,$last_update_day); |
1564 | 1777 | foreach ($alldata as $number) { |
1565 | 1778 | $this->addStatPilot($number['pilot_id'],$number['pilot_count'],$number['pilot_name'],'','',$number['format_source'],$reset); |
1566 | 1779 | } |
1567 | 1780 | |
1568 | - if ($globalDebug) echo 'Count all departure airports...'."\n"; |
|
1781 | + if ($globalDebug) { |
|
1782 | + echo 'Count all departure airports...'."\n"; |
|
1783 | + } |
|
1569 | 1784 | $pall = $Spotter->countAllDepartureAirports(false,0,$last_update_day); |
1570 | - if ($globalDebug) echo 'Count all detected departure airports...'."\n"; |
|
1785 | + if ($globalDebug) { |
|
1786 | + echo 'Count all detected departure airports...'."\n"; |
|
1787 | + } |
|
1571 | 1788 | $dall = $Spotter->countAllDetectedDepartureAirports(false,0,$last_update_day); |
1572 | - if ($globalDebug) echo 'Order departure airports...'."\n"; |
|
1789 | + if ($globalDebug) { |
|
1790 | + echo 'Order departure airports...'."\n"; |
|
1791 | + } |
|
1573 | 1792 | $alldata = array(); |
1574 | 1793 | |
1575 | 1794 | foreach ($pall as $value) { |
@@ -1580,7 +1799,9 @@ discard block |
||
1580 | 1799 | $icao = $value['airport_departure_icao']; |
1581 | 1800 | if (isset($alldata[$icao])) { |
1582 | 1801 | $alldata[$icao]['airport_departure_icao_count'] = $alldata[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count']; |
1583 | - } else $alldata[$icao] = $value; |
|
1802 | + } else { |
|
1803 | + $alldata[$icao] = $value; |
|
1804 | + } |
|
1584 | 1805 | } |
1585 | 1806 | $count = array(); |
1586 | 1807 | foreach ($alldata as $key => $row) { |
@@ -1590,11 +1811,17 @@ discard block |
||
1590 | 1811 | foreach ($alldata as $number) { |
1591 | 1812 | echo $this->addStatDepartureAirports($number['airport_departure_icao'],$number['airport_departure_name'],$number['airport_departure_city'],$number['airport_departure_country'],$number['airport_departure_icao_count'],'','',$reset); |
1592 | 1813 | } |
1593 | - if ($globalDebug) echo 'Count all arrival airports...'."\n"; |
|
1814 | + if ($globalDebug) { |
|
1815 | + echo 'Count all arrival airports...'."\n"; |
|
1816 | + } |
|
1594 | 1817 | $pall = $Spotter->countAllArrivalAirports(false,0,$last_update_day); |
1595 | - if ($globalDebug) echo 'Count all detected arrival airports...'."\n"; |
|
1818 | + if ($globalDebug) { |
|
1819 | + echo 'Count all detected arrival airports...'."\n"; |
|
1820 | + } |
|
1596 | 1821 | $dall = $Spotter->countAllDetectedArrivalAirports(false,0,$last_update_day); |
1597 | - if ($globalDebug) echo 'Order arrival airports...'."\n"; |
|
1822 | + if ($globalDebug) { |
|
1823 | + echo 'Order arrival airports...'."\n"; |
|
1824 | + } |
|
1598 | 1825 | $alldata = array(); |
1599 | 1826 | foreach ($pall as $value) { |
1600 | 1827 | $icao = $value['airport_arrival_icao']; |
@@ -1604,7 +1831,9 @@ discard block |
||
1604 | 1831 | $icao = $value['airport_arrival_icao']; |
1605 | 1832 | if (isset($alldata[$icao])) { |
1606 | 1833 | $alldata[$icao]['airport_arrival_icao_count'] = $alldata[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count']; |
1607 | - } else $alldata[$icao] = $value; |
|
1834 | + } else { |
|
1835 | + $alldata[$icao] = $value; |
|
1836 | + } |
|
1608 | 1837 | } |
1609 | 1838 | $count = array(); |
1610 | 1839 | foreach ($alldata as $key => $row) { |
@@ -1615,7 +1844,9 @@ discard block |
||
1615 | 1844 | echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],'','',$reset); |
1616 | 1845 | } |
1617 | 1846 | if ($Connection->tableExists('countries')) { |
1618 | - if ($globalDebug) echo 'Count all flights by countries...'."\n"; |
|
1847 | + if ($globalDebug) { |
|
1848 | + echo 'Count all flights by countries...'."\n"; |
|
1849 | + } |
|
1619 | 1850 | $SpotterArchive = new SpotterArchive(); |
1620 | 1851 | $alldata = $SpotterArchive->countAllFlightOverCountries(false,0,$last_update_day); |
1621 | 1852 | foreach ($alldata as $number) { |
@@ -1623,7 +1854,9 @@ discard block |
||
1623 | 1854 | } |
1624 | 1855 | } |
1625 | 1856 | |
1626 | - if ($globalDebug) echo 'Count fatalities stats...'."\n"; |
|
1857 | + if ($globalDebug) { |
|
1858 | + echo 'Count fatalities stats...'."\n"; |
|
1859 | + } |
|
1627 | 1860 | $Accident = new Accident(); |
1628 | 1861 | $this->deleteStatsByType('fatalities_byyear'); |
1629 | 1862 | $alldata = $Accident->countFatalitiesByYear(); |
@@ -1640,46 +1873,66 @@ discard block |
||
1640 | 1873 | // Add by month using getstat if month finish... |
1641 | 1874 | |
1642 | 1875 | //if (date('m',strtotime($last_update_day)) != date('m')) { |
1643 | - if ($globalDebug) echo 'Count all flights by months...'."\n"; |
|
1876 | + if ($globalDebug) { |
|
1877 | + echo 'Count all flights by months...'."\n"; |
|
1878 | + } |
|
1644 | 1879 | $Spotter = new Spotter($this->db); |
1645 | 1880 | $alldata = $Spotter->countAllMonths(); |
1646 | 1881 | $lastyear = false; |
1647 | 1882 | foreach ($alldata as $number) { |
1648 | - if ($number['year_name'] != date('Y')) $lastyear = true; |
|
1883 | + if ($number['year_name'] != date('Y')) { |
|
1884 | + $lastyear = true; |
|
1885 | + } |
|
1649 | 1886 | $this->addStat('flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
1650 | 1887 | } |
1651 | - if ($globalDebug) echo 'Count all military flights by months...'."\n"; |
|
1888 | + if ($globalDebug) { |
|
1889 | + echo 'Count all military flights by months...'."\n"; |
|
1890 | + } |
|
1652 | 1891 | $alldata = $Spotter->countAllMilitaryMonths(); |
1653 | 1892 | foreach ($alldata as $number) { |
1654 | 1893 | $this->addStat('military_flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
1655 | 1894 | } |
1656 | - if ($globalDebug) echo 'Count all owners by months...'."\n"; |
|
1895 | + if ($globalDebug) { |
|
1896 | + echo 'Count all owners by months...'."\n"; |
|
1897 | + } |
|
1657 | 1898 | $alldata = $Spotter->countAllMonthsOwners(); |
1658 | 1899 | foreach ($alldata as $number) { |
1659 | 1900 | $this->addStat('owners_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
1660 | 1901 | } |
1661 | - if ($globalDebug) echo 'Count all pilots by months...'."\n"; |
|
1902 | + if ($globalDebug) { |
|
1903 | + echo 'Count all pilots by months...'."\n"; |
|
1904 | + } |
|
1662 | 1905 | $alldata = $Spotter->countAllMonthsPilots(); |
1663 | 1906 | foreach ($alldata as $number) { |
1664 | 1907 | $this->addStat('pilots_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
1665 | 1908 | } |
1666 | - if ($globalDebug) echo 'Count all airlines by months...'."\n"; |
|
1909 | + if ($globalDebug) { |
|
1910 | + echo 'Count all airlines by months...'."\n"; |
|
1911 | + } |
|
1667 | 1912 | $alldata = $Spotter->countAllMonthsAirlines(); |
1668 | 1913 | foreach ($alldata as $number) { |
1669 | 1914 | $this->addStat('airlines_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
1670 | 1915 | } |
1671 | - if ($globalDebug) echo 'Count all aircrafts by months...'."\n"; |
|
1916 | + if ($globalDebug) { |
|
1917 | + echo 'Count all aircrafts by months...'."\n"; |
|
1918 | + } |
|
1672 | 1919 | $alldata = $Spotter->countAllMonthsAircrafts(); |
1673 | 1920 | foreach ($alldata as $number) { |
1674 | 1921 | $this->addStat('aircrafts_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
1675 | 1922 | } |
1676 | - if ($globalDebug) echo 'Count all real arrivals by months...'."\n"; |
|
1923 | + if ($globalDebug) { |
|
1924 | + echo 'Count all real arrivals by months...'."\n"; |
|
1925 | + } |
|
1677 | 1926 | $alldata = $Spotter->countAllMonthsRealArrivals(); |
1678 | 1927 | foreach ($alldata as $number) { |
1679 | 1928 | $this->addStat('realarrivals_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name']))); |
1680 | 1929 | } |
1681 | - if ($globalDebug) echo 'Airports data...'."\n"; |
|
1682 | - if ($globalDebug) echo '...Departure'."\n"; |
|
1930 | + if ($globalDebug) { |
|
1931 | + echo 'Airports data...'."\n"; |
|
1932 | + } |
|
1933 | + if ($globalDebug) { |
|
1934 | + echo '...Departure'."\n"; |
|
1935 | + } |
|
1683 | 1936 | $this->deleteStatAirport('daily'); |
1684 | 1937 | // $pall = $Spotter->getLast7DaysAirportsDeparture(); |
1685 | 1938 | // $dall = $Spotter->getLast7DaysDetectedAirportsDeparture(); |
@@ -1800,44 +2053,62 @@ discard block |
||
1800 | 2053 | // Count by airlines |
1801 | 2054 | echo '--- Stats by airlines ---'."\n"; |
1802 | 2055 | if ($Connection->tableExists('countries')) { |
1803 | - if ($globalDebug) echo 'Count all flights by countries by airlines...'."\n"; |
|
2056 | + if ($globalDebug) { |
|
2057 | + echo 'Count all flights by countries by airlines...'."\n"; |
|
2058 | + } |
|
1804 | 2059 | $SpotterArchive = new SpotterArchive(); |
1805 | 2060 | $alldata = $SpotterArchive->countAllFlightOverCountriesByAirlines(false,0,$last_update_day); |
1806 | 2061 | foreach ($alldata as $number) { |
1807 | 2062 | $this->addStatCountry($number['flight_country_iso2'],$number['flight_country_iso3'],$number['flight_country'],$number['flight_count'],$number['airline_icao'],'',$reset); |
1808 | 2063 | } |
1809 | 2064 | } |
1810 | - if ($globalDebug) echo 'Count all aircraft types by airlines...'."\n"; |
|
2065 | + if ($globalDebug) { |
|
2066 | + echo 'Count all aircraft types by airlines...'."\n"; |
|
2067 | + } |
|
1811 | 2068 | $Spotter = new Spotter($this->db); |
1812 | 2069 | $alldata = $Spotter->countAllAircraftTypesByAirlines(false,0,$last_update_day); |
1813 | 2070 | foreach ($alldata as $number) { |
1814 | 2071 | $this->addStatAircraft($number['aircraft_icao'],$number['aircraft_icao_count'],$number['aircraft_name'],$number['aircraft_manufacturer'],$number['airline_icao'],'',$reset); |
1815 | 2072 | } |
1816 | - if ($globalDebug) echo 'Count all aircraft registrations by airlines...'."\n"; |
|
2073 | + if ($globalDebug) { |
|
2074 | + echo 'Count all aircraft registrations by airlines...'."\n"; |
|
2075 | + } |
|
1817 | 2076 | $alldata = $Spotter->countAllAircraftRegistrationsByAirlines(false,0,$last_update_day); |
1818 | 2077 | foreach ($alldata as $number) { |
1819 | 2078 | $this->addStatAircraftRegistration($number['registration'],$number['aircraft_registration_count'],$number['aircraft_icao'],$number['airline_icao'],'',$reset); |
1820 | 2079 | } |
1821 | - if ($globalDebug) echo 'Count all callsigns by airlines...'."\n"; |
|
2080 | + if ($globalDebug) { |
|
2081 | + echo 'Count all callsigns by airlines...'."\n"; |
|
2082 | + } |
|
1822 | 2083 | $alldata = $Spotter->countAllCallsignsByAirlines(false,0,$last_update_day); |
1823 | 2084 | foreach ($alldata as $number) { |
1824 | 2085 | $this->addStatCallsign($number['callsign_icao'],$number['callsign_icao_count'],$number['airline_icao'],'',$reset); |
1825 | 2086 | } |
1826 | - if ($globalDebug) echo 'Count all owners by airlines...'."\n"; |
|
2087 | + if ($globalDebug) { |
|
2088 | + echo 'Count all owners by airlines...'."\n"; |
|
2089 | + } |
|
1827 | 2090 | $alldata = $Spotter->countAllOwnersByAirlines(false,0,$last_update_day); |
1828 | 2091 | foreach ($alldata as $number) { |
1829 | 2092 | $this->addStatOwner($number['owner_name'],$number['owner_count'],$number['airline_icao'],'',$reset); |
1830 | 2093 | } |
1831 | - if ($globalDebug) echo 'Count all pilots by airlines...'."\n"; |
|
2094 | + if ($globalDebug) { |
|
2095 | + echo 'Count all pilots by airlines...'."\n"; |
|
2096 | + } |
|
1832 | 2097 | $alldata = $Spotter->countAllPilotsByAirlines(false,0,$last_update_day); |
1833 | 2098 | foreach ($alldata as $number) { |
1834 | 2099 | $this->addStatPilot($number['pilot_id'],$number['pilot_count'],$number['pilot_name'],$number['airline_icao'],'',$number['format_source'],$reset); |
1835 | 2100 | } |
1836 | - if ($globalDebug) echo 'Count all departure airports by airlines...'."\n"; |
|
2101 | + if ($globalDebug) { |
|
2102 | + echo 'Count all departure airports by airlines...'."\n"; |
|
2103 | + } |
|
1837 | 2104 | $pall = $Spotter->countAllDepartureAirportsByAirlines(false,0,$last_update_day); |
1838 | - if ($globalDebug) echo 'Count all detected departure airports by airlines...'."\n"; |
|
2105 | + if ($globalDebug) { |
|
2106 | + echo 'Count all detected departure airports by airlines...'."\n"; |
|
2107 | + } |
|
1839 | 2108 | $dall = $Spotter->countAllDetectedDepartureAirportsByAirlines(false,0,$last_update_day); |
1840 | - if ($globalDebug) echo 'Order detected departure airports by airlines...'."\n"; |
|
2109 | + if ($globalDebug) { |
|
2110 | + echo 'Order detected departure airports by airlines...'."\n"; |
|
2111 | + } |
|
1841 | 2112 | //$alldata = array(); |
1842 | 2113 | foreach ($dall as $value) { |
1843 | 2114 | $icao = $value['airport_departure_icao']; |
@@ -1858,11 +2129,17 @@ discard block |
||
1858 | 2129 | foreach ($alldata as $number) { |
1859 | 2130 | echo $this->addStatDepartureAirports($number['airport_departure_icao'],$number['airport_departure_name'],$number['airport_departure_city'],$number['airport_departure_country'],$number['airport_departure_icao_count'],$number['airline_icao'],'',$reset); |
1860 | 2131 | } |
1861 | - if ($globalDebug) echo 'Count all arrival airports by airlines...'."\n"; |
|
2132 | + if ($globalDebug) { |
|
2133 | + echo 'Count all arrival airports by airlines...'."\n"; |
|
2134 | + } |
|
1862 | 2135 | $pall = $Spotter->countAllArrivalAirportsByAirlines(false,0,$last_update_day); |
1863 | - if ($globalDebug) echo 'Count all detected arrival airports by airlines...'."\n"; |
|
2136 | + if ($globalDebug) { |
|
2137 | + echo 'Count all detected arrival airports by airlines...'."\n"; |
|
2138 | + } |
|
1864 | 2139 | $dall = $Spotter->countAllDetectedArrivalAirportsByAirlines(false,0,$last_update_day); |
1865 | - if ($globalDebug) echo 'Order arrival airports by airlines...'."\n"; |
|
2140 | + if ($globalDebug) { |
|
2141 | + echo 'Order arrival airports by airlines...'."\n"; |
|
2142 | + } |
|
1866 | 2143 | //$alldata = array(); |
1867 | 2144 | foreach ($dall as $value) { |
1868 | 2145 | $icao = $value['airport_arrival_icao']; |
@@ -1881,37 +2158,53 @@ discard block |
||
1881 | 2158 | } |
1882 | 2159 | $alldata = $pall; |
1883 | 2160 | foreach ($alldata as $number) { |
1884 | - if ($number['airline_icao'] != '') echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],$number['airline_icao'],'',$reset); |
|
2161 | + if ($number['airline_icao'] != '') { |
|
2162 | + echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],$number['airline_icao'],'',$reset); |
|
2163 | + } |
|
2164 | + } |
|
2165 | + if ($globalDebug) { |
|
2166 | + echo 'Count all flights by months by airlines...'."\n"; |
|
1885 | 2167 | } |
1886 | - if ($globalDebug) echo 'Count all flights by months by airlines...'."\n"; |
|
1887 | 2168 | $Spotter = new Spotter($this->db); |
1888 | 2169 | $alldata = $Spotter->countAllMonthsByAirlines(); |
1889 | 2170 | $lastyear = false; |
1890 | 2171 | foreach ($alldata as $number) { |
1891 | - if ($number['year_name'] != date('Y')) $lastyear = true; |
|
2172 | + if ($number['year_name'] != date('Y')) { |
|
2173 | + $lastyear = true; |
|
2174 | + } |
|
1892 | 2175 | $this->addStat('flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']); |
1893 | 2176 | } |
1894 | - if ($globalDebug) echo 'Count all owners by months by airlines...'."\n"; |
|
2177 | + if ($globalDebug) { |
|
2178 | + echo 'Count all owners by months by airlines...'."\n"; |
|
2179 | + } |
|
1895 | 2180 | $alldata = $Spotter->countAllMonthsOwnersByAirlines(); |
1896 | 2181 | foreach ($alldata as $number) { |
1897 | 2182 | $this->addStat('owners_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']); |
1898 | 2183 | } |
1899 | - if ($globalDebug) echo 'Count all pilots by months by airlines...'."\n"; |
|
2184 | + if ($globalDebug) { |
|
2185 | + echo 'Count all pilots by months by airlines...'."\n"; |
|
2186 | + } |
|
1900 | 2187 | $alldata = $Spotter->countAllMonthsPilotsByAirlines(); |
1901 | 2188 | foreach ($alldata as $number) { |
1902 | 2189 | $this->addStat('pilots_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']); |
1903 | 2190 | } |
1904 | - if ($globalDebug) echo 'Count all aircrafts by months by airlines...'."\n"; |
|
2191 | + if ($globalDebug) { |
|
2192 | + echo 'Count all aircrafts by months by airlines...'."\n"; |
|
2193 | + } |
|
1905 | 2194 | $alldata = $Spotter->countAllMonthsAircraftsByAirlines(); |
1906 | 2195 | foreach ($alldata as $number) { |
1907 | 2196 | $this->addStat('aircrafts_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']); |
1908 | 2197 | } |
1909 | - if ($globalDebug) echo 'Count all real arrivals by months by airlines...'."\n"; |
|
2198 | + if ($globalDebug) { |
|
2199 | + echo 'Count all real arrivals by months by airlines...'."\n"; |
|
2200 | + } |
|
1910 | 2201 | $alldata = $Spotter->countAllMonthsRealArrivalsByAirlines(); |
1911 | 2202 | foreach ($alldata as $number) { |
1912 | 2203 | $this->addStat('realarrivals_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']); |
1913 | 2204 | } |
1914 | - if ($globalDebug) echo '...Departure'."\n"; |
|
2205 | + if ($globalDebug) { |
|
2206 | + echo '...Departure'."\n"; |
|
2207 | + } |
|
1915 | 2208 | $pall = $Spotter->getLast7DaysAirportsDepartureByAirlines(); |
1916 | 2209 | $dall = $Spotter->getLast7DaysDetectedAirportsDepartureByAirlines(); |
1917 | 2210 | foreach ($dall as $value) { |
@@ -1934,7 +2227,9 @@ discard block |
||
1934 | 2227 | foreach ($alldata as $number) { |
1935 | 2228 | $this->addStatDepartureAirportsDaily($number['date'],$number['departure_airport_icao'],$number['departure_airport_name'],$number['departure_airport_city'],$number['departure_airport_country'],$number['departure_airport_count'],$number['airline_icao']); |
1936 | 2229 | } |
1937 | - if ($globalDebug) echo '...Arrival'."\n"; |
|
2230 | + if ($globalDebug) { |
|
2231 | + echo '...Arrival'."\n"; |
|
2232 | + } |
|
1938 | 2233 | $pall = $Spotter->getLast7DaysAirportsArrivalByAirlines(); |
1939 | 2234 | $dall = $Spotter->getLast7DaysDetectedAirportsArrivalByAirlines(); |
1940 | 2235 | foreach ($dall as $value) { |
@@ -1958,13 +2253,19 @@ discard block |
||
1958 | 2253 | $this->addStatArrivalAirportsDaily($number['date'],$number['arrival_airport_icao'],$number['arrival_airport_name'],$number['arrival_airport_city'],$number['arrival_airport_country'],$number['arrival_airport_count'],$number['airline_icao']); |
1959 | 2254 | } |
1960 | 2255 | |
1961 | - if ($globalDebug) echo 'Flights data...'."\n"; |
|
1962 | - if ($globalDebug) echo '-> countAllDatesLastMonth...'."\n"; |
|
2256 | + if ($globalDebug) { |
|
2257 | + echo 'Flights data...'."\n"; |
|
2258 | + } |
|
2259 | + if ($globalDebug) { |
|
2260 | + echo '-> countAllDatesLastMonth...'."\n"; |
|
2261 | + } |
|
1963 | 2262 | $alldata = $Spotter->countAllDatesLastMonthByAirlines(); |
1964 | 2263 | foreach ($alldata as $number) { |
1965 | 2264 | $this->addStatFlight('month',$number['date_name'],$number['date_count'], $number['airline_icao']); |
1966 | 2265 | } |
1967 | - if ($globalDebug) echo '-> countAllDates...'."\n"; |
|
2266 | + if ($globalDebug) { |
|
2267 | + echo '-> countAllDates...'."\n"; |
|
2268 | + } |
|
1968 | 2269 | //$previousdata = $this->countAllDatesByAirlines(); |
1969 | 2270 | $alldata = $Common->array_merge_noappend($previousdatabyairlines,$Spotter->countAllDatesByAirlines()); |
1970 | 2271 | $values = array(); |
@@ -1977,7 +2278,9 @@ discard block |
||
1977 | 2278 | $this->addStatFlight('date',$number['date_name'],$number['date_count'],$number['airline_icao']); |
1978 | 2279 | } |
1979 | 2280 | |
1980 | - if ($globalDebug) echo '-> countAllHours...'."\n"; |
|
2281 | + if ($globalDebug) { |
|
2282 | + echo '-> countAllHours...'."\n"; |
|
2283 | + } |
|
1981 | 2284 | $alldata = $Spotter->countAllHoursByAirlines('hour'); |
1982 | 2285 | foreach ($alldata as $number) { |
1983 | 2286 | $this->addStatFlight('hour',$number['hour_name'],$number['hour_count'],$number['airline_icao']); |
@@ -1985,14 +2288,18 @@ discard block |
||
1985 | 2288 | |
1986 | 2289 | |
1987 | 2290 | // Stats by filters |
1988 | - if (!isset($globalStatsFilters) || $globalStatsFilters == '') $globalStatsFilters = array(); |
|
2291 | + if (!isset($globalStatsFilters) || $globalStatsFilters == '') { |
|
2292 | + $globalStatsFilters = array(); |
|
2293 | + } |
|
1989 | 2294 | foreach ($globalStatsFilters as $name => $filter) { |
1990 | 2295 | //$filter_name = $filter['name']; |
1991 | 2296 | $filter_name = $name; |
1992 | 2297 | $reset = false; |
1993 | 2298 | $last_update = $this->getLastStatsUpdate('last_update_stats_'.$filter_name); |
1994 | 2299 | if (isset($filter['resetall']) && isset($last_update[0]['value']) && strtotime($filter['resetall']) > strtotime($last_update[0]['value'])) { |
1995 | - if ($globalDebug) echo '!!! Delete stats for filter '.$filter_name.' !!!'."\n"; |
|
2300 | + if ($globalDebug) { |
|
2301 | + echo '!!! Delete stats for filter '.$filter_name.' !!!'."\n"; |
|
2302 | + } |
|
1996 | 2303 | $this->deleteOldStats($filter_name); |
1997 | 2304 | unset($last_update); |
1998 | 2305 | } |
@@ -2011,7 +2318,9 @@ discard block |
||
2011 | 2318 | |
2012 | 2319 | |
2013 | 2320 | // Count by filter |
2014 | - if ($globalDebug) echo '--- Stats for filter '.$filter_name.' ---'."\n"; |
|
2321 | + if ($globalDebug) { |
|
2322 | + echo '--- Stats for filter '.$filter_name.' ---'."\n"; |
|
2323 | + } |
|
2015 | 2324 | $Spotter = new Spotter($this->db); |
2016 | 2325 | $alldata = $Spotter->countAllAircraftTypes(false,0,$last_update_day,$filter); |
2017 | 2326 | foreach ($alldata as $number) { |
@@ -2048,7 +2357,9 @@ discard block |
||
2048 | 2357 | $icao = $value['airport_departure_icao']; |
2049 | 2358 | if (isset($alldata[$icao])) { |
2050 | 2359 | $alldata[$icao]['airport_departure_icao_count'] = $alldata[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count']; |
2051 | - } else $alldata[$icao] = $value; |
|
2360 | + } else { |
|
2361 | + $alldata[$icao] = $value; |
|
2362 | + } |
|
2052 | 2363 | } |
2053 | 2364 | $count = array(); |
2054 | 2365 | foreach ($alldata as $key => $row) { |
@@ -2069,7 +2380,9 @@ discard block |
||
2069 | 2380 | $icao = $value['airport_arrival_icao']; |
2070 | 2381 | if (isset($alldata[$icao])) { |
2071 | 2382 | $alldata[$icao]['airport_arrival_icao_count'] = $alldata[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count']; |
2072 | - } else $alldata[$icao] = $value; |
|
2383 | + } else { |
|
2384 | + $alldata[$icao] = $value; |
|
2385 | + } |
|
2073 | 2386 | } |
2074 | 2387 | $count = array(); |
2075 | 2388 | foreach ($alldata as $key => $row) { |
@@ -2083,7 +2396,9 @@ discard block |
||
2083 | 2396 | $alldata = $Spotter->countAllMonths($filter); |
2084 | 2397 | $lastyear = false; |
2085 | 2398 | foreach ($alldata as $number) { |
2086 | - if ($number['year_name'] != date('Y')) $lastyear = true; |
|
2399 | + if ($number['year_name'] != date('Y')) { |
|
2400 | + $lastyear = true; |
|
2401 | + } |
|
2087 | 2402 | $this->addStat('flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),'',$filter_name); |
2088 | 2403 | } |
2089 | 2404 | $alldata = $Spotter->countAllMonthsOwners($filter); |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | if (isset($globalTimezone) && $globalTimezone != '') date_default_timezone_set($globalTimezone); |
47 | 47 | print '<i>Last update: '.date('Y-m-d G:i:s',$lastupdate).'</i>'; |
48 | 48 | } |
49 | - ?> |
|
49 | + ?> |
|
50 | 50 | </div> |
51 | 51 | <?php include('statistics-sub-menu.php'); ?> |
52 | 52 | <p class="global-stats"> |
@@ -55,23 +55,23 @@ discard block |
||
55 | 55 | <span><span class="badge"><?php print number_format($Stats->countOverallArrival($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Arrivals seen"); ?></span> |
56 | 56 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
57 | 57 | <?php |
58 | - if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
58 | + if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
59 | 59 | ?> |
60 | 60 | <span><span class="badge"><?php print number_format($Stats->countOverallPilots($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Pilots"); ?></span> |
61 | 61 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
62 | 62 | <?php |
63 | - } else { |
|
64 | - ?> |
|
63 | + } else { |
|
64 | + ?> |
|
65 | 65 | <span><span class="badge"><?php print number_format($Stats->countOverallOwners($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Owners"); ?></span> |
66 | 66 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
67 | 67 | <?php |
68 | - } |
|
69 | - ?> |
|
68 | + } |
|
69 | + ?> |
|
70 | 70 | <span><span class="badge"><?php print number_format($Stats->countOverallAircrafts($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Aircrafts types"); ?></span> |
71 | 71 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
72 | 72 | <?php |
73 | - if ($airline_icao == '') { |
|
74 | - ?> |
|
73 | + if ($airline_icao == '') { |
|
74 | + ?> |
|
75 | 75 | <span><span class="badge"><?php print number_format($Stats->countOverallAirlines($filter_name,$year,$month)); ?></span> <?php echo _("Airlines"); ?></span> |
76 | 76 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
77 | 77 | <?php |
@@ -94,25 +94,25 @@ discard block |
||
94 | 94 | <div class="col-md-6"> |
95 | 95 | <h2><?php echo _("Top 10 Most Common Aircraft Type"); ?></h2> |
96 | 96 | <?php |
97 | - $aircraft_array = $Stats->countAllAircraftTypes(true,$airline_icao,$filter_name,$year,$month); |
|
98 | - if (count($aircraft_array) == 0) print _("No data available"); |
|
99 | - else { |
|
97 | + $aircraft_array = $Stats->countAllAircraftTypes(true,$airline_icao,$filter_name,$year,$month); |
|
98 | + if (count($aircraft_array) == 0) print _("No data available"); |
|
99 | + else { |
|
100 | 100 | |
101 | - print '<div id="chart1" class="chart" width="100%"></div> |
|
101 | + print '<div id="chart1" class="chart" width="100%"></div> |
|
102 | 102 | <script> |
103 | 103 | google.load("visualization", "1", {packages:["corechart"]}); |
104 | 104 | google.setOnLoadCallback(drawChart1); |
105 | 105 | function drawChart1() { |
106 | 106 | var data = google.visualization.arrayToDataTable([ |
107 | 107 | ["'._("Aircraft").'", "'._("# of times").'"], '; |
108 | - $aircraft_data = ''; |
|
109 | - foreach($aircraft_array as $aircraft_item) |
|
110 | - { |
|
111 | - $aircraft_data .= '[ "'.$aircraft_item['aircraft_manufacturer'].' '.$aircraft_item['aircraft_name'].' ('.$aircraft_item['aircraft_icao'].')",'.$aircraft_item['aircraft_icao_count'].'],'; |
|
112 | - } |
|
113 | - $aircraft_data = substr($aircraft_data, 0, -1); |
|
114 | - print $aircraft_data; |
|
115 | - print ']); |
|
108 | + $aircraft_data = ''; |
|
109 | + foreach($aircraft_array as $aircraft_item) |
|
110 | + { |
|
111 | + $aircraft_data .= '[ "'.$aircraft_item['aircraft_manufacturer'].' '.$aircraft_item['aircraft_name'].' ('.$aircraft_item['aircraft_icao'].')",'.$aircraft_item['aircraft_icao_count'].'],'; |
|
112 | + } |
|
113 | + $aircraft_data = substr($aircraft_data, 0, -1); |
|
114 | + print $aircraft_data; |
|
115 | + print ']); |
|
116 | 116 | |
117 | 117 | var options = { |
118 | 118 | chartArea: {"width": "80%", "height": "60%"}, |
@@ -127,45 +127,45 @@ discard block |
||
127 | 127 | drawChart1(); |
128 | 128 | }); |
129 | 129 | </script>'; |
130 | - } |
|
131 | - ?> |
|
130 | + } |
|
131 | + ?> |
|
132 | 132 | <div class="more"> |
133 | 133 | <?php |
134 | - if ($year != '' && $month != '') { |
|
135 | - ?> |
|
134 | + if ($year != '' && $month != '') { |
|
135 | + ?> |
|
136 | 136 | <a href="<?php print $globalURL; ?>/statistics/aircraft<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year; ?>/<?php echo $month ?>/" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
137 | 137 | <?php |
138 | - } else { |
|
139 | - ?> |
|
138 | + } else { |
|
139 | + ?> |
|
140 | 140 | <a href="<?php print $globalURL; ?>/statistics/aircraft<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
141 | 141 | <?php |
142 | - } |
|
143 | - ?> |
|
142 | + } |
|
143 | + ?> |
|
144 | 144 | </div> |
145 | 145 | </div> |
146 | 146 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
147 | 147 | <?php |
148 | 148 | // echo $airline_icao; |
149 | - if ($airline_icao == '' || $airline_icao == 'all') { |
|
149 | + if ($airline_icao == '' || $airline_icao == 'all') { |
|
150 | 150 | $airline_array = $Stats->countAllAirlines(true,$filter_name,$year,$month); |
151 | 151 | if (count($airline_array) > 0) { |
152 | - print '<div class="col-md-6">'; |
|
153 | - print '<h2>'._("Top 10 Most Common Airline").'</h2>'; |
|
154 | - print '<div id="chart2" class="chart" width="100%"></div> |
|
152 | + print '<div class="col-md-6">'; |
|
153 | + print '<h2>'._("Top 10 Most Common Airline").'</h2>'; |
|
154 | + print '<div id="chart2" class="chart" width="100%"></div> |
|
155 | 155 | <script> |
156 | 156 | google.load("visualization", "1", {packages:["corechart"]}); |
157 | 157 | google.setOnLoadCallback(drawChart2); |
158 | 158 | function drawChart2() { |
159 | 159 | var data = google.visualization.arrayToDataTable([ |
160 | 160 | ["'._("Airline").'", "'._("# of times").'"], '; |
161 | - $airline_data = ''; |
|
162 | - foreach($airline_array as $airline_item) |
|
163 | - { |
|
161 | + $airline_data = ''; |
|
162 | + foreach($airline_array as $airline_item) |
|
163 | + { |
|
164 | 164 | $airline_data .= '[ "'.$airline_item['airline_name'].' ('.$airline_item['airline_icao'].')",'.$airline_item['airline_count'].'],'; |
165 | - } |
|
166 | - $airline_data = substr($airline_data, 0, -1); |
|
167 | - print $airline_data; |
|
168 | - print ']); |
|
165 | + } |
|
166 | + $airline_data = substr($airline_data, 0, -1); |
|
167 | + print $airline_data; |
|
168 | + print ']); |
|
169 | 169 | |
170 | 170 | var options = { |
171 | 171 | chartArea: {"width": "80%", "height": "60%"}, |
@@ -180,31 +180,31 @@ discard block |
||
180 | 180 | drawChart2(); |
181 | 181 | }); |
182 | 182 | </script>'; |
183 | - if ($year != '' && $month != '') { |
|
183 | + if ($year != '' && $month != '') { |
|
184 | 184 | print '<div class="more"><a href="'.$globalURL.'/statistics/airline'; |
185 | 185 | if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; |
186 | 186 | print '/'.$year.'/'.$month.'/" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
187 | - } else { |
|
187 | + } else { |
|
188 | 188 | print '<div class="more"><a href="'.$globalURL.'/statistics/airline'; |
189 | 189 | if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; |
190 | 190 | print '" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
191 | - } |
|
192 | - print '</div>'; |
|
191 | + } |
|
192 | + print '</div>'; |
|
193 | 193 | } |
194 | 194 | ?> |
195 | 195 | </div> |
196 | 196 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
197 | 197 | <?php |
198 | - } |
|
198 | + } |
|
199 | 199 | ?> |
200 | 200 | <div class="row column"> |
201 | 201 | <?php |
202 | - $flightover_array = $Stats->countAllFlightOverCountries(false,$airline_icao,$filter_name,$year,$month); |
|
203 | - if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
202 | + $flightover_array = $Stats->countAllFlightOverCountries(false,$airline_icao,$filter_name,$year,$month); |
|
203 | + if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
204 | 204 | if (empty($flightover_array)) { |
205 | - print '<div class="col-md-12">'; |
|
205 | + print '<div class="col-md-12">'; |
|
206 | 206 | } else { |
207 | - print '<div class="col-md-6">'; |
|
207 | + print '<div class="col-md-6">'; |
|
208 | 208 | } |
209 | 209 | ?> |
210 | 210 | <h2><?php echo _("Top 10 Most Common Pilots"); ?></h2> |
@@ -212,21 +212,21 @@ discard block |
||
212 | 212 | $pilot_array = $Stats->countAllPilots(true,$airline_icao,$filter_name,$year,$month); |
213 | 213 | if (count($pilot_array) == 0) print _("No data available"); |
214 | 214 | else { |
215 | - print '<div id="chart7" class="chart" width="100%"></div> |
|
215 | + print '<div id="chart7" class="chart" width="100%"></div> |
|
216 | 216 | <script> |
217 | 217 | google.load("visualization", "1", {packages:["corechart"]}); |
218 | 218 | google.setOnLoadCallback(drawChart7); |
219 | 219 | function drawChart7() { |
220 | 220 | var data = google.visualization.arrayToDataTable([ |
221 | 221 | ["'._("Pilots").'", "'._("# of times").'"], '; |
222 | - $pilot_data = ''; |
|
223 | - foreach($pilot_array as $pilot_item) |
|
224 | - { |
|
222 | + $pilot_data = ''; |
|
223 | + foreach($pilot_array as $pilot_item) |
|
224 | + { |
|
225 | 225 | $pilot_data .= '[ "'.$pilot_item['pilot_name'].' ('.$pilot_item['pilot_id'].')",'.$pilot_item['pilot_count'].'],'; |
226 | - } |
|
227 | - $pilot_data = substr($pilot_data, 0, -1); |
|
228 | - print $pilot_data; |
|
229 | - print ']); |
|
226 | + } |
|
227 | + $pilot_data = substr($pilot_data, 0, -1); |
|
228 | + print $pilot_data; |
|
229 | + print ']); |
|
230 | 230 | |
231 | 231 | var options = { |
232 | 232 | chartArea: {"width": "80%", "height": "60%"}, |
@@ -241,8 +241,8 @@ discard block |
||
241 | 241 | drawChart7(); |
242 | 242 | }); |
243 | 243 | </script>'; |
244 | - } |
|
245 | - print '<div class="more">'; |
|
244 | + } |
|
245 | + print '<div class="more">'; |
|
246 | 246 | print '<a href="'.$globalURL.'/statistics/pilot'; |
247 | 247 | if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; |
248 | 248 | print'" class="btn btn-default btn" role="button">'._("See full statistic").'»</a>'; |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | |
253 | 253 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
254 | 254 | <?php |
255 | - } else { |
|
255 | + } else { |
|
256 | 256 | ?> |
257 | 257 | <div class="col-md-6"> |
258 | 258 | <h2><?php echo _("Top 10 Most Common Owners"); ?></h2> |
@@ -260,21 +260,21 @@ discard block |
||
260 | 260 | $owner_array = $Stats->countAllOwners(true,$airline_icao,$filter_name,$year,$month); |
261 | 261 | if (count($owner_array) == 0) print _("No data available"); |
262 | 262 | else { |
263 | - print '<div id="chart7" class="chart" width="100%"></div> |
|
263 | + print '<div id="chart7" class="chart" width="100%"></div> |
|
264 | 264 | <script> |
265 | 265 | google.load("visualization", "1", {packages:["corechart"]}); |
266 | 266 | google.setOnLoadCallback(drawChart7); |
267 | 267 | function drawChart7() { |
268 | 268 | var data = google.visualization.arrayToDataTable([ |
269 | 269 | ["'._("Owner").'", "'._("# of times").'"], '; |
270 | - $owner_data = ''; |
|
271 | - foreach($owner_array as $owner_item) |
|
272 | - { |
|
270 | + $owner_data = ''; |
|
271 | + foreach($owner_array as $owner_item) |
|
272 | + { |
|
273 | 273 | $owner_data .= '[ "'.$owner_item['owner_name'].'",'.$owner_item['owner_count'].'],'; |
274 | - } |
|
275 | - $owner_data = substr($owner_data, 0, -1); |
|
276 | - print $owner_data; |
|
277 | - print ']); |
|
274 | + } |
|
275 | + $owner_data = substr($owner_data, 0, -1); |
|
276 | + print $owner_data; |
|
277 | + print ']); |
|
278 | 278 | |
279 | 279 | var options = { |
280 | 280 | chartArea: {"width": "80%", "height": "60%"}, |
@@ -298,8 +298,8 @@ discard block |
||
298 | 298 | |
299 | 299 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
300 | 300 | <?php |
301 | - } |
|
302 | - if (!empty($flightover_array)) { |
|
301 | + } |
|
302 | + if (!empty($flightover_array)) { |
|
303 | 303 | ?> |
304 | 304 | <div class="col-md-6"> |
305 | 305 | <h2><?php echo _("Top 20 Most Common Country a Flight was Over"); ?></h2> |
@@ -307,21 +307,21 @@ discard block |
||
307 | 307 | //$flightover_array = $Stats->countAllFlightOverCountries(); |
308 | 308 | if (count($flightover_array) == 0) print _("No data available"); |
309 | 309 | else { |
310 | - print '<div id="chart10" class="chart" width="100%"></div> |
|
310 | + print '<div id="chart10" class="chart" width="100%"></div> |
|
311 | 311 | <script> |
312 | 312 | google.load("visualization", "1", {packages:["corechart"]}); |
313 | 313 | google.setOnLoadCallback(drawChart10); |
314 | 314 | function drawChart10() { |
315 | 315 | var data = google.visualization.arrayToDataTable([ |
316 | 316 | ["'._("Country").'", "'._("# of times").'"], '; |
317 | - $flightover_data = ''; |
|
318 | - foreach($flightover_array as $flightover_item) |
|
319 | - { |
|
317 | + $flightover_data = ''; |
|
318 | + foreach($flightover_array as $flightover_item) |
|
319 | + { |
|
320 | 320 | $flightover_data .= '[ "'.$flightover_item['flight_country'].' ('.$flightover_item['flight_country_iso2'].')",'.$flightover_item['flight_count'].'],'; |
321 | - } |
|
322 | - $flightover_data = substr($flightover_data, 0, -1); |
|
323 | - print $flightover_data; |
|
324 | - print ']); |
|
321 | + } |
|
322 | + $flightover_data = substr($flightover_data, 0, -1); |
|
323 | + print $flightover_data; |
|
324 | + print ']); |
|
325 | 325 | |
326 | 326 | var options = { |
327 | 327 | chartArea: {"width": "80%", "height": "60%"}, |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | </div> |
346 | 346 | </div> |
347 | 347 | <?php |
348 | - } |
|
348 | + } |
|
349 | 349 | ?> |
350 | 350 | </div> |
351 | 351 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
@@ -355,8 +355,8 @@ discard block |
||
355 | 355 | <div class="row column"> |
356 | 356 | <div class="col-md-6"> |
357 | 357 | <?php |
358 | - $airport_airport_array = $Stats->countAllDepartureAirports(true,$airline_icao,$filter_name,$year,$month); |
|
359 | - if (count($airport_airport_array) > 0) { |
|
358 | + $airport_airport_array = $Stats->countAllDepartureAirports(true,$airline_icao,$filter_name,$year,$month); |
|
359 | + if (count($airport_airport_array) > 0) { |
|
360 | 360 | print '<h2>'._("Top 10 Most Common Departure Airports").'</h2>'; |
361 | 361 | print '<div id="chart3" class="chart" width="100%"></div> |
362 | 362 | <script> |
@@ -369,13 +369,13 @@ discard block |
||
369 | 369 | |
370 | 370 | var data = google.visualization.arrayToDataTable([ |
371 | 371 | ["'._("Airport").'", "'._("# of times").'"],'; |
372 | - $airport_data = ''; |
|
372 | + $airport_data = ''; |
|
373 | 373 | foreach($airport_airport_array as $airport_item) |
374 | 374 | { |
375 | - $name = $airport_item['airport_departure_city'].', '.$airport_item['airport_departure_country'].' ('.$airport_item['airport_departure_icao'].')'; |
|
376 | - $name = str_replace("'", "", $name); |
|
377 | - $name = str_replace('"', "", $name); |
|
378 | - $airport_data .= '[ "'.$name.'",'.$airport_item['airport_departure_icao_count'].'],'; |
|
375 | + $name = $airport_item['airport_departure_city'].', '.$airport_item['airport_departure_country'].' ('.$airport_item['airport_departure_icao'].')'; |
|
376 | + $name = str_replace("'", "", $name); |
|
377 | + $name = str_replace('"', "", $name); |
|
378 | + $airport_data .= '[ "'.$name.'",'.$airport_item['airport_departure_icao_count'].'],'; |
|
379 | 379 | } |
380 | 380 | $airport_data = substr($airport_data, 0, -1); |
381 | 381 | print $airport_data; |
@@ -396,15 +396,15 @@ discard block |
||
396 | 396 | print '<div class="more"><a href="'.$globalURL.'/statistics/airport-departure'; |
397 | 397 | if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; |
398 | 398 | print '" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
399 | - } |
|
399 | + } |
|
400 | 400 | ?> |
401 | 401 | </div> |
402 | 402 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
403 | 403 | |
404 | 404 | <div class="col-md-6"> |
405 | 405 | <?php |
406 | - $airport_airport_array2 = $Stats->countAllArrivalAirports(true,$airline_icao,$filter_name,$year,$month); |
|
407 | - if (count($airport_airport_array2) > 0) { |
|
406 | + $airport_airport_array2 = $Stats->countAllArrivalAirports(true,$airline_icao,$filter_name,$year,$month); |
|
407 | + if (count($airport_airport_array2) > 0) { |
|
408 | 408 | print '<h2>'._("Top 10 Most Common Arrival Airports").'</h2>'; |
409 | 409 | print '<div id="chart4" class="chart" width="100%"></div> |
410 | 410 | <script> |
@@ -420,9 +420,9 @@ discard block |
||
420 | 420 | $airport_data2 = ''; |
421 | 421 | foreach($airport_airport_array2 as $airport_item2) |
422 | 422 | { |
423 | - $name2 = $airport_item2['airport_arrival_city'].', '.$airport_item2['airport_arrival_country'].' ('.$airport_item2['airport_arrival_icao'].')'; |
|
424 | - $name2 = str_replace(array("'",'"'), '', $name2); |
|
425 | - $airport_data2 .= '[ "'.$name2.'",'.$airport_item2['airport_arrival_icao_count'].'],'; |
|
423 | + $name2 = $airport_item2['airport_arrival_city'].', '.$airport_item2['airport_arrival_country'].' ('.$airport_item2['airport_arrival_icao'].')'; |
|
424 | + $name2 = str_replace(array("'",'"'), '', $name2); |
|
425 | + $airport_data2 .= '[ "'.$name2.'",'.$airport_item2['airport_arrival_icao_count'].'],'; |
|
426 | 426 | } |
427 | 427 | $airport_data2 = substr($airport_data2, 0, -1); |
428 | 428 | print $airport_data2; |
@@ -443,36 +443,36 @@ discard block |
||
443 | 443 | print '<div class="more"><a href="'.$globalURL.'/statistics/airport-arrival'; |
444 | 444 | if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; |
445 | 445 | print '" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
446 | - } |
|
446 | + } |
|
447 | 447 | ?> |
448 | 448 | </div> |
449 | 449 | </div> |
450 | 450 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
451 | 451 | <?php |
452 | - if ($year == '' && $month == '') { |
|
452 | + if ($year == '' && $month == '') { |
|
453 | 453 | ?> |
454 | 454 | <div class="row column"> |
455 | 455 | <div class="col-md-6"> |
456 | 456 | <h2><?php echo _("Busiest Months of the last 12 Months"); ?></h2> |
457 | 457 | <?php |
458 | - $year_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name); |
|
459 | - if (count($year_array) == 0) print _("No data available"); |
|
460 | - else { |
|
461 | - print '<div id="chart8" class="chart" width="100%"></div> |
|
458 | + $year_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name); |
|
459 | + if (count($year_array) == 0) print _("No data available"); |
|
460 | + else { |
|
461 | + print '<div id="chart8" class="chart" width="100%"></div> |
|
462 | 462 | <script> |
463 | 463 | google.load("visualization", "1", {packages:["corechart"]}); |
464 | 464 | google.setOnLoadCallback(drawChart8); |
465 | 465 | function drawChart8() { |
466 | 466 | var data = google.visualization.arrayToDataTable([ |
467 | 467 | ["'._("Month").'", "'._("# of Flights").'"], '; |
468 | - $year_data = ''; |
|
469 | - foreach($year_array as $year_item) |
|
470 | - { |
|
471 | - $year_data .= '[ "'.date('F, Y',strtotime($year_item['year_name'].'-'.$year_item['month_name'].'-01')).'",'.$year_item['date_count'].'],'; |
|
472 | - } |
|
473 | - $year_data = substr($year_data, 0, -1); |
|
474 | - print $year_data; |
|
475 | - print ']); |
|
468 | + $year_data = ''; |
|
469 | + foreach($year_array as $year_item) |
|
470 | + { |
|
471 | + $year_data .= '[ "'.date('F, Y',strtotime($year_item['year_name'].'-'.$year_item['month_name'].'-01')).'",'.$year_item['date_count'].'],'; |
|
472 | + } |
|
473 | + $year_data = substr($year_data, 0, -1); |
|
474 | + print $year_data; |
|
475 | + print ']); |
|
476 | 476 | |
477 | 477 | var options = { |
478 | 478 | legend: {position: "none"}, |
@@ -490,8 +490,8 @@ discard block |
||
490 | 490 | drawChart8(); |
491 | 491 | }); |
492 | 492 | </script>'; |
493 | - } |
|
494 | - ?> |
|
493 | + } |
|
494 | + ?> |
|
495 | 495 | <div class="more"> |
496 | 496 | <a href="<?php print $globalURL; ?>/statistics/year<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
497 | 497 | </div> |
@@ -500,24 +500,24 @@ discard block |
||
500 | 500 | <div class="col-md-6"> |
501 | 501 | <h2><?php echo _("Busiest Day in the last Month"); ?></h2> |
502 | 502 | <?php |
503 | - $month_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name); |
|
504 | - if (count($month_array) == 0) print _("No data available"); |
|
505 | - else { |
|
506 | - print '<div id="chart9" class="chart" width="100%"></div> |
|
503 | + $month_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name); |
|
504 | + if (count($month_array) == 0) print _("No data available"); |
|
505 | + else { |
|
506 | + print '<div id="chart9" class="chart" width="100%"></div> |
|
507 | 507 | <script> |
508 | 508 | google.load("visualization", "1", {packages:["corechart"]}); |
509 | 509 | google.setOnLoadCallback(drawChart9); |
510 | 510 | function drawChart9() { |
511 | 511 | var data = google.visualization.arrayToDataTable([ |
512 | 512 | ["'._("Day").'", "'._("# of Flights").'"], '; |
513 | - $month_data = ''; |
|
514 | - foreach($month_array as $month_item) |
|
515 | - { |
|
516 | - $month_data .= '[ "'.date('F j, Y',strtotime($month_item['date_name'])).'",'.$month_item['date_count'].'],'; |
|
517 | - } |
|
518 | - $month_data = substr($month_data, 0, -1); |
|
519 | - print $month_data; |
|
520 | - print ']); |
|
513 | + $month_data = ''; |
|
514 | + foreach($month_array as $month_item) |
|
515 | + { |
|
516 | + $month_data .= '[ "'.date('F j, Y',strtotime($month_item['date_name'])).'",'.$month_item['date_count'].'],'; |
|
517 | + } |
|
518 | + $month_data = substr($month_data, 0, -1); |
|
519 | + print $month_data; |
|
520 | + print ']); |
|
521 | 521 | |
522 | 522 | var options = { |
523 | 523 | legend: {position: "none"}, |
@@ -535,8 +535,8 @@ discard block |
||
535 | 535 | drawChart9(); |
536 | 536 | }); |
537 | 537 | </script>'; |
538 | - } |
|
539 | - ?> |
|
538 | + } |
|
539 | + ?> |
|
540 | 540 | <div class="more"> |
541 | 541 | <a href="<?php print $globalURL; ?>/statistics/month<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
542 | 542 | </div> |
@@ -546,25 +546,25 @@ discard block |
||
546 | 546 | <div class="col-md-6"> |
547 | 547 | <h2><?php echo _("Busiest Day in the last 7 Days"); ?></h2> |
548 | 548 | <?php |
549 | - $date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name); |
|
550 | - if (empty($date_array)) print _("No data available"); |
|
551 | - else { |
|
552 | - print '<div id="chart5" class="chart" width="100%"></div> |
|
549 | + $date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name); |
|
550 | + if (empty($date_array)) print _("No data available"); |
|
551 | + else { |
|
552 | + print '<div id="chart5" class="chart" width="100%"></div> |
|
553 | 553 | <script> |
554 | 554 | google.load("visualization", "1", {packages:["corechart"]}); |
555 | 555 | google.setOnLoadCallback(drawChart5); |
556 | 556 | function drawChart5() { |
557 | 557 | var data = google.visualization.arrayToDataTable([ |
558 | 558 | ["'._("Date").'", "'._("# of Flights").'"], '; |
559 | - $date_data = ''; |
|
559 | + $date_data = ''; |
|
560 | 560 | |
561 | - foreach($date_array as $date_item) |
|
562 | - { |
|
563 | - $date_data .= '[ "'.date("F j, Y", strtotime($date_item['date_name'])).'",'.$date_item['date_count'].'],'; |
|
564 | - } |
|
565 | - $date_data = substr($date_data, 0, -1); |
|
566 | - print $date_data; |
|
567 | - print ']); |
|
561 | + foreach($date_array as $date_item) |
|
562 | + { |
|
563 | + $date_data .= '[ "'.date("F j, Y", strtotime($date_item['date_name'])).'",'.$date_item['date_count'].'],'; |
|
564 | + } |
|
565 | + $date_data = substr($date_data, 0, -1); |
|
566 | + print $date_data; |
|
567 | + print ']); |
|
568 | 568 | |
569 | 569 | var options = { |
570 | 570 | legend: {position: "none"}, |
@@ -582,8 +582,8 @@ discard block |
||
582 | 582 | drawChart5(); |
583 | 583 | }); |
584 | 584 | </script>'; |
585 | - } |
|
586 | - ?> |
|
585 | + } |
|
586 | + ?> |
|
587 | 587 | <div class="more"> |
588 | 588 | <a href="<?php print $globalURL; ?>/statistics/date<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
589 | 589 | </div> |
@@ -592,25 +592,25 @@ discard block |
||
592 | 592 | <div class="col-md-6"> |
593 | 593 | <h2><?php echo _("Busiest Time of the Day"); ?></h2> |
594 | 594 | <?php |
595 | - $hour_array = $Stats->countAllHours('hour',true,$airline_icao,$filter_name); |
|
596 | - if (empty($hour_array)) print _("No data available"); |
|
597 | - else { |
|
595 | + $hour_array = $Stats->countAllHours('hour',true,$airline_icao,$filter_name); |
|
596 | + if (empty($hour_array)) print _("No data available"); |
|
597 | + else { |
|
598 | 598 | |
599 | - print '<div id="chart6" class="chart" width="100%"></div> |
|
599 | + print '<div id="chart6" class="chart" width="100%"></div> |
|
600 | 600 | <script> |
601 | 601 | google.load("visualization", "1", {packages:["corechart"]}); |
602 | 602 | google.setOnLoadCallback(drawChart6); |
603 | 603 | function drawChart6() { |
604 | 604 | var data = google.visualization.arrayToDataTable([ |
605 | 605 | ["'._("Hour").'", "'._("# of Flights").'"], '; |
606 | - $hour_data = ''; |
|
607 | - foreach($hour_array as $hour_item) |
|
608 | - { |
|
609 | - $hour_data .= '[ "'.$hour_item['hour_name'].':00",'.$hour_item['hour_count'].'],'; |
|
610 | - } |
|
611 | - $hour_data = substr($hour_data, 0, -1); |
|
612 | - print $hour_data; |
|
613 | - print ']); |
|
606 | + $hour_data = ''; |
|
607 | + foreach($hour_array as $hour_item) |
|
608 | + { |
|
609 | + $hour_data .= '[ "'.$hour_item['hour_name'].':00",'.$hour_item['hour_count'].'],'; |
|
610 | + } |
|
611 | + $hour_data = substr($hour_data, 0, -1); |
|
612 | + print $hour_data; |
|
613 | + print ']); |
|
614 | 614 | |
615 | 615 | var options = { |
616 | 616 | legend: {position: "none"}, |
@@ -628,8 +628,8 @@ discard block |
||
628 | 628 | drawChart6(); |
629 | 629 | }); |
630 | 630 | </script>'; |
631 | - } |
|
632 | - ?> |
|
631 | + } |
|
632 | + ?> |
|
633 | 633 | <div class="more"> |
634 | 634 | <a href="<?php print $globalURL; ?>/statistics/time<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
635 | 635 | </div> |
@@ -637,34 +637,34 @@ discard block |
||
637 | 637 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
638 | 638 | </div> |
639 | 639 | <?php |
640 | - } |
|
640 | + } |
|
641 | 641 | ?> |
642 | 642 | |
643 | 643 | <?php |
644 | - if (($airline_icao == '' || $airline_icao == 'all') && $year == '' && $month == '' && isset($globalAccidents) && $globalAccidents) { |
|
644 | + if (($airline_icao == '' || $airline_icao == 'all') && $year == '' && $month == '' && isset($globalAccidents) && $globalAccidents) { |
|
645 | 645 | ?> |
646 | 646 | <div class="row column"> |
647 | 647 | <div class="col-md-6"> |
648 | 648 | <h2><?php echo _("Fatalities by Years"); ?></h2> |
649 | 649 | <?php |
650 | - $year_array = $Stats->countFatalitiesByYear($filter_name); |
|
651 | - if (count($year_array) == 0) print _("No data available"); |
|
652 | - else { |
|
653 | - print '<div id="chart32" class="chart" width="100%"></div> |
|
650 | + $year_array = $Stats->countFatalitiesByYear($filter_name); |
|
651 | + if (count($year_array) == 0) print _("No data available"); |
|
652 | + else { |
|
653 | + print '<div id="chart32" class="chart" width="100%"></div> |
|
654 | 654 | <script> |
655 | 655 | google.load("visualization", "1", {packages:["corechart"]}); |
656 | 656 | google.setOnLoadCallback(drawChart32); |
657 | 657 | function drawChart32() { |
658 | 658 | var data = google.visualization.arrayToDataTable([ |
659 | 659 | ["'._("Year").'", "'._("# of Fatalities").'"], '; |
660 | - $year_data = ''; |
|
661 | - foreach($year_array as $year_item) |
|
662 | - { |
|
663 | - $year_data .= '[ "'.$year_item['year'].'",'.$year_item['count'].'],'; |
|
664 | - } |
|
665 | - $year_data = substr($year_data, 0, -1); |
|
666 | - print $year_data; |
|
667 | - print ']); |
|
660 | + $year_data = ''; |
|
661 | + foreach($year_array as $year_item) |
|
662 | + { |
|
663 | + $year_data .= '[ "'.$year_item['year'].'",'.$year_item['count'].'],'; |
|
664 | + } |
|
665 | + $year_data = substr($year_data, 0, -1); |
|
666 | + print $year_data; |
|
667 | + print ']); |
|
668 | 668 | |
669 | 669 | var options = { |
670 | 670 | legend: {position: "none"}, |
@@ -682,8 +682,8 @@ discard block |
||
682 | 682 | drawChart32(); |
683 | 683 | }); |
684 | 684 | </script>'; |
685 | - } |
|
686 | - ?> |
|
685 | + } |
|
686 | + ?> |
|
687 | 687 | <div class="more"> |
688 | 688 | <a href="<?php print $globalURL; ?>/statistics/fatalities/year" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
689 | 689 | </div> |
@@ -694,24 +694,24 @@ discard block |
||
694 | 694 | <div class="col-md-6"> |
695 | 695 | <h2><?php echo _("Fatalities last 12 Months"); ?></h2> |
696 | 696 | <?php |
697 | - $year_array = $Stats->countFatalitiesLast12Months($filter_name); |
|
698 | - if (count($year_array) == 0) print _("No data available"); |
|
699 | - else { |
|
700 | - print '<div id="chart33" class="chart" width="100%"></div> |
|
697 | + $year_array = $Stats->countFatalitiesLast12Months($filter_name); |
|
698 | + if (count($year_array) == 0) print _("No data available"); |
|
699 | + else { |
|
700 | + print '<div id="chart33" class="chart" width="100%"></div> |
|
701 | 701 | <script> |
702 | 702 | google.load("visualization", "1", {packages:["corechart"]}); |
703 | 703 | google.setOnLoadCallback(drawChart33); |
704 | 704 | function drawChart33() { |
705 | 705 | var data = google.visualization.arrayToDataTable([ |
706 | 706 | ["'._("Month").'", "'._("# of Fatalities").'"], '; |
707 | - $year_data = ''; |
|
708 | - foreach($year_array as $year_item) |
|
709 | - { |
|
710 | - $year_data .= '[ "'.date('F, Y',strtotime($year_item['year'].'-'.$year_item['month'].'-01')).'",'.$year_item['count'].'],'; |
|
711 | - } |
|
712 | - $year_data = substr($year_data, 0, -1); |
|
713 | - print $year_data; |
|
714 | - print ']); |
|
707 | + $year_data = ''; |
|
708 | + foreach($year_array as $year_item) |
|
709 | + { |
|
710 | + $year_data .= '[ "'.date('F, Y',strtotime($year_item['year'].'-'.$year_item['month'].'-01')).'",'.$year_item['count'].'],'; |
|
711 | + } |
|
712 | + $year_data = substr($year_data, 0, -1); |
|
713 | + print $year_data; |
|
714 | + print ']); |
|
715 | 715 | |
716 | 716 | var options = { |
717 | 717 | legend: {position: "none"}, |
@@ -729,8 +729,8 @@ discard block |
||
729 | 729 | drawChart33(); |
730 | 730 | }); |
731 | 731 | </script>'; |
732 | - } |
|
733 | - ?> |
|
732 | + } |
|
733 | + ?> |
|
734 | 734 | <div class="more"> |
735 | 735 | <a href="<?php print $globalURL; ?>/statistics/fatalities/month" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
736 | 736 | </div> |
@@ -738,30 +738,30 @@ discard block |
||
738 | 738 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
739 | 739 | <br/> |
740 | 740 | <?php |
741 | - } |
|
741 | + } |
|
742 | 742 | ?> |
743 | 743 | |
744 | 744 | <?php |
745 | - if (($airline_icao == '' || $airline_icao == 'all') && $filter_name == '' && $year == '' && $month == '') { |
|
745 | + if (($airline_icao == '' || $airline_icao == 'all') && $filter_name == '' && $year == '' && $month == '') { |
|
746 | 746 | ?> |
747 | 747 | <div class="row column"> |
748 | 748 | <?php |
749 | - //$polar = $Stats->getStatsSource(date('Y-m-d'),'polar'); |
|
750 | - if ($year == '' && $month == '') { |
|
751 | - $polar = $Stats->getStatsSource('polar',date('Y'),date('m'),date('d')); |
|
752 | - } else { |
|
753 | - $polar = $Stats->getStatsSource('polar',$year,$month); |
|
754 | - } |
|
755 | - if (!empty($polar)) { |
|
756 | - print '<h2>'._("Coverage pattern").'</h2>'; |
|
757 | - foreach ($polar as $eachpolar) { |
|
758 | - unset($polar_data); |
|
759 | - $Spotter = new Spotter(); |
|
760 | - $data = json_decode($eachpolar['source_data']); |
|
761 | - foreach($data as $value => $key) { |
|
762 | - $direction = $Spotter->parseDirection(($value*22.5)); |
|
763 | - $distance = $key; |
|
764 | - $unit = 'km'; |
|
749 | + //$polar = $Stats->getStatsSource(date('Y-m-d'),'polar'); |
|
750 | + if ($year == '' && $month == '') { |
|
751 | + $polar = $Stats->getStatsSource('polar',date('Y'),date('m'),date('d')); |
|
752 | + } else { |
|
753 | + $polar = $Stats->getStatsSource('polar',$year,$month); |
|
754 | + } |
|
755 | + if (!empty($polar)) { |
|
756 | + print '<h2>'._("Coverage pattern").'</h2>'; |
|
757 | + foreach ($polar as $eachpolar) { |
|
758 | + unset($polar_data); |
|
759 | + $Spotter = new Spotter(); |
|
760 | + $data = json_decode($eachpolar['source_data']); |
|
761 | + foreach($data as $value => $key) { |
|
762 | + $direction = $Spotter->parseDirection(($value*22.5)); |
|
763 | + $distance = $key; |
|
764 | + $unit = 'km'; |
|
765 | 765 | if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'nm') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'nm')) { |
766 | 766 | $distance = round($distance*0.539957); |
767 | 767 | $unit = 'nm'; |
@@ -772,10 +772,10 @@ discard block |
||
772 | 772 | $distance = $distance; |
773 | 773 | $unit = 'km'; |
774 | 774 | } |
775 | - if (!isset($polar_data)) $polar_data = '{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
776 | - else $polar_data = $polar_data.',{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
777 | - } |
|
778 | - ?> |
|
775 | + if (!isset($polar_data)) $polar_data = '{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
776 | + else $polar_data = $polar_data.',{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
777 | + } |
|
778 | + ?> |
|
779 | 779 | <div class="col-md-6"> |
780 | 780 | <h4><?php print $eachpolar['source_name']; ?></h4> |
781 | 781 | <div id="polar-<?php print str_replace(' ','_',strtolower($eachpolar['source_name'])); ?>" class="chart" width="100%"></div> |
@@ -807,27 +807,27 @@ discard block |
||
807 | 807 | </script> |
808 | 808 | </div> |
809 | 809 | <?php |
810 | - } |
|
811 | - } |
|
812 | - ?> |
|
810 | + } |
|
811 | + } |
|
812 | + ?> |
|
813 | 813 | </div> |
814 | 814 | <div class="row column"> |
815 | 815 | <div class="col-md-6"> |
816 | 816 | <?php |
817 | - //$msg = $Stats->getStatsSource(date('Y-m-d'),'msg'); |
|
818 | - if ($year == '' && $month == '') { |
|
819 | - $msg = $Stats->getStatsSource('msg',date('Y'),date('m'),date('d')); |
|
820 | - } else { |
|
821 | - $msg = $Stats->getStatsSource('msg',$year,$month); |
|
822 | - } |
|
823 | - if (!empty($msg)) { |
|
824 | - print '<h2>'._("Messages received").'</h2>'; |
|
825 | - foreach ($msg as $eachmsg) { |
|
826 | - //$eachmsg = $msg[0]; |
|
827 | - $data = $eachmsg['source_data']; |
|
828 | - if ($data > 500) $max = (round(($data+100)/100))*100; |
|
829 | - else $max = 500; |
|
830 | - ?> |
|
817 | + //$msg = $Stats->getStatsSource(date('Y-m-d'),'msg'); |
|
818 | + if ($year == '' && $month == '') { |
|
819 | + $msg = $Stats->getStatsSource('msg',date('Y'),date('m'),date('d')); |
|
820 | + } else { |
|
821 | + $msg = $Stats->getStatsSource('msg',$year,$month); |
|
822 | + } |
|
823 | + if (!empty($msg)) { |
|
824 | + print '<h2>'._("Messages received").'</h2>'; |
|
825 | + foreach ($msg as $eachmsg) { |
|
826 | + //$eachmsg = $msg[0]; |
|
827 | + $data = $eachmsg['source_data']; |
|
828 | + if ($data > 500) $max = (round(($data+100)/100))*100; |
|
829 | + else $max = 500; |
|
830 | + ?> |
|
831 | 831 | <div id="msg-<?php print str_replace(' ','_',strtolower($eachmsg['source_name'])); ?>" class="col-md-4"></div> |
832 | 832 | <script> |
833 | 833 | var g = new JustGage({ |
@@ -843,9 +843,9 @@ discard block |
||
843 | 843 | }); |
844 | 844 | </script> |
845 | 845 | <?php |
846 | - } |
|
847 | - } |
|
848 | - ?> |
|
846 | + } |
|
847 | + } |
|
848 | + ?> |
|
849 | 849 | </div> |
850 | 850 | </div> |
851 | 851 | <div class="row column"> |
@@ -877,19 +877,19 @@ discard block |
||
877 | 877 | $hist_data .= '[ "'.$distance.'",'.$nb.'],'; |
878 | 878 | } |
879 | 879 | $hist_data = substr($hist_data, 0, -1); |
880 | - ?> |
|
880 | + ?> |
|
881 | 881 | <div class="col-md-6"> |
882 | 882 | <h2><?php echo sprintf(_("Flights Distance for %s"),$source); ?></h2> |
883 | 883 | <?php |
884 | - print '<div id="charthist-'.str_replace(' ','_',strtolower($source)).'" class="chart" width="100%"></div> |
|
884 | + print '<div id="charthist-'.str_replace(' ','_',strtolower($source)).'" class="chart" width="100%"></div> |
|
885 | 885 | <script> |
886 | 886 | google.load("visualization", "1", {packages:["corechart"]}); |
887 | 887 | google.setOnLoadCallback(drawCharthist_'.str_replace(' ','_',strtolower($source)).'); |
888 | 888 | function drawCharthist_'.str_replace(' ','_',strtolower($source)).'() { |
889 | 889 | var data = google.visualization.arrayToDataTable([ |
890 | 890 | ["'._("Distance").'", "'._("# of Flights").'"], '; |
891 | - print $hist_data; |
|
892 | - print ']); |
|
891 | + print $hist_data; |
|
892 | + print ']); |
|
893 | 893 | |
894 | 894 | var options = { |
895 | 895 | legend: {position: "none"}, |
@@ -907,15 +907,15 @@ discard block |
||
907 | 907 | drawCharthist_'.str_replace(' ','_',strtolower($source)).'(); |
908 | 908 | }); |
909 | 909 | </script>'; |
910 | - ?> |
|
910 | + ?> |
|
911 | 911 | </div> |
912 | 912 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
913 | 913 | <?php |
914 | - } |
|
915 | - ?> |
|
914 | + } |
|
915 | + ?> |
|
916 | 916 | </div> |
917 | 917 | <?php |
918 | - } |
|
918 | + } |
|
919 | 919 | ?> |
920 | 920 | </div> |
921 | 921 | </div> |
@@ -6,11 +6,15 @@ discard block |
||
6 | 6 | $beginpage = microtime(true); |
7 | 7 | $Stats = new Stats(); |
8 | 8 | |
9 | -if (!isset($filter_name)) $filter_name = ''; |
|
9 | +if (!isset($filter_name)) { |
|
10 | + $filter_name = ''; |
|
11 | +} |
|
10 | 12 | $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
11 | 13 | if ($airline_icao == '' && isset($globalFilter)) { |
12 | - if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
13 | -} |
|
14 | + if (isset($globalFilter['airline'])) { |
|
15 | + $airline_icao = $globalFilter['airline'][0]; |
|
16 | + } |
|
17 | + } |
|
14 | 18 | if ($airline_icao != '' && $airline_icao != 'all') { |
15 | 19 | $Spotter = new Spotter(); |
16 | 20 | $airline_info = $Spotter->getAllAirlineInfo($airline_icao); |
@@ -36,14 +40,21 @@ discard block |
||
36 | 40 | <script type="text/javascript" src="<?php echo $globalURL; ?>/js/justgage.js"></script> |
37 | 41 | <div class="column"> |
38 | 42 | <div class="info"> |
39 | - <h1><?php if (isset($airline_name)) echo _("Statistics for ").$airline_name; else echo _("Statistics"); ?></h1> |
|
43 | + <h1><?php if (isset($airline_name)) { |
|
44 | + echo _("Statistics for ").$airline_name; |
|
45 | +} else { |
|
46 | + echo _("Statistics"); |
|
47 | +} |
|
48 | +?></h1> |
|
40 | 49 | <?php |
41 | 50 | $last_update = $Stats->getLastStatsUpdate(); |
42 | 51 | //if (isset($last_update[0]['value'])) print '<!-- Last update : '.$last_update[0]['value'].' -->'; |
43 | 52 | if (isset($last_update[0]['value'])) { |
44 | 53 | date_default_timezone_set('UTC'); |
45 | 54 | $lastupdate = strtotime($last_update[0]['value']); |
46 | - if (isset($globalTimezone) && $globalTimezone != '') date_default_timezone_set($globalTimezone); |
|
55 | + if (isset($globalTimezone) && $globalTimezone != '') { |
|
56 | + date_default_timezone_set($globalTimezone); |
|
57 | + } |
|
47 | 58 | print '<i>Last update: '.date('Y-m-d G:i:s',$lastupdate).'</i>'; |
48 | 59 | } |
49 | 60 | ?> |
@@ -95,8 +106,9 @@ discard block |
||
95 | 106 | <h2><?php echo _("Top 10 Most Common Aircraft Type"); ?></h2> |
96 | 107 | <?php |
97 | 108 | $aircraft_array = $Stats->countAllAircraftTypes(true,$airline_icao,$filter_name,$year,$month); |
98 | - if (count($aircraft_array) == 0) print _("No data available"); |
|
99 | - else { |
|
109 | + if (count($aircraft_array) == 0) { |
|
110 | + print _("No data available"); |
|
111 | + } else { |
|
100 | 112 | |
101 | 113 | print '<div id="chart1" class="chart" width="100%"></div> |
102 | 114 | <script> |
@@ -133,11 +145,17 @@ discard block |
||
133 | 145 | <?php |
134 | 146 | if ($year != '' && $month != '') { |
135 | 147 | ?> |
136 | - <a href="<?php print $globalURL; ?>/statistics/aircraft<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year; ?>/<?php echo $month ?>/" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
148 | + <a href="<?php print $globalURL; ?>/statistics/aircraft<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
149 | + echo '/'.$airline_icao; |
|
150 | +} |
|
151 | +?>/<?php echo $year; ?>/<?php echo $month ?>/" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
137 | 152 | <?php |
138 | 153 | } else { |
139 | 154 | ?> |
140 | - <a href="<?php print $globalURL; ?>/statistics/aircraft<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
155 | + <a href="<?php print $globalURL; ?>/statistics/aircraft<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
156 | + echo '/'.$airline_icao; |
|
157 | +} |
|
158 | +?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
141 | 159 | <?php |
142 | 160 | } |
143 | 161 | ?> |
@@ -182,11 +200,15 @@ discard block |
||
182 | 200 | </script>'; |
183 | 201 | if ($year != '' && $month != '') { |
184 | 202 | print '<div class="more"><a href="'.$globalURL.'/statistics/airline'; |
185 | - if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; |
|
203 | + if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
204 | + echo '/'.$airline_icao; |
|
205 | + } |
|
186 | 206 | print '/'.$year.'/'.$month.'/" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
187 | 207 | } else { |
188 | 208 | print '<div class="more"><a href="'.$globalURL.'/statistics/airline'; |
189 | - if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; |
|
209 | + if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
210 | + echo '/'.$airline_icao; |
|
211 | + } |
|
190 | 212 | print '" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
191 | 213 | } |
192 | 214 | print '</div>'; |
@@ -210,8 +232,9 @@ discard block |
||
210 | 232 | <h2><?php echo _("Top 10 Most Common Pilots"); ?></h2> |
211 | 233 | <?php |
212 | 234 | $pilot_array = $Stats->countAllPilots(true,$airline_icao,$filter_name,$year,$month); |
213 | - if (count($pilot_array) == 0) print _("No data available"); |
|
214 | - else { |
|
235 | + if (count($pilot_array) == 0) { |
|
236 | + print _("No data available"); |
|
237 | + } else { |
|
215 | 238 | print '<div id="chart7" class="chart" width="100%"></div> |
216 | 239 | <script> |
217 | 240 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -244,7 +267,9 @@ discard block |
||
244 | 267 | } |
245 | 268 | print '<div class="more">'; |
246 | 269 | print '<a href="'.$globalURL.'/statistics/pilot'; |
247 | - if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; |
|
270 | + if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
271 | + echo '/'.$airline_icao; |
|
272 | + } |
|
248 | 273 | print'" class="btn btn-default btn" role="button">'._("See full statistic").'»</a>'; |
249 | 274 | print '</div>'; |
250 | 275 | ?> |
@@ -258,8 +283,9 @@ discard block |
||
258 | 283 | <h2><?php echo _("Top 10 Most Common Owners"); ?></h2> |
259 | 284 | <?php |
260 | 285 | $owner_array = $Stats->countAllOwners(true,$airline_icao,$filter_name,$year,$month); |
261 | - if (count($owner_array) == 0) print _("No data available"); |
|
262 | - else { |
|
286 | + if (count($owner_array) == 0) { |
|
287 | + print _("No data available"); |
|
288 | + } else { |
|
263 | 289 | print '<div id="chart7" class="chart" width="100%"></div> |
264 | 290 | <script> |
265 | 291 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -292,7 +318,10 @@ discard block |
||
292 | 318 | } |
293 | 319 | ?> |
294 | 320 | <div class="more"> |
295 | - <a href="<?php print $globalURL; ?>/statistics/owner<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
321 | + <a href="<?php print $globalURL; ?>/statistics/owner<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
322 | + echo '/'.$airline_icao; |
|
323 | +} |
|
324 | +?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
296 | 325 | </div> |
297 | 326 | </div> |
298 | 327 | |
@@ -305,8 +334,9 @@ discard block |
||
305 | 334 | <h2><?php echo _("Top 20 Most Common Country a Flight was Over"); ?></h2> |
306 | 335 | <?php |
307 | 336 | //$flightover_array = $Stats->countAllFlightOverCountries(); |
308 | - if (count($flightover_array) == 0) print _("No data available"); |
|
309 | - else { |
|
337 | + if (count($flightover_array) == 0) { |
|
338 | + print _("No data available"); |
|
339 | + } else { |
|
310 | 340 | print '<div id="chart10" class="chart" width="100%"></div> |
311 | 341 | <script> |
312 | 342 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -341,7 +371,10 @@ discard block |
||
341 | 371 | } |
342 | 372 | ?> |
343 | 373 | <div class="more"> |
344 | - <a href="<?php print $globalURL; ?>/statistics/country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
374 | + <a href="<?php print $globalURL; ?>/statistics/country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
375 | + echo '/'.$airline_icao; |
|
376 | +} |
|
377 | +?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
345 | 378 | </div> |
346 | 379 | </div> |
347 | 380 | <?php |
@@ -394,7 +427,9 @@ discard block |
||
394 | 427 | } |
395 | 428 | </script>'; |
396 | 429 | print '<div class="more"><a href="'.$globalURL.'/statistics/airport-departure'; |
397 | - if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; |
|
430 | + if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
431 | + echo '/'.$airline_icao; |
|
432 | + } |
|
398 | 433 | print '" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
399 | 434 | } |
400 | 435 | ?> |
@@ -441,7 +476,9 @@ discard block |
||
441 | 476 | } |
442 | 477 | </script>'; |
443 | 478 | print '<div class="more"><a href="'.$globalURL.'/statistics/airport-arrival'; |
444 | - if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; |
|
479 | + if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
480 | + echo '/'.$airline_icao; |
|
481 | + } |
|
445 | 482 | print '" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
446 | 483 | } |
447 | 484 | ?> |
@@ -456,8 +493,9 @@ discard block |
||
456 | 493 | <h2><?php echo _("Busiest Months of the last 12 Months"); ?></h2> |
457 | 494 | <?php |
458 | 495 | $year_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name); |
459 | - if (count($year_array) == 0) print _("No data available"); |
|
460 | - else { |
|
496 | + if (count($year_array) == 0) { |
|
497 | + print _("No data available"); |
|
498 | + } else { |
|
461 | 499 | print '<div id="chart8" class="chart" width="100%"></div> |
462 | 500 | <script> |
463 | 501 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -493,7 +531,10 @@ discard block |
||
493 | 531 | } |
494 | 532 | ?> |
495 | 533 | <div class="more"> |
496 | - <a href="<?php print $globalURL; ?>/statistics/year<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
534 | + <a href="<?php print $globalURL; ?>/statistics/year<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
535 | + echo '/'.$airline_icao; |
|
536 | +} |
|
537 | +?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
497 | 538 | </div> |
498 | 539 | </div> |
499 | 540 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
@@ -501,8 +542,9 @@ discard block |
||
501 | 542 | <h2><?php echo _("Busiest Day in the last Month"); ?></h2> |
502 | 543 | <?php |
503 | 544 | $month_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name); |
504 | - if (count($month_array) == 0) print _("No data available"); |
|
505 | - else { |
|
545 | + if (count($month_array) == 0) { |
|
546 | + print _("No data available"); |
|
547 | + } else { |
|
506 | 548 | print '<div id="chart9" class="chart" width="100%"></div> |
507 | 549 | <script> |
508 | 550 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -538,7 +580,10 @@ discard block |
||
538 | 580 | } |
539 | 581 | ?> |
540 | 582 | <div class="more"> |
541 | - <a href="<?php print $globalURL; ?>/statistics/month<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
583 | + <a href="<?php print $globalURL; ?>/statistics/month<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
584 | + echo '/'.$airline_icao; |
|
585 | +} |
|
586 | +?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
542 | 587 | </div> |
543 | 588 | </div> |
544 | 589 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
@@ -547,8 +592,9 @@ discard block |
||
547 | 592 | <h2><?php echo _("Busiest Day in the last 7 Days"); ?></h2> |
548 | 593 | <?php |
549 | 594 | $date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name); |
550 | - if (empty($date_array)) print _("No data available"); |
|
551 | - else { |
|
595 | + if (empty($date_array)) { |
|
596 | + print _("No data available"); |
|
597 | + } else { |
|
552 | 598 | print '<div id="chart5" class="chart" width="100%"></div> |
553 | 599 | <script> |
554 | 600 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -585,7 +631,10 @@ discard block |
||
585 | 631 | } |
586 | 632 | ?> |
587 | 633 | <div class="more"> |
588 | - <a href="<?php print $globalURL; ?>/statistics/date<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
634 | + <a href="<?php print $globalURL; ?>/statistics/date<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
635 | + echo '/'.$airline_icao; |
|
636 | +} |
|
637 | +?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
589 | 638 | </div> |
590 | 639 | </div> |
591 | 640 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
@@ -593,8 +642,9 @@ discard block |
||
593 | 642 | <h2><?php echo _("Busiest Time of the Day"); ?></h2> |
594 | 643 | <?php |
595 | 644 | $hour_array = $Stats->countAllHours('hour',true,$airline_icao,$filter_name); |
596 | - if (empty($hour_array)) print _("No data available"); |
|
597 | - else { |
|
645 | + if (empty($hour_array)) { |
|
646 | + print _("No data available"); |
|
647 | + } else { |
|
598 | 648 | |
599 | 649 | print '<div id="chart6" class="chart" width="100%"></div> |
600 | 650 | <script> |
@@ -631,7 +681,10 @@ discard block |
||
631 | 681 | } |
632 | 682 | ?> |
633 | 683 | <div class="more"> |
634 | - <a href="<?php print $globalURL; ?>/statistics/time<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
684 | + <a href="<?php print $globalURL; ?>/statistics/time<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') { |
|
685 | + echo '/'.$airline_icao; |
|
686 | +} |
|
687 | +?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
|
635 | 688 | </div> |
636 | 689 | </div> |
637 | 690 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
@@ -648,8 +701,9 @@ discard block |
||
648 | 701 | <h2><?php echo _("Fatalities by Years"); ?></h2> |
649 | 702 | <?php |
650 | 703 | $year_array = $Stats->countFatalitiesByYear($filter_name); |
651 | - if (count($year_array) == 0) print _("No data available"); |
|
652 | - else { |
|
704 | + if (count($year_array) == 0) { |
|
705 | + print _("No data available"); |
|
706 | + } else { |
|
653 | 707 | print '<div id="chart32" class="chart" width="100%"></div> |
654 | 708 | <script> |
655 | 709 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -695,8 +749,9 @@ discard block |
||
695 | 749 | <h2><?php echo _("Fatalities last 12 Months"); ?></h2> |
696 | 750 | <?php |
697 | 751 | $year_array = $Stats->countFatalitiesLast12Months($filter_name); |
698 | - if (count($year_array) == 0) print _("No data available"); |
|
699 | - else { |
|
752 | + if (count($year_array) == 0) { |
|
753 | + print _("No data available"); |
|
754 | + } else { |
|
700 | 755 | print '<div id="chart33" class="chart" width="100%"></div> |
701 | 756 | <script> |
702 | 757 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -772,8 +827,11 @@ discard block |
||
772 | 827 | $distance = $distance; |
773 | 828 | $unit = 'km'; |
774 | 829 | } |
775 | - if (!isset($polar_data)) $polar_data = '{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
776 | - else $polar_data = $polar_data.',{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
830 | + if (!isset($polar_data)) { |
|
831 | + $polar_data = '{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
832 | + } else { |
|
833 | + $polar_data = $polar_data.',{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
834 | + } |
|
777 | 835 | } |
778 | 836 | ?> |
779 | 837 | <div class="col-md-6"> |
@@ -825,8 +883,11 @@ discard block |
||
825 | 883 | foreach ($msg as $eachmsg) { |
826 | 884 | //$eachmsg = $msg[0]; |
827 | 885 | $data = $eachmsg['source_data']; |
828 | - if ($data > 500) $max = (round(($data+100)/100))*100; |
|
829 | - else $max = 500; |
|
886 | + if ($data > 500) { |
|
887 | + $max = (round(($data+100)/100))*100; |
|
888 | + } else { |
|
889 | + $max = 500; |
|
890 | + } |
|
830 | 891 | ?> |
831 | 892 | <div id="msg-<?php print str_replace(' ','_',strtolower($eachmsg['source_name'])); ?>" class="col-md-4"></div> |
832 | 893 | <script> |