@@ -75,38 +75,38 @@ discard block |
||
75 | 75 | try { |
76 | 76 | //$Connection = new Connection(); |
77 | 77 | $sth = $Connection->db->prepare($query); |
78 | - $sth->execute(array(':source' => $database_file)); |
|
79 | - } catch(PDOException $e) { |
|
80 | - return "error : ".$e->getMessage(); |
|
81 | - } |
|
78 | + $sth->execute(array(':source' => $database_file)); |
|
79 | + } catch(PDOException $e) { |
|
80 | + return "error : ".$e->getMessage(); |
|
81 | + } |
|
82 | 82 | |
83 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
84 | - update_db::connect_sqlite($database_file); |
|
83 | + if ($globalDebug) echo " - Add routes to DB -"; |
|
84 | + update_db::connect_sqlite($database_file); |
|
85 | 85 | //$query = 'select Route.RouteID, Route.callsign, operator.Icao AS operator_icao, FromAir.Icao AS FromAirportIcao, ToAir.Icao AS ToAirportIcao from Route inner join operator ON Route.operatorId = operator.operatorId LEFT JOIN Airport AS FromAir ON route.FromAirportId = FromAir.AirportId LEFT JOIN Airport AS ToAir ON ToAir.AirportID = route.ToAirportID'; |
86 | 86 | $query = "select Route.RouteID, Route.callsign, operator.Icao AS operator_icao, FromAir.Icao AS FromAirportIcao, ToAir.Icao AS ToAirportIcao, rstp.allstop AS AllStop from Route inner join operator ON Route.operatorId = operator.operatorId LEFT JOIN Airport AS FromAir ON route.FromAirportId = FromAir.AirportId LEFT JOIN Airport AS ToAir ON ToAir.AirportID = route.ToAirportID LEFT JOIN (select RouteId,GROUP_CONCAT(icao,' ') as allstop from routestop left join Airport as air ON routestop.AirportId = air.AirportID group by RouteID) AS rstp ON Route.RouteID = rstp.RouteID"; |
87 | 87 | try { |
88 | - $sth = update_db::$db_sqlite->prepare($query); |
|
89 | - $sth->execute(); |
|
90 | - } catch(PDOException $e) { |
|
91 | - return "error : ".$e->getMessage(); |
|
92 | - } |
|
88 | + $sth = update_db::$db_sqlite->prepare($query); |
|
89 | + $sth->execute(); |
|
90 | + } catch(PDOException $e) { |
|
91 | + return "error : ".$e->getMessage(); |
|
92 | + } |
|
93 | 93 | //$query_dest = 'INSERT INTO routes (`RouteID`,`CallSign`,`Operator_ICAO`,`FromAirport_ICAO`,`ToAirport_ICAO`,`RouteStop`,`Source`) VALUES (:RouteID, :CallSign, :Operator_ICAO, :FromAirport_ICAO, :ToAirport_ICAO, :routestop, :source)'; |
94 | 94 | $query_dest = 'INSERT INTO routes (CallSign,Operator_ICAO,FromAirport_ICAO,ToAirport_ICAO,RouteStop,Source) VALUES (:CallSign, :Operator_ICAO, :FromAirport_ICAO, :ToAirport_ICAO, :routestop, :source)'; |
95 | 95 | $Connection = new Connection(); |
96 | 96 | $sth_dest = $Connection->db->prepare($query_dest); |
97 | 97 | try { |
98 | 98 | if ($globalTransaction) $Connection->db->beginTransaction(); |
99 | - while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
99 | + while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
100 | 100 | //$query_dest_values = array(':RouteID' => $values['RouteId'],':CallSign' => $values['Callsign'],':Operator_ICAO' => $values['operator_icao'],':FromAirport_ICAO' => $values['FromAirportIcao'],':ToAirport_ICAO' => $values['ToAirportIcao'],':routestop' => $values['AllStop'],':source' => $database_file); |
101 | 101 | $query_dest_values = array(':CallSign' => $values['Callsign'],':Operator_ICAO' => $values['operator_icao'],':FromAirport_ICAO' => $values['FromAirportIcao'],':ToAirport_ICAO' => $values['ToAirportIcao'],':routestop' => $values['AllStop'],':source' => $database_file); |
102 | 102 | $sth_dest->execute($query_dest_values); |
103 | - } |
|
103 | + } |
|
104 | 104 | if ($globalTransaction) $Connection->db->commit(); |
105 | 105 | } catch(PDOException $e) { |
106 | 106 | if ($globalTransaction) $Connection->db->rollBack(); |
107 | 107 | return "error : ".$e->getMessage(); |
108 | 108 | } |
109 | - return ''; |
|
109 | + return ''; |
|
110 | 110 | } |
111 | 111 | public static function retrieve_route_oneworld($database_file) { |
112 | 112 | global $globalDebug, $globalTransaction; |
@@ -117,12 +117,12 @@ discard block |
||
117 | 117 | try { |
118 | 118 | //$Connection = new Connection(); |
119 | 119 | $sth = $Connection->db->prepare($query); |
120 | - $sth->execute(array(':source' => 'oneworld')); |
|
121 | - } catch(PDOException $e) { |
|
122 | - return "error : ".$e->getMessage(); |
|
123 | - } |
|
120 | + $sth->execute(array(':source' => 'oneworld')); |
|
121 | + } catch(PDOException $e) { |
|
122 | + return "error : ".$e->getMessage(); |
|
123 | + } |
|
124 | 124 | |
125 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
125 | + if ($globalDebug) echo " - Add routes to DB -"; |
|
126 | 126 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
127 | 127 | $Spotter = new Spotter(); |
128 | 128 | if ($fh = fopen($database_file,"r")) { |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | } |
147 | 147 | if ($globalTransaction) $Connection->db->commit(); |
148 | 148 | } |
149 | - return ''; |
|
149 | + return ''; |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | public static function retrieve_route_skyteam($database_file) { |
@@ -158,12 +158,12 @@ discard block |
||
158 | 158 | try { |
159 | 159 | //$Connection = new Connection(); |
160 | 160 | $sth = $Connection->db->prepare($query); |
161 | - $sth->execute(array(':source' => 'skyteam')); |
|
162 | - } catch(PDOException $e) { |
|
163 | - return "error : ".$e->getMessage(); |
|
164 | - } |
|
161 | + $sth->execute(array(':source' => 'skyteam')); |
|
162 | + } catch(PDOException $e) { |
|
163 | + return "error : ".$e->getMessage(); |
|
164 | + } |
|
165 | 165 | |
166 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
166 | + if ($globalDebug) echo " - Add routes to DB -"; |
|
167 | 167 | |
168 | 168 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
169 | 169 | $Spotter = new Spotter(); |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | return "error : ".$e->getMessage(); |
190 | 190 | } |
191 | 191 | } |
192 | - return ''; |
|
192 | + return ''; |
|
193 | 193 | } |
194 | 194 | public static function retrieve_modes_sqlite_to_dest($database_file) { |
195 | 195 | global $globalTransaction; |
@@ -198,27 +198,27 @@ discard block |
||
198 | 198 | try { |
199 | 199 | $Connection = new Connection(); |
200 | 200 | $sth = $Connection->db->prepare($query); |
201 | - $sth->execute(array(':source' => $database_file)); |
|
202 | - } catch(PDOException $e) { |
|
203 | - return "error : ".$e->getMessage(); |
|
204 | - } |
|
201 | + $sth->execute(array(':source' => $database_file)); |
|
202 | + } catch(PDOException $e) { |
|
203 | + return "error : ".$e->getMessage(); |
|
204 | + } |
|
205 | 205 | $query = "DELETE FROM aircraft_owner WHERE Source = '' OR Source IS NULL OR Source = :source"; |
206 | 206 | try { |
207 | 207 | $Connection = new Connection(); |
208 | 208 | $sth = $Connection->db->prepare($query); |
209 | - $sth->execute(array(':source' => $database_file)); |
|
210 | - } catch(PDOException $e) { |
|
211 | - return "error : ".$e->getMessage(); |
|
212 | - } |
|
209 | + $sth->execute(array(':source' => $database_file)); |
|
210 | + } catch(PDOException $e) { |
|
211 | + return "error : ".$e->getMessage(); |
|
212 | + } |
|
213 | 213 | |
214 | - update_db::connect_sqlite($database_file); |
|
214 | + update_db::connect_sqlite($database_file); |
|
215 | 215 | $query = 'select * from Aircraft'; |
216 | 216 | try { |
217 | - $sth = update_db::$db_sqlite->prepare($query); |
|
218 | - $sth->execute(); |
|
219 | - } catch(PDOException $e) { |
|
220 | - return "error : ".$e->getMessage(); |
|
221 | - } |
|
217 | + $sth = update_db::$db_sqlite->prepare($query); |
|
218 | + $sth->execute(); |
|
219 | + } catch(PDOException $e) { |
|
220 | + return "error : ".$e->getMessage(); |
|
221 | + } |
|
222 | 222 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
223 | 223 | $query_dest = 'INSERT INTO aircraft_modes (LastModified, ModeS,ModeSCountry,Registration,ICAOTypeCode,type_flight,Source) VALUES (:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:type,:source)'; |
224 | 224 | |
@@ -229,17 +229,17 @@ discard block |
||
229 | 229 | $sth_dest_owner = $Connection->db->prepare($query_dest_owner); |
230 | 230 | try { |
231 | 231 | if ($globalTransaction) $Connection->db->beginTransaction(); |
232 | - while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
232 | + while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
233 | 233 | //$query_dest_values = array(':AircraftID' => $values['AircraftID'],':FirstCreated' => $values['FirstCreated'],':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':SerialNo' => $values['SerialNo'], ':OperatorFlagCode' => $values['OperatorFlagCode'], ':Manufacturer' => $values['Manufacturer'], ':Type' => $values['Type'], ':FirstRegDate' => $values['FirstRegDate'], ':CurrentRegDate' => $values['CurrentRegDate'], ':Country' => $values['Country'], ':PreviousID' => $values['PreviousID'], ':DeRegDate' => $values['DeRegDate'], ':Status' => $values['Status'], ':PopularName' => $values['PopularName'],':GenericName' => $values['GenericName'],':AircraftClass' => $values['AircraftClass'], ':Engines' => $values['Engines'], ':OwnershipStatus' => $values['OwnershipStatus'],':RegisteredOwners' => $values['RegisteredOwners'],':MTOW' => $values['MTOW'], ':TotalHours' => $values['TotalHours'],':YearBuilt' => $values['YearBuilt'], ':CofACategory' => $values['CofACategory'], ':CofAExpiry' => $values['CofAExpiry'], ':UserNotes' => $values['UserNotes'], ':Interested' => $values['Interested'], ':UserTag' => $values['UserTag'], ':InfoUrl' => $values['InfoURL'], ':PictureUrl1' => $values['PictureURL1'], ':PictureUrl2' => $values['PictureURL2'], ':PictureUrl3' => $values['PictureURL3'], ':UserBool1' => $values['UserBool1'], ':UserBool2' => $values['UserBool2'], ':UserBool3' => $values['UserBool3'], ':UserBool4' => $values['UserBool4'], ':UserBool5' => $values['UserBool5'], ':UserString1' => $values['UserString1'], ':UserString2' => $values['UserString2'], ':UserString3' => $values['UserString3'], ':UserString4' => $values['UserString4'], ':UserString5' => $values['UserString5'], ':UserInt1' => $values['UserInt1'], ':UserInt2' => $values['UserInt2'], ':UserInt3' => $values['UserInt3'], ':UserInt4' => $values['UserInt4'], ':UserInt5' => $values['UserInt5']); |
234 | 234 | if ($values['UserString4'] == 'M') $type = 'military'; |
235 | 235 | else $type = null; |
236 | 236 | $query_dest_values = array(':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':source' => $database_file,':type' => $type); |
237 | 237 | $sth_dest->execute($query_dest_values); |
238 | 238 | if ($values['RegisteredOwners'] != '' && $values['RegisteredOwners'] != NULL && $values['RegisteredOwners'] != 'Private') { |
239 | - $query_dest_owner_values = array(':registration' => $values['Registration'],':source' => $database_file,':owner' => $values['RegisteredOwners']); |
|
240 | - $sth_dest_owner->execute($query_dest_owner_values); |
|
239 | + $query_dest_owner_values = array(':registration' => $values['Registration'],':source' => $database_file,':owner' => $values['RegisteredOwners']); |
|
240 | + $sth_dest_owner->execute($query_dest_owner_values); |
|
241 | 241 | } |
242 | - } |
|
242 | + } |
|
243 | 243 | if ($globalTransaction) $Connection->db->commit(); |
244 | 244 | } catch(PDOException $e) { |
245 | 245 | return "error : ".$e->getMessage(); |
@@ -250,10 +250,10 @@ discard block |
||
250 | 250 | try { |
251 | 251 | $Connection = new Connection(); |
252 | 252 | $sth = $Connection->db->prepare($query); |
253 | - $sth->execute(array(':source' => $database_file)); |
|
254 | - } catch(PDOException $e) { |
|
255 | - return "error : ".$e->getMessage(); |
|
256 | - } |
|
253 | + $sth->execute(array(':source' => $database_file)); |
|
254 | + } catch(PDOException $e) { |
|
255 | + return "error : ".$e->getMessage(); |
|
256 | + } |
|
257 | 257 | return ''; |
258 | 258 | } |
259 | 259 | |
@@ -265,10 +265,10 @@ discard block |
||
265 | 265 | try { |
266 | 266 | $Connection = new Connection(); |
267 | 267 | $sth = $Connection->db->prepare($query); |
268 | - $sth->execute(array(':source' => $database_file)); |
|
269 | - } catch(PDOException $e) { |
|
270 | - return "error : ".$e->getMessage(); |
|
271 | - } |
|
268 | + $sth->execute(array(':source' => $database_file)); |
|
269 | + } catch(PDOException $e) { |
|
270 | + return "error : ".$e->getMessage(); |
|
271 | + } |
|
272 | 272 | |
273 | 273 | if ($fh = fopen($database_file,"r")) { |
274 | 274 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
@@ -278,26 +278,26 @@ discard block |
||
278 | 278 | $sth_dest = $Connection->db->prepare($query_dest); |
279 | 279 | try { |
280 | 280 | if ($globalTransaction) $Connection->db->beginTransaction(); |
281 | - while (!feof($fh)) { |
|
282 | - $values = array(); |
|
283 | - $line = $Common->hex2str(fgets($fh,9999)); |
|
281 | + while (!feof($fh)) { |
|
282 | + $values = array(); |
|
283 | + $line = $Common->hex2str(fgets($fh,9999)); |
|
284 | 284 | //FFFFFF RIDEAU VALLEY SOARINGASW-20 C-FBKN MZ 123.400 |
285 | - $values['ModeS'] = substr($line,0,6); |
|
286 | - $values['Registration'] = trim(substr($line,69,6)); |
|
287 | - $aircraft_name = trim(substr($line,48,6)); |
|
288 | - // Check if we can find ICAO, else set it to GLID |
|
289 | - $aircraft_name_split = explode(' ',$aircraft_name); |
|
290 | - $search_more = ''; |
|
291 | - if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
292 | - $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
|
293 | - $sth_search = $Connection->db->prepare($query_search); |
|
285 | + $values['ModeS'] = substr($line,0,6); |
|
286 | + $values['Registration'] = trim(substr($line,69,6)); |
|
287 | + $aircraft_name = trim(substr($line,48,6)); |
|
288 | + // Check if we can find ICAO, else set it to GLID |
|
289 | + $aircraft_name_split = explode(' ',$aircraft_name); |
|
290 | + $search_more = ''; |
|
291 | + if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
292 | + $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
|
293 | + $sth_search = $Connection->db->prepare($query_search); |
|
294 | 294 | try { |
295 | - $sth_search->execute(); |
|
296 | - $result = $sth_search->fetch(PDO::FETCH_ASSOC); |
|
297 | - //if (count($result) > 0) { |
|
298 | - if (isset($result['icao']) && $result['icao'] != '') { |
|
299 | - $values['ICAOTypeCode'] = $result['icao']; |
|
300 | - } |
|
295 | + $sth_search->execute(); |
|
296 | + $result = $sth_search->fetch(PDO::FETCH_ASSOC); |
|
297 | + //if (count($result) > 0) { |
|
298 | + if (isset($result['icao']) && $result['icao'] != '') { |
|
299 | + $values['ICAOTypeCode'] = $result['icao']; |
|
300 | + } |
|
301 | 301 | } catch(PDOException $e) { |
302 | 302 | return "error : ".$e->getMessage(); |
303 | 303 | } |
@@ -320,10 +320,10 @@ discard block |
||
320 | 320 | try { |
321 | 321 | $Connection = new Connection(); |
322 | 322 | $sth = $Connection->db->prepare($query); |
323 | - $sth->execute(array(':source' => $database_file)); |
|
324 | - } catch(PDOException $e) { |
|
325 | - return "error : ".$e->getMessage(); |
|
326 | - } |
|
323 | + $sth->execute(array(':source' => $database_file)); |
|
324 | + } catch(PDOException $e) { |
|
325 | + return "error : ".$e->getMessage(); |
|
326 | + } |
|
327 | 327 | return ''; |
328 | 328 | } |
329 | 329 | |
@@ -334,10 +334,10 @@ discard block |
||
334 | 334 | try { |
335 | 335 | $Connection = new Connection(); |
336 | 336 | $sth = $Connection->db->prepare($query); |
337 | - $sth->execute(array(':source' => $database_file)); |
|
338 | - } catch(PDOException $e) { |
|
339 | - return "error : ".$e->getMessage(); |
|
340 | - } |
|
337 | + $sth->execute(array(':source' => $database_file)); |
|
338 | + } catch(PDOException $e) { |
|
339 | + return "error : ".$e->getMessage(); |
|
340 | + } |
|
341 | 341 | |
342 | 342 | if ($fh = fopen($database_file,"r")) { |
343 | 343 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
@@ -348,24 +348,24 @@ discard block |
||
348 | 348 | try { |
349 | 349 | if ($globalTransaction) $Connection->db->beginTransaction(); |
350 | 350 | $tmp = fgetcsv($fh,9999,',',"'"); |
351 | - while (!feof($fh)) { |
|
352 | - $line = fgetcsv($fh,9999,',',"'"); |
|
351 | + while (!feof($fh)) { |
|
352 | + $line = fgetcsv($fh,9999,',',"'"); |
|
353 | 353 | |
354 | 354 | //FFFFFF RIDEAU VALLEY SOARINGASW-20 C-FBKN MZ 123.400 |
355 | 355 | //print_r($line); |
356 | - $values['ModeS'] = $line[1]; |
|
357 | - $values['Registration'] = $line[3]; |
|
358 | - $aircraft_name = $line[2]; |
|
359 | - // Check if we can find ICAO, else set it to GLID |
|
360 | - $aircraft_name_split = explode(' ',$aircraft_name); |
|
361 | - $search_more = ''; |
|
362 | - if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
363 | - $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
|
364 | - $sth_search = $Connection->db->prepare($query_search); |
|
356 | + $values['ModeS'] = $line[1]; |
|
357 | + $values['Registration'] = $line[3]; |
|
358 | + $aircraft_name = $line[2]; |
|
359 | + // Check if we can find ICAO, else set it to GLID |
|
360 | + $aircraft_name_split = explode(' ',$aircraft_name); |
|
361 | + $search_more = ''; |
|
362 | + if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
363 | + $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
|
364 | + $sth_search = $Connection->db->prepare($query_search); |
|
365 | 365 | try { |
366 | - $sth_search->execute(); |
|
367 | - $result = $sth_search->fetch(PDO::FETCH_ASSOC); |
|
368 | - if (isset($result['icao']) && $result['icao'] != '') $values['ICAOTypeCode'] = $result['icao']; |
|
366 | + $sth_search->execute(); |
|
367 | + $result = $sth_search->fetch(PDO::FETCH_ASSOC); |
|
368 | + if (isset($result['icao']) && $result['icao'] != '') $values['ICAOTypeCode'] = $result['icao']; |
|
369 | 369 | } catch(PDOException $e) { |
370 | 370 | return "error : ".$e->getMessage(); |
371 | 371 | } |
@@ -388,10 +388,10 @@ discard block |
||
388 | 388 | try { |
389 | 389 | $Connection = new Connection(); |
390 | 390 | $sth = $Connection->db->prepare($query); |
391 | - $sth->execute(array(':source' => $database_file)); |
|
392 | - } catch(PDOException $e) { |
|
393 | - return "error : ".$e->getMessage(); |
|
394 | - } |
|
391 | + $sth->execute(array(':source' => $database_file)); |
|
392 | + } catch(PDOException $e) { |
|
393 | + return "error : ".$e->getMessage(); |
|
394 | + } |
|
395 | 395 | return ''; |
396 | 396 | } |
397 | 397 | |
@@ -402,10 +402,10 @@ discard block |
||
402 | 402 | try { |
403 | 403 | $Connection = new Connection(); |
404 | 404 | $sth = $Connection->db->prepare($query); |
405 | - $sth->execute(array(':source' => $database_file)); |
|
406 | - } catch(PDOException $e) { |
|
407 | - return "error : ".$e->getMessage(); |
|
408 | - } |
|
405 | + $sth->execute(array(':source' => $database_file)); |
|
406 | + } catch(PDOException $e) { |
|
407 | + return "error : ".$e->getMessage(); |
|
408 | + } |
|
409 | 409 | |
410 | 410 | if ($fh = fopen($database_file,"r")) { |
411 | 411 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
@@ -416,95 +416,95 @@ discard block |
||
416 | 416 | try { |
417 | 417 | if ($globalTransaction) $Connection->db->beginTransaction(); |
418 | 418 | $tmp = fgetcsv($fh,9999,',','"'); |
419 | - while (!feof($fh)) { |
|
420 | - $line = fgetcsv($fh,9999,',','"'); |
|
421 | - $values = array(); |
|
422 | - //print_r($line); |
|
423 | - if ($country == 'F') { |
|
424 | - $values['registration'] = $line[0]; |
|
425 | - $values['base'] = $line[4]; |
|
426 | - $values['owner'] = $line[5]; |
|
427 | - if ($line[6] == '') $values['date_first_reg'] = null; |
|
428 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
429 | - $values['cancel'] = $line[7]; |
|
419 | + while (!feof($fh)) { |
|
420 | + $line = fgetcsv($fh,9999,',','"'); |
|
421 | + $values = array(); |
|
422 | + //print_r($line); |
|
423 | + if ($country == 'F') { |
|
424 | + $values['registration'] = $line[0]; |
|
425 | + $values['base'] = $line[4]; |
|
426 | + $values['owner'] = $line[5]; |
|
427 | + if ($line[6] == '') $values['date_first_reg'] = null; |
|
428 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
429 | + $values['cancel'] = $line[7]; |
|
430 | 430 | } elseif ($country == 'EI') { |
431 | - // TODO : add modeS & reg to aircraft_modes |
|
432 | - $values['registration'] = $line[0]; |
|
433 | - $values['base'] = $line[3]; |
|
434 | - $values['owner'] = $line[2]; |
|
435 | - if ($line[1] == '') $values['date_first_reg'] = null; |
|
436 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[1])); |
|
437 | - $values['cancel'] = ''; |
|
431 | + // TODO : add modeS & reg to aircraft_modes |
|
432 | + $values['registration'] = $line[0]; |
|
433 | + $values['base'] = $line[3]; |
|
434 | + $values['owner'] = $line[2]; |
|
435 | + if ($line[1] == '') $values['date_first_reg'] = null; |
|
436 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[1])); |
|
437 | + $values['cancel'] = ''; |
|
438 | 438 | } elseif ($country == 'HB') { |
439 | - // TODO : add modeS & reg to aircraft_modes |
|
440 | - $values['registration'] = $line[0]; |
|
441 | - $values['base'] = null; |
|
442 | - $values['owner'] = $line[5]; |
|
443 | - $values['date_first_reg'] = null; |
|
444 | - $values['cancel'] = ''; |
|
439 | + // TODO : add modeS & reg to aircraft_modes |
|
440 | + $values['registration'] = $line[0]; |
|
441 | + $values['base'] = null; |
|
442 | + $values['owner'] = $line[5]; |
|
443 | + $values['date_first_reg'] = null; |
|
444 | + $values['cancel'] = ''; |
|
445 | 445 | } elseif ($country == 'OK') { |
446 | - // TODO : add modeS & reg to aircraft_modes |
|
447 | - $values['registration'] = $line[3]; |
|
448 | - $values['base'] = null; |
|
449 | - $values['owner'] = $line[5]; |
|
450 | - if ($line[18] == '') $values['date_first_reg'] = null; |
|
451 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[18])); |
|
452 | - $values['cancel'] = ''; |
|
446 | + // TODO : add modeS & reg to aircraft_modes |
|
447 | + $values['registration'] = $line[3]; |
|
448 | + $values['base'] = null; |
|
449 | + $values['owner'] = $line[5]; |
|
450 | + if ($line[18] == '') $values['date_first_reg'] = null; |
|
451 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[18])); |
|
452 | + $values['cancel'] = ''; |
|
453 | 453 | } elseif ($country == 'VH') { |
454 | - // TODO : add modeS & reg to aircraft_modes |
|
455 | - $values['registration'] = $line[0]; |
|
456 | - $values['base'] = null; |
|
457 | - $values['owner'] = $line[12]; |
|
458 | - if ($line[28] == '') $values['date_first_reg'] = null; |
|
459 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[28])); |
|
460 | - |
|
461 | - $values['cancel'] = $line[39]; |
|
454 | + // TODO : add modeS & reg to aircraft_modes |
|
455 | + $values['registration'] = $line[0]; |
|
456 | + $values['base'] = null; |
|
457 | + $values['owner'] = $line[12]; |
|
458 | + if ($line[28] == '') $values['date_first_reg'] = null; |
|
459 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[28])); |
|
460 | + |
|
461 | + $values['cancel'] = $line[39]; |
|
462 | 462 | } elseif ($country == 'OE' || $country == '9A' || $country == 'VP' || $country == 'LX' || $country == 'P2' || $country == 'HC') { |
463 | - $values['registration'] = $line[0]; |
|
464 | - $values['base'] = null; |
|
465 | - $values['owner'] = $line[4]; |
|
466 | - $values['date_first_reg'] = null; |
|
467 | - $values['cancel'] = ''; |
|
463 | + $values['registration'] = $line[0]; |
|
464 | + $values['base'] = null; |
|
465 | + $values['owner'] = $line[4]; |
|
466 | + $values['date_first_reg'] = null; |
|
467 | + $values['cancel'] = ''; |
|
468 | 468 | } elseif ($country == 'CC') { |
469 | - $values['registration'] = $line[0]; |
|
470 | - $values['base'] = null; |
|
471 | - $values['owner'] = $line[6]; |
|
472 | - $values['date_first_reg'] = null; |
|
473 | - $values['cancel'] = ''; |
|
469 | + $values['registration'] = $line[0]; |
|
470 | + $values['base'] = null; |
|
471 | + $values['owner'] = $line[6]; |
|
472 | + $values['date_first_reg'] = null; |
|
473 | + $values['cancel'] = ''; |
|
474 | 474 | } elseif ($country == 'HJ') { |
475 | - $values['registration'] = $line[0]; |
|
476 | - $values['base'] = null; |
|
477 | - $values['owner'] = $line[8]; |
|
478 | - if ($line[7] == '') $values['date_first_reg'] = null; |
|
479 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
480 | - $values['cancel'] = ''; |
|
475 | + $values['registration'] = $line[0]; |
|
476 | + $values['base'] = null; |
|
477 | + $values['owner'] = $line[8]; |
|
478 | + if ($line[7] == '') $values['date_first_reg'] = null; |
|
479 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
480 | + $values['cancel'] = ''; |
|
481 | 481 | } elseif ($country == 'PP') { |
482 | - $values['registration'] = $line[0]; |
|
483 | - $values['base'] = null; |
|
484 | - $values['owner'] = $line[4]; |
|
485 | - if ($line[6] == '') $values['date_first_reg'] = null; |
|
486 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
487 | - $values['cancel'] = $line[7]; |
|
482 | + $values['registration'] = $line[0]; |
|
483 | + $values['base'] = null; |
|
484 | + $values['owner'] = $line[4]; |
|
485 | + if ($line[6] == '') $values['date_first_reg'] = null; |
|
486 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
487 | + $values['cancel'] = $line[7]; |
|
488 | 488 | } elseif ($country == 'E7') { |
489 | - $values['registration'] = $line[0]; |
|
490 | - $values['base'] = null; |
|
491 | - $values['owner'] = $line[4]; |
|
492 | - if ($line[5] == '') $values['date_first_reg'] = null; |
|
493 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
494 | - $values['cancel'] = ''; |
|
489 | + $values['registration'] = $line[0]; |
|
490 | + $values['base'] = null; |
|
491 | + $values['owner'] = $line[4]; |
|
492 | + if ($line[5] == '') $values['date_first_reg'] = null; |
|
493 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
494 | + $values['cancel'] = ''; |
|
495 | 495 | } elseif ($country == '8Q') { |
496 | - $values['registration'] = $line[0]; |
|
497 | - $values['base'] = null; |
|
498 | - $values['owner'] = $line[3]; |
|
499 | - if ($line[7] == '') $values['date_first_reg'] = null; |
|
500 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
501 | - $values['cancel'] = ''; |
|
496 | + $values['registration'] = $line[0]; |
|
497 | + $values['base'] = null; |
|
498 | + $values['owner'] = $line[3]; |
|
499 | + if ($line[7] == '') $values['date_first_reg'] = null; |
|
500 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
501 | + $values['cancel'] = ''; |
|
502 | 502 | } elseif ($country == 'ZK' || $country == 'OM' || $country == 'TF') { |
503 | - $values['registration'] = $line[0]; |
|
504 | - $values['base'] = null; |
|
505 | - $values['owner'] = $line[3]; |
|
506 | - $values['date_first_reg'] = null; |
|
507 | - $values['cancel'] = ''; |
|
503 | + $values['registration'] = $line[0]; |
|
504 | + $values['base'] = null; |
|
505 | + $values['owner'] = $line[3]; |
|
506 | + $values['date_first_reg'] = null; |
|
507 | + $values['cancel'] = ''; |
|
508 | 508 | } |
509 | 509 | if ($values['cancel'] == '' && $values['registration'] != null) { |
510 | 510 | $query_dest_values = array(':registration' => $values['registration'],':base' => $values['base'],':date_first_reg' => $values['date_first_reg'],':owner' => $values['owner'],':source' => $database_file); |
@@ -626,20 +626,20 @@ discard block |
||
626 | 626 | try { |
627 | 627 | $Connection = new Connection(); |
628 | 628 | $sth = $Connection->db->prepare($query); |
629 | - $sth->execute(); |
|
630 | - } catch(PDOException $e) { |
|
631 | - return "error : ".$e->getMessage(); |
|
632 | - } |
|
629 | + $sth->execute(); |
|
630 | + } catch(PDOException $e) { |
|
631 | + return "error : ".$e->getMessage(); |
|
632 | + } |
|
633 | 633 | |
634 | 634 | |
635 | 635 | $query = 'ALTER TABLE airport DROP INDEX icaoidx'; |
636 | 636 | try { |
637 | 637 | $Connection = new Connection(); |
638 | 638 | $sth = $Connection->db->prepare($query); |
639 | - $sth->execute(); |
|
640 | - } catch(PDOException $e) { |
|
641 | - return "error : ".$e->getMessage(); |
|
642 | - } |
|
639 | + $sth->execute(); |
|
640 | + } catch(PDOException $e) { |
|
641 | + return "error : ".$e->getMessage(); |
|
642 | + } |
|
643 | 643 | |
644 | 644 | $query_dest = "INSERT INTO airport (`airport_id`,`name`,`city`,`country`,`iata`,`icao`,`latitude`,`longitude`,`altitude`,`type`,`home_link`,`wikipedia_link`,`image_thumb`,`image`) |
645 | 645 | VALUES (:airport_id, :name, :city, :country, :iata, :icao, :latitude, :longitude, :altitude, :type, :home_link, :wikipedia_link, :image_thumb, :image)"; |
@@ -705,10 +705,10 @@ discard block |
||
705 | 705 | try { |
706 | 706 | $Connection = new Connection(); |
707 | 707 | $sth = $Connection->db->prepare($query); |
708 | - $sth->execute(); |
|
709 | - } catch(PDOException $e) { |
|
710 | - return "error : ".$e->getMessage(); |
|
711 | - } |
|
708 | + $sth->execute(); |
|
709 | + } catch(PDOException $e) { |
|
710 | + return "error : ".$e->getMessage(); |
|
711 | + } |
|
712 | 712 | |
713 | 713 | |
714 | 714 | if ($globalDebug) echo "Insert Not available Airport...\n"; |
@@ -718,10 +718,10 @@ discard block |
||
718 | 718 | try { |
719 | 719 | $Connection = new Connection(); |
720 | 720 | $sth = $Connection->db->prepare($query); |
721 | - $sth->execute($query_values); |
|
722 | - } catch(PDOException $e) { |
|
723 | - return "error : ".$e->getMessage(); |
|
724 | - } |
|
721 | + $sth->execute($query_values); |
|
722 | + } catch(PDOException $e) { |
|
723 | + return "error : ".$e->getMessage(); |
|
724 | + } |
|
725 | 725 | $i++; |
726 | 726 | /* |
727 | 727 | $query = 'DELETE FROM airport WHERE airport_id IN (SELECT * FROM (SELECT min(a.airport_id) FROM airport a GROUP BY a.icao) x)'; |
@@ -835,7 +835,7 @@ discard block |
||
835 | 835 | |
836 | 836 | |
837 | 837 | |
838 | - return "success"; |
|
838 | + return "success"; |
|
839 | 839 | } |
840 | 840 | |
841 | 841 | public static function translation() { |
@@ -851,10 +851,10 @@ discard block |
||
851 | 851 | try { |
852 | 852 | $Connection = new Connection(); |
853 | 853 | $sth = $Connection->db->prepare($query); |
854 | - $sth->execute(array(':source' => 'translation.csv')); |
|
855 | - } catch(PDOException $e) { |
|
856 | - return "error : ".$e->getMessage(); |
|
857 | - } |
|
854 | + $sth->execute(array(':source' => 'translation.csv')); |
|
855 | + } catch(PDOException $e) { |
|
856 | + return "error : ".$e->getMessage(); |
|
857 | + } |
|
858 | 858 | |
859 | 859 | |
860 | 860 | //update_db::unzip($out_file); |
@@ -873,21 +873,21 @@ discard block |
||
873 | 873 | $data = $row; |
874 | 874 | $operator = $data[2]; |
875 | 875 | if ($operator != '' && is_numeric(substr(substr($operator, 0, 3), -1, 1))) { |
876 | - $airline_array = $Spotter->getAllAirlineInfo(substr($operator, 0, 2)); |
|
877 | - //echo substr($operator, 0, 2)."\n";; |
|
878 | - if (count($airline_array) > 0) { |
|
876 | + $airline_array = $Spotter->getAllAirlineInfo(substr($operator, 0, 2)); |
|
877 | + //echo substr($operator, 0, 2)."\n";; |
|
878 | + if (count($airline_array) > 0) { |
|
879 | 879 | //print_r($airline_array); |
880 | 880 | $operator = $airline_array[0]['icao'].substr($operator,2); |
881 | - } |
|
882 | - } |
|
881 | + } |
|
882 | + } |
|
883 | 883 | |
884 | 884 | $operator_correct = $data[3]; |
885 | 885 | if ($operator_correct != '' && is_numeric(substr(substr($operator_correct, 0, 3), -1, 1))) { |
886 | - $airline_array = $Spotter->getAllAirlineInfo(substr($operator_correct, 0, 2)); |
|
887 | - if (count($airline_array) > 0) { |
|
888 | - $operator_correct = $airline_array[0]['icao'].substr($operator_correct,2); |
|
889 | - } |
|
890 | - } |
|
886 | + $airline_array = $Spotter->getAllAirlineInfo(substr($operator_correct, 0, 2)); |
|
887 | + if (count($airline_array) > 0) { |
|
888 | + $operator_correct = $airline_array[0]['icao'].substr($operator_correct,2); |
|
889 | + } |
|
890 | + } |
|
891 | 891 | $query = 'INSERT INTO translation (Reg,Reg_correct,Operator,Operator_correct,Source) VALUES (:Reg, :Reg_correct, :Operator, :Operator_correct, :source)'; |
892 | 892 | try { |
893 | 893 | $sth = $Connection->db->prepare($query); |
@@ -901,7 +901,7 @@ discard block |
||
901 | 901 | //$Connection->db->commit(); |
902 | 902 | } |
903 | 903 | return ''; |
904 | - } |
|
904 | + } |
|
905 | 905 | |
906 | 906 | public static function translation_fam() { |
907 | 907 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
@@ -911,10 +911,10 @@ discard block |
||
911 | 911 | try { |
912 | 912 | $Connection = new Connection(); |
913 | 913 | $sth = $Connection->db->prepare($query); |
914 | - $sth->execute(array(':source' => 'website_fam')); |
|
915 | - } catch(PDOException $e) { |
|
916 | - return "error : ".$e->getMessage(); |
|
917 | - } |
|
914 | + $sth->execute(array(':source' => 'website_fam')); |
|
915 | + } catch(PDOException $e) { |
|
916 | + return "error : ".$e->getMessage(); |
|
917 | + } |
|
918 | 918 | |
919 | 919 | |
920 | 920 | //update_db::unzip($out_file); |
@@ -943,7 +943,7 @@ discard block |
||
943 | 943 | //$Connection->db->commit(); |
944 | 944 | } |
945 | 945 | return ''; |
946 | - } |
|
946 | + } |
|
947 | 947 | |
948 | 948 | /* |
949 | 949 | * This function use FAA public data. |
@@ -955,19 +955,19 @@ discard block |
||
955 | 955 | try { |
956 | 956 | $Connection = new Connection(); |
957 | 957 | $sth = $Connection->db->prepare($query); |
958 | - $sth->execute(array(':source' => 'website_faa')); |
|
959 | - } catch(PDOException $e) { |
|
960 | - return "error : ".$e->getMessage(); |
|
961 | - } |
|
958 | + $sth->execute(array(':source' => 'website_faa')); |
|
959 | + } catch(PDOException $e) { |
|
960 | + return "error : ".$e->getMessage(); |
|
961 | + } |
|
962 | 962 | |
963 | 963 | $query = "DELETE FROM aircraft_owner WHERE Source = '' OR Source = :source"; |
964 | 964 | try { |
965 | 965 | $Connection = new Connection(); |
966 | 966 | $sth = $Connection->db->prepare($query); |
967 | - $sth->execute(array(':source' => 'website_faa')); |
|
968 | - } catch(PDOException $e) { |
|
969 | - return "error : ".$e->getMessage(); |
|
970 | - } |
|
967 | + $sth->execute(array(':source' => 'website_faa')); |
|
968 | + } catch(PDOException $e) { |
|
969 | + return "error : ".$e->getMessage(); |
|
970 | + } |
|
971 | 971 | |
972 | 972 | $delimiter = ","; |
973 | 973 | $mfr = array(); |
@@ -1043,17 +1043,17 @@ discard block |
||
1043 | 1043 | } |
1044 | 1044 | print_r($mfr); |
1045 | 1045 | return ''; |
1046 | - } |
|
1046 | + } |
|
1047 | 1047 | public static function modes_fam() { |
1048 | 1048 | global $tmp_dir, $globalTransaction; |
1049 | 1049 | $query = "DELETE FROM aircraft_modes WHERE Source = '' OR Source = :source"; |
1050 | 1050 | try { |
1051 | 1051 | $Connection = new Connection(); |
1052 | 1052 | $sth = $Connection->db->prepare($query); |
1053 | - $sth->execute(array(':source' => 'website_fam')); |
|
1054 | - } catch(PDOException $e) { |
|
1055 | - return "error : ".$e->getMessage(); |
|
1056 | - } |
|
1053 | + $sth->execute(array(':source' => 'website_fam')); |
|
1054 | + } catch(PDOException $e) { |
|
1055 | + return "error : ".$e->getMessage(); |
|
1056 | + } |
|
1057 | 1057 | |
1058 | 1058 | |
1059 | 1059 | //update_db::unzip($out_file); |
@@ -1082,7 +1082,7 @@ discard block |
||
1082 | 1082 | if ($globalTransaction) $Connection->db->commit(); |
1083 | 1083 | } |
1084 | 1084 | return ''; |
1085 | - } |
|
1085 | + } |
|
1086 | 1086 | |
1087 | 1087 | public static function owner_fam() { |
1088 | 1088 | global $tmp_dir, $globalTransaction; |
@@ -1090,10 +1090,10 @@ discard block |
||
1090 | 1090 | try { |
1091 | 1091 | $Connection = new Connection(); |
1092 | 1092 | $sth = $Connection->db->prepare($query); |
1093 | - $sth->execute(array(':source' => 'website_fam')); |
|
1094 | - } catch(PDOException $e) { |
|
1095 | - return "error : ".$e->getMessage(); |
|
1096 | - } |
|
1093 | + $sth->execute(array(':source' => 'website_fam')); |
|
1094 | + } catch(PDOException $e) { |
|
1095 | + return "error : ".$e->getMessage(); |
|
1096 | + } |
|
1097 | 1097 | |
1098 | 1098 | $delimiter = "\t"; |
1099 | 1099 | $Connection = new Connection(); |
@@ -1119,7 +1119,7 @@ discard block |
||
1119 | 1119 | if ($globalTransaction) $Connection->db->commit(); |
1120 | 1120 | } |
1121 | 1121 | return ''; |
1122 | - } |
|
1122 | + } |
|
1123 | 1123 | |
1124 | 1124 | public static function routes_fam() { |
1125 | 1125 | global $tmp_dir, $globalTransaction; |
@@ -1127,10 +1127,10 @@ discard block |
||
1127 | 1127 | try { |
1128 | 1128 | $Connection = new Connection(); |
1129 | 1129 | $sth = $Connection->db->prepare($query); |
1130 | - $sth->execute(array(':source' => 'website_fam')); |
|
1131 | - } catch(PDOException $e) { |
|
1132 | - return "error : ".$e->getMessage(); |
|
1133 | - } |
|
1130 | + $sth->execute(array(':source' => 'website_fam')); |
|
1131 | + } catch(PDOException $e) { |
|
1132 | + return "error : ".$e->getMessage(); |
|
1133 | + } |
|
1134 | 1134 | |
1135 | 1135 | |
1136 | 1136 | //update_db::unzip($out_file); |
@@ -1159,7 +1159,7 @@ discard block |
||
1159 | 1159 | if ($globalTransaction) $Connection->db->commit(); |
1160 | 1160 | } |
1161 | 1161 | return ''; |
1162 | - } |
|
1162 | + } |
|
1163 | 1163 | |
1164 | 1164 | public static function banned_fam() { |
1165 | 1165 | global $tmp_dir, $globalTransaction; |
@@ -1191,7 +1191,7 @@ discard block |
||
1191 | 1191 | if ($globalTransaction) $Connection->db->commit(); |
1192 | 1192 | } |
1193 | 1193 | return ''; |
1194 | - } |
|
1194 | + } |
|
1195 | 1195 | |
1196 | 1196 | public static function tle($filename,$tletype) { |
1197 | 1197 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
@@ -1202,10 +1202,10 @@ discard block |
||
1202 | 1202 | try { |
1203 | 1203 | $Connection = new Connection(); |
1204 | 1204 | $sth = $Connection->db->prepare($query); |
1205 | - $sth->execute(array(':source' => $filename)); |
|
1206 | - } catch(PDOException $e) { |
|
1207 | - return "error : ".$e->getMessage(); |
|
1208 | - } |
|
1205 | + $sth->execute(array(':source' => $filename)); |
|
1206 | + } catch(PDOException $e) { |
|
1207 | + return "error : ".$e->getMessage(); |
|
1208 | + } |
|
1209 | 1209 | |
1210 | 1210 | $Connection = new Connection(); |
1211 | 1211 | if (($handle = fopen($filename, 'r')) !== FALSE) |
@@ -1240,54 +1240,54 @@ discard block |
||
1240 | 1240 | //$Connection->db->commit(); |
1241 | 1241 | } |
1242 | 1242 | return ''; |
1243 | - } |
|
1243 | + } |
|
1244 | 1244 | |
1245 | 1245 | /** |
1246 | - * Convert a HTML table to an array |
|
1247 | - * @param String $data HTML page |
|
1248 | - * @return Array array of the tables in HTML page |
|
1249 | - */ |
|
1250 | - private static function table2array($data) { |
|
1251 | - $html = str_get_html($data); |
|
1252 | - $tabledata=array(); |
|
1253 | - foreach($html->find('tr') as $element) |
|
1254 | - { |
|
1255 | - $td = array(); |
|
1256 | - foreach( $element->find('th') as $row) |
|
1257 | - { |
|
1258 | - $td [] = trim($row->plaintext); |
|
1259 | - } |
|
1260 | - $td=array_filter($td); |
|
1261 | - $tabledata[] = $td; |
|
1262 | - |
|
1263 | - $td = array(); |
|
1264 | - $tdi = array(); |
|
1265 | - foreach( $element->find('td') as $row) |
|
1266 | - { |
|
1267 | - $td [] = trim($row->plaintext); |
|
1268 | - $tdi [] = trim($row->innertext); |
|
1269 | - } |
|
1270 | - $td=array_filter($td); |
|
1271 | - $tdi=array_filter($tdi); |
|
1272 | - // $tabledata[]=array_merge($td,$tdi); |
|
1273 | - $tabledata[]=$td; |
|
1274 | - } |
|
1275 | - return(array_filter($tabledata)); |
|
1276 | - } |
|
1277 | - |
|
1278 | - /** |
|
1279 | - * Get data from form result |
|
1280 | - * @param String $url form URL |
|
1281 | - * @return String the result |
|
1282 | - */ |
|
1283 | - private static function getData($url) { |
|
1284 | - $ch = curl_init(); |
|
1285 | - curl_setopt($ch, CURLOPT_URL, $url); |
|
1286 | - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
|
1287 | - curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); |
|
1288 | - curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 GTB5'); |
|
1289 | - return curl_exec($ch); |
|
1290 | - } |
|
1246 | + * Convert a HTML table to an array |
|
1247 | + * @param String $data HTML page |
|
1248 | + * @return Array array of the tables in HTML page |
|
1249 | + */ |
|
1250 | + private static function table2array($data) { |
|
1251 | + $html = str_get_html($data); |
|
1252 | + $tabledata=array(); |
|
1253 | + foreach($html->find('tr') as $element) |
|
1254 | + { |
|
1255 | + $td = array(); |
|
1256 | + foreach( $element->find('th') as $row) |
|
1257 | + { |
|
1258 | + $td [] = trim($row->plaintext); |
|
1259 | + } |
|
1260 | + $td=array_filter($td); |
|
1261 | + $tabledata[] = $td; |
|
1262 | + |
|
1263 | + $td = array(); |
|
1264 | + $tdi = array(); |
|
1265 | + foreach( $element->find('td') as $row) |
|
1266 | + { |
|
1267 | + $td [] = trim($row->plaintext); |
|
1268 | + $tdi [] = trim($row->innertext); |
|
1269 | + } |
|
1270 | + $td=array_filter($td); |
|
1271 | + $tdi=array_filter($tdi); |
|
1272 | + // $tabledata[]=array_merge($td,$tdi); |
|
1273 | + $tabledata[]=$td; |
|
1274 | + } |
|
1275 | + return(array_filter($tabledata)); |
|
1276 | + } |
|
1277 | + |
|
1278 | + /** |
|
1279 | + * Get data from form result |
|
1280 | + * @param String $url form URL |
|
1281 | + * @return String the result |
|
1282 | + */ |
|
1283 | + private static function getData($url) { |
|
1284 | + $ch = curl_init(); |
|
1285 | + curl_setopt($ch, CURLOPT_URL, $url); |
|
1286 | + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
|
1287 | + curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); |
|
1288 | + curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 GTB5'); |
|
1289 | + return curl_exec($ch); |
|
1290 | + } |
|
1291 | 1291 | /* |
1292 | 1292 | public static function waypoints() { |
1293 | 1293 | $data = update_db::getData('http://www.fallingrain.com/world/FR/waypoints.html'); |
@@ -1370,7 +1370,7 @@ discard block |
||
1370 | 1370 | if ($globalTransaction) $Connection->db->commit(); |
1371 | 1371 | } |
1372 | 1372 | return ''; |
1373 | - } |
|
1373 | + } |
|
1374 | 1374 | |
1375 | 1375 | public static function ivao_airlines($filename) { |
1376 | 1376 | //require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
@@ -1380,10 +1380,10 @@ discard block |
||
1380 | 1380 | try { |
1381 | 1381 | $Connection = new Connection(); |
1382 | 1382 | $sth = $Connection->db->prepare($query); |
1383 | - $sth->execute(); |
|
1384 | - } catch(PDOException $e) { |
|
1385 | - return "error : ".$e->getMessage(); |
|
1386 | - } |
|
1383 | + $sth->execute(); |
|
1384 | + } catch(PDOException $e) { |
|
1385 | + return "error : ".$e->getMessage(); |
|
1386 | + } |
|
1387 | 1387 | |
1388 | 1388 | $header = NULL; |
1389 | 1389 | $delimiter = ':'; |
@@ -1407,7 +1407,7 @@ discard block |
||
1407 | 1407 | if ($globalTransaction) $Connection->db->commit(); |
1408 | 1408 | } |
1409 | 1409 | return ''; |
1410 | - } |
|
1410 | + } |
|
1411 | 1411 | |
1412 | 1412 | public static function update_airspace() { |
1413 | 1413 | global $tmp_dir, $globalDBdriver; |
@@ -1417,11 +1417,11 @@ discard block |
||
1417 | 1417 | $query = 'DROP TABLE airspace'; |
1418 | 1418 | try { |
1419 | 1419 | $sth = $Connection->db->prepare($query); |
1420 | - $sth->execute(); |
|
1421 | - } catch(PDOException $e) { |
|
1420 | + $sth->execute(); |
|
1421 | + } catch(PDOException $e) { |
|
1422 | 1422 | return "error : ".$e->getMessage(); |
1423 | - } |
|
1424 | - } |
|
1423 | + } |
|
1424 | + } |
|
1425 | 1425 | |
1426 | 1426 | |
1427 | 1427 | if ($globalDBdriver == 'mysql') update_db::gunzip('../db/airspace.sql.gz',$tmp_dir.'airspace.sql'); |
@@ -1476,10 +1476,10 @@ discard block |
||
1476 | 1476 | $query = 'DROP TABLE countries'; |
1477 | 1477 | try { |
1478 | 1478 | $sth = $Connection->db->prepare($query); |
1479 | - $sth->execute(); |
|
1480 | - } catch(PDOException $e) { |
|
1481 | - echo "error : ".$e->getMessage(); |
|
1482 | - } |
|
1479 | + $sth->execute(); |
|
1480 | + } catch(PDOException $e) { |
|
1481 | + echo "error : ".$e->getMessage(); |
|
1482 | + } |
|
1483 | 1483 | } |
1484 | 1484 | if ($globalDBdriver == 'mysql') { |
1485 | 1485 | update_db::gunzip('../db/countries.sql.gz',$tmp_dir.'countries.sql'); |
@@ -1954,11 +1954,11 @@ discard block |
||
1954 | 1954 | $query = 'DROP TABLE airspace'; |
1955 | 1955 | try { |
1956 | 1956 | $sth = $Connection->db->prepare($query); |
1957 | - $sth->execute(); |
|
1958 | - } catch(PDOException $e) { |
|
1957 | + $sth->execute(); |
|
1958 | + } catch(PDOException $e) { |
|
1959 | 1959 | return "error : ".$e->getMessage(); |
1960 | - } |
|
1961 | - } |
|
1960 | + } |
|
1961 | + } |
|
1962 | 1962 | $error = create_db::import_file($tmp_dir.'airspace.sql'); |
1963 | 1963 | update_db::insert_airspace_version($airspace_md5); |
1964 | 1964 | } else $error = "File ".$tmp_dir.'airpsace.sql.gz'." doesn't exist. Download failed."; |
@@ -2078,12 +2078,12 @@ discard block |
||
2078 | 2078 | echo $data; |
2079 | 2079 | */ |
2080 | 2080 | if (file_exists($tmp_dir.'aircrafts.html')) { |
2081 | - //var_dump(file_get_html($tmp_dir.'aircrafts.html')); |
|
2082 | - $fh = fopen($tmp_dir.'aircrafts.html',"r"); |
|
2083 | - $result = fread($fh,100000000); |
|
2084 | - //echo $result; |
|
2085 | - //var_dump(str_get_html($result)); |
|
2086 | - //print_r(self::table2array($result)); |
|
2081 | + //var_dump(file_get_html($tmp_dir.'aircrafts.html')); |
|
2082 | + $fh = fopen($tmp_dir.'aircrafts.html',"r"); |
|
2083 | + $result = fread($fh,100000000); |
|
2084 | + //echo $result; |
|
2085 | + //var_dump(str_get_html($result)); |
|
2086 | + //print_r(self::table2array($result)); |
|
2087 | 2087 | } |
2088 | 2088 | |
2089 | 2089 | } |
@@ -2097,10 +2097,10 @@ discard block |
||
2097 | 2097 | try { |
2098 | 2098 | $Connection = new Connection(); |
2099 | 2099 | $sth = $Connection->db->prepare($query); |
2100 | - $sth->execute(); |
|
2101 | - } catch(PDOException $e) { |
|
2102 | - return "error : ".$e->getMessage(); |
|
2103 | - } |
|
2100 | + $sth->execute(); |
|
2101 | + } catch(PDOException $e) { |
|
2102 | + return "error : ".$e->getMessage(); |
|
2103 | + } |
|
2104 | 2104 | |
2105 | 2105 | $error = ''; |
2106 | 2106 | if ($globalDebug) echo "Notam : Download..."; |
@@ -2156,8 +2156,8 @@ discard block |
||
2156 | 2156 | $data['date_end'] = date("Y-m-d H:i:s",strtotime($to)); |
2157 | 2157 | $data['permanent'] = 0; |
2158 | 2158 | } else { |
2159 | - $data['date_end'] = NULL; |
|
2160 | - $data['permanent'] = 1; |
|
2159 | + $data['date_end'] = NULL; |
|
2160 | + $data['permanent'] = 1; |
|
2161 | 2161 | } |
2162 | 2162 | $data['full_notam'] = $notam['title'].'<br>'.$notam['description']; |
2163 | 2163 | $NOTAM = new NOTAM(); |
@@ -2216,13 +2216,13 @@ discard block |
||
2216 | 2216 | try { |
2217 | 2217 | $Connection = new Connection(); |
2218 | 2218 | $sth = $Connection->db->prepare($query); |
2219 | - $sth->execute(); |
|
2220 | - } catch(PDOException $e) { |
|
2221 | - return "error : ".$e->getMessage(); |
|
2222 | - } |
|
2223 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2224 | - if ($row['nb'] > 0) return false; |
|
2225 | - else return true; |
|
2219 | + $sth->execute(); |
|
2220 | + } catch(PDOException $e) { |
|
2221 | + return "error : ".$e->getMessage(); |
|
2222 | + } |
|
2223 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2224 | + if ($row['nb'] > 0) return false; |
|
2225 | + else return true; |
|
2226 | 2226 | } |
2227 | 2227 | |
2228 | 2228 | public static function insert_last_update() { |
@@ -2231,10 +2231,10 @@ discard block |
||
2231 | 2231 | try { |
2232 | 2232 | $Connection = new Connection(); |
2233 | 2233 | $sth = $Connection->db->prepare($query); |
2234 | - $sth->execute(); |
|
2235 | - } catch(PDOException $e) { |
|
2236 | - return "error : ".$e->getMessage(); |
|
2237 | - } |
|
2234 | + $sth->execute(); |
|
2235 | + } catch(PDOException $e) { |
|
2236 | + return "error : ".$e->getMessage(); |
|
2237 | + } |
|
2238 | 2238 | } |
2239 | 2239 | |
2240 | 2240 | public static function check_airspace_version($version) { |
@@ -2242,13 +2242,13 @@ discard block |
||
2242 | 2242 | try { |
2243 | 2243 | $Connection = new Connection(); |
2244 | 2244 | $sth = $Connection->db->prepare($query); |
2245 | - $sth->execute(array(':version' => $version)); |
|
2246 | - } catch(PDOException $e) { |
|
2247 | - return "error : ".$e->getMessage(); |
|
2248 | - } |
|
2249 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2250 | - if ($row['nb'] > 0) return true; |
|
2251 | - else return false; |
|
2245 | + $sth->execute(array(':version' => $version)); |
|
2246 | + } catch(PDOException $e) { |
|
2247 | + return "error : ".$e->getMessage(); |
|
2248 | + } |
|
2249 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2250 | + if ($row['nb'] > 0) return true; |
|
2251 | + else return false; |
|
2252 | 2252 | } |
2253 | 2253 | |
2254 | 2254 | |
@@ -2258,10 +2258,10 @@ discard block |
||
2258 | 2258 | try { |
2259 | 2259 | $Connection = new Connection(); |
2260 | 2260 | $sth = $Connection->db->prepare($query); |
2261 | - $sth->execute(array(':version' => $version)); |
|
2262 | - } catch(PDOException $e) { |
|
2263 | - return "error : ".$e->getMessage(); |
|
2264 | - } |
|
2261 | + $sth->execute(array(':version' => $version)); |
|
2262 | + } catch(PDOException $e) { |
|
2263 | + return "error : ".$e->getMessage(); |
|
2264 | + } |
|
2265 | 2265 | } |
2266 | 2266 | |
2267 | 2267 | public static function check_last_notam_update() { |
@@ -2274,13 +2274,13 @@ discard block |
||
2274 | 2274 | try { |
2275 | 2275 | $Connection = new Connection(); |
2276 | 2276 | $sth = $Connection->db->prepare($query); |
2277 | - $sth->execute(); |
|
2278 | - } catch(PDOException $e) { |
|
2279 | - return "error : ".$e->getMessage(); |
|
2280 | - } |
|
2281 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2282 | - if ($row['nb'] > 0) return false; |
|
2283 | - else return true; |
|
2277 | + $sth->execute(); |
|
2278 | + } catch(PDOException $e) { |
|
2279 | + return "error : ".$e->getMessage(); |
|
2280 | + } |
|
2281 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2282 | + if ($row['nb'] > 0) return false; |
|
2283 | + else return true; |
|
2284 | 2284 | } |
2285 | 2285 | |
2286 | 2286 | public static function insert_last_notam_update() { |
@@ -2289,10 +2289,10 @@ discard block |
||
2289 | 2289 | try { |
2290 | 2290 | $Connection = new Connection(); |
2291 | 2291 | $sth = $Connection->db->prepare($query); |
2292 | - $sth->execute(); |
|
2293 | - } catch(PDOException $e) { |
|
2294 | - return "error : ".$e->getMessage(); |
|
2295 | - } |
|
2292 | + $sth->execute(); |
|
2293 | + } catch(PDOException $e) { |
|
2294 | + return "error : ".$e->getMessage(); |
|
2295 | + } |
|
2296 | 2296 | } |
2297 | 2297 | public static function check_last_airspace_update() { |
2298 | 2298 | global $globalDBdriver; |
@@ -2304,13 +2304,13 @@ discard block |
||
2304 | 2304 | try { |
2305 | 2305 | $Connection = new Connection(); |
2306 | 2306 | $sth = $Connection->db->prepare($query); |
2307 | - $sth->execute(); |
|
2308 | - } catch(PDOException $e) { |
|
2309 | - return "error : ".$e->getMessage(); |
|
2310 | - } |
|
2311 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2312 | - if ($row['nb'] > 0) return false; |
|
2313 | - else return true; |
|
2307 | + $sth->execute(); |
|
2308 | + } catch(PDOException $e) { |
|
2309 | + return "error : ".$e->getMessage(); |
|
2310 | + } |
|
2311 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2312 | + if ($row['nb'] > 0) return false; |
|
2313 | + else return true; |
|
2314 | 2314 | } |
2315 | 2315 | |
2316 | 2316 | public static function insert_last_airspace_update() { |
@@ -2319,10 +2319,10 @@ discard block |
||
2319 | 2319 | try { |
2320 | 2320 | $Connection = new Connection(); |
2321 | 2321 | $sth = $Connection->db->prepare($query); |
2322 | - $sth->execute(); |
|
2323 | - } catch(PDOException $e) { |
|
2324 | - return "error : ".$e->getMessage(); |
|
2325 | - } |
|
2322 | + $sth->execute(); |
|
2323 | + } catch(PDOException $e) { |
|
2324 | + return "error : ".$e->getMessage(); |
|
2325 | + } |
|
2326 | 2326 | } |
2327 | 2327 | |
2328 | 2328 | public static function check_last_owner_update() { |
@@ -2335,13 +2335,13 @@ discard block |
||
2335 | 2335 | try { |
2336 | 2336 | $Connection = new Connection(); |
2337 | 2337 | $sth = $Connection->db->prepare($query); |
2338 | - $sth->execute(); |
|
2339 | - } catch(PDOException $e) { |
|
2340 | - return "error : ".$e->getMessage(); |
|
2341 | - } |
|
2342 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2343 | - if ($row['nb'] > 0) return false; |
|
2344 | - else return true; |
|
2338 | + $sth->execute(); |
|
2339 | + } catch(PDOException $e) { |
|
2340 | + return "error : ".$e->getMessage(); |
|
2341 | + } |
|
2342 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2343 | + if ($row['nb'] > 0) return false; |
|
2344 | + else return true; |
|
2345 | 2345 | } |
2346 | 2346 | |
2347 | 2347 | public static function insert_last_owner_update() { |
@@ -2350,10 +2350,10 @@ discard block |
||
2350 | 2350 | try { |
2351 | 2351 | $Connection = new Connection(); |
2352 | 2352 | $sth = $Connection->db->prepare($query); |
2353 | - $sth->execute(); |
|
2354 | - } catch(PDOException $e) { |
|
2355 | - return "error : ".$e->getMessage(); |
|
2356 | - } |
|
2353 | + $sth->execute(); |
|
2354 | + } catch(PDOException $e) { |
|
2355 | + return "error : ".$e->getMessage(); |
|
2356 | + } |
|
2357 | 2357 | } |
2358 | 2358 | public static function check_last_schedules_update() { |
2359 | 2359 | global $globalDBdriver; |
@@ -2365,13 +2365,13 @@ discard block |
||
2365 | 2365 | try { |
2366 | 2366 | $Connection = new Connection(); |
2367 | 2367 | $sth = $Connection->db->prepare($query); |
2368 | - $sth->execute(); |
|
2369 | - } catch(PDOException $e) { |
|
2370 | - return "error : ".$e->getMessage(); |
|
2371 | - } |
|
2372 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2373 | - if ($row['nb'] > 0) return false; |
|
2374 | - else return true; |
|
2368 | + $sth->execute(); |
|
2369 | + } catch(PDOException $e) { |
|
2370 | + return "error : ".$e->getMessage(); |
|
2371 | + } |
|
2372 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2373 | + if ($row['nb'] > 0) return false; |
|
2374 | + else return true; |
|
2375 | 2375 | } |
2376 | 2376 | |
2377 | 2377 | public static function insert_last_schedules_update() { |
@@ -2380,10 +2380,10 @@ discard block |
||
2380 | 2380 | try { |
2381 | 2381 | $Connection = new Connection(); |
2382 | 2382 | $sth = $Connection->db->prepare($query); |
2383 | - $sth->execute(); |
|
2384 | - } catch(PDOException $e) { |
|
2385 | - return "error : ".$e->getMessage(); |
|
2386 | - } |
|
2383 | + $sth->execute(); |
|
2384 | + } catch(PDOException $e) { |
|
2385 | + return "error : ".$e->getMessage(); |
|
2386 | + } |
|
2387 | 2387 | } |
2388 | 2388 | public static function check_last_tle_update() { |
2389 | 2389 | global $globalDBdriver; |
@@ -2395,13 +2395,13 @@ discard block |
||
2395 | 2395 | try { |
2396 | 2396 | $Connection = new Connection(); |
2397 | 2397 | $sth = $Connection->db->prepare($query); |
2398 | - $sth->execute(); |
|
2399 | - } catch(PDOException $e) { |
|
2400 | - return "error : ".$e->getMessage(); |
|
2401 | - } |
|
2402 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2403 | - if ($row['nb'] > 0) return false; |
|
2404 | - else return true; |
|
2398 | + $sth->execute(); |
|
2399 | + } catch(PDOException $e) { |
|
2400 | + return "error : ".$e->getMessage(); |
|
2401 | + } |
|
2402 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2403 | + if ($row['nb'] > 0) return false; |
|
2404 | + else return true; |
|
2405 | 2405 | } |
2406 | 2406 | |
2407 | 2407 | public static function insert_last_tle_update() { |
@@ -2410,10 +2410,10 @@ discard block |
||
2410 | 2410 | try { |
2411 | 2411 | $Connection = new Connection(); |
2412 | 2412 | $sth = $Connection->db->prepare($query); |
2413 | - $sth->execute(); |
|
2414 | - } catch(PDOException $e) { |
|
2415 | - return "error : ".$e->getMessage(); |
|
2416 | - } |
|
2413 | + $sth->execute(); |
|
2414 | + } catch(PDOException $e) { |
|
2415 | + return "error : ".$e->getMessage(); |
|
2416 | + } |
|
2417 | 2417 | } |
2418 | 2418 | public static function check_last_banned_update() { |
2419 | 2419 | global $globalDBdriver; |
@@ -2425,13 +2425,13 @@ discard block |
||
2425 | 2425 | try { |
2426 | 2426 | $Connection = new Connection(); |
2427 | 2427 | $sth = $Connection->db->prepare($query); |
2428 | - $sth->execute(); |
|
2429 | - } catch(PDOException $e) { |
|
2430 | - return "error : ".$e->getMessage(); |
|
2431 | - } |
|
2432 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2433 | - if ($row['nb'] > 0) return false; |
|
2434 | - else return true; |
|
2428 | + $sth->execute(); |
|
2429 | + } catch(PDOException $e) { |
|
2430 | + return "error : ".$e->getMessage(); |
|
2431 | + } |
|
2432 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
2433 | + if ($row['nb'] > 0) return false; |
|
2434 | + else return true; |
|
2435 | 2435 | } |
2436 | 2436 | |
2437 | 2437 | public static function insert_last_banned_update() { |
@@ -2440,10 +2440,10 @@ discard block |
||
2440 | 2440 | try { |
2441 | 2441 | $Connection = new Connection(); |
2442 | 2442 | $sth = $Connection->db->prepare($query); |
2443 | - $sth->execute(); |
|
2444 | - } catch(PDOException $e) { |
|
2445 | - return "error : ".$e->getMessage(); |
|
2446 | - } |
|
2443 | + $sth->execute(); |
|
2444 | + } catch(PDOException $e) { |
|
2445 | + return "error : ".$e->getMessage(); |
|
2446 | + } |
|
2447 | 2447 | } |
2448 | 2448 | public static function delete_duplicatemodes() { |
2449 | 2449 | global $globalDBdriver; |
@@ -2455,10 +2455,10 @@ discard block |
||
2455 | 2455 | try { |
2456 | 2456 | $Connection = new Connection(); |
2457 | 2457 | $sth = $Connection->db->prepare($query); |
2458 | - $sth->execute(); |
|
2459 | - } catch(PDOException $e) { |
|
2460 | - return "error : ".$e->getMessage(); |
|
2461 | - } |
|
2458 | + $sth->execute(); |
|
2459 | + } catch(PDOException $e) { |
|
2460 | + return "error : ".$e->getMessage(); |
|
2461 | + } |
|
2462 | 2462 | } |
2463 | 2463 | public static function delete_duplicateowner() { |
2464 | 2464 | global $globalDBdriver; |
@@ -2470,10 +2470,10 @@ discard block |
||
2470 | 2470 | try { |
2471 | 2471 | $Connection = new Connection(); |
2472 | 2472 | $sth = $Connection->db->prepare($query); |
2473 | - $sth->execute(); |
|
2474 | - } catch(PDOException $e) { |
|
2475 | - return "error : ".$e->getMessage(); |
|
2476 | - } |
|
2473 | + $sth->execute(); |
|
2474 | + } catch(PDOException $e) { |
|
2475 | + return "error : ".$e->getMessage(); |
|
2476 | + } |
|
2477 | 2477 | } |
2478 | 2478 | |
2479 | 2479 | public static function update_all() { |
@@ -8,18 +8,18 @@ discard block |
||
8 | 8 | class update_schema { |
9 | 9 | |
10 | 10 | public static function update_schedule() { |
11 | - $Connection = new Connection(); |
|
12 | - $Schedule = new Schedule(); |
|
13 | - $query = "SELECT * FROM schedule"; |
|
14 | - try { |
|
15 | - $sth = $Connection->db->prepare($query); |
|
11 | + $Connection = new Connection(); |
|
12 | + $Schedule = new Schedule(); |
|
13 | + $query = "SELECT * FROM schedule"; |
|
14 | + try { |
|
15 | + $sth = $Connection->db->prepare($query); |
|
16 | 16 | $sth->execute(); |
17 | - } catch(PDOException $e) { |
|
17 | + } catch(PDOException $e) { |
|
18 | 18 | return "error : ".$e->getMessage()."\n"; |
19 | - } |
|
20 | - while ($row = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
21 | - $Schedule->addSchedule($row['ident'],$row['departure_airport_icao'],$row['departure_airport_time'],$row['arrival_airport_icao'],$row['arrival_airport_time']); |
|
22 | - } |
|
19 | + } |
|
20 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
21 | + $Schedule->addSchedule($row['ident'],$row['departure_airport_icao'],$row['departure_airport_time'],$row['arrival_airport_icao'],$row['arrival_airport_time']); |
|
22 | + } |
|
23 | 23 | |
24 | 24 | } |
25 | 25 | /* |
@@ -43,198 +43,198 @@ discard block |
||
43 | 43 | } |
44 | 44 | */ |
45 | 45 | private static function update_from_1() { |
46 | - $Connection = new Connection(); |
|
47 | - // Add new column to routes table |
|
48 | - //$query = "ALTER TABLE `routes` ADD `FromAirport_Time` VARCHAR(10),`ToAirport_Time` VARCHAR(10),`Source` VARCHAR(255),`date_added` DATETIME DEFAULT CURRENT TIMESTAMP,`date_modified` DATETIME,`date_lastseen` DATETIME"; |
|
46 | + $Connection = new Connection(); |
|
47 | + // Add new column to routes table |
|
48 | + //$query = "ALTER TABLE `routes` ADD `FromAirport_Time` VARCHAR(10),`ToAirport_Time` VARCHAR(10),`Source` VARCHAR(255),`date_added` DATETIME DEFAULT CURRENT TIMESTAMP,`date_modified` DATETIME,`date_lastseen` DATETIME"; |
|
49 | 49 | $query = "ALTER TABLE `routes` ADD `FromAirport_Time` VARCHAR(10) NULL , ADD `ToAirport_Time` VARCHAR(10) NULL , ADD `Source` VARCHAR(255) NULL, ADD `date_added` timestamp DEFAULT CURRENT_TIMESTAMP, ADD `date_modified` timestamp NULL, ADD `date_lastseen` timestamp NULL"; |
50 | - try { |
|
51 | - $sth = $Connection->db->prepare($query); |
|
52 | - $sth->execute(); |
|
53 | - } catch(PDOException $e) { |
|
54 | - return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
|
55 | - } |
|
56 | - // Copy schedules data to routes table |
|
57 | - self::update_schedule(); |
|
58 | - // Delete schedule table |
|
50 | + try { |
|
51 | + $sth = $Connection->db->prepare($query); |
|
52 | + $sth->execute(); |
|
53 | + } catch(PDOException $e) { |
|
54 | + return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
|
55 | + } |
|
56 | + // Copy schedules data to routes table |
|
57 | + self::update_schedule(); |
|
58 | + // Delete schedule table |
|
59 | 59 | $query = "DROP TABLE `schedule`"; |
60 | - try { |
|
61 | - $sth = $Connection->db->prepare($query); |
|
62 | - $sth->execute(); |
|
63 | - } catch(PDOException $e) { |
|
64 | - return "error (delete schedule table) : ".$e->getMessage()."\n"; |
|
65 | - } |
|
66 | - // Add source column |
|
67 | - $query = "ALTER TABLE `aircraft_modes` ADD `Source` VARCHAR(255) NULL"; |
|
68 | - try { |
|
69 | - $sth = $Connection->db->prepare($query); |
|
70 | - $sth->execute(); |
|
71 | - } catch(PDOException $e) { |
|
72 | - return "error (add source column to aircraft_modes) : ".$e->getMessage()."\n"; |
|
73 | - } |
|
60 | + try { |
|
61 | + $sth = $Connection->db->prepare($query); |
|
62 | + $sth->execute(); |
|
63 | + } catch(PDOException $e) { |
|
64 | + return "error (delete schedule table) : ".$e->getMessage()."\n"; |
|
65 | + } |
|
66 | + // Add source column |
|
67 | + $query = "ALTER TABLE `aircraft_modes` ADD `Source` VARCHAR(255) NULL"; |
|
68 | + try { |
|
69 | + $sth = $Connection->db->prepare($query); |
|
70 | + $sth->execute(); |
|
71 | + } catch(PDOException $e) { |
|
72 | + return "error (add source column to aircraft_modes) : ".$e->getMessage()."\n"; |
|
73 | + } |
|
74 | 74 | // Delete unused column |
75 | 75 | $query = "ALTER TABLE `aircraft_modes` DROP `SerialNo`, DROP `OperatorFlagCode`, DROP `Manufacturer`, DROP `Type`, DROP `FirstRegDate`, DROP `CurrentRegDate`, DROP `Country`, DROP `PreviousID`, DROP `DeRegDate`, DROP `Status`, DROP `PopularName`, DROP `GenericName`, DROP `AircraftClass`, DROP `Engines`, DROP `OwnershipStatus`, DROP `RegisteredOwners`, DROP `MTOW`, DROP `TotalHours`, DROP `YearBuilt`, DROP `CofACategory`, DROP `CofAExpiry`, DROP `UserNotes`, DROP `Interested`, DROP `UserTag`, DROP `InfoUrl`, DROP `PictureUrl1`, DROP `PictureUrl2`, DROP `PictureUrl3`, DROP `UserBool1`, DROP `UserBool2`, DROP `UserBool3`, DROP `UserBool4`, DROP `UserBool5`, DROP `UserString1`, DROP `UserString2`, DROP `UserString3`, DROP `UserString4`, DROP `UserString5`, DROP `UserInt1`, DROP `UserInt2`, DROP `UserInt3`, DROP `UserInt4`, DROP `UserInt5`"; |
76 | - try { |
|
77 | - $sth = $Connection->db->prepare($query); |
|
78 | - $sth->execute(); |
|
79 | - } catch(PDOException $e) { |
|
80 | - return "error (Delete unused column of aircraft_modes) : ".$e->getMessage()."\n"; |
|
81 | - } |
|
76 | + try { |
|
77 | + $sth = $Connection->db->prepare($query); |
|
78 | + $sth->execute(); |
|
79 | + } catch(PDOException $e) { |
|
80 | + return "error (Delete unused column of aircraft_modes) : ".$e->getMessage()."\n"; |
|
81 | + } |
|
82 | 82 | // Add ModeS column |
83 | 83 | $query = "ALTER TABLE `spotter_output` ADD `ModeS` VARCHAR(255) NULL"; |
84 | - try { |
|
85 | - $sth = $Connection->db->prepare($query); |
|
86 | - $sth->execute(); |
|
87 | - } catch(PDOException $e) { |
|
88 | - return "error (Add ModeS column in spotter_output) : ".$e->getMessage()."\n"; |
|
89 | - } |
|
84 | + try { |
|
85 | + $sth = $Connection->db->prepare($query); |
|
86 | + $sth->execute(); |
|
87 | + } catch(PDOException $e) { |
|
88 | + return "error (Add ModeS column in spotter_output) : ".$e->getMessage()."\n"; |
|
89 | + } |
|
90 | 90 | $query = "ALTER TABLE `spotter_live` ADD `ModeS` VARCHAR(255)"; |
91 | - try { |
|
92 | - $sth = $Connection->db->prepare($query); |
|
93 | - $sth->execute(); |
|
94 | - } catch(PDOException $e) { |
|
95 | - return "error (Add ModeS column in spotter_live) : ".$e->getMessage()."\n"; |
|
96 | - } |
|
97 | - // Add auto_increment for aircraft_modes |
|
98 | - $query = "ALTER TABLE `aircraft_modes` CHANGE `AircraftID` `AircraftID` INT(11) NOT NULL AUTO_INCREMENT"; |
|
99 | - try { |
|
100 | - $sth = $Connection->db->prepare($query); |
|
101 | - $sth->execute(); |
|
102 | - } catch(PDOException $e) { |
|
103 | - return "error (Add Auto increment in aircraft_modes) : ".$e->getMessage()."\n"; |
|
104 | - } |
|
105 | - $error = ''; |
|
91 | + try { |
|
92 | + $sth = $Connection->db->prepare($query); |
|
93 | + $sth->execute(); |
|
94 | + } catch(PDOException $e) { |
|
95 | + return "error (Add ModeS column in spotter_live) : ".$e->getMessage()."\n"; |
|
96 | + } |
|
97 | + // Add auto_increment for aircraft_modes |
|
98 | + $query = "ALTER TABLE `aircraft_modes` CHANGE `AircraftID` `AircraftID` INT(11) NOT NULL AUTO_INCREMENT"; |
|
99 | + try { |
|
100 | + $sth = $Connection->db->prepare($query); |
|
101 | + $sth->execute(); |
|
102 | + } catch(PDOException $e) { |
|
103 | + return "error (Add Auto increment in aircraft_modes) : ".$e->getMessage()."\n"; |
|
104 | + } |
|
105 | + $error = ''; |
|
106 | 106 | $error .= create_db::import_file('../db/acars_live.sql'); |
107 | 107 | $error .= create_db::import_file('../db/config.sql'); |
108 | 108 | // Update schema_version to 2 |
109 | 109 | $query = "UPDATE `config` SET `value` = '2' WHERE `name` = 'schema_version'"; |
110 | - try { |
|
111 | - $sth = $Connection->db->prepare($query); |
|
112 | - $sth->execute(); |
|
113 | - } catch(PDOException $e) { |
|
114 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
115 | - } |
|
110 | + try { |
|
111 | + $sth = $Connection->db->prepare($query); |
|
112 | + $sth->execute(); |
|
113 | + } catch(PDOException $e) { |
|
114 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
115 | + } |
|
116 | 116 | return $error; |
117 | - } |
|
117 | + } |
|
118 | 118 | |
119 | 119 | private static function update_from_2() { |
120 | - $Connection = new Connection(); |
|
121 | - // Add new column decode to acars_live table |
|
120 | + $Connection = new Connection(); |
|
121 | + // Add new column decode to acars_live table |
|
122 | 122 | $query = "ALTER TABLE `acars_live` ADD `decode` TEXT"; |
123 | - try { |
|
124 | - $sth = $Connection->db->prepare($query); |
|
125 | - $sth->execute(); |
|
126 | - } catch(PDOException $e) { |
|
127 | - return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
|
128 | - } |
|
129 | - $error = ''; |
|
130 | - // Create table acars_archive |
|
123 | + try { |
|
124 | + $sth = $Connection->db->prepare($query); |
|
125 | + $sth->execute(); |
|
126 | + } catch(PDOException $e) { |
|
127 | + return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
|
128 | + } |
|
129 | + $error = ''; |
|
130 | + // Create table acars_archive |
|
131 | 131 | $error .= create_db::import_file('../db/acars_archive.sql'); |
132 | 132 | // Update schema_version to 3 |
133 | 133 | $query = "UPDATE `config` SET `value` = '3' WHERE `name` = 'schema_version'"; |
134 | - try { |
|
135 | - $sth = $Connection->db->prepare($query); |
|
136 | - $sth->execute(); |
|
137 | - } catch(PDOException $e) { |
|
138 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
139 | - } |
|
134 | + try { |
|
135 | + $sth = $Connection->db->prepare($query); |
|
136 | + $sth->execute(); |
|
137 | + } catch(PDOException $e) { |
|
138 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
139 | + } |
|
140 | 140 | return $error; |
141 | 141 | } |
142 | 142 | |
143 | 143 | private static function update_from_3() { |
144 | - $Connection = new Connection(); |
|
145 | - // Add default CURRENT_TIMESTAMP to aircraft_modes column FirstCreated |
|
144 | + $Connection = new Connection(); |
|
145 | + // Add default CURRENT_TIMESTAMP to aircraft_modes column FirstCreated |
|
146 | 146 | $query = "ALTER TABLE `aircraft_modes` CHANGE `FirstCreated` `FirstCreated` timestamp DEFAULT CURRENT_TIMESTAMP"; |
147 | - try { |
|
148 | - $sth = $Connection->db->prepare($query); |
|
149 | - $sth->execute(); |
|
150 | - } catch(PDOException $e) { |
|
151 | - return "error (add new columns to aircraft_modes) : ".$e->getMessage()."\n"; |
|
152 | - } |
|
153 | - // Add image_source_website column to spotter_image |
|
147 | + try { |
|
148 | + $sth = $Connection->db->prepare($query); |
|
149 | + $sth->execute(); |
|
150 | + } catch(PDOException $e) { |
|
151 | + return "error (add new columns to aircraft_modes) : ".$e->getMessage()."\n"; |
|
152 | + } |
|
153 | + // Add image_source_website column to spotter_image |
|
154 | 154 | $query = "ALTER TABLE `spotter_image` ADD `image_source_website` VARCHAR(999) NULL"; |
155 | - try { |
|
156 | - $sth = $Connection->db->prepare($query); |
|
157 | - $sth->execute(); |
|
158 | - } catch(PDOException $e) { |
|
159 | - return "error (add new columns to spotter_image) : ".$e->getMessage()."\n"; |
|
160 | - } |
|
161 | - $error = ''; |
|
155 | + try { |
|
156 | + $sth = $Connection->db->prepare($query); |
|
157 | + $sth->execute(); |
|
158 | + } catch(PDOException $e) { |
|
159 | + return "error (add new columns to spotter_image) : ".$e->getMessage()."\n"; |
|
160 | + } |
|
161 | + $error = ''; |
|
162 | 162 | // Update schema_version to 4 |
163 | 163 | $query = "UPDATE `config` SET `value` = '4' WHERE `name` = 'schema_version'"; |
164 | - try { |
|
165 | - $sth = $Connection->db->prepare($query); |
|
166 | - $sth->execute(); |
|
167 | - } catch(PDOException $e) { |
|
168 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
169 | - } |
|
164 | + try { |
|
165 | + $sth = $Connection->db->prepare($query); |
|
166 | + $sth->execute(); |
|
167 | + } catch(PDOException $e) { |
|
168 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
169 | + } |
|
170 | 170 | return $error; |
171 | 171 | } |
172 | 172 | |
173 | 173 | private static function update_from_4() { |
174 | - $Connection = new Connection(); |
|
174 | + $Connection = new Connection(); |
|
175 | 175 | |
176 | - $error = ''; |
|
177 | - // Create table acars_label |
|
176 | + $error = ''; |
|
177 | + // Create table acars_label |
|
178 | 178 | $error .= create_db::import_file('../db/acars_label.sql'); |
179 | 179 | if ($error == '') { |
180 | - // Update schema_version to 5 |
|
181 | - $query = "UPDATE `config` SET `value` = '5' WHERE `name` = 'schema_version'"; |
|
182 | - try { |
|
183 | - $sth = $Connection->db->prepare($query); |
|
180 | + // Update schema_version to 5 |
|
181 | + $query = "UPDATE `config` SET `value` = '5' WHERE `name` = 'schema_version'"; |
|
182 | + try { |
|
183 | + $sth = $Connection->db->prepare($query); |
|
184 | 184 | $sth->execute(); |
185 | - } catch(PDOException $e) { |
|
185 | + } catch(PDOException $e) { |
|
186 | 186 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
187 | - } |
|
188 | - } |
|
187 | + } |
|
188 | + } |
|
189 | 189 | return $error; |
190 | 190 | } |
191 | 191 | |
192 | 192 | private static function update_from_5() { |
193 | - $Connection = new Connection(); |
|
194 | - // Add columns to translation |
|
193 | + $Connection = new Connection(); |
|
194 | + // Add columns to translation |
|
195 | 195 | $query = "ALTER TABLE `translation` ADD `Source` VARCHAR(255) NULL, ADD `date_added` timestamp DEFAULT CURRENT_TIMESTAMP , ADD `date_modified` timestamp DEFAULT CURRENT_TIMESTAMP ;"; |
196 | - try { |
|
197 | - $sth = $Connection->db->prepare($query); |
|
198 | - $sth->execute(); |
|
199 | - } catch(PDOException $e) { |
|
200 | - return "error (add new columns to translation) : ".$e->getMessage()."\n"; |
|
201 | - } |
|
202 | - // Add aircraft_shadow column to aircraft |
|
203 | - $query = "ALTER TABLE `aircraft` ADD `aircraft_shadow` VARCHAR(255) NULL"; |
|
204 | - try { |
|
205 | - $sth = $Connection->db->prepare($query); |
|
206 | - $sth->execute(); |
|
207 | - } catch(PDOException $e) { |
|
208 | - return "error (add new column to aircraft) : ".$e->getMessage()."\n"; |
|
209 | - } |
|
210 | - // Add aircraft_shadow column to spotter_live |
|
211 | - $query = "ALTER TABLE `spotter_live` ADD `aircraft_shadow` VARCHAR(255) NULL"; |
|
212 | - try { |
|
213 | - $sth = $Connection->db->prepare($query); |
|
214 | - $sth->execute(); |
|
215 | - } catch(PDOException $e) { |
|
216 | - return "error (add new column to spotter_live) : ".$e->getMessage()."\n"; |
|
217 | - } |
|
218 | - $error = ''; |
|
219 | - // Update table aircraft |
|
196 | + try { |
|
197 | + $sth = $Connection->db->prepare($query); |
|
198 | + $sth->execute(); |
|
199 | + } catch(PDOException $e) { |
|
200 | + return "error (add new columns to translation) : ".$e->getMessage()."\n"; |
|
201 | + } |
|
202 | + // Add aircraft_shadow column to aircraft |
|
203 | + $query = "ALTER TABLE `aircraft` ADD `aircraft_shadow` VARCHAR(255) NULL"; |
|
204 | + try { |
|
205 | + $sth = $Connection->db->prepare($query); |
|
206 | + $sth->execute(); |
|
207 | + } catch(PDOException $e) { |
|
208 | + return "error (add new column to aircraft) : ".$e->getMessage()."\n"; |
|
209 | + } |
|
210 | + // Add aircraft_shadow column to spotter_live |
|
211 | + $query = "ALTER TABLE `spotter_live` ADD `aircraft_shadow` VARCHAR(255) NULL"; |
|
212 | + try { |
|
213 | + $sth = $Connection->db->prepare($query); |
|
214 | + $sth->execute(); |
|
215 | + } catch(PDOException $e) { |
|
216 | + return "error (add new column to spotter_live) : ".$e->getMessage()."\n"; |
|
217 | + } |
|
218 | + $error = ''; |
|
219 | + // Update table aircraft |
|
220 | 220 | $error .= create_db::import_file('../db/aircraft.sql'); |
221 | 221 | $error .= create_db::import_file('../db/spotter_archive.sql'); |
222 | 222 | |
223 | 223 | // Update schema_version to 6 |
224 | 224 | $query = "UPDATE `config` SET `value` = '6' WHERE `name` = 'schema_version'"; |
225 | - try { |
|
226 | - $sth = $Connection->db->prepare($query); |
|
227 | - $sth->execute(); |
|
228 | - } catch(PDOException $e) { |
|
229 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
230 | - } |
|
225 | + try { |
|
226 | + $sth = $Connection->db->prepare($query); |
|
227 | + $sth->execute(); |
|
228 | + } catch(PDOException $e) { |
|
229 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
230 | + } |
|
231 | 231 | return $error; |
232 | 232 | } |
233 | 233 | |
234 | 234 | private static function update_from_6() { |
235 | - $Connection = new Connection(); |
|
236 | - if (!$Connection->indexExists('spotter_output','flightaware_id')) { |
|
237 | - $query = "ALTER TABLE spotter_output ADD INDEX(flightaware_id); |
|
235 | + $Connection = new Connection(); |
|
236 | + if (!$Connection->indexExists('spotter_output','flightaware_id')) { |
|
237 | + $query = "ALTER TABLE spotter_output ADD INDEX(flightaware_id); |
|
238 | 238 | ALTER TABLE spotter_output ADD INDEX(date); |
239 | 239 | ALTER TABLE spotter_output ADD INDEX(ident); |
240 | 240 | ALTER TABLE spotter_live ADD INDEX(flightaware_id); |
@@ -247,147 +247,147 @@ discard block |
||
247 | 247 | ALTER TABLE aircraft ADD INDEX(icao); |
248 | 248 | ALTER TABLE airport ADD INDEX(icao); |
249 | 249 | ALTER TABLE translation ADD INDEX(Operator);"; |
250 | - try { |
|
251 | - $sth = $Connection->db->prepare($query); |
|
250 | + try { |
|
251 | + $sth = $Connection->db->prepare($query); |
|
252 | 252 | $sth->execute(); |
253 | - } catch(PDOException $e) { |
|
253 | + } catch(PDOException $e) { |
|
254 | 254 | return "error (add some indexes) : ".$e->getMessage()."\n"; |
255 | - } |
|
256 | - } |
|
257 | - $error = ''; |
|
258 | - // Update table countries |
|
259 | - if ($Connection->tableExists('airspace')) { |
|
260 | - $error .= update_db::update_countries(); |
|
261 | - if ($error != '') return $error; |
|
255 | + } |
|
256 | + } |
|
257 | + $error = ''; |
|
258 | + // Update table countries |
|
259 | + if ($Connection->tableExists('airspace')) { |
|
260 | + $error .= update_db::update_countries(); |
|
261 | + if ($error != '') return $error; |
|
262 | 262 | } |
263 | 263 | // Update schema_version to 7 |
264 | 264 | $query = "UPDATE `config` SET `value` = '7' WHERE `name` = 'schema_version'"; |
265 | - try { |
|
266 | - $sth = $Connection->db->prepare($query); |
|
267 | - $sth->execute(); |
|
268 | - } catch(PDOException $e) { |
|
269 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
270 | - } |
|
265 | + try { |
|
266 | + $sth = $Connection->db->prepare($query); |
|
267 | + $sth->execute(); |
|
268 | + } catch(PDOException $e) { |
|
269 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
270 | + } |
|
271 | 271 | return $error; |
272 | - } |
|
272 | + } |
|
273 | 273 | |
274 | 274 | private static function update_from_7() { |
275 | 275 | global $globalDBname, $globalDBdriver; |
276 | - $Connection = new Connection(); |
|
277 | - $query="ALTER TABLE spotter_live ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL; |
|
276 | + $Connection = new Connection(); |
|
277 | + $query="ALTER TABLE spotter_live ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL; |
|
278 | 278 | ALTER TABLE spotter_output ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL;"; |
279 | - try { |
|
280 | - $sth = $Connection->db->prepare($query); |
|
281 | - $sth->execute(); |
|
282 | - } catch(PDOException $e) { |
|
283 | - return "error (add pilot column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
|
284 | - } |
|
285 | - if ($globalDBdriver == 'mysql') { |
|
286 | - $query = "SELECT ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = '".$globalDBname."' AND TABLE_NAME = 'spotter_archive'"; |
|
287 | - try { |
|
288 | - $sth = $Connection->db->prepare($query); |
|
279 | + try { |
|
280 | + $sth = $Connection->db->prepare($query); |
|
281 | + $sth->execute(); |
|
282 | + } catch(PDOException $e) { |
|
283 | + return "error (add pilot column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
|
284 | + } |
|
285 | + if ($globalDBdriver == 'mysql') { |
|
286 | + $query = "SELECT ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = '".$globalDBname."' AND TABLE_NAME = 'spotter_archive'"; |
|
287 | + try { |
|
288 | + $sth = $Connection->db->prepare($query); |
|
289 | 289 | $sth->execute(); |
290 | - } catch(PDOException $e) { |
|
290 | + } catch(PDOException $e) { |
|
291 | 291 | return "error (problem when select engine for spotter_engine) : ".$e->getMessage()."\n"; |
292 | - } |
|
293 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
294 | - if ($row['engine'] == 'ARCHIVE') { |
|
292 | + } |
|
293 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
294 | + if ($row['engine'] == 'ARCHIVE') { |
|
295 | 295 | $query = "CREATE TABLE copy LIKE spotter_archive; |
296 | 296 | ALTER TABLE copy ENGINE=ARCHIVE; |
297 | 297 | ALTER TABLE copy ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL; |
298 | 298 | INSERT INTO copy SELECT *, '' as pilot_name, '' as pilot_id FROM spotter_archive ORDER BY `spotter_archive_id`; |
299 | 299 | DROP TABLE spotter_archive; |
300 | 300 | RENAME TABLE copy TO spotter_archive;"; |
301 | - } else { |
|
302 | - $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
303 | - } |
|
304 | - } else { |
|
305 | - $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
306 | - } |
|
307 | - try { |
|
308 | - $sth = $Connection->db->prepare($query); |
|
309 | - $sth->execute(); |
|
310 | - } catch(PDOException $e) { |
|
311 | - return "error (add pilot column to spotter_archive) : ".$e->getMessage()."\n"; |
|
312 | - } |
|
301 | + } else { |
|
302 | + $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
303 | + } |
|
304 | + } else { |
|
305 | + $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
306 | + } |
|
307 | + try { |
|
308 | + $sth = $Connection->db->prepare($query); |
|
309 | + $sth->execute(); |
|
310 | + } catch(PDOException $e) { |
|
311 | + return "error (add pilot column to spotter_archive) : ".$e->getMessage()."\n"; |
|
312 | + } |
|
313 | 313 | |
314 | - $error = ''; |
|
315 | - // Update table aircraft |
|
314 | + $error = ''; |
|
315 | + // Update table aircraft |
|
316 | 316 | $error .= create_db::import_file('../db/source_location.sql'); |
317 | 317 | if ($error != '') return $error; |
318 | 318 | // Update schema_version to 6 |
319 | 319 | $query = "UPDATE `config` SET `value` = '8' WHERE `name` = 'schema_version'"; |
320 | - try { |
|
321 | - $sth = $Connection->db->prepare($query); |
|
322 | - $sth->execute(); |
|
323 | - } catch(PDOException $e) { |
|
324 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
325 | - } |
|
320 | + try { |
|
321 | + $sth = $Connection->db->prepare($query); |
|
322 | + $sth->execute(); |
|
323 | + } catch(PDOException $e) { |
|
324 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
325 | + } |
|
326 | 326 | return $error; |
327 | 327 | } |
328 | 328 | |
329 | 329 | private static function update_from_8() { |
330 | - $Connection = new Connection(); |
|
331 | - $error = ''; |
|
332 | - // Update table aircraft |
|
330 | + $Connection = new Connection(); |
|
331 | + $error = ''; |
|
332 | + // Update table aircraft |
|
333 | 333 | $error .= create_db::import_file('../db/notam.sql'); |
334 | 334 | if ($error != '') return $error; |
335 | 335 | $query = "DELETE FROM config WHERE name = 'last_update_db'; |
336 | 336 | INSERT INTO config (name,value) VALUES ('last_update_db',NOW()); |
337 | 337 | DELETE FROM config WHERE name = 'last_update_notam_db'; |
338 | 338 | INSERT INTO config (name,value) VALUES ('last_update_notam_db',NOW());"; |
339 | - try { |
|
340 | - $sth = $Connection->db->prepare($query); |
|
341 | - $sth->execute(); |
|
342 | - } catch(PDOException $e) { |
|
343 | - return "error (insert last_update values) : ".$e->getMessage()."\n"; |
|
344 | - } |
|
339 | + try { |
|
340 | + $sth = $Connection->db->prepare($query); |
|
341 | + $sth->execute(); |
|
342 | + } catch(PDOException $e) { |
|
343 | + return "error (insert last_update values) : ".$e->getMessage()."\n"; |
|
344 | + } |
|
345 | 345 | $query = "UPDATE `config` SET `value` = '9' WHERE `name` = 'schema_version'"; |
346 | - try { |
|
347 | - $sth = $Connection->db->prepare($query); |
|
348 | - $sth->execute(); |
|
349 | - } catch(PDOException $e) { |
|
350 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
351 | - } |
|
346 | + try { |
|
347 | + $sth = $Connection->db->prepare($query); |
|
348 | + $sth->execute(); |
|
349 | + } catch(PDOException $e) { |
|
350 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
351 | + } |
|
352 | 352 | return $error; |
353 | 353 | } |
354 | 354 | |
355 | 355 | private static function update_from_9() { |
356 | - $Connection = new Connection(); |
|
357 | - $query="ALTER TABLE spotter_live ADD verticalrate INT(11) NULL; |
|
356 | + $Connection = new Connection(); |
|
357 | + $query="ALTER TABLE spotter_live ADD verticalrate INT(11) NULL; |
|
358 | 358 | ALTER TABLE spotter_output ADD verticalrate INT(11) NULL;"; |
359 | - try { |
|
360 | - $sth = $Connection->db->prepare($query); |
|
361 | - $sth->execute(); |
|
362 | - } catch(PDOException $e) { |
|
363 | - return "error (add verticalrate column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
|
364 | - } |
|
359 | + try { |
|
360 | + $sth = $Connection->db->prepare($query); |
|
361 | + $sth->execute(); |
|
362 | + } catch(PDOException $e) { |
|
363 | + return "error (add verticalrate column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
|
364 | + } |
|
365 | 365 | $error = ''; |
366 | - // Update table atc |
|
366 | + // Update table atc |
|
367 | 367 | $error .= create_db::import_file('../db/atc.sql'); |
368 | 368 | if ($error != '') return $error; |
369 | 369 | |
370 | 370 | $query = "UPDATE `config` SET `value` = '10' WHERE `name` = 'schema_version'"; |
371 | - try { |
|
372 | - $sth = $Connection->db->prepare($query); |
|
373 | - $sth->execute(); |
|
374 | - } catch(PDOException $e) { |
|
375 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
376 | - } |
|
371 | + try { |
|
372 | + $sth = $Connection->db->prepare($query); |
|
373 | + $sth->execute(); |
|
374 | + } catch(PDOException $e) { |
|
375 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
376 | + } |
|
377 | 377 | return $error; |
378 | 378 | } |
379 | 379 | |
380 | 380 | private static function update_from_10() { |
381 | - $Connection = new Connection(); |
|
382 | - $query="ALTER TABLE atc CHANGE `type` `type` ENUM('Observer','Flight Information','Delivery','Tower','Approach','ACC','Departure','Ground','Flight Service Station','Control Radar or Centre') CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL"; |
|
383 | - try { |
|
384 | - $sth = $Connection->db->prepare($query); |
|
385 | - $sth->execute(); |
|
386 | - } catch(PDOException $e) { |
|
387 | - return "error (add new enum to ATC table) : ".$e->getMessage()."\n"; |
|
388 | - } |
|
381 | + $Connection = new Connection(); |
|
382 | + $query="ALTER TABLE atc CHANGE `type` `type` ENUM('Observer','Flight Information','Delivery','Tower','Approach','ACC','Departure','Ground','Flight Service Station','Control Radar or Centre') CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL"; |
|
383 | + try { |
|
384 | + $sth = $Connection->db->prepare($query); |
|
385 | + $sth->execute(); |
|
386 | + } catch(PDOException $e) { |
|
387 | + return "error (add new enum to ATC table) : ".$e->getMessage()."\n"; |
|
388 | + } |
|
389 | 389 | $error = ''; |
390 | - // Add tables |
|
390 | + // Add tables |
|
391 | 391 | $error .= create_db::import_file('../db/aircraft_owner.sql'); |
392 | 392 | if ($error != '') return $error; |
393 | 393 | $error .= create_db::import_file('../db/metar.sql'); |
@@ -398,76 +398,76 @@ discard block |
||
398 | 398 | if ($error != '') return $error; |
399 | 399 | |
400 | 400 | $query = "UPDATE `config` SET `value` = '11' WHERE `name` = 'schema_version'"; |
401 | - try { |
|
402 | - $sth = $Connection->db->prepare($query); |
|
403 | - $sth->execute(); |
|
404 | - } catch(PDOException $e) { |
|
405 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
406 | - } |
|
401 | + try { |
|
402 | + $sth = $Connection->db->prepare($query); |
|
403 | + $sth->execute(); |
|
404 | + } catch(PDOException $e) { |
|
405 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
406 | + } |
|
407 | 407 | return $error; |
408 | 408 | } |
409 | 409 | |
410 | 410 | private static function update_from_11() { |
411 | 411 | global $globalDBdriver, $globalDBname; |
412 | - $Connection = new Connection(); |
|
413 | - $query="ALTER TABLE spotter_output ADD owner_name VARCHAR(255) NULL DEFAULT NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_seen DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, ADD last_latitude FLOAT NULL, ADD last_longitude FLOAT NULL, ADD last_altitude INT(11) NULL, ADD last_ground_speed INT(11), ADD real_arrival_airport_icao VARCHAR(999), ADD real_arrival_airport_time VARCHAR(20),ADD real_departure_airport_icao VARCHAR(999), ADD real_departure_airport_time VARCHAR(20)"; |
|
414 | - try { |
|
415 | - $sth = $Connection->db->prepare($query); |
|
416 | - $sth->execute(); |
|
417 | - } catch(PDOException $e) { |
|
418 | - return "error (add owner_name & format_source column to spotter_output) : ".$e->getMessage()."\n"; |
|
419 | - } |
|
420 | - $query="ALTER TABLE spotter_live ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
421 | - try { |
|
422 | - $sth = $Connection->db->prepare($query); |
|
423 | - $sth->execute(); |
|
424 | - } catch(PDOException $e) { |
|
425 | - return "error (format_source column to spotter_live) : ".$e->getMessage()."\n"; |
|
426 | - } |
|
427 | - if ($globalDBdriver == 'mysql') { |
|
428 | - $query = "SELECT ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = '".$globalDBname."' AND TABLE_NAME = 'spotter_archive'"; |
|
429 | - try { |
|
430 | - $sth = $Connection->db->prepare($query); |
|
412 | + $Connection = new Connection(); |
|
413 | + $query="ALTER TABLE spotter_output ADD owner_name VARCHAR(255) NULL DEFAULT NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_seen DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, ADD last_latitude FLOAT NULL, ADD last_longitude FLOAT NULL, ADD last_altitude INT(11) NULL, ADD last_ground_speed INT(11), ADD real_arrival_airport_icao VARCHAR(999), ADD real_arrival_airport_time VARCHAR(20),ADD real_departure_airport_icao VARCHAR(999), ADD real_departure_airport_time VARCHAR(20)"; |
|
414 | + try { |
|
415 | + $sth = $Connection->db->prepare($query); |
|
431 | 416 | $sth->execute(); |
432 | - } catch(PDOException $e) { |
|
417 | + } catch(PDOException $e) { |
|
418 | + return "error (add owner_name & format_source column to spotter_output) : ".$e->getMessage()."\n"; |
|
419 | + } |
|
420 | + $query="ALTER TABLE spotter_live ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
421 | + try { |
|
422 | + $sth = $Connection->db->prepare($query); |
|
423 | + $sth->execute(); |
|
424 | + } catch(PDOException $e) { |
|
425 | + return "error (format_source column to spotter_live) : ".$e->getMessage()."\n"; |
|
426 | + } |
|
427 | + if ($globalDBdriver == 'mysql') { |
|
428 | + $query = "SELECT ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = '".$globalDBname."' AND TABLE_NAME = 'spotter_archive'"; |
|
429 | + try { |
|
430 | + $sth = $Connection->db->prepare($query); |
|
431 | + $sth->execute(); |
|
432 | + } catch(PDOException $e) { |
|
433 | 433 | return "error (problem when select engine for spotter_engine) : ".$e->getMessage()."\n"; |
434 | - } |
|
435 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
436 | - if ($row['engine'] == 'ARCHIVE') { |
|
434 | + } |
|
435 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
436 | + if ($row['engine'] == 'ARCHIVE') { |
|
437 | 437 | $query = "CREATE TABLE copy LIKE spotter_archive; |
438 | 438 | ALTER TABLE copy ENGINE=ARCHIVE; |
439 | 439 | ALTER TABLE copy ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE; |
440 | 440 | INSERT INTO copy SELECT *, '' as verticalrate, '' as format_source, '0' as ground FROM spotter_archive ORDER BY `spotter_archive_id`; |
441 | 441 | DROP TABLE spotter_archive; |
442 | 442 | RENAME TABLE copy TO spotter_archive;"; |
443 | - } else { |
|
444 | - $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
445 | - } |
|
446 | - } else { |
|
447 | - $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
448 | - } |
|
449 | - try { |
|
450 | - $sth = $Connection->db->prepare($query); |
|
451 | - $sth->execute(); |
|
452 | - } catch(PDOException $e) { |
|
453 | - return "error (add columns to spotter_archive) : ".$e->getMessage()."\n"; |
|
454 | - } |
|
443 | + } else { |
|
444 | + $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
445 | + } |
|
446 | + } else { |
|
447 | + $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
448 | + } |
|
449 | + try { |
|
450 | + $sth = $Connection->db->prepare($query); |
|
451 | + $sth->execute(); |
|
452 | + } catch(PDOException $e) { |
|
453 | + return "error (add columns to spotter_archive) : ".$e->getMessage()."\n"; |
|
454 | + } |
|
455 | 455 | |
456 | 456 | $error = ''; |
457 | 457 | |
458 | 458 | $query = "UPDATE `config` SET `value` = '12' WHERE `name` = 'schema_version'"; |
459 | - try { |
|
460 | - $sth = $Connection->db->prepare($query); |
|
461 | - $sth->execute(); |
|
462 | - } catch(PDOException $e) { |
|
463 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
464 | - } |
|
459 | + try { |
|
460 | + $sth = $Connection->db->prepare($query); |
|
461 | + $sth->execute(); |
|
462 | + } catch(PDOException $e) { |
|
463 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
464 | + } |
|
465 | 465 | return $error; |
466 | 466 | } |
467 | 467 | private static function update_from_12() { |
468 | - $Connection = new Connection(); |
|
468 | + $Connection = new Connection(); |
|
469 | 469 | $error = ''; |
470 | - // Add tables |
|
470 | + // Add tables |
|
471 | 471 | $error .= create_db::import_file('../db/stats.sql'); |
472 | 472 | if ($error != '') return $error; |
473 | 473 | $error .= create_db::import_file('../db/stats_aircraft.sql'); |
@@ -484,166 +484,166 @@ discard block |
||
484 | 484 | if ($error != '') return $error; |
485 | 485 | |
486 | 486 | $query = "UPDATE `config` SET `value` = '13' WHERE `name` = 'schema_version'"; |
487 | - try { |
|
488 | - $sth = $Connection->db->prepare($query); |
|
489 | - $sth->execute(); |
|
490 | - } catch(PDOException $e) { |
|
491 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
492 | - } |
|
487 | + try { |
|
488 | + $sth = $Connection->db->prepare($query); |
|
489 | + $sth->execute(); |
|
490 | + } catch(PDOException $e) { |
|
491 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
492 | + } |
|
493 | 493 | return $error; |
494 | 494 | } |
495 | 495 | |
496 | 496 | private static function update_from_13() { |
497 | - $Connection = new Connection(); |
|
498 | - if (!$Connection->checkColumnName('spotter_archive_output','real_departure_airport_icao')) { |
|
499 | - $query="ALTER TABLE spotter_archive_output ADD real_departure_airport_icao VARCHAR(20), ADD real_departure_airport_time VARCHAR(20)"; |
|
497 | + $Connection = new Connection(); |
|
498 | + if (!$Connection->checkColumnName('spotter_archive_output','real_departure_airport_icao')) { |
|
499 | + $query="ALTER TABLE spotter_archive_output ADD real_departure_airport_icao VARCHAR(20), ADD real_departure_airport_time VARCHAR(20)"; |
|
500 | 500 | try { |
501 | 501 | $sth = $Connection->db->prepare($query); |
502 | 502 | $sth->execute(); |
503 | - } catch(PDOException $e) { |
|
503 | + } catch(PDOException $e) { |
|
504 | 504 | return "error (update spotter_archive_output) : ".$e->getMessage()."\n"; |
505 | - } |
|
505 | + } |
|
506 | 506 | } |
507 | - $error = ''; |
|
507 | + $error = ''; |
|
508 | 508 | $query = "UPDATE `config` SET `value` = '14' WHERE `name` = 'schema_version'"; |
509 | - try { |
|
510 | - $sth = $Connection->db->prepare($query); |
|
511 | - $sth->execute(); |
|
512 | - } catch(PDOException $e) { |
|
513 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
514 | - } |
|
509 | + try { |
|
510 | + $sth = $Connection->db->prepare($query); |
|
511 | + $sth->execute(); |
|
512 | + } catch(PDOException $e) { |
|
513 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
514 | + } |
|
515 | 515 | return $error; |
516 | 516 | } |
517 | 517 | |
518 | 518 | private static function update_from_14() { |
519 | - $Connection = new Connection(); |
|
519 | + $Connection = new Connection(); |
|
520 | 520 | $error = ''; |
521 | - // Add tables |
|
522 | - if (!$Connection->tableExists('stats_flight')) { |
|
521 | + // Add tables |
|
522 | + if (!$Connection->tableExists('stats_flight')) { |
|
523 | 523 | $error .= create_db::import_file('../db/stats_flight.sql'); |
524 | 524 | if ($error != '') return $error; |
525 | 525 | } |
526 | 526 | $query = "UPDATE `config` SET `value` = '15' WHERE `name` = 'schema_version'"; |
527 | - try { |
|
528 | - $sth = $Connection->db->prepare($query); |
|
529 | - $sth->execute(); |
|
530 | - } catch(PDOException $e) { |
|
531 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
532 | - } |
|
527 | + try { |
|
528 | + $sth = $Connection->db->prepare($query); |
|
529 | + $sth->execute(); |
|
530 | + } catch(PDOException $e) { |
|
531 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
532 | + } |
|
533 | 533 | return $error; |
534 | 534 | } |
535 | 535 | |
536 | 536 | |
537 | 537 | private static function update_from_15() { |
538 | - $Connection = new Connection(); |
|
538 | + $Connection = new Connection(); |
|
539 | 539 | $error = ''; |
540 | - // Add tables |
|
541 | - $query="ALTER TABLE `stats` CHANGE `stats_date` `stats_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP"; |
|
542 | - try { |
|
543 | - $sth = $Connection->db->prepare($query); |
|
544 | - $sth->execute(); |
|
545 | - } catch(PDOException $e) { |
|
546 | - return "error (update stats) : ".$e->getMessage()."\n"; |
|
547 | - } |
|
540 | + // Add tables |
|
541 | + $query="ALTER TABLE `stats` CHANGE `stats_date` `stats_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP"; |
|
542 | + try { |
|
543 | + $sth = $Connection->db->prepare($query); |
|
544 | + $sth->execute(); |
|
545 | + } catch(PDOException $e) { |
|
546 | + return "error (update stats) : ".$e->getMessage()."\n"; |
|
547 | + } |
|
548 | 548 | if ($error != '') return $error; |
549 | 549 | $query = "UPDATE `config` SET `value` = '16' WHERE `name` = 'schema_version'"; |
550 | - try { |
|
551 | - $sth = $Connection->db->prepare($query); |
|
552 | - $sth->execute(); |
|
553 | - } catch(PDOException $e) { |
|
554 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
555 | - } |
|
550 | + try { |
|
551 | + $sth = $Connection->db->prepare($query); |
|
552 | + $sth->execute(); |
|
553 | + } catch(PDOException $e) { |
|
554 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
555 | + } |
|
556 | 556 | return $error; |
557 | 557 | } |
558 | 558 | |
559 | 559 | private static function update_from_16() { |
560 | - $Connection = new Connection(); |
|
560 | + $Connection = new Connection(); |
|
561 | 561 | $error = ''; |
562 | - // Add tables |
|
563 | - if (!$Connection->tableExists('stats_registration')) { |
|
562 | + // Add tables |
|
563 | + if (!$Connection->tableExists('stats_registration')) { |
|
564 | 564 | $error .= create_db::import_file('../db/stats_registration.sql'); |
565 | 565 | } |
566 | - if (!$Connection->tableExists('stats_callsign')) { |
|
566 | + if (!$Connection->tableExists('stats_callsign')) { |
|
567 | 567 | $error .= create_db::import_file('../db/stats_callsign.sql'); |
568 | 568 | } |
569 | 569 | if ($error != '') return $error; |
570 | 570 | $query = "UPDATE `config` SET `value` = '17' WHERE `name` = 'schema_version'"; |
571 | - try { |
|
572 | - $sth = $Connection->db->prepare($query); |
|
573 | - $sth->execute(); |
|
574 | - } catch(PDOException $e) { |
|
575 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
576 | - } |
|
571 | + try { |
|
572 | + $sth = $Connection->db->prepare($query); |
|
573 | + $sth->execute(); |
|
574 | + } catch(PDOException $e) { |
|
575 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
576 | + } |
|
577 | 577 | return $error; |
578 | 578 | } |
579 | 579 | |
580 | 580 | private static function update_from_17() { |
581 | - $Connection = new Connection(); |
|
581 | + $Connection = new Connection(); |
|
582 | 582 | $error = ''; |
583 | - // Add tables |
|
584 | - if (!$Connection->tableExists('stats_country')) { |
|
583 | + // Add tables |
|
584 | + if (!$Connection->tableExists('stats_country')) { |
|
585 | 585 | $error .= create_db::import_file('../db/stats_country.sql'); |
586 | 586 | } |
587 | 587 | if ($error != '') return $error; |
588 | 588 | $query = "UPDATE `config` SET `value` = '18' WHERE `name` = 'schema_version'"; |
589 | - try { |
|
590 | - $sth = $Connection->db->prepare($query); |
|
591 | - $sth->execute(); |
|
592 | - } catch(PDOException $e) { |
|
593 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
594 | - } |
|
589 | + try { |
|
590 | + $sth = $Connection->db->prepare($query); |
|
591 | + $sth->execute(); |
|
592 | + } catch(PDOException $e) { |
|
593 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
594 | + } |
|
595 | 595 | return $error; |
596 | 596 | } |
597 | 597 | private static function update_from_18() { |
598 | - $Connection = new Connection(); |
|
598 | + $Connection = new Connection(); |
|
599 | 599 | $error = ''; |
600 | - // Modify stats_airport table |
|
601 | - if (!$Connection->checkColumnName('stats_airport','airport_name')) { |
|
602 | - $query = "ALTER TABLE `stats_airport` ADD `stats_type` VARCHAR(50) NOT NULL DEFAULT 'yearly', ADD `airport_name` VARCHAR(255) NOT NULL, ADD `date` DATE NULL DEFAULT NULL, DROP INDEX `airport_icao`, ADD UNIQUE `airport_icao` (`airport_icao`, `type`, `date`)"; |
|
603 | - try { |
|
604 | - $sth = $Connection->db->prepare($query); |
|
605 | - $sth->execute(); |
|
606 | - } catch(PDOException $e) { |
|
607 | - return "error (update stats) : ".$e->getMessage()."\n"; |
|
608 | - } |
|
609 | - } |
|
600 | + // Modify stats_airport table |
|
601 | + if (!$Connection->checkColumnName('stats_airport','airport_name')) { |
|
602 | + $query = "ALTER TABLE `stats_airport` ADD `stats_type` VARCHAR(50) NOT NULL DEFAULT 'yearly', ADD `airport_name` VARCHAR(255) NOT NULL, ADD `date` DATE NULL DEFAULT NULL, DROP INDEX `airport_icao`, ADD UNIQUE `airport_icao` (`airport_icao`, `type`, `date`)"; |
|
603 | + try { |
|
604 | + $sth = $Connection->db->prepare($query); |
|
605 | + $sth->execute(); |
|
606 | + } catch(PDOException $e) { |
|
607 | + return "error (update stats) : ".$e->getMessage()."\n"; |
|
608 | + } |
|
609 | + } |
|
610 | 610 | if ($error != '') return $error; |
611 | 611 | $query = "UPDATE `config` SET `value` = '19' WHERE `name` = 'schema_version'"; |
612 | - try { |
|
613 | - $sth = $Connection->db->prepare($query); |
|
614 | - $sth->execute(); |
|
615 | - } catch(PDOException $e) { |
|
616 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
617 | - } |
|
612 | + try { |
|
613 | + $sth = $Connection->db->prepare($query); |
|
614 | + $sth->execute(); |
|
615 | + } catch(PDOException $e) { |
|
616 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
617 | + } |
|
618 | 618 | return $error; |
619 | 619 | } |
620 | 620 | |
621 | 621 | private static function update_from_19() { |
622 | - $Connection = new Connection(); |
|
622 | + $Connection = new Connection(); |
|
623 | 623 | $error = ''; |
624 | - // Update airport table |
|
624 | + // Update airport table |
|
625 | 625 | $error .= create_db::import_file('../db/airport.sql'); |
626 | 626 | if ($error != '') return 'Import airport.sql : '.$error; |
627 | 627 | // Remove primary key on Spotter_Archive |
628 | 628 | $query = "alter table spotter_archive drop spotter_archive_id"; |
629 | - try { |
|
630 | - $sth = $Connection->db->prepare($query); |
|
631 | - $sth->execute(); |
|
632 | - } catch(PDOException $e) { |
|
633 | - return "error (remove primary key on spotter_archive) : ".$e->getMessage()."\n"; |
|
634 | - } |
|
629 | + try { |
|
630 | + $sth = $Connection->db->prepare($query); |
|
631 | + $sth->execute(); |
|
632 | + } catch(PDOException $e) { |
|
633 | + return "error (remove primary key on spotter_archive) : ".$e->getMessage()."\n"; |
|
634 | + } |
|
635 | 635 | $query = "alter table spotter_archive add spotter_archive_id INT(11)"; |
636 | - try { |
|
637 | - $sth = $Connection->db->prepare($query); |
|
638 | - $sth->execute(); |
|
639 | - } catch(PDOException $e) { |
|
640 | - return "error (add id again on spotter_archive) : ".$e->getMessage()."\n"; |
|
641 | - } |
|
636 | + try { |
|
637 | + $sth = $Connection->db->prepare($query); |
|
638 | + $sth->execute(); |
|
639 | + } catch(PDOException $e) { |
|
640 | + return "error (add id again on spotter_archive) : ".$e->getMessage()."\n"; |
|
641 | + } |
|
642 | 642 | if (!$Connection->checkColumnName('spotter_archive','over_country')) { |
643 | 643 | // Add column over_country |
644 | - $query = "ALTER TABLE `spotter_archive` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
|
644 | + $query = "ALTER TABLE `spotter_archive` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
|
645 | 645 | try { |
646 | - $sth = $Connection->db->prepare($query); |
|
646 | + $sth = $Connection->db->prepare($query); |
|
647 | 647 | $sth->execute(); |
648 | 648 | } catch(PDOException $e) { |
649 | 649 | return "error (add over_country) : ".$e->getMessage()."\n"; |
@@ -651,9 +651,9 @@ discard block |
||
651 | 651 | } |
652 | 652 | if (!$Connection->checkColumnName('spotter_live','over_country')) { |
653 | 653 | // Add column over_country |
654 | - $query = "ALTER TABLE `spotter_live` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
|
654 | + $query = "ALTER TABLE `spotter_live` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
|
655 | 655 | try { |
656 | - $sth = $Connection->db->prepare($query); |
|
656 | + $sth = $Connection->db->prepare($query); |
|
657 | 657 | $sth->execute(); |
658 | 658 | } catch(PDOException $e) { |
659 | 659 | return "error (add over_country) : ".$e->getMessage()."\n"; |
@@ -661,74 +661,74 @@ discard block |
||
661 | 661 | } |
662 | 662 | if (!$Connection->checkColumnName('spotter_output','source_name')) { |
663 | 663 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
664 | - $query = "ALTER TABLE `spotter_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
664 | + $query = "ALTER TABLE `spotter_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
665 | 665 | try { |
666 | 666 | $sth = $Connection->db->prepare($query); |
667 | 667 | $sth->execute(); |
668 | 668 | } catch(PDOException $e) { |
669 | 669 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
670 | - } |
|
671 | - } |
|
670 | + } |
|
671 | + } |
|
672 | 672 | if (!$Connection->checkColumnName('spotter_live','source_name')) { |
673 | 673 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
674 | - $query = "ALTER TABLE `spotter_live` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
674 | + $query = "ALTER TABLE `spotter_live` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
675 | 675 | try { |
676 | 676 | $sth = $Connection->db->prepare($query); |
677 | 677 | $sth->execute(); |
678 | 678 | } catch(PDOException $e) { |
679 | 679 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
680 | - } |
|
681 | - } |
|
680 | + } |
|
681 | + } |
|
682 | 682 | if (!$Connection->checkColumnName('spotter_archive_output','source_name')) { |
683 | 683 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
684 | - $query = "ALTER TABLE `spotter_archive_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
684 | + $query = "ALTER TABLE `spotter_archive_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
685 | 685 | try { |
686 | 686 | $sth = $Connection->db->prepare($query); |
687 | 687 | $sth->execute(); |
688 | 688 | } catch(PDOException $e) { |
689 | 689 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
690 | - } |
|
691 | - } |
|
690 | + } |
|
691 | + } |
|
692 | 692 | if (!$Connection->checkColumnName('spotter_archive','source_name')) { |
693 | 693 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
694 | - $query = "ALTER TABLE `spotter_archive` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`;"; |
|
694 | + $query = "ALTER TABLE `spotter_archive` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`;"; |
|
695 | 695 | try { |
696 | 696 | $sth = $Connection->db->prepare($query); |
697 | 697 | $sth->execute(); |
698 | 698 | } catch(PDOException $e) { |
699 | 699 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
700 | - } |
|
701 | - } |
|
700 | + } |
|
701 | + } |
|
702 | 702 | if ($error != '') return $error; |
703 | 703 | $query = "UPDATE `config` SET `value` = '20' WHERE `name` = 'schema_version'"; |
704 | - try { |
|
705 | - $sth = $Connection->db->prepare($query); |
|
706 | - $sth->execute(); |
|
707 | - } catch(PDOException $e) { |
|
708 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
709 | - } |
|
704 | + try { |
|
705 | + $sth = $Connection->db->prepare($query); |
|
706 | + $sth->execute(); |
|
707 | + } catch(PDOException $e) { |
|
708 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
709 | + } |
|
710 | 710 | return $error; |
711 | 711 | } |
712 | 712 | |
713 | 713 | private static function update_from_20() { |
714 | 714 | global $globalIVAO, $globalVATSIM, $globalphpVMS; |
715 | - $Connection = new Connection(); |
|
715 | + $Connection = new Connection(); |
|
716 | 716 | $error = ''; |
717 | - // Update airline table |
|
718 | - if (!$globalIVAO && !$globalVATSIM && !$globalphpVMS) { |
|
717 | + // Update airline table |
|
718 | + if (!$globalIVAO && !$globalVATSIM && !$globalphpVMS) { |
|
719 | 719 | $error .= create_db::import_file('../db/airlines.sql'); |
720 | 720 | if ($error != '') return 'Import airlines.sql : '.$error; |
721 | 721 | } |
722 | 722 | if (!$Connection->checkColumnName('aircraft_modes','type_flight')) { |
723 | 723 | // Add column over_country |
724 | - $query = "ALTER TABLE `aircraft_modes` ADD `type_flight` VARCHAR(50) NULL DEFAULT NULL;"; |
|
725 | - try { |
|
724 | + $query = "ALTER TABLE `aircraft_modes` ADD `type_flight` VARCHAR(50) NULL DEFAULT NULL;"; |
|
725 | + try { |
|
726 | 726 | $sth = $Connection->db->prepare($query); |
727 | 727 | $sth->execute(); |
728 | 728 | } catch(PDOException $e) { |
729 | 729 | return "error (add over_country) : ".$e->getMessage()."\n"; |
730 | - } |
|
731 | - } |
|
730 | + } |
|
731 | + } |
|
732 | 732 | if ($error != '') return $error; |
733 | 733 | /* |
734 | 734 | if (!$globalIVAO && !$globalVATSIM && !$globalphpVMS) { |
@@ -738,12 +738,12 @@ discard block |
||
738 | 738 | } |
739 | 739 | */ |
740 | 740 | $query = "UPDATE `config` SET `value` = '21' WHERE `name` = 'schema_version'"; |
741 | - try { |
|
742 | - $sth = $Connection->db->prepare($query); |
|
743 | - $sth->execute(); |
|
744 | - } catch(PDOException $e) { |
|
745 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
746 | - } |
|
741 | + try { |
|
742 | + $sth = $Connection->db->prepare($query); |
|
743 | + $sth->execute(); |
|
744 | + } catch(PDOException $e) { |
|
745 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
746 | + } |
|
747 | 747 | return $error; |
748 | 748 | } |
749 | 749 | |
@@ -762,35 +762,35 @@ discard block |
||
762 | 762 | if ($error != '') return $error; |
763 | 763 | } |
764 | 764 | $query = "UPDATE `config` SET `value` = '22' WHERE `name` = 'schema_version'"; |
765 | - try { |
|
766 | - $sth = $Connection->db->prepare($query); |
|
767 | - $sth->execute(); |
|
768 | - } catch(PDOException $e) { |
|
769 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
770 | - } |
|
765 | + try { |
|
766 | + $sth = $Connection->db->prepare($query); |
|
767 | + $sth->execute(); |
|
768 | + } catch(PDOException $e) { |
|
769 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
770 | + } |
|
771 | 771 | return $error; |
772 | 772 | } |
773 | 773 | |
774 | 774 | private static function update_from_22() { |
775 | 775 | global $globalDBdriver; |
776 | - $Connection = new Connection(); |
|
776 | + $Connection = new Connection(); |
|
777 | 777 | $error = ''; |
778 | 778 | // Add table stats polar |
779 | - if (!$Connection->tableExists('stats_source')) { |
|
779 | + if (!$Connection->tableExists('stats_source')) { |
|
780 | 780 | if ($globalDBdriver == 'mysql') { |
781 | - $error .= create_db::import_file('../db/stats_source.sql'); |
|
781 | + $error .= create_db::import_file('../db/stats_source.sql'); |
|
782 | 782 | } else { |
783 | 783 | $error .= create_db::import_file('../db/pgsql/stats_source.sql'); |
784 | 784 | } |
785 | 785 | if ($error != '') return $error; |
786 | 786 | } |
787 | 787 | $query = "UPDATE config SET value = '23' WHERE name = 'schema_version'"; |
788 | - try { |
|
789 | - $sth = $Connection->db->prepare($query); |
|
790 | - $sth->execute(); |
|
791 | - } catch(PDOException $e) { |
|
792 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
793 | - } |
|
788 | + try { |
|
789 | + $sth = $Connection->db->prepare($query); |
|
790 | + $sth->execute(); |
|
791 | + } catch(PDOException $e) { |
|
792 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
793 | + } |
|
794 | 794 | return $error; |
795 | 795 | } |
796 | 796 | |
@@ -821,14 +821,14 @@ discard block |
||
821 | 821 | } |
822 | 822 | if (!$Connection->checkColumnName('stats_aircraft','aircraft_manufacturer')) { |
823 | 823 | // Add aircraft_manufacturer to stats_aircraft |
824 | - $query = "ALTER TABLE stats_aircraft ADD aircraft_manufacturer VARCHAR(255) NULL"; |
|
824 | + $query = "ALTER TABLE stats_aircraft ADD aircraft_manufacturer VARCHAR(255) NULL"; |
|
825 | 825 | try { |
826 | 826 | $sth = $Connection->db->prepare($query); |
827 | 827 | $sth->execute(); |
828 | 828 | } catch(PDOException $e) { |
829 | 829 | return "error (add aircraft_manufacturer column) : ".$e->getMessage()."\n"; |
830 | - } |
|
831 | - } |
|
830 | + } |
|
831 | + } |
|
832 | 832 | |
833 | 833 | $query = "UPDATE config SET value = '24' WHERE name = 'schema_version'"; |
834 | 834 | try { |
@@ -1176,7 +1176,7 @@ discard block |
||
1176 | 1176 | } catch(PDOException $e) { |
1177 | 1177 | return "error (add index latitude,longitude on spotter_live) : ".$e->getMessage()."\n"; |
1178 | 1178 | } |
1179 | - } |
|
1179 | + } |
|
1180 | 1180 | if (!$Connection->checkColumnName('aircraft','mfr')) { |
1181 | 1181 | // Add mfr to aircraft |
1182 | 1182 | $query = "ALTER TABLE aircraft ADD mfr VARCHAR(255) NULL"; |
@@ -1250,7 +1250,7 @@ discard block |
||
1250 | 1250 | } catch(PDOException $e) { |
1251 | 1251 | return "error (add index ref on notam) : ".$e->getMessage()."\n"; |
1252 | 1252 | } |
1253 | - } |
|
1253 | + } |
|
1254 | 1254 | if (!$Connection->indexExists('accidents','registration_idx')) { |
1255 | 1255 | // Add index key |
1256 | 1256 | $query = "create index registration_idx on accidents (registration)"; |
@@ -1260,7 +1260,7 @@ discard block |
||
1260 | 1260 | } catch(PDOException $e) { |
1261 | 1261 | return "error (add index registration on accidents) : ".$e->getMessage()."\n"; |
1262 | 1262 | } |
1263 | - } |
|
1263 | + } |
|
1264 | 1264 | if (!$Connection->indexExists('accidents','rdts')) { |
1265 | 1265 | // Add index key |
1266 | 1266 | $query = "create index rdts on accidents (registration,date,type,source)"; |
@@ -1270,7 +1270,7 @@ discard block |
||
1270 | 1270 | } catch(PDOException $e) { |
1271 | 1271 | return "error (add index registration, date, type & source on accidents) : ".$e->getMessage()."\n"; |
1272 | 1272 | } |
1273 | - } |
|
1273 | + } |
|
1274 | 1274 | |
1275 | 1275 | $query = "UPDATE config SET value = '31' WHERE name = 'schema_version'"; |
1276 | 1276 | try { |
@@ -1384,161 +1384,161 @@ discard block |
||
1384 | 1384 | } |
1385 | 1385 | |
1386 | 1386 | |
1387 | - public static function check_version($update = false) { |
|
1388 | - global $globalDBname; |
|
1389 | - $version = 0; |
|
1390 | - $Connection = new Connection(); |
|
1391 | - if ($Connection->tableExists('aircraft')) { |
|
1392 | - if (!$Connection->tableExists('config')) { |
|
1393 | - $version = '1'; |
|
1394 | - if ($update) return self::update_from_1(); |
|
1395 | - else return $version; |
|
1387 | + public static function check_version($update = false) { |
|
1388 | + global $globalDBname; |
|
1389 | + $version = 0; |
|
1390 | + $Connection = new Connection(); |
|
1391 | + if ($Connection->tableExists('aircraft')) { |
|
1392 | + if (!$Connection->tableExists('config')) { |
|
1393 | + $version = '1'; |
|
1394 | + if ($update) return self::update_from_1(); |
|
1395 | + else return $version; |
|
1396 | 1396 | } else { |
1397 | - $Connection = new Connection(); |
|
1398 | - $query = "SELECT value FROM config WHERE name = 'schema_version' LIMIT 1"; |
|
1399 | - try { |
|
1400 | - $sth = $Connection->db->prepare($query); |
|
1401 | - $sth->execute(); |
|
1402 | - } catch(PDOException $e) { |
|
1397 | + $Connection = new Connection(); |
|
1398 | + $query = "SELECT value FROM config WHERE name = 'schema_version' LIMIT 1"; |
|
1399 | + try { |
|
1400 | + $sth = $Connection->db->prepare($query); |
|
1401 | + $sth->execute(); |
|
1402 | + } catch(PDOException $e) { |
|
1403 | 1403 | return "error : ".$e->getMessage()."\n"; |
1404 | - } |
|
1405 | - $result = $sth->fetch(PDO::FETCH_ASSOC); |
|
1406 | - if ($update) { |
|
1407 | - if ($result['value'] == '2') { |
|
1408 | - $error = self::update_from_2(); |
|
1409 | - if ($error != '') return $error; |
|
1410 | - else return self::check_version(true); |
|
1411 | - } elseif ($result['value'] == '3') { |
|
1412 | - $error = self::update_from_3(); |
|
1413 | - if ($error != '') return $error; |
|
1414 | - else return self::check_version(true); |
|
1415 | - } elseif ($result['value'] == '4') { |
|
1416 | - $error = self::update_from_4(); |
|
1417 | - if ($error != '') return $error; |
|
1418 | - else return self::check_version(true); |
|
1419 | - } elseif ($result['value'] == '5') { |
|
1420 | - $error = self::update_from_5(); |
|
1421 | - if ($error != '') return $error; |
|
1422 | - else return self::check_version(true); |
|
1423 | - } elseif ($result['value'] == '6') { |
|
1424 | - $error = self::update_from_6(); |
|
1425 | - if ($error != '') return $error; |
|
1426 | - else return self::check_version(true); |
|
1427 | - } elseif ($result['value'] == '7') { |
|
1428 | - $error = self::update_from_7(); |
|
1429 | - if ($error != '') return $error; |
|
1430 | - else return self::check_version(true); |
|
1431 | - } elseif ($result['value'] == '8') { |
|
1432 | - $error = self::update_from_8(); |
|
1433 | - if ($error != '') return $error; |
|
1434 | - else return self::check_version(true); |
|
1435 | - } elseif ($result['value'] == '9') { |
|
1436 | - $error = self::update_from_9(); |
|
1437 | - if ($error != '') return $error; |
|
1438 | - else return self::check_version(true); |
|
1439 | - } elseif ($result['value'] == '10') { |
|
1440 | - $error = self::update_from_10(); |
|
1441 | - if ($error != '') return $error; |
|
1442 | - else return self::check_version(true); |
|
1443 | - } elseif ($result['value'] == '11') { |
|
1444 | - $error = self::update_from_11(); |
|
1445 | - if ($error != '') return $error; |
|
1446 | - else return self::check_version(true); |
|
1447 | - } elseif ($result['value'] == '12') { |
|
1448 | - $error = self::update_from_12(); |
|
1449 | - if ($error != '') return $error; |
|
1450 | - else return self::check_version(true); |
|
1451 | - } elseif ($result['value'] == '13') { |
|
1452 | - $error = self::update_from_13(); |
|
1453 | - if ($error != '') return $error; |
|
1454 | - else return self::check_version(true); |
|
1455 | - } elseif ($result['value'] == '14') { |
|
1456 | - $error = self::update_from_14(); |
|
1457 | - if ($error != '') return $error; |
|
1458 | - else return self::check_version(true); |
|
1459 | - } elseif ($result['value'] == '15') { |
|
1460 | - $error = self::update_from_15(); |
|
1461 | - if ($error != '') return $error; |
|
1462 | - else return self::check_version(true); |
|
1463 | - } elseif ($result['value'] == '16') { |
|
1464 | - $error = self::update_from_16(); |
|
1465 | - if ($error != '') return $error; |
|
1466 | - else return self::check_version(true); |
|
1467 | - } elseif ($result['value'] == '17') { |
|
1468 | - $error = self::update_from_17(); |
|
1469 | - if ($error != '') return $error; |
|
1470 | - else return self::check_version(true); |
|
1471 | - } elseif ($result['value'] == '18') { |
|
1472 | - $error = self::update_from_18(); |
|
1473 | - if ($error != '') return $error; |
|
1474 | - else return self::check_version(true); |
|
1475 | - } elseif ($result['value'] == '19') { |
|
1476 | - $error = self::update_from_19(); |
|
1477 | - if ($error != '') return $error; |
|
1478 | - else return self::check_version(true); |
|
1479 | - } elseif ($result['value'] == '20') { |
|
1480 | - $error = self::update_from_20(); |
|
1481 | - if ($error != '') return $error; |
|
1482 | - else return self::check_version(true); |
|
1483 | - } elseif ($result['value'] == '21') { |
|
1484 | - $error = self::update_from_21(); |
|
1485 | - if ($error != '') return $error; |
|
1486 | - else return self::check_version(true); |
|
1487 | - } elseif ($result['value'] == '22') { |
|
1488 | - $error = self::update_from_22(); |
|
1489 | - if ($error != '') return $error; |
|
1490 | - else return self::check_version(true); |
|
1491 | - } elseif ($result['value'] == '23') { |
|
1492 | - $error = self::update_from_23(); |
|
1493 | - if ($error != '') return $error; |
|
1494 | - else return self::check_version(true); |
|
1495 | - } elseif ($result['value'] == '24') { |
|
1496 | - $error = self::update_from_24(); |
|
1497 | - if ($error != '') return $error; |
|
1498 | - else return self::check_version(true); |
|
1499 | - } elseif ($result['value'] == '25') { |
|
1500 | - $error = self::update_from_25(); |
|
1501 | - if ($error != '') return $error; |
|
1502 | - else return self::check_version(true); |
|
1503 | - } elseif ($result['value'] == '26') { |
|
1504 | - $error = self::update_from_26(); |
|
1505 | - if ($error != '') return $error; |
|
1506 | - else return self::check_version(true); |
|
1507 | - } elseif ($result['value'] == '27') { |
|
1508 | - $error = self::update_from_27(); |
|
1509 | - if ($error != '') return $error; |
|
1510 | - else return self::check_version(true); |
|
1511 | - } elseif ($result['value'] == '28') { |
|
1512 | - $error = self::update_from_28(); |
|
1513 | - if ($error != '') return $error; |
|
1514 | - else return self::check_version(true); |
|
1515 | - } elseif ($result['value'] == '29') { |
|
1516 | - $error = self::update_from_29(); |
|
1517 | - if ($error != '') return $error; |
|
1518 | - else return self::check_version(true); |
|
1519 | - } elseif ($result['value'] == '30') { |
|
1520 | - $error = self::update_from_30(); |
|
1521 | - if ($error != '') return $error; |
|
1522 | - else return self::check_version(true); |
|
1523 | - } elseif ($result['value'] == '31') { |
|
1524 | - $error = self::update_from_31(); |
|
1525 | - if ($error != '') return $error; |
|
1526 | - else return self::check_version(true); |
|
1527 | - } elseif ($result['value'] == '32') { |
|
1528 | - $error = self::update_from_32(); |
|
1529 | - if ($error != '') return $error; |
|
1530 | - else return self::check_version(true); |
|
1531 | - } elseif ($result['value'] == '33') { |
|
1532 | - $error = self::update_from_33(); |
|
1533 | - if ($error != '') return $error; |
|
1534 | - else return self::check_version(true); |
|
1535 | - } else return ''; |
|
1536 | - } |
|
1537 | - else return $result['value']; |
|
1404 | + } |
|
1405 | + $result = $sth->fetch(PDO::FETCH_ASSOC); |
|
1406 | + if ($update) { |
|
1407 | + if ($result['value'] == '2') { |
|
1408 | + $error = self::update_from_2(); |
|
1409 | + if ($error != '') return $error; |
|
1410 | + else return self::check_version(true); |
|
1411 | + } elseif ($result['value'] == '3') { |
|
1412 | + $error = self::update_from_3(); |
|
1413 | + if ($error != '') return $error; |
|
1414 | + else return self::check_version(true); |
|
1415 | + } elseif ($result['value'] == '4') { |
|
1416 | + $error = self::update_from_4(); |
|
1417 | + if ($error != '') return $error; |
|
1418 | + else return self::check_version(true); |
|
1419 | + } elseif ($result['value'] == '5') { |
|
1420 | + $error = self::update_from_5(); |
|
1421 | + if ($error != '') return $error; |
|
1422 | + else return self::check_version(true); |
|
1423 | + } elseif ($result['value'] == '6') { |
|
1424 | + $error = self::update_from_6(); |
|
1425 | + if ($error != '') return $error; |
|
1426 | + else return self::check_version(true); |
|
1427 | + } elseif ($result['value'] == '7') { |
|
1428 | + $error = self::update_from_7(); |
|
1429 | + if ($error != '') return $error; |
|
1430 | + else return self::check_version(true); |
|
1431 | + } elseif ($result['value'] == '8') { |
|
1432 | + $error = self::update_from_8(); |
|
1433 | + if ($error != '') return $error; |
|
1434 | + else return self::check_version(true); |
|
1435 | + } elseif ($result['value'] == '9') { |
|
1436 | + $error = self::update_from_9(); |
|
1437 | + if ($error != '') return $error; |
|
1438 | + else return self::check_version(true); |
|
1439 | + } elseif ($result['value'] == '10') { |
|
1440 | + $error = self::update_from_10(); |
|
1441 | + if ($error != '') return $error; |
|
1442 | + else return self::check_version(true); |
|
1443 | + } elseif ($result['value'] == '11') { |
|
1444 | + $error = self::update_from_11(); |
|
1445 | + if ($error != '') return $error; |
|
1446 | + else return self::check_version(true); |
|
1447 | + } elseif ($result['value'] == '12') { |
|
1448 | + $error = self::update_from_12(); |
|
1449 | + if ($error != '') return $error; |
|
1450 | + else return self::check_version(true); |
|
1451 | + } elseif ($result['value'] == '13') { |
|
1452 | + $error = self::update_from_13(); |
|
1453 | + if ($error != '') return $error; |
|
1454 | + else return self::check_version(true); |
|
1455 | + } elseif ($result['value'] == '14') { |
|
1456 | + $error = self::update_from_14(); |
|
1457 | + if ($error != '') return $error; |
|
1458 | + else return self::check_version(true); |
|
1459 | + } elseif ($result['value'] == '15') { |
|
1460 | + $error = self::update_from_15(); |
|
1461 | + if ($error != '') return $error; |
|
1462 | + else return self::check_version(true); |
|
1463 | + } elseif ($result['value'] == '16') { |
|
1464 | + $error = self::update_from_16(); |
|
1465 | + if ($error != '') return $error; |
|
1466 | + else return self::check_version(true); |
|
1467 | + } elseif ($result['value'] == '17') { |
|
1468 | + $error = self::update_from_17(); |
|
1469 | + if ($error != '') return $error; |
|
1470 | + else return self::check_version(true); |
|
1471 | + } elseif ($result['value'] == '18') { |
|
1472 | + $error = self::update_from_18(); |
|
1473 | + if ($error != '') return $error; |
|
1474 | + else return self::check_version(true); |
|
1475 | + } elseif ($result['value'] == '19') { |
|
1476 | + $error = self::update_from_19(); |
|
1477 | + if ($error != '') return $error; |
|
1478 | + else return self::check_version(true); |
|
1479 | + } elseif ($result['value'] == '20') { |
|
1480 | + $error = self::update_from_20(); |
|
1481 | + if ($error != '') return $error; |
|
1482 | + else return self::check_version(true); |
|
1483 | + } elseif ($result['value'] == '21') { |
|
1484 | + $error = self::update_from_21(); |
|
1485 | + if ($error != '') return $error; |
|
1486 | + else return self::check_version(true); |
|
1487 | + } elseif ($result['value'] == '22') { |
|
1488 | + $error = self::update_from_22(); |
|
1489 | + if ($error != '') return $error; |
|
1490 | + else return self::check_version(true); |
|
1491 | + } elseif ($result['value'] == '23') { |
|
1492 | + $error = self::update_from_23(); |
|
1493 | + if ($error != '') return $error; |
|
1494 | + else return self::check_version(true); |
|
1495 | + } elseif ($result['value'] == '24') { |
|
1496 | + $error = self::update_from_24(); |
|
1497 | + if ($error != '') return $error; |
|
1498 | + else return self::check_version(true); |
|
1499 | + } elseif ($result['value'] == '25') { |
|
1500 | + $error = self::update_from_25(); |
|
1501 | + if ($error != '') return $error; |
|
1502 | + else return self::check_version(true); |
|
1503 | + } elseif ($result['value'] == '26') { |
|
1504 | + $error = self::update_from_26(); |
|
1505 | + if ($error != '') return $error; |
|
1506 | + else return self::check_version(true); |
|
1507 | + } elseif ($result['value'] == '27') { |
|
1508 | + $error = self::update_from_27(); |
|
1509 | + if ($error != '') return $error; |
|
1510 | + else return self::check_version(true); |
|
1511 | + } elseif ($result['value'] == '28') { |
|
1512 | + $error = self::update_from_28(); |
|
1513 | + if ($error != '') return $error; |
|
1514 | + else return self::check_version(true); |
|
1515 | + } elseif ($result['value'] == '29') { |
|
1516 | + $error = self::update_from_29(); |
|
1517 | + if ($error != '') return $error; |
|
1518 | + else return self::check_version(true); |
|
1519 | + } elseif ($result['value'] == '30') { |
|
1520 | + $error = self::update_from_30(); |
|
1521 | + if ($error != '') return $error; |
|
1522 | + else return self::check_version(true); |
|
1523 | + } elseif ($result['value'] == '31') { |
|
1524 | + $error = self::update_from_31(); |
|
1525 | + if ($error != '') return $error; |
|
1526 | + else return self::check_version(true); |
|
1527 | + } elseif ($result['value'] == '32') { |
|
1528 | + $error = self::update_from_32(); |
|
1529 | + if ($error != '') return $error; |
|
1530 | + else return self::check_version(true); |
|
1531 | + } elseif ($result['value'] == '33') { |
|
1532 | + $error = self::update_from_33(); |
|
1533 | + if ($error != '') return $error; |
|
1534 | + else return self::check_version(true); |
|
1535 | + } else return ''; |
|
1536 | + } |
|
1537 | + else return $result['value']; |
|
1538 | 1538 | } |
1539 | 1539 | |
1540 | - } else return $version; |
|
1541 | - } |
|
1540 | + } else return $version; |
|
1541 | + } |
|
1542 | 1542 | |
1543 | 1543 | } |
1544 | 1544 | //echo update_schema::check_version(); |