@@ -26,7 +26,9 @@ discard block |
||
26 | 26 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
27 | 27 | curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); |
28 | 28 | curl_setopt($ch, CURLOPT_TIMEOUT, 20); |
29 | - if ($referer != '') curl_setopt($ch, CURLOPT_REFERER, $referer); |
|
29 | + if ($referer != '') { |
|
30 | + curl_setopt($ch, CURLOPT_REFERER, $referer); |
|
31 | + } |
|
30 | 32 | 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'); |
31 | 33 | curl_setopt($ch, CURLOPT_FILE, $fp); |
32 | 34 | curl_exec($ch); |
@@ -37,12 +39,16 @@ discard block |
||
37 | 39 | public static function gunzip($in_file,$out_file_name = '') { |
38 | 40 | //echo $in_file.' -> '.$out_file_name."\n"; |
39 | 41 | $buffer_size = 4096; // read 4kb at a time |
40 | - if ($out_file_name == '') $out_file_name = str_replace('.gz', '', $in_file); |
|
42 | + if ($out_file_name == '') { |
|
43 | + $out_file_name = str_replace('.gz', '', $in_file); |
|
44 | + } |
|
41 | 45 | if ($in_file != '' && file_exists($in_file)) { |
42 | 46 | // PHP version of Ubuntu use gzopen64 instead of gzopen |
43 | - if (function_exists('gzopen')) $file = gzopen($in_file,'rb'); |
|
44 | - elseif (function_exists('gzopen64')) $file = gzopen64($in_file,'rb'); |
|
45 | - else { |
|
47 | + if (function_exists('gzopen')) { |
|
48 | + $file = gzopen($in_file,'rb'); |
|
49 | + } elseif (function_exists('gzopen64')) { |
|
50 | + $file = gzopen64($in_file,'rb'); |
|
51 | + } else { |
|
46 | 52 | echo 'gzopen not available'; |
47 | 53 | die; |
48 | 54 | } |
@@ -63,8 +69,12 @@ discard block |
||
63 | 69 | if ($res === TRUE) { |
64 | 70 | $zip->extractTo($path); |
65 | 71 | $zip->close(); |
66 | - } else return false; |
|
67 | - } else return false; |
|
72 | + } else { |
|
73 | + return false; |
|
74 | + } |
|
75 | + } else { |
|
76 | + return false; |
|
77 | + } |
|
68 | 78 | } |
69 | 79 | |
70 | 80 | public static function connect_sqlite($database) { |
@@ -79,7 +89,9 @@ discard block |
||
79 | 89 | public static function retrieve_route_sqlite_to_dest($database_file) { |
80 | 90 | global $globalDebug, $globalTransaction; |
81 | 91 | //$query = 'TRUNCATE TABLE routes'; |
82 | - if ($globalDebug) echo " - Delete previous routes from DB -"; |
|
92 | + if ($globalDebug) { |
|
93 | + echo " - Delete previous routes from DB -"; |
|
94 | + } |
|
83 | 95 | $query = "DELETE FROM routes WHERE Source = '' OR Source = :source"; |
84 | 96 | $Connection = new Connection(); |
85 | 97 | try { |
@@ -90,7 +102,9 @@ discard block |
||
90 | 102 | return "error : ".$e->getMessage(); |
91 | 103 | } |
92 | 104 | |
93 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
105 | + if ($globalDebug) { |
|
106 | + echo " - Add routes to DB -"; |
|
107 | + } |
|
94 | 108 | update_db::connect_sqlite($database_file); |
95 | 109 | //$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'; |
96 | 110 | $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"; |
@@ -105,15 +119,21 @@ discard block |
||
105 | 119 | $Connection = new Connection(); |
106 | 120 | $sth_dest = $Connection->db->prepare($query_dest); |
107 | 121 | try { |
108 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
122 | + if ($globalTransaction) { |
|
123 | + $Connection->db->beginTransaction(); |
|
124 | + } |
|
109 | 125 | while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
110 | 126 | //$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); |
111 | 127 | $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); |
112 | 128 | $sth_dest->execute($query_dest_values); |
113 | 129 | } |
114 | - if ($globalTransaction) $Connection->db->commit(); |
|
130 | + if ($globalTransaction) { |
|
131 | + $Connection->db->commit(); |
|
132 | + } |
|
115 | 133 | } catch(PDOException $e) { |
116 | - if ($globalTransaction) $Connection->db->rollBack(); |
|
134 | + if ($globalTransaction) { |
|
135 | + $Connection->db->rollBack(); |
|
136 | + } |
|
117 | 137 | return "error : ".$e->getMessage(); |
118 | 138 | } |
119 | 139 | return ''; |
@@ -121,7 +141,9 @@ discard block |
||
121 | 141 | public static function retrieve_route_oneworld($database_file) { |
122 | 142 | global $globalDebug, $globalTransaction; |
123 | 143 | //$query = 'TRUNCATE TABLE routes'; |
124 | - if ($globalDebug) echo " - Delete previous routes from DB -"; |
|
144 | + if ($globalDebug) { |
|
145 | + echo " - Delete previous routes from DB -"; |
|
146 | + } |
|
125 | 147 | $query = "DELETE FROM routes WHERE Source = '' OR Source = :source"; |
126 | 148 | $Connection = new Connection(); |
127 | 149 | try { |
@@ -132,14 +154,18 @@ discard block |
||
132 | 154 | return "error : ".$e->getMessage(); |
133 | 155 | } |
134 | 156 | |
135 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
157 | + if ($globalDebug) { |
|
158 | + echo " - Add routes to DB -"; |
|
159 | + } |
|
136 | 160 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
137 | 161 | $Spotter = new Spotter(); |
138 | 162 | if ($fh = fopen($database_file,"r")) { |
139 | 163 | $query_dest = 'INSERT INTO routes (CallSign,Operator_ICAO,FromAirport_ICAO,FromAirport_Time,ToAirport_ICAO,ToAirport_Time,RouteStop,Source) VALUES (:CallSign, :Operator_ICAO, :FromAirport_ICAO,:FromAirport_Time, :ToAirport_ICAO, :ToAirport_Time,:routestop, :source)'; |
140 | 164 | $Connection = new Connection(); |
141 | 165 | $sth_dest = $Connection->db->prepare($query_dest); |
142 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
166 | + if ($globalTransaction) { |
|
167 | + $Connection->db->beginTransaction(); |
|
168 | + } |
|
143 | 169 | while (!feof($fh)) { |
144 | 170 | $line = fgetcsv($fh,9999,','); |
145 | 171 | if ($line[0] != '') { |
@@ -148,13 +174,17 @@ discard block |
||
148 | 174 | $query_dest_values = array(':CallSign' => str_replace('*','',$line[7]),':Operator_ICAO' => '',':FromAirport_ICAO' => $Spotter->getAirportICAO($line[0]),':FromAirport_Time' => $line[5],':ToAirport_ICAO' => $Spotter->getAirportICAO($line[1]),':ToAirport_Time' => $line[6],':routestop' => '',':source' => 'oneworld'); |
149 | 175 | $sth_dest->execute($query_dest_values); |
150 | 176 | } catch(PDOException $e) { |
151 | - if ($globalTransaction) $Connection->db->rollBack(); |
|
177 | + if ($globalTransaction) { |
|
178 | + $Connection->db->rollBack(); |
|
179 | + } |
|
152 | 180 | return "error : ".$e->getMessage(); |
153 | 181 | } |
154 | 182 | } |
155 | 183 | } |
156 | 184 | } |
157 | - if ($globalTransaction) $Connection->db->commit(); |
|
185 | + if ($globalTransaction) { |
|
186 | + $Connection->db->commit(); |
|
187 | + } |
|
158 | 188 | } |
159 | 189 | return ''; |
160 | 190 | } |
@@ -162,7 +192,9 @@ discard block |
||
162 | 192 | public static function retrieve_route_skyteam($database_file) { |
163 | 193 | global $globalDebug, $globalTransaction; |
164 | 194 | //$query = 'TRUNCATE TABLE routes'; |
165 | - if ($globalDebug) echo " - Delete previous routes from DB -"; |
|
195 | + if ($globalDebug) { |
|
196 | + echo " - Delete previous routes from DB -"; |
|
197 | + } |
|
166 | 198 | $query = "DELETE FROM routes WHERE Source = '' OR Source = :source"; |
167 | 199 | $Connection = new Connection(); |
168 | 200 | try { |
@@ -173,7 +205,9 @@ discard block |
||
173 | 205 | return "error : ".$e->getMessage(); |
174 | 206 | } |
175 | 207 | |
176 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
208 | + if ($globalDebug) { |
|
209 | + echo " - Add routes to DB -"; |
|
210 | + } |
|
177 | 211 | |
178 | 212 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
179 | 213 | $Spotter = new Spotter(); |
@@ -182,7 +216,9 @@ discard block |
||
182 | 216 | $Connection = new Connection(); |
183 | 217 | $sth_dest = $Connection->db->prepare($query_dest); |
184 | 218 | try { |
185 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
219 | + if ($globalTransaction) { |
|
220 | + $Connection->db->beginTransaction(); |
|
221 | + } |
|
186 | 222 | while (!feof($fh)) { |
187 | 223 | $line = fgetcsv($fh,9999,','); |
188 | 224 | if ($line[0] != '') { |
@@ -193,9 +229,13 @@ discard block |
||
193 | 229 | } |
194 | 230 | } |
195 | 231 | } |
196 | - if ($globalTransaction) $Connection->db->commit(); |
|
232 | + if ($globalTransaction) { |
|
233 | + $Connection->db->commit(); |
|
234 | + } |
|
197 | 235 | } catch(PDOException $e) { |
198 | - if ($globalTransaction) $Connection->db->rollBack(); |
|
236 | + if ($globalTransaction) { |
|
237 | + $Connection->db->rollBack(); |
|
238 | + } |
|
199 | 239 | return "error : ".$e->getMessage(); |
200 | 240 | } |
201 | 241 | } |
@@ -238,11 +278,16 @@ discard block |
||
238 | 278 | $sth_dest = $Connection->db->prepare($query_dest); |
239 | 279 | $sth_dest_owner = $Connection->db->prepare($query_dest_owner); |
240 | 280 | try { |
241 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
281 | + if ($globalTransaction) { |
|
282 | + $Connection->db->beginTransaction(); |
|
283 | + } |
|
242 | 284 | while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
243 | 285 | //$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']); |
244 | - if ($values['UserString4'] == 'M') $type = 'military'; |
|
245 | - else $type = null; |
|
286 | + if ($values['UserString4'] == 'M') { |
|
287 | + $type = 'military'; |
|
288 | + } else { |
|
289 | + $type = null; |
|
290 | + } |
|
246 | 291 | $query_dest_values = array(':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':source' => $database_file,':type' => $type); |
247 | 292 | $sth_dest->execute($query_dest_values); |
248 | 293 | if ($values['RegisteredOwners'] != '' && $values['RegisteredOwners'] != NULL && $values['RegisteredOwners'] != 'Private') { |
@@ -250,7 +295,9 @@ discard block |
||
250 | 295 | $sth_dest_owner->execute($query_dest_owner_values); |
251 | 296 | } |
252 | 297 | } |
253 | - if ($globalTransaction) $Connection->db->commit(); |
|
298 | + if ($globalTransaction) { |
|
299 | + $Connection->db->commit(); |
|
300 | + } |
|
254 | 301 | } catch(PDOException $e) { |
255 | 302 | return "error : ".$e->getMessage(); |
256 | 303 | } |
@@ -287,7 +334,9 @@ discard block |
||
287 | 334 | $Connection = new Connection(); |
288 | 335 | $sth_dest = $Connection->db->prepare($query_dest); |
289 | 336 | try { |
290 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
337 | + if ($globalTransaction) { |
|
338 | + $Connection->db->beginTransaction(); |
|
339 | + } |
|
291 | 340 | while (!feof($fh)) { |
292 | 341 | $values = array(); |
293 | 342 | $line = $Common->hex2str(fgets($fh,9999)); |
@@ -298,7 +347,9 @@ discard block |
||
298 | 347 | // Check if we can find ICAO, else set it to GLID |
299 | 348 | $aircraft_name_split = explode(' ',$aircraft_name); |
300 | 349 | $search_more = ''; |
301 | - if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
350 | + if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) { |
|
351 | + $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
352 | + } |
|
302 | 353 | $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
303 | 354 | $sth_search = $Connection->db->prepare($query_search); |
304 | 355 | try { |
@@ -311,7 +362,9 @@ discard block |
||
311 | 362 | } catch(PDOException $e) { |
312 | 363 | return "error : ".$e->getMessage(); |
313 | 364 | } |
314 | - if (!isset($values['ICAOTypeCode'])) $values['ICAOTypeCode'] = 'GLID'; |
|
365 | + if (!isset($values['ICAOTypeCode'])) { |
|
366 | + $values['ICAOTypeCode'] = 'GLID'; |
|
367 | + } |
|
315 | 368 | // Add data to db |
316 | 369 | if ($values['Registration'] != '' && $values['Registration'] != '0000') { |
317 | 370 | //$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']); |
@@ -320,7 +373,9 @@ discard block |
||
320 | 373 | $sth_dest->execute($query_dest_values); |
321 | 374 | } |
322 | 375 | } |
323 | - if ($globalTransaction) $Connection->db->commit(); |
|
376 | + if ($globalTransaction) { |
|
377 | + $Connection->db->commit(); |
|
378 | + } |
|
324 | 379 | } catch(PDOException $e) { |
325 | 380 | return "error : ".$e->getMessage(); |
326 | 381 | } |
@@ -356,7 +411,9 @@ discard block |
||
356 | 411 | $Connection = new Connection(); |
357 | 412 | $sth_dest = $Connection->db->prepare($query_dest); |
358 | 413 | try { |
359 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
414 | + if ($globalTransaction) { |
|
415 | + $Connection->db->beginTransaction(); |
|
416 | + } |
|
360 | 417 | $tmp = fgetcsv($fh,9999,',',"'"); |
361 | 418 | while (!feof($fh)) { |
362 | 419 | $line = fgetcsv($fh,9999,',',"'"); |
@@ -370,13 +427,17 @@ discard block |
||
370 | 427 | // Check if we can find ICAO, else set it to GLID |
371 | 428 | $aircraft_name_split = explode(' ',$aircraft_name); |
372 | 429 | $search_more = ''; |
373 | - if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
430 | + if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) { |
|
431 | + $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
432 | + } |
|
374 | 433 | $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
375 | 434 | $sth_search = $Connection->db->prepare($query_search); |
376 | 435 | try { |
377 | 436 | $sth_search->execute(); |
378 | 437 | $result = $sth_search->fetch(PDO::FETCH_ASSOC); |
379 | - if (isset($result['icao']) && $result['icao'] != '') $values['ICAOTypeCode'] = $result['icao']; |
|
438 | + if (isset($result['icao']) && $result['icao'] != '') { |
|
439 | + $values['ICAOTypeCode'] = $result['icao']; |
|
440 | + } |
|
380 | 441 | } catch(PDOException $e) { |
381 | 442 | return "error : ".$e->getMessage(); |
382 | 443 | } |
@@ -389,7 +450,9 @@ discard block |
||
389 | 450 | $sth_dest->execute($query_dest_values); |
390 | 451 | } |
391 | 452 | } |
392 | - if ($globalTransaction) $Connection->db->commit(); |
|
453 | + if ($globalTransaction) { |
|
454 | + $Connection->db->commit(); |
|
455 | + } |
|
393 | 456 | } catch(PDOException $e) { |
394 | 457 | return "error : ".$e->getMessage(); |
395 | 458 | } |
@@ -428,7 +491,9 @@ discard block |
||
428 | 491 | $sth_dest = $Connection->db->prepare($query_dest); |
429 | 492 | $sth_modes = $Connection->db->prepare($query_modes); |
430 | 493 | try { |
431 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
494 | + if ($globalTransaction) { |
|
495 | + $Connection->db->beginTransaction(); |
|
496 | + } |
|
432 | 497 | $tmp = fgetcsv($fh,9999,',','"'); |
433 | 498 | while (!feof($fh)) { |
434 | 499 | $line = fgetcsv($fh,9999,',','"'); |
@@ -438,16 +503,22 @@ discard block |
||
438 | 503 | $values['registration'] = $line[0]; |
439 | 504 | $values['base'] = $line[4]; |
440 | 505 | $values['owner'] = $line[5]; |
441 | - if ($line[6] == '') $values['date_first_reg'] = null; |
|
442 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
506 | + if ($line[6] == '') { |
|
507 | + $values['date_first_reg'] = null; |
|
508 | + } else { |
|
509 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
510 | + } |
|
443 | 511 | $values['cancel'] = $line[7]; |
444 | 512 | } elseif ($country == 'EI') { |
445 | 513 | // TODO : add modeS & reg to aircraft_modes |
446 | 514 | $values['registration'] = $line[0]; |
447 | 515 | $values['base'] = $line[3]; |
448 | 516 | $values['owner'] = $line[2]; |
449 | - if ($line[1] == '') $values['date_first_reg'] = null; |
|
450 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[1])); |
|
517 | + if ($line[1] == '') { |
|
518 | + $values['date_first_reg'] = null; |
|
519 | + } else { |
|
520 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[1])); |
|
521 | + } |
|
451 | 522 | $values['cancel'] = ''; |
452 | 523 | $values['modes'] = $line[7]; |
453 | 524 | $values['icao'] = $line[8]; |
@@ -466,16 +537,22 @@ discard block |
||
466 | 537 | $values['registration'] = $line[3]; |
467 | 538 | $values['base'] = null; |
468 | 539 | $values['owner'] = $line[5]; |
469 | - if ($line[18] == '') $values['date_first_reg'] = null; |
|
470 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[18])); |
|
540 | + if ($line[18] == '') { |
|
541 | + $values['date_first_reg'] = null; |
|
542 | + } else { |
|
543 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[18])); |
|
544 | + } |
|
471 | 545 | $values['cancel'] = ''; |
472 | 546 | } elseif ($country == 'VH') { |
473 | 547 | // TODO : add modeS & reg to aircraft_modes |
474 | 548 | $values['registration'] = $line[0]; |
475 | 549 | $values['base'] = null; |
476 | 550 | $values['owner'] = $line[12]; |
477 | - if ($line[28] == '') $values['date_first_reg'] = null; |
|
478 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[28])); |
|
551 | + if ($line[28] == '') { |
|
552 | + $values['date_first_reg'] = null; |
|
553 | + } else { |
|
554 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[28])); |
|
555 | + } |
|
479 | 556 | |
480 | 557 | $values['cancel'] = $line[39]; |
481 | 558 | } elseif ($country == 'OE' || $country == '9A' || $country == 'VP' || $country == 'LX' || $country == 'P2' || $country == 'HC') { |
@@ -494,29 +571,41 @@ discard block |
||
494 | 571 | $values['registration'] = $line[0]; |
495 | 572 | $values['base'] = null; |
496 | 573 | $values['owner'] = $line[8]; |
497 | - if ($line[7] == '') $values['date_first_reg'] = null; |
|
498 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
574 | + if ($line[7] == '') { |
|
575 | + $values['date_first_reg'] = null; |
|
576 | + } else { |
|
577 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
578 | + } |
|
499 | 579 | $values['cancel'] = ''; |
500 | 580 | } elseif ($country == 'PP') { |
501 | 581 | $values['registration'] = $line[0]; |
502 | 582 | $values['base'] = null; |
503 | 583 | $values['owner'] = $line[4]; |
504 | - if ($line[6] == '') $values['date_first_reg'] = null; |
|
505 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
584 | + if ($line[6] == '') { |
|
585 | + $values['date_first_reg'] = null; |
|
586 | + } else { |
|
587 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
588 | + } |
|
506 | 589 | $values['cancel'] = $line[7]; |
507 | 590 | } elseif ($country == 'E7') { |
508 | 591 | $values['registration'] = $line[0]; |
509 | 592 | $values['base'] = null; |
510 | 593 | $values['owner'] = $line[4]; |
511 | - if ($line[5] == '') $values['date_first_reg'] = null; |
|
512 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
594 | + if ($line[5] == '') { |
|
595 | + $values['date_first_reg'] = null; |
|
596 | + } else { |
|
597 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
598 | + } |
|
513 | 599 | $values['cancel'] = ''; |
514 | 600 | } elseif ($country == '8Q') { |
515 | 601 | $values['registration'] = $line[0]; |
516 | 602 | $values['base'] = null; |
517 | 603 | $values['owner'] = $line[3]; |
518 | - if ($line[7] == '') $values['date_first_reg'] = null; |
|
519 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
604 | + if ($line[7] == '') { |
|
605 | + $values['date_first_reg'] = null; |
|
606 | + } else { |
|
607 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
608 | + } |
|
520 | 609 | $values['cancel'] = ''; |
521 | 610 | } elseif ($country == 'ZK') { |
522 | 611 | $values['registration'] = $line[0]; |
@@ -561,7 +650,9 @@ discard block |
||
561 | 650 | $sth_modes->execute($query_modes_values); |
562 | 651 | } |
563 | 652 | } |
564 | - if ($globalTransaction) $Connection->db->commit(); |
|
653 | + if ($globalTransaction) { |
|
654 | + $Connection->db->commit(); |
|
655 | + } |
|
565 | 656 | } catch(PDOException $e) { |
566 | 657 | return "error : ".$e->getMessage(); |
567 | 658 | } |
@@ -697,25 +788,45 @@ discard block |
||
697 | 788 | VALUES (:name, :city, :country, :iata, :icao, :latitude, :longitude, :altitude, :type, :home_link, :wikipedia_link, :image_thumb, :image)"; |
698 | 789 | $Connection = new Connection(); |
699 | 790 | $sth_dest = $Connection->db->prepare($query_dest); |
700 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
791 | + if ($globalTransaction) { |
|
792 | + $Connection->db->beginTransaction(); |
|
793 | + } |
|
701 | 794 | |
702 | 795 | $i = 0; |
703 | 796 | while($row = sparql_fetch_array($result)) |
704 | 797 | { |
705 | 798 | if ($i >= 1) { |
706 | 799 | //print_r($row); |
707 | - if (!isset($row['iata'])) $row['iata'] = ''; |
|
708 | - if (!isset($row['icao'])) $row['icao'] = ''; |
|
709 | - if (!isset($row['type'])) $row['type'] = ''; |
|
710 | - if (!isset($row['altitude'])) $row['altitude'] = ''; |
|
800 | + if (!isset($row['iata'])) { |
|
801 | + $row['iata'] = ''; |
|
802 | + } |
|
803 | + if (!isset($row['icao'])) { |
|
804 | + $row['icao'] = ''; |
|
805 | + } |
|
806 | + if (!isset($row['type'])) { |
|
807 | + $row['type'] = ''; |
|
808 | + } |
|
809 | + if (!isset($row['altitude'])) { |
|
810 | + $row['altitude'] = ''; |
|
811 | + } |
|
711 | 812 | if (isset($row['city_bis'])) { |
712 | 813 | $row['city'] = $row['city_bis']; |
713 | 814 | } |
714 | - if (!isset($row['city'])) $row['city'] = ''; |
|
715 | - if (!isset($row['country'])) $row['country'] = ''; |
|
716 | - if (!isset($row['homepage'])) $row['homepage'] = ''; |
|
717 | - if (!isset($row['wikipedia_page'])) $row['wikipedia_page'] = ''; |
|
718 | - if (!isset($row['name'])) continue; |
|
815 | + if (!isset($row['city'])) { |
|
816 | + $row['city'] = ''; |
|
817 | + } |
|
818 | + if (!isset($row['country'])) { |
|
819 | + $row['country'] = ''; |
|
820 | + } |
|
821 | + if (!isset($row['homepage'])) { |
|
822 | + $row['homepage'] = ''; |
|
823 | + } |
|
824 | + if (!isset($row['wikipedia_page'])) { |
|
825 | + $row['wikipedia_page'] = ''; |
|
826 | + } |
|
827 | + if (!isset($row['name'])) { |
|
828 | + continue; |
|
829 | + } |
|
719 | 830 | if (!isset($row['image'])) { |
720 | 831 | $row['image'] = ''; |
721 | 832 | $row['image_thumb'] = ''; |
@@ -771,7 +882,9 @@ discard block |
||
771 | 882 | |
772 | 883 | $i++; |
773 | 884 | } |
774 | - if ($globalTransaction) $Connection->db->commit(); |
|
885 | + if ($globalTransaction) { |
|
886 | + $Connection->db->commit(); |
|
887 | + } |
|
775 | 888 | /* |
776 | 889 | echo "Delete duplicate rows...\n"; |
777 | 890 | $query = 'ALTER IGNORE TABLE airport ADD UNIQUE INDEX icaoidx (icao)'; |
@@ -814,7 +927,9 @@ discard block |
||
814 | 927 | $delimiter = ','; |
815 | 928 | $out_file = $tmp_dir.'airports.csv'; |
816 | 929 | update_db::download('http://ourairports.com/data/airports.csv',$out_file); |
817 | - if (!file_exists($out_file) || !is_readable($out_file)) return FALSE; |
|
930 | + if (!file_exists($out_file) || !is_readable($out_file)) { |
|
931 | + return FALSE; |
|
932 | + } |
|
818 | 933 | echo "Add data from ourairports.com...\n"; |
819 | 934 | |
820 | 935 | $header = NULL; |
@@ -824,8 +939,9 @@ discard block |
||
824 | 939 | //$Connection->db->beginTransaction(); |
825 | 940 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
826 | 941 | { |
827 | - if(!$header) $header = $row; |
|
828 | - else { |
|
942 | + if(!$header) { |
|
943 | + $header = $row; |
|
944 | + } else { |
|
829 | 945 | $data = array(); |
830 | 946 | $data = array_combine($header, $row); |
831 | 947 | try { |
@@ -866,7 +982,9 @@ discard block |
||
866 | 982 | echo "Download data from another free database...\n"; |
867 | 983 | $out_file = $tmp_dir.'GlobalAirportDatabase.zip'; |
868 | 984 | update_db::download('http://www.partow.net/downloads/GlobalAirportDatabase.zip',$out_file); |
869 | - if (!file_exists($out_file) || !is_readable($out_file)) return FALSE; |
|
985 | + if (!file_exists($out_file) || !is_readable($out_file)) { |
|
986 | + return FALSE; |
|
987 | + } |
|
870 | 988 | update_db::unzip($out_file); |
871 | 989 | $header = NULL; |
872 | 990 | echo "Add data from another free database...\n"; |
@@ -877,8 +995,9 @@ discard block |
||
877 | 995 | //$Connection->db->beginTransaction(); |
878 | 996 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
879 | 997 | { |
880 | - if(!$header) $header = $row; |
|
881 | - else { |
|
998 | + if(!$header) { |
|
999 | + $header = $row; |
|
1000 | + } else { |
|
882 | 1001 | $data = $row; |
883 | 1002 | |
884 | 1003 | $query = 'UPDATE airport SET city = :city, country = :country WHERE icao = :icao'; |
@@ -1047,7 +1166,9 @@ discard block |
||
1047 | 1166 | if (($handle = fopen($tmp_dir.'MASTER.txt', 'r')) !== FALSE) |
1048 | 1167 | { |
1049 | 1168 | $i = 0; |
1050 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
1169 | + if ($globalTransaction) { |
|
1170 | + $Connection->db->beginTransaction(); |
|
1171 | + } |
|
1051 | 1172 | while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
1052 | 1173 | { |
1053 | 1174 | if ($i > 0) { |
@@ -1060,7 +1181,9 @@ discard block |
||
1060 | 1181 | } |
1061 | 1182 | $result_search = $sths->fetchAll(PDO::FETCH_ASSOC); |
1062 | 1183 | if (!empty($result_search)) { |
1063 | - if ($globalDebug) echo '.'; |
|
1184 | + if ($globalDebug) { |
|
1185 | + echo '.'; |
|
1186 | + } |
|
1064 | 1187 | //if ($globalDBdriver == 'mysql') { |
1065 | 1188 | // $queryi = 'INSERT INTO faamfr (mfr,icao) VALUES (:mfr,:icao) ON DUPLICATE KEY UPDATE icao = :icao'; |
1066 | 1189 | //} else { |
@@ -1082,8 +1205,12 @@ discard block |
||
1082 | 1205 | } |
1083 | 1206 | $result_search_mfr = $sthsm->fetchAll(PDO::FETCH_ASSOC); |
1084 | 1207 | if (!empty($result_search_mfr)) { |
1085 | - if (trim($data[16]) == '' && trim($data[23]) != '') $data[16] = $data[23]; |
|
1086 | - if (trim($data[16]) == '' && trim($data[15]) != '') $data[16] = $data[15]; |
|
1208 | + if (trim($data[16]) == '' && trim($data[23]) != '') { |
|
1209 | + $data[16] = $data[23]; |
|
1210 | + } |
|
1211 | + if (trim($data[16]) == '' && trim($data[15]) != '') { |
|
1212 | + $data[16] = $data[15]; |
|
1213 | + } |
|
1087 | 1214 | $queryf = 'INSERT INTO aircraft_modes (FirstCreated,LastModified,ModeS,ModeSCountry,Registration,ICAOTypeCode,Source) VALUES (:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:source)'; |
1088 | 1215 | try { |
1089 | 1216 | $sthf = $Connection->db->prepare($queryf); |
@@ -1094,7 +1221,9 @@ discard block |
||
1094 | 1221 | } |
1095 | 1222 | } |
1096 | 1223 | if (strtotime($data[29]) > time()) { |
1097 | - if ($globalDebug) echo 'i'; |
|
1224 | + if ($globalDebug) { |
|
1225 | + echo 'i'; |
|
1226 | + } |
|
1098 | 1227 | $query = 'INSERT INTO aircraft_owner (registration,base,owner,date_first_reg,Source) VALUES (:registration,:base,:owner,:date_first_reg,:source)'; |
1099 | 1228 | try { |
1100 | 1229 | $sth = $Connection->db->prepare($query); |
@@ -1105,13 +1234,19 @@ discard block |
||
1105 | 1234 | } |
1106 | 1235 | } |
1107 | 1236 | if ($i % 90 == 0) { |
1108 | - if ($globalTransaction) $Connection->db->commit(); |
|
1109 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
1237 | + if ($globalTransaction) { |
|
1238 | + $Connection->db->commit(); |
|
1239 | + } |
|
1240 | + if ($globalTransaction) { |
|
1241 | + $Connection->db->beginTransaction(); |
|
1242 | + } |
|
1110 | 1243 | } |
1111 | 1244 | $i++; |
1112 | 1245 | } |
1113 | 1246 | fclose($handle); |
1114 | - if ($globalTransaction) $Connection->db->commit(); |
|
1247 | + if ($globalTransaction) { |
|
1248 | + $Connection->db->commit(); |
|
1249 | + } |
|
1115 | 1250 | } |
1116 | 1251 | //print_r($mfr); |
1117 | 1252 | return ''; |
@@ -1136,11 +1271,15 @@ discard block |
||
1136 | 1271 | $i = 0; |
1137 | 1272 | //$Connection->db->setAttribute(PDO::ATTR_AUTOCOMMIT, FALSE); |
1138 | 1273 | //$Connection->db->beginTransaction(); |
1139 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
1274 | + if ($globalTransaction) { |
|
1275 | + $Connection->db->beginTransaction(); |
|
1276 | + } |
|
1140 | 1277 | while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
1141 | 1278 | { |
1142 | 1279 | if ($i > 0) { |
1143 | - if ($data[1] == 'NULL') $data[1] = $data[0]; |
|
1280 | + if ($data[1] == 'NULL') { |
|
1281 | + $data[1] = $data[0]; |
|
1282 | + } |
|
1144 | 1283 | $query = 'INSERT INTO aircraft_modes (FirstCreated,LastModified,ModeS,ModeSCountry,Registration,ICAOTypeCode,type_flight,Source) VALUES (:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:type_flight,:source)'; |
1145 | 1284 | try { |
1146 | 1285 | $sth = $Connection->db->prepare($query); |
@@ -1152,7 +1291,9 @@ discard block |
||
1152 | 1291 | $i++; |
1153 | 1292 | } |
1154 | 1293 | fclose($handle); |
1155 | - if ($globalTransaction) $Connection->db->commit(); |
|
1294 | + if ($globalTransaction) { |
|
1295 | + $Connection->db->commit(); |
|
1296 | + } |
|
1156 | 1297 | } |
1157 | 1298 | return ''; |
1158 | 1299 | } |
@@ -1173,7 +1314,9 @@ discard block |
||
1173 | 1314 | if (($handle = fopen($tmp_dir.'owners.tsv', 'r')) !== FALSE) |
1174 | 1315 | { |
1175 | 1316 | $i = 0; |
1176 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
1317 | + if ($globalTransaction) { |
|
1318 | + $Connection->db->beginTransaction(); |
|
1319 | + } |
|
1177 | 1320 | while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
1178 | 1321 | { |
1179 | 1322 | if ($i > 0) { |
@@ -1189,7 +1332,9 @@ discard block |
||
1189 | 1332 | $i++; |
1190 | 1333 | } |
1191 | 1334 | fclose($handle); |
1192 | - if ($globalTransaction) $Connection->db->commit(); |
|
1335 | + if ($globalTransaction) { |
|
1336 | + $Connection->db->commit(); |
|
1337 | + } |
|
1193 | 1338 | } |
1194 | 1339 | return ''; |
1195 | 1340 | } |
@@ -1209,7 +1354,9 @@ discard block |
||
1209 | 1354 | if (($handle = fopen($tmp_dir.'routes.tsv', 'r')) !== FALSE) |
1210 | 1355 | { |
1211 | 1356 | $i = 0; |
1212 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
1357 | + if ($globalTransaction) { |
|
1358 | + $Connection->db->beginTransaction(); |
|
1359 | + } |
|
1213 | 1360 | while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
1214 | 1361 | { |
1215 | 1362 | if ($i > 0) { |
@@ -1218,13 +1365,17 @@ discard block |
||
1218 | 1365 | $sth = $Connection->db->prepare($query); |
1219 | 1366 | $sth->execute(array(':CallSign' => $data[0],':Operator_ICAO' => $data[1],':FromAirport_ICAO' => $data[2],':FromAirport_Time' => $data[3], ':ToAirport_ICAO' => $data[4],':ToAirport_Time' => $data[5],':RouteStop' => $data[6],':source' => 'website_fam')); |
1220 | 1367 | } catch(PDOException $e) { |
1221 | - if ($globalDebug) echo "error: ".$e->getMessage()." - data: ".implode(',',$data); |
|
1368 | + if ($globalDebug) { |
|
1369 | + echo "error: ".$e->getMessage()." - data: ".implode(',',$data); |
|
1370 | + } |
|
1222 | 1371 | } |
1223 | 1372 | } |
1224 | 1373 | $i++; |
1225 | 1374 | } |
1226 | 1375 | fclose($handle); |
1227 | - if ($globalTransaction) $Connection->db->commit(); |
|
1376 | + if ($globalTransaction) { |
|
1377 | + $Connection->db->commit(); |
|
1378 | + } |
|
1228 | 1379 | } |
1229 | 1380 | return ''; |
1230 | 1381 | } |
@@ -1249,7 +1400,9 @@ discard block |
||
1249 | 1400 | $i = 0; |
1250 | 1401 | //$Connection->db->setAttribute(PDO::ATTR_AUTOCOMMIT, FALSE); |
1251 | 1402 | //$Connection->db->beginTransaction(); |
1252 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
1403 | + if ($globalTransaction) { |
|
1404 | + $Connection->db->beginTransaction(); |
|
1405 | + } |
|
1253 | 1406 | while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
1254 | 1407 | { |
1255 | 1408 | if ($i > 0) { |
@@ -1265,7 +1418,9 @@ discard block |
||
1265 | 1418 | $i++; |
1266 | 1419 | } |
1267 | 1420 | fclose($handle); |
1268 | - if ($globalTransaction) $Connection->db->commit(); |
|
1421 | + if ($globalTransaction) { |
|
1422 | + $Connection->db->commit(); |
|
1423 | + } |
|
1269 | 1424 | } |
1270 | 1425 | return ''; |
1271 | 1426 | } |
@@ -1285,7 +1440,9 @@ discard block |
||
1285 | 1440 | if (($handle = fopen($tmp_dir.'satellite.tsv', 'r')) !== FALSE) |
1286 | 1441 | { |
1287 | 1442 | $i = 0; |
1288 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
1443 | + if ($globalTransaction) { |
|
1444 | + $Connection->db->beginTransaction(); |
|
1445 | + } |
|
1289 | 1446 | while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
1290 | 1447 | { |
1291 | 1448 | if ($i > 0) { |
@@ -1302,7 +1459,9 @@ discard block |
||
1302 | 1459 | $i++; |
1303 | 1460 | } |
1304 | 1461 | fclose($handle); |
1305 | - if ($globalTransaction) $Connection->db->commit(); |
|
1462 | + if ($globalTransaction) { |
|
1463 | + $Connection->db->commit(); |
|
1464 | + } |
|
1306 | 1465 | } |
1307 | 1466 | return ''; |
1308 | 1467 | } |
@@ -1321,7 +1480,9 @@ discard block |
||
1321 | 1480 | $Connection = new Connection(); |
1322 | 1481 | if (($handle = fopen($tmp_dir.'ban_eu.csv', 'r')) !== FALSE) |
1323 | 1482 | { |
1324 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
1483 | + if ($globalTransaction) { |
|
1484 | + $Connection->db->beginTransaction(); |
|
1485 | + } |
|
1325 | 1486 | while (($data = fgetcsv($handle, 1000)) !== FALSE) |
1326 | 1487 | { |
1327 | 1488 | $query = 'UPDATE airlines SET ban_eu = 1 WHERE icao = :icao AND forsource IS NULL'; |
@@ -1336,7 +1497,9 @@ discard block |
||
1336 | 1497 | } |
1337 | 1498 | } |
1338 | 1499 | fclose($handle); |
1339 | - if ($globalTransaction) $Connection->db->commit(); |
|
1500 | + if ($globalTransaction) { |
|
1501 | + $Connection->db->commit(); |
|
1502 | + } |
|
1340 | 1503 | } |
1341 | 1504 | return ''; |
1342 | 1505 | } |
@@ -1412,9 +1575,14 @@ discard block |
||
1412 | 1575 | if ($i > 0 && $data[0] != '') { |
1413 | 1576 | $sources = trim($data[28].' '.$data[29].' '.$data[30].' '.$data[31].' '.$data[32].' '.$data[33]); |
1414 | 1577 | $period = str_replace(',','',$data[14]); |
1415 | - if (!empty($period) && strpos($period,'days')) $period = str_replace(' days','',$period)*24*60; |
|
1416 | - if ($data[18] != '') $launch_date = date('Y-m-d',strtotime($data[18])); |
|
1417 | - else $launch_date = NULL; |
|
1578 | + if (!empty($period) && strpos($period,'days')) { |
|
1579 | + $period = str_replace(' days','',$period)*24*60; |
|
1580 | + } |
|
1581 | + if ($data[18] != '') { |
|
1582 | + $launch_date = date('Y-m-d',strtotime($data[18])); |
|
1583 | + } else { |
|
1584 | + $launch_date = NULL; |
|
1585 | + } |
|
1418 | 1586 | $data = array_map(function($value) { |
1419 | 1587 | return trim($value) === '' ? null : $value; |
1420 | 1588 | }, $data); |
@@ -1767,7 +1935,9 @@ discard block |
||
1767 | 1935 | if (($handle = fopen($filename, 'r')) !== FALSE) |
1768 | 1936 | { |
1769 | 1937 | $i = 0; |
1770 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
1938 | + if ($globalTransaction) { |
|
1939 | + $Connection->db->beginTransaction(); |
|
1940 | + } |
|
1771 | 1941 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
1772 | 1942 | { |
1773 | 1943 | $i++; |
@@ -1795,7 +1965,9 @@ discard block |
||
1795 | 1965 | } |
1796 | 1966 | } |
1797 | 1967 | fclose($handle); |
1798 | - if ($globalTransaction) $Connection->db->commit(); |
|
1968 | + if ($globalTransaction) { |
|
1969 | + $Connection->db->commit(); |
|
1970 | + } |
|
1799 | 1971 | } |
1800 | 1972 | return ''; |
1801 | 1973 | } |
@@ -1818,7 +1990,9 @@ discard block |
||
1818 | 1990 | $Connection = new Connection(); |
1819 | 1991 | if (($handle = fopen($filename, 'r')) !== FALSE) |
1820 | 1992 | { |
1821 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
1993 | + if ($globalTransaction) { |
|
1994 | + $Connection->db->beginTransaction(); |
|
1995 | + } |
|
1822 | 1996 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
1823 | 1997 | { |
1824 | 1998 | if(count($row) > 1) { |
@@ -1832,7 +2006,9 @@ discard block |
||
1832 | 2006 | } |
1833 | 2007 | } |
1834 | 2008 | fclose($handle); |
1835 | - if ($globalTransaction) $Connection->db->commit(); |
|
2009 | + if ($globalTransaction) { |
|
2010 | + $Connection->db->commit(); |
|
2011 | + } |
|
1836 | 2012 | } |
1837 | 2013 | return ''; |
1838 | 2014 | } |
@@ -1852,8 +2028,9 @@ discard block |
||
1852 | 2028 | } |
1853 | 2029 | |
1854 | 2030 | |
1855 | - if ($globalDBdriver == 'mysql') update_db::gunzip('../db/airspace.sql.gz',$tmp_dir.'airspace.sql'); |
|
1856 | - else { |
|
2031 | + if ($globalDBdriver == 'mysql') { |
|
2032 | + update_db::gunzip('../db/airspace.sql.gz',$tmp_dir.'airspace.sql'); |
|
2033 | + } else { |
|
1857 | 2034 | update_db::gunzip('../db/pgsql/airspace.sql.gz',$tmp_dir.'airspace.sql'); |
1858 | 2035 | $query = "CREATE EXTENSION postgis"; |
1859 | 2036 | $Connection = new Connection(null,null,$_SESSION['database_root'],$_SESSION['database_rootpass']); |
@@ -1872,20 +2049,30 @@ discard block |
||
1872 | 2049 | global $tmp_dir, $globalDebug; |
1873 | 2050 | include_once('class.create_db.php'); |
1874 | 2051 | require_once(dirname(__FILE__).'/../require/class.NOTAM.php'); |
1875 | - if ($globalDebug) echo "NOTAM from FlightAirMap website : Download..."; |
|
2052 | + if ($globalDebug) { |
|
2053 | + echo "NOTAM from FlightAirMap website : Download..."; |
|
2054 | + } |
|
1876 | 2055 | update_db::download('http://data.flightairmap.com/data/notam.txt.gz',$tmp_dir.'notam.txt.gz'); |
1877 | 2056 | $error = ''; |
1878 | 2057 | if (file_exists($tmp_dir.'notam.txt.gz')) { |
1879 | - if ($globalDebug) echo "Gunzip..."; |
|
2058 | + if ($globalDebug) { |
|
2059 | + echo "Gunzip..."; |
|
2060 | + } |
|
1880 | 2061 | update_db::gunzip($tmp_dir.'notam.txt.gz'); |
1881 | - if ($globalDebug) echo "Add to DB..."; |
|
2062 | + if ($globalDebug) { |
|
2063 | + echo "Add to DB..."; |
|
2064 | + } |
|
1882 | 2065 | //$error = create_db::import_file($tmp_dir.'notam.sql'); |
1883 | 2066 | $NOTAM = new NOTAM(); |
1884 | 2067 | $NOTAM->updateNOTAMfromTextFile($tmp_dir.'notam.txt'); |
1885 | - } else $error = "File ".$tmp_dir.'notam.txt.gz'." doesn't exist. Download failed."; |
|
2068 | + } else { |
|
2069 | + $error = "File ".$tmp_dir.'notam.txt.gz'." doesn't exist. Download failed."; |
|
2070 | + } |
|
1886 | 2071 | if ($error != '') { |
1887 | 2072 | return $error; |
1888 | - } elseif ($globalDebug) echo "Done\n"; |
|
2073 | + } elseif ($globalDebug) { |
|
2074 | + echo "Done\n"; |
|
2075 | + } |
|
1889 | 2076 | return ''; |
1890 | 2077 | } |
1891 | 2078 | |
@@ -1940,68 +2127,114 @@ discard block |
||
1940 | 2127 | //update_db::download('http://fr.mirror.ivao.aero/software/ivae_feb2013.zip',$tmp_dir.'ivae_feb2013.zip'); |
1941 | 2128 | if (extension_loaded('zip')) { |
1942 | 2129 | if (file_exists($tmp_dir.'ivae_feb2013.zip')) { |
1943 | - if ($globalDebug) echo "Unzip..."; |
|
2130 | + if ($globalDebug) { |
|
2131 | + echo "Unzip..."; |
|
2132 | + } |
|
1944 | 2133 | update_db::unzip($tmp_dir.'ivae_feb2013.zip'); |
1945 | - if ($globalDebug) echo "Add to DB..."; |
|
2134 | + if ($globalDebug) { |
|
2135 | + echo "Add to DB..."; |
|
2136 | + } |
|
1946 | 2137 | update_db::ivao_airlines($tmp_dir.'data/airlines.dat'); |
1947 | - if ($globalDebug) echo "Copy airlines logos to airlines images directory..."; |
|
2138 | + if ($globalDebug) { |
|
2139 | + echo "Copy airlines logos to airlines images directory..."; |
|
2140 | + } |
|
1948 | 2141 | if (is_writable(dirname(__FILE__).'/../images/airlines')) { |
1949 | - if (!$Common->xcopy($tmp_dir.'logos/',dirname(__FILE__).'/../images/airlines/')) $error = "Failed to copy airlines logo."; |
|
1950 | - } else $error = "The directory ".dirname(__FILE__).'/../images/airlines'." must be writable"; |
|
1951 | - } else $error = "File ".$tmp_dir.'ivao.zip'." doesn't exist. Download failed."; |
|
1952 | - } else $error = "ZIP module not loaded but required for IVAO."; |
|
2142 | + if (!$Common->xcopy($tmp_dir.'logos/',dirname(__FILE__).'/../images/airlines/')) { |
|
2143 | + $error = "Failed to copy airlines logo."; |
|
2144 | + } |
|
2145 | + } else { |
|
2146 | + $error = "The directory ".dirname(__FILE__).'/../images/airlines'." must be writable"; |
|
2147 | + } |
|
2148 | + } else { |
|
2149 | + $error = "File ".$tmp_dir.'ivao.zip'." doesn't exist. Download failed."; |
|
2150 | + } |
|
2151 | + } else { |
|
2152 | + $error = "ZIP module not loaded but required for IVAO."; |
|
2153 | + } |
|
1953 | 2154 | if ($error != '') { |
1954 | 2155 | return $error; |
1955 | - } elseif ($globalDebug) echo "Done\n"; |
|
2156 | + } elseif ($globalDebug) { |
|
2157 | + echo "Done\n"; |
|
2158 | + } |
|
1956 | 2159 | return ''; |
1957 | 2160 | } |
1958 | 2161 | |
1959 | 2162 | public static function update_routes() { |
1960 | 2163 | global $tmp_dir, $globalDebug; |
1961 | 2164 | $error = ''; |
1962 | - if ($globalDebug) echo "Routes : Download..."; |
|
2165 | + if ($globalDebug) { |
|
2166 | + echo "Routes : Download..."; |
|
2167 | + } |
|
1963 | 2168 | update_db::download('http://www.virtualradarserver.co.uk/Files/StandingData.sqb.gz',$tmp_dir.'StandingData.sqb.gz'); |
1964 | 2169 | if (file_exists($tmp_dir.'StandingData.sqb.gz')) { |
1965 | - if ($globalDebug) echo "Gunzip..."; |
|
2170 | + if ($globalDebug) { |
|
2171 | + echo "Gunzip..."; |
|
2172 | + } |
|
1966 | 2173 | update_db::gunzip($tmp_dir.'StandingData.sqb.gz'); |
1967 | - if ($globalDebug) echo "Add to DB..."; |
|
2174 | + if ($globalDebug) { |
|
2175 | + echo "Add to DB..."; |
|
2176 | + } |
|
1968 | 2177 | $error = update_db::retrieve_route_sqlite_to_dest($tmp_dir.'StandingData.sqb'); |
1969 | - } else $error = "File ".$tmp_dir.'StandingData.sqb.gz'." doesn't exist. Download failed."; |
|
2178 | + } else { |
|
2179 | + $error = "File ".$tmp_dir.'StandingData.sqb.gz'." doesn't exist. Download failed."; |
|
2180 | + } |
|
1970 | 2181 | if ($error != '') { |
1971 | 2182 | return $error; |
1972 | - } elseif ($globalDebug) echo "Done\n"; |
|
2183 | + } elseif ($globalDebug) { |
|
2184 | + echo "Done\n"; |
|
2185 | + } |
|
1973 | 2186 | return ''; |
1974 | 2187 | } |
1975 | 2188 | public static function update_oneworld() { |
1976 | 2189 | global $tmp_dir, $globalDebug; |
1977 | 2190 | $error = ''; |
1978 | - if ($globalDebug) echo "Schedules Oneworld : Download..."; |
|
2191 | + if ($globalDebug) { |
|
2192 | + echo "Schedules Oneworld : Download..."; |
|
2193 | + } |
|
1979 | 2194 | update_db::download('http://data.flightairmap.com/data/schedules/oneworld.csv.gz',$tmp_dir.'oneworld.csv.gz'); |
1980 | 2195 | if (file_exists($tmp_dir.'oneworld.csv.gz')) { |
1981 | - if ($globalDebug) echo "Gunzip..."; |
|
2196 | + if ($globalDebug) { |
|
2197 | + echo "Gunzip..."; |
|
2198 | + } |
|
1982 | 2199 | update_db::gunzip($tmp_dir.'oneworld.csv.gz'); |
1983 | - if ($globalDebug) echo "Add to DB..."; |
|
2200 | + if ($globalDebug) { |
|
2201 | + echo "Add to DB..."; |
|
2202 | + } |
|
1984 | 2203 | $error = update_db::retrieve_route_oneworld($tmp_dir.'oneworld.csv'); |
1985 | - } else $error = "File ".$tmp_dir.'oneworld.csv.gz'." doesn't exist. Download failed."; |
|
2204 | + } else { |
|
2205 | + $error = "File ".$tmp_dir.'oneworld.csv.gz'." doesn't exist. Download failed."; |
|
2206 | + } |
|
1986 | 2207 | if ($error != '') { |
1987 | 2208 | return $error; |
1988 | - } elseif ($globalDebug) echo "Done\n"; |
|
2209 | + } elseif ($globalDebug) { |
|
2210 | + echo "Done\n"; |
|
2211 | + } |
|
1989 | 2212 | return ''; |
1990 | 2213 | } |
1991 | 2214 | public static function update_skyteam() { |
1992 | 2215 | global $tmp_dir, $globalDebug; |
1993 | 2216 | $error = ''; |
1994 | - if ($globalDebug) echo "Schedules Skyteam : Download..."; |
|
2217 | + if ($globalDebug) { |
|
2218 | + echo "Schedules Skyteam : Download..."; |
|
2219 | + } |
|
1995 | 2220 | update_db::download('http://data.flightairmap.com/data/schedules/skyteam.csv.gz',$tmp_dir.'skyteam.csv.gz'); |
1996 | 2221 | if (file_exists($tmp_dir.'skyteam.csv.gz')) { |
1997 | - if ($globalDebug) echo "Gunzip..."; |
|
2222 | + if ($globalDebug) { |
|
2223 | + echo "Gunzip..."; |
|
2224 | + } |
|
1998 | 2225 | update_db::gunzip($tmp_dir.'skyteam.csv.gz'); |
1999 | - if ($globalDebug) echo "Add to DB..."; |
|
2226 | + if ($globalDebug) { |
|
2227 | + echo "Add to DB..."; |
|
2228 | + } |
|
2000 | 2229 | $error = update_db::retrieve_route_skyteam($tmp_dir.'skyteam.csv'); |
2001 | - } else $error = "File ".$tmp_dir.'skyteam.csv.gz'." doesn't exist. Download failed."; |
|
2230 | + } else { |
|
2231 | + $error = "File ".$tmp_dir.'skyteam.csv.gz'." doesn't exist. Download failed."; |
|
2232 | + } |
|
2002 | 2233 | if ($error != '') { |
2003 | 2234 | return $error; |
2004 | - } elseif ($globalDebug) echo "Done\n"; |
|
2235 | + } elseif ($globalDebug) { |
|
2236 | + echo "Done\n"; |
|
2237 | + } |
|
2005 | 2238 | return ''; |
2006 | 2239 | } |
2007 | 2240 | public static function update_ModeS() { |
@@ -2018,355 +2251,619 @@ discard block |
||
2018 | 2251 | exit; |
2019 | 2252 | } elseif ($globalDebug) echo "Done\n"; |
2020 | 2253 | */ |
2021 | - if ($globalDebug) echo "Modes : Download..."; |
|
2022 | -// update_db::download('http://planebase.biz/sqb.php?f=basestationall.zip',$tmp_dir.'basestation_latest.zip','http://planebase.biz/bstnsqb'); |
|
2254 | + if ($globalDebug) { |
|
2255 | + echo "Modes : Download..."; |
|
2256 | + } |
|
2257 | + // update_db::download('http://planebase.biz/sqb.php?f=basestationall.zip',$tmp_dir.'basestation_latest.zip','http://planebase.biz/bstnsqb'); |
|
2023 | 2258 | update_db::download('http://data.flightairmap.com/data/BaseStation.sqb.gz',$tmp_dir.'BaseStation.sqb.gz'); |
2024 | 2259 | |
2025 | 2260 | // if (file_exists($tmp_dir.'basestation_latest.zip')) { |
2026 | 2261 | if (file_exists($tmp_dir.'BaseStation.sqb.gz')) { |
2027 | - if ($globalDebug) echo "Unzip..."; |
|
2028 | -// update_db::unzip($tmp_dir.'basestation_latest.zip'); |
|
2262 | + if ($globalDebug) { |
|
2263 | + echo "Unzip..."; |
|
2264 | + } |
|
2265 | + // update_db::unzip($tmp_dir.'basestation_latest.zip'); |
|
2029 | 2266 | update_db::gunzip($tmp_dir.'BaseStation.sqb.gz'); |
2030 | - if ($globalDebug) echo "Add to DB..."; |
|
2267 | + if ($globalDebug) { |
|
2268 | + echo "Add to DB..."; |
|
2269 | + } |
|
2031 | 2270 | $error = update_db::retrieve_modes_sqlite_to_dest($tmp_dir.'BaseStation.sqb'); |
2032 | 2271 | // $error = update_db::retrieve_modes_sqlite_to_dest($tmp_dir.'basestation.sqb'); |
2033 | - } else $error = "File ".$tmp_dir.'basestation_latest.zip'." doesn't exist. Download failed."; |
|
2272 | + } else { |
|
2273 | + $error = "File ".$tmp_dir.'basestation_latest.zip'." doesn't exist. Download failed."; |
|
2274 | + } |
|
2034 | 2275 | if ($error != '') { |
2035 | 2276 | return $error; |
2036 | - } elseif ($globalDebug) echo "Done\n"; |
|
2277 | + } elseif ($globalDebug) { |
|
2278 | + echo "Done\n"; |
|
2279 | + } |
|
2037 | 2280 | return ''; |
2038 | 2281 | } |
2039 | 2282 | |
2040 | 2283 | public static function update_ModeS_faa() { |
2041 | 2284 | global $tmp_dir, $globalDebug; |
2042 | - if ($globalDebug) echo "Modes FAA: Download..."; |
|
2285 | + if ($globalDebug) { |
|
2286 | + echo "Modes FAA: Download..."; |
|
2287 | + } |
|
2043 | 2288 | update_db::download('http://registry.faa.gov/database/ReleasableAircraft.zip',$tmp_dir.'ReleasableAircraft.zip'); |
2044 | 2289 | if (file_exists($tmp_dir.'ReleasableAircraft.zip')) { |
2045 | - if ($globalDebug) echo "Unzip..."; |
|
2290 | + if ($globalDebug) { |
|
2291 | + echo "Unzip..."; |
|
2292 | + } |
|
2046 | 2293 | update_db::unzip($tmp_dir.'ReleasableAircraft.zip'); |
2047 | - if ($globalDebug) echo "Add to DB..."; |
|
2294 | + if ($globalDebug) { |
|
2295 | + echo "Add to DB..."; |
|
2296 | + } |
|
2048 | 2297 | $error = update_db::modes_faa(); |
2049 | - } else $error = "File ".$tmp_dir.'ReleasableAircraft.zip'." doesn't exist. Download failed."; |
|
2298 | + } else { |
|
2299 | + $error = "File ".$tmp_dir.'ReleasableAircraft.zip'." doesn't exist. Download failed."; |
|
2300 | + } |
|
2050 | 2301 | if ($error != '') { |
2051 | 2302 | return $error; |
2052 | - } elseif ($globalDebug) echo "Done\n"; |
|
2303 | + } elseif ($globalDebug) { |
|
2304 | + echo "Done\n"; |
|
2305 | + } |
|
2053 | 2306 | return ''; |
2054 | 2307 | } |
2055 | 2308 | |
2056 | 2309 | public static function update_ModeS_flarm() { |
2057 | 2310 | global $tmp_dir, $globalDebug; |
2058 | - if ($globalDebug) echo "Modes Flarmnet: Download..."; |
|
2311 | + if ($globalDebug) { |
|
2312 | + echo "Modes Flarmnet: Download..."; |
|
2313 | + } |
|
2059 | 2314 | update_db::download('http://flarmnet.org/files/data.fln',$tmp_dir.'data.fln'); |
2060 | 2315 | if (file_exists($tmp_dir.'data.fln')) { |
2061 | - if ($globalDebug) echo "Add to DB..."; |
|
2316 | + if ($globalDebug) { |
|
2317 | + echo "Add to DB..."; |
|
2318 | + } |
|
2062 | 2319 | $error = update_db::retrieve_modes_flarmnet($tmp_dir.'data.fln'); |
2063 | - } else $error = "File ".$tmp_dir.'data.fln'." doesn't exist. Download failed."; |
|
2320 | + } else { |
|
2321 | + $error = "File ".$tmp_dir.'data.fln'." doesn't exist. Download failed."; |
|
2322 | + } |
|
2064 | 2323 | if ($error != '') { |
2065 | 2324 | return $error; |
2066 | - } elseif ($globalDebug) echo "Done\n"; |
|
2325 | + } elseif ($globalDebug) { |
|
2326 | + echo "Done\n"; |
|
2327 | + } |
|
2067 | 2328 | return ''; |
2068 | 2329 | } |
2069 | 2330 | |
2070 | 2331 | public static function update_ModeS_ogn() { |
2071 | 2332 | global $tmp_dir, $globalDebug; |
2072 | - if ($globalDebug) echo "Modes OGN: Download..."; |
|
2333 | + if ($globalDebug) { |
|
2334 | + echo "Modes OGN: Download..."; |
|
2335 | + } |
|
2073 | 2336 | update_db::download('http://ddb.glidernet.org/download/',$tmp_dir.'ogn.csv'); |
2074 | 2337 | if (file_exists($tmp_dir.'ogn.csv')) { |
2075 | - if ($globalDebug) echo "Add to DB..."; |
|
2338 | + if ($globalDebug) { |
|
2339 | + echo "Add to DB..."; |
|
2340 | + } |
|
2076 | 2341 | $error = update_db::retrieve_modes_ogn($tmp_dir.'ogn.csv'); |
2077 | - } else $error = "File ".$tmp_dir.'ogn.csv'." doesn't exist. Download failed."; |
|
2342 | + } else { |
|
2343 | + $error = "File ".$tmp_dir.'ogn.csv'." doesn't exist. Download failed."; |
|
2344 | + } |
|
2078 | 2345 | if ($error != '') { |
2079 | 2346 | return $error; |
2080 | - } elseif ($globalDebug) echo "Done\n"; |
|
2347 | + } elseif ($globalDebug) { |
|
2348 | + echo "Done\n"; |
|
2349 | + } |
|
2081 | 2350 | return ''; |
2082 | 2351 | } |
2083 | 2352 | |
2084 | 2353 | public static function update_owner() { |
2085 | 2354 | global $tmp_dir, $globalDebug, $globalMasterSource; |
2086 | 2355 | |
2087 | - if ($globalDebug) echo "Owner France: Download..."; |
|
2356 | + if ($globalDebug) { |
|
2357 | + echo "Owner France: Download..."; |
|
2358 | + } |
|
2088 | 2359 | update_db::download('http://antonakis.co.uk/registers/France.txt',$tmp_dir.'owner_f.csv'); |
2089 | 2360 | if (file_exists($tmp_dir.'owner_f.csv')) { |
2090 | - if ($globalDebug) echo "Add to DB..."; |
|
2361 | + if ($globalDebug) { |
|
2362 | + echo "Add to DB..."; |
|
2363 | + } |
|
2091 | 2364 | $error = update_db::retrieve_owner($tmp_dir.'owner_f.csv','F'); |
2092 | - } else $error = "File ".$tmp_dir.'owner_f.csv'." doesn't exist. Download failed."; |
|
2365 | + } else { |
|
2366 | + $error = "File ".$tmp_dir.'owner_f.csv'." doesn't exist. Download failed."; |
|
2367 | + } |
|
2093 | 2368 | if ($error != '') { |
2094 | 2369 | return $error; |
2095 | - } elseif ($globalDebug) echo "Done\n"; |
|
2370 | + } elseif ($globalDebug) { |
|
2371 | + echo "Done\n"; |
|
2372 | + } |
|
2096 | 2373 | |
2097 | - if ($globalDebug) echo "Owner Ireland: Download..."; |
|
2374 | + if ($globalDebug) { |
|
2375 | + echo "Owner Ireland: Download..."; |
|
2376 | + } |
|
2098 | 2377 | update_db::download('http://antonakis.co.uk/registers/Ireland.txt',$tmp_dir.'owner_ei.csv'); |
2099 | 2378 | if (file_exists($tmp_dir.'owner_ei.csv')) { |
2100 | - if ($globalDebug) echo "Add to DB..."; |
|
2379 | + if ($globalDebug) { |
|
2380 | + echo "Add to DB..."; |
|
2381 | + } |
|
2101 | 2382 | $error = update_db::retrieve_owner($tmp_dir.'owner_ei.csv','EI'); |
2102 | - } else $error = "File ".$tmp_dir.'owner_ei.csv'." doesn't exist. Download failed."; |
|
2383 | + } else { |
|
2384 | + $error = "File ".$tmp_dir.'owner_ei.csv'." doesn't exist. Download failed."; |
|
2385 | + } |
|
2103 | 2386 | if ($error != '') { |
2104 | 2387 | return $error; |
2105 | - } elseif ($globalDebug) echo "Done\n"; |
|
2106 | - if ($globalDebug) echo "Owner Switzerland: Download..."; |
|
2388 | + } elseif ($globalDebug) { |
|
2389 | + echo "Done\n"; |
|
2390 | + } |
|
2391 | + if ($globalDebug) { |
|
2392 | + echo "Owner Switzerland: Download..."; |
|
2393 | + } |
|
2107 | 2394 | update_db::download('http://antonakis.co.uk/registers/Switzerland.txt',$tmp_dir.'owner_hb.csv'); |
2108 | 2395 | if (file_exists($tmp_dir.'owner_hb.csv')) { |
2109 | - if ($globalDebug) echo "Add to DB..."; |
|
2396 | + if ($globalDebug) { |
|
2397 | + echo "Add to DB..."; |
|
2398 | + } |
|
2110 | 2399 | $error = update_db::retrieve_owner($tmp_dir.'owner_hb.csv','HB'); |
2111 | - } else $error = "File ".$tmp_dir.'owner_hb.csv'." doesn't exist. Download failed."; |
|
2400 | + } else { |
|
2401 | + $error = "File ".$tmp_dir.'owner_hb.csv'." doesn't exist. Download failed."; |
|
2402 | + } |
|
2112 | 2403 | if ($error != '') { |
2113 | 2404 | return $error; |
2114 | - } elseif ($globalDebug) echo "Done\n"; |
|
2115 | - if ($globalDebug) echo "Owner Czech Republic: Download..."; |
|
2405 | + } elseif ($globalDebug) { |
|
2406 | + echo "Done\n"; |
|
2407 | + } |
|
2408 | + if ($globalDebug) { |
|
2409 | + echo "Owner Czech Republic: Download..."; |
|
2410 | + } |
|
2116 | 2411 | update_db::download('http://antonakis.co.uk/registers/CzechRepublic.txt',$tmp_dir.'owner_ok.csv'); |
2117 | 2412 | if (file_exists($tmp_dir.'owner_ok.csv')) { |
2118 | - if ($globalDebug) echo "Add to DB..."; |
|
2413 | + if ($globalDebug) { |
|
2414 | + echo "Add to DB..."; |
|
2415 | + } |
|
2119 | 2416 | $error = update_db::retrieve_owner($tmp_dir.'owner_ok.csv','OK'); |
2120 | - } else $error = "File ".$tmp_dir.'owner_ok.csv'." doesn't exist. Download failed."; |
|
2417 | + } else { |
|
2418 | + $error = "File ".$tmp_dir.'owner_ok.csv'." doesn't exist. Download failed."; |
|
2419 | + } |
|
2121 | 2420 | if ($error != '') { |
2122 | 2421 | return $error; |
2123 | - } elseif ($globalDebug) echo "Done\n"; |
|
2124 | - if ($globalDebug) echo "Owner Australia: Download..."; |
|
2422 | + } elseif ($globalDebug) { |
|
2423 | + echo "Done\n"; |
|
2424 | + } |
|
2425 | + if ($globalDebug) { |
|
2426 | + echo "Owner Australia: Download..."; |
|
2427 | + } |
|
2125 | 2428 | update_db::download('http://antonakis.co.uk/registers/Australia.txt',$tmp_dir.'owner_vh.csv'); |
2126 | 2429 | if (file_exists($tmp_dir.'owner_vh.csv')) { |
2127 | - if ($globalDebug) echo "Add to DB..."; |
|
2430 | + if ($globalDebug) { |
|
2431 | + echo "Add to DB..."; |
|
2432 | + } |
|
2128 | 2433 | $error = update_db::retrieve_owner($tmp_dir.'owner_vh.csv','VH'); |
2129 | - } else $error = "File ".$tmp_dir.'owner_vh.csv'." doesn't exist. Download failed."; |
|
2434 | + } else { |
|
2435 | + $error = "File ".$tmp_dir.'owner_vh.csv'." doesn't exist. Download failed."; |
|
2436 | + } |
|
2130 | 2437 | if ($error != '') { |
2131 | 2438 | return $error; |
2132 | - } elseif ($globalDebug) echo "Done\n"; |
|
2133 | - if ($globalDebug) echo "Owner Austria: Download..."; |
|
2439 | + } elseif ($globalDebug) { |
|
2440 | + echo "Done\n"; |
|
2441 | + } |
|
2442 | + if ($globalDebug) { |
|
2443 | + echo "Owner Austria: Download..."; |
|
2444 | + } |
|
2134 | 2445 | update_db::download('http://antonakis.co.uk/registers/Austria.txt',$tmp_dir.'owner_oe.csv'); |
2135 | 2446 | if (file_exists($tmp_dir.'owner_oe.csv')) { |
2136 | - if ($globalDebug) echo "Add to DB..."; |
|
2447 | + if ($globalDebug) { |
|
2448 | + echo "Add to DB..."; |
|
2449 | + } |
|
2137 | 2450 | $error = update_db::retrieve_owner($tmp_dir.'owner_oe.csv','OE'); |
2138 | - } else $error = "File ".$tmp_dir.'owner_oe.csv'." doesn't exist. Download failed."; |
|
2451 | + } else { |
|
2452 | + $error = "File ".$tmp_dir.'owner_oe.csv'." doesn't exist. Download failed."; |
|
2453 | + } |
|
2139 | 2454 | if ($error != '') { |
2140 | 2455 | return $error; |
2141 | - } elseif ($globalDebug) echo "Done\n"; |
|
2142 | - if ($globalDebug) echo "Owner Chile: Download..."; |
|
2456 | + } elseif ($globalDebug) { |
|
2457 | + echo "Done\n"; |
|
2458 | + } |
|
2459 | + if ($globalDebug) { |
|
2460 | + echo "Owner Chile: Download..."; |
|
2461 | + } |
|
2143 | 2462 | update_db::download('http://antonakis.co.uk/registers/Chile.txt',$tmp_dir.'owner_cc.csv'); |
2144 | 2463 | if (file_exists($tmp_dir.'owner_cc.csv')) { |
2145 | - if ($globalDebug) echo "Add to DB..."; |
|
2464 | + if ($globalDebug) { |
|
2465 | + echo "Add to DB..."; |
|
2466 | + } |
|
2146 | 2467 | $error = update_db::retrieve_owner($tmp_dir.'owner_cc.csv','CC'); |
2147 | - } else $error = "File ".$tmp_dir.'owner_cc.csv'." doesn't exist. Download failed."; |
|
2468 | + } else { |
|
2469 | + $error = "File ".$tmp_dir.'owner_cc.csv'." doesn't exist. Download failed."; |
|
2470 | + } |
|
2148 | 2471 | if ($error != '') { |
2149 | 2472 | return $error; |
2150 | - } elseif ($globalDebug) echo "Done\n"; |
|
2151 | - if ($globalDebug) echo "Owner Colombia: Download..."; |
|
2473 | + } elseif ($globalDebug) { |
|
2474 | + echo "Done\n"; |
|
2475 | + } |
|
2476 | + if ($globalDebug) { |
|
2477 | + echo "Owner Colombia: Download..."; |
|
2478 | + } |
|
2152 | 2479 | update_db::download('http://antonakis.co.uk/registers/Colombia.txt',$tmp_dir.'owner_hj.csv'); |
2153 | 2480 | if (file_exists($tmp_dir.'owner_hj.csv')) { |
2154 | - if ($globalDebug) echo "Add to DB..."; |
|
2481 | + if ($globalDebug) { |
|
2482 | + echo "Add to DB..."; |
|
2483 | + } |
|
2155 | 2484 | $error = update_db::retrieve_owner($tmp_dir.'owner_hj.csv','HJ'); |
2156 | - } else $error = "File ".$tmp_dir.'owner_hj.csv'." doesn't exist. Download failed."; |
|
2485 | + } else { |
|
2486 | + $error = "File ".$tmp_dir.'owner_hj.csv'." doesn't exist. Download failed."; |
|
2487 | + } |
|
2157 | 2488 | if ($error != '') { |
2158 | 2489 | return $error; |
2159 | - } elseif ($globalDebug) echo "Done\n"; |
|
2160 | - if ($globalDebug) echo "Owner Bosnia Herzegobina: Download..."; |
|
2490 | + } elseif ($globalDebug) { |
|
2491 | + echo "Done\n"; |
|
2492 | + } |
|
2493 | + if ($globalDebug) { |
|
2494 | + echo "Owner Bosnia Herzegobina: Download..."; |
|
2495 | + } |
|
2161 | 2496 | update_db::download('http://antonakis.co.uk/registers/BosniaHerzegovina.txt',$tmp_dir.'owner_e7.csv'); |
2162 | 2497 | if (file_exists($tmp_dir.'owner_e7.csv')) { |
2163 | - if ($globalDebug) echo "Add to DB..."; |
|
2498 | + if ($globalDebug) { |
|
2499 | + echo "Add to DB..."; |
|
2500 | + } |
|
2164 | 2501 | $error = update_db::retrieve_owner($tmp_dir.'owner_e7.csv','E7'); |
2165 | - } else $error = "File ".$tmp_dir.'owner_e7.csv'." doesn't exist. Download failed."; |
|
2502 | + } else { |
|
2503 | + $error = "File ".$tmp_dir.'owner_e7.csv'." doesn't exist. Download failed."; |
|
2504 | + } |
|
2166 | 2505 | if ($error != '') { |
2167 | 2506 | return $error; |
2168 | - } elseif ($globalDebug) echo "Done\n"; |
|
2169 | - if ($globalDebug) echo "Owner Brazil: Download..."; |
|
2507 | + } elseif ($globalDebug) { |
|
2508 | + echo "Done\n"; |
|
2509 | + } |
|
2510 | + if ($globalDebug) { |
|
2511 | + echo "Owner Brazil: Download..."; |
|
2512 | + } |
|
2170 | 2513 | update_db::download('http://antonakis.co.uk/registers/Brazil.txt',$tmp_dir.'owner_pp.csv'); |
2171 | 2514 | if (file_exists($tmp_dir.'owner_pp.csv')) { |
2172 | - if ($globalDebug) echo "Add to DB..."; |
|
2515 | + if ($globalDebug) { |
|
2516 | + echo "Add to DB..."; |
|
2517 | + } |
|
2173 | 2518 | $error = update_db::retrieve_owner($tmp_dir.'owner_pp.csv','PP'); |
2174 | - } else $error = "File ".$tmp_dir.'owner_pp.csv'." doesn't exist. Download failed."; |
|
2519 | + } else { |
|
2520 | + $error = "File ".$tmp_dir.'owner_pp.csv'." doesn't exist. Download failed."; |
|
2521 | + } |
|
2175 | 2522 | if ($error != '') { |
2176 | 2523 | return $error; |
2177 | - } elseif ($globalDebug) echo "Done\n"; |
|
2178 | - if ($globalDebug) echo "Owner Cayman Islands: Download..."; |
|
2524 | + } elseif ($globalDebug) { |
|
2525 | + echo "Done\n"; |
|
2526 | + } |
|
2527 | + if ($globalDebug) { |
|
2528 | + echo "Owner Cayman Islands: Download..."; |
|
2529 | + } |
|
2179 | 2530 | update_db::download('http://antonakis.co.uk/registers/CaymanIslands.txt',$tmp_dir.'owner_vp.csv'); |
2180 | 2531 | if (file_exists($tmp_dir.'owner_vp.csv')) { |
2181 | - if ($globalDebug) echo "Add to DB..."; |
|
2532 | + if ($globalDebug) { |
|
2533 | + echo "Add to DB..."; |
|
2534 | + } |
|
2182 | 2535 | $error = update_db::retrieve_owner($tmp_dir.'owner_vp.csv','VP'); |
2183 | - } else $error = "File ".$tmp_dir.'owner_vp.csv'." doesn't exist. Download failed."; |
|
2536 | + } else { |
|
2537 | + $error = "File ".$tmp_dir.'owner_vp.csv'." doesn't exist. Download failed."; |
|
2538 | + } |
|
2184 | 2539 | if ($error != '') { |
2185 | 2540 | return $error; |
2186 | - } elseif ($globalDebug) echo "Done\n"; |
|
2187 | - if ($globalDebug) echo "Owner Croatia: Download..."; |
|
2541 | + } elseif ($globalDebug) { |
|
2542 | + echo "Done\n"; |
|
2543 | + } |
|
2544 | + if ($globalDebug) { |
|
2545 | + echo "Owner Croatia: Download..."; |
|
2546 | + } |
|
2188 | 2547 | update_db::download('http://antonakis.co.uk/registers/Croatia.txt',$tmp_dir.'owner_9a.csv'); |
2189 | 2548 | if (file_exists($tmp_dir.'owner_9a.csv')) { |
2190 | - if ($globalDebug) echo "Add to DB..."; |
|
2549 | + if ($globalDebug) { |
|
2550 | + echo "Add to DB..."; |
|
2551 | + } |
|
2191 | 2552 | $error = update_db::retrieve_owner($tmp_dir.'owner_9a.csv','9A'); |
2192 | - } else $error = "File ".$tmp_dir.'owner_9a.csv'." doesn't exist. Download failed."; |
|
2553 | + } else { |
|
2554 | + $error = "File ".$tmp_dir.'owner_9a.csv'." doesn't exist. Download failed."; |
|
2555 | + } |
|
2193 | 2556 | if ($error != '') { |
2194 | 2557 | return $error; |
2195 | - } elseif ($globalDebug) echo "Done\n"; |
|
2196 | - if ($globalDebug) echo "Owner Luxembourg: Download..."; |
|
2558 | + } elseif ($globalDebug) { |
|
2559 | + echo "Done\n"; |
|
2560 | + } |
|
2561 | + if ($globalDebug) { |
|
2562 | + echo "Owner Luxembourg: Download..."; |
|
2563 | + } |
|
2197 | 2564 | update_db::download('http://antonakis.co.uk/registers/Luxembourg.txt',$tmp_dir.'owner_lx.csv'); |
2198 | 2565 | if (file_exists($tmp_dir.'owner_lx.csv')) { |
2199 | - if ($globalDebug) echo "Add to DB..."; |
|
2566 | + if ($globalDebug) { |
|
2567 | + echo "Add to DB..."; |
|
2568 | + } |
|
2200 | 2569 | $error = update_db::retrieve_owner($tmp_dir.'owner_lx.csv','LX'); |
2201 | - } else $error = "File ".$tmp_dir.'owner_lx.csv'." doesn't exist. Download failed."; |
|
2570 | + } else { |
|
2571 | + $error = "File ".$tmp_dir.'owner_lx.csv'." doesn't exist. Download failed."; |
|
2572 | + } |
|
2202 | 2573 | if ($error != '') { |
2203 | 2574 | return $error; |
2204 | - } elseif ($globalDebug) echo "Done\n"; |
|
2205 | - if ($globalDebug) echo "Owner Maldives: Download..."; |
|
2575 | + } elseif ($globalDebug) { |
|
2576 | + echo "Done\n"; |
|
2577 | + } |
|
2578 | + if ($globalDebug) { |
|
2579 | + echo "Owner Maldives: Download..."; |
|
2580 | + } |
|
2206 | 2581 | update_db::download('http://antonakis.co.uk/registers/Maldives.txt',$tmp_dir.'owner_8q.csv'); |
2207 | 2582 | if (file_exists($tmp_dir.'owner_8q.csv')) { |
2208 | - if ($globalDebug) echo "Add to DB..."; |
|
2583 | + if ($globalDebug) { |
|
2584 | + echo "Add to DB..."; |
|
2585 | + } |
|
2209 | 2586 | $error = update_db::retrieve_owner($tmp_dir.'owner_8q.csv','8Q'); |
2210 | - } else $error = "File ".$tmp_dir.'owner_8q.csv'." doesn't exist. Download failed."; |
|
2587 | + } else { |
|
2588 | + $error = "File ".$tmp_dir.'owner_8q.csv'." doesn't exist. Download failed."; |
|
2589 | + } |
|
2211 | 2590 | if ($error != '') { |
2212 | 2591 | return $error; |
2213 | - } elseif ($globalDebug) echo "Done\n"; |
|
2214 | - if ($globalDebug) echo "Owner New Zealand: Download..."; |
|
2592 | + } elseif ($globalDebug) { |
|
2593 | + echo "Done\n"; |
|
2594 | + } |
|
2595 | + if ($globalDebug) { |
|
2596 | + echo "Owner New Zealand: Download..."; |
|
2597 | + } |
|
2215 | 2598 | update_db::download('http://antonakis.co.uk/registers/NewZealand.txt',$tmp_dir.'owner_zk.csv'); |
2216 | 2599 | if (file_exists($tmp_dir.'owner_zk.csv')) { |
2217 | - if ($globalDebug) echo "Add to DB..."; |
|
2600 | + if ($globalDebug) { |
|
2601 | + echo "Add to DB..."; |
|
2602 | + } |
|
2218 | 2603 | $error = update_db::retrieve_owner($tmp_dir.'owner_zk.csv','ZK'); |
2219 | - } else $error = "File ".$tmp_dir.'owner_zk.csv'." doesn't exist. Download failed."; |
|
2604 | + } else { |
|
2605 | + $error = "File ".$tmp_dir.'owner_zk.csv'." doesn't exist. Download failed."; |
|
2606 | + } |
|
2220 | 2607 | if ($error != '') { |
2221 | 2608 | return $error; |
2222 | - } elseif ($globalDebug) echo "Done\n"; |
|
2223 | - if ($globalDebug) echo "Owner Papua New Guinea: Download..."; |
|
2609 | + } elseif ($globalDebug) { |
|
2610 | + echo "Done\n"; |
|
2611 | + } |
|
2612 | + if ($globalDebug) { |
|
2613 | + echo "Owner Papua New Guinea: Download..."; |
|
2614 | + } |
|
2224 | 2615 | update_db::download('http://antonakis.co.uk/registers/PapuaNewGuinea.txt',$tmp_dir.'owner_p2.csv'); |
2225 | 2616 | if (file_exists($tmp_dir.'owner_p2.csv')) { |
2226 | - if ($globalDebug) echo "Add to DB..."; |
|
2617 | + if ($globalDebug) { |
|
2618 | + echo "Add to DB..."; |
|
2619 | + } |
|
2227 | 2620 | $error = update_db::retrieve_owner($tmp_dir.'owner_p2.csv','P2'); |
2228 | - } else $error = "File ".$tmp_dir.'owner_p2.csv'." doesn't exist. Download failed."; |
|
2621 | + } else { |
|
2622 | + $error = "File ".$tmp_dir.'owner_p2.csv'." doesn't exist. Download failed."; |
|
2623 | + } |
|
2229 | 2624 | if ($error != '') { |
2230 | 2625 | return $error; |
2231 | - } elseif ($globalDebug) echo "Done\n"; |
|
2232 | - if ($globalDebug) echo "Owner Slovakia: Download..."; |
|
2626 | + } elseif ($globalDebug) { |
|
2627 | + echo "Done\n"; |
|
2628 | + } |
|
2629 | + if ($globalDebug) { |
|
2630 | + echo "Owner Slovakia: Download..."; |
|
2631 | + } |
|
2233 | 2632 | update_db::download('http://antonakis.co.uk/registers/Slovakia.txt',$tmp_dir.'owner_om.csv'); |
2234 | 2633 | if (file_exists($tmp_dir.'owner_om.csv')) { |
2235 | - if ($globalDebug) echo "Add to DB..."; |
|
2634 | + if ($globalDebug) { |
|
2635 | + echo "Add to DB..."; |
|
2636 | + } |
|
2236 | 2637 | $error = update_db::retrieve_owner($tmp_dir.'owner_om.csv','OM'); |
2237 | - } else $error = "File ".$tmp_dir.'owner_om.csv'." doesn't exist. Download failed."; |
|
2638 | + } else { |
|
2639 | + $error = "File ".$tmp_dir.'owner_om.csv'." doesn't exist. Download failed."; |
|
2640 | + } |
|
2238 | 2641 | if ($error != '') { |
2239 | 2642 | return $error; |
2240 | - } elseif ($globalDebug) echo "Done\n"; |
|
2241 | - if ($globalDebug) echo "Owner Ecuador: Download..."; |
|
2643 | + } elseif ($globalDebug) { |
|
2644 | + echo "Done\n"; |
|
2645 | + } |
|
2646 | + if ($globalDebug) { |
|
2647 | + echo "Owner Ecuador: Download..."; |
|
2648 | + } |
|
2242 | 2649 | update_db::download('http://antonakis.co.uk/registers/Ecuador.txt',$tmp_dir.'owner_hc.csv'); |
2243 | 2650 | if (file_exists($tmp_dir.'owner_hc.csv')) { |
2244 | - if ($globalDebug) echo "Add to DB..."; |
|
2651 | + if ($globalDebug) { |
|
2652 | + echo "Add to DB..."; |
|
2653 | + } |
|
2245 | 2654 | $error = update_db::retrieve_owner($tmp_dir.'owner_hc.csv','HC'); |
2246 | - } else $error = "File ".$tmp_dir.'owner_hc.csv'." doesn't exist. Download failed."; |
|
2655 | + } else { |
|
2656 | + $error = "File ".$tmp_dir.'owner_hc.csv'." doesn't exist. Download failed."; |
|
2657 | + } |
|
2247 | 2658 | if ($error != '') { |
2248 | 2659 | return $error; |
2249 | - } elseif ($globalDebug) echo "Done\n"; |
|
2250 | - if ($globalDebug) echo "Owner Iceland: Download..."; |
|
2660 | + } elseif ($globalDebug) { |
|
2661 | + echo "Done\n"; |
|
2662 | + } |
|
2663 | + if ($globalDebug) { |
|
2664 | + echo "Owner Iceland: Download..."; |
|
2665 | + } |
|
2251 | 2666 | update_db::download('http://antonakis.co.uk/registers/Iceland.txt',$tmp_dir.'owner_tf.csv'); |
2252 | 2667 | if (file_exists($tmp_dir.'owner_tf.csv')) { |
2253 | - if ($globalDebug) echo "Add to DB..."; |
|
2668 | + if ($globalDebug) { |
|
2669 | + echo "Add to DB..."; |
|
2670 | + } |
|
2254 | 2671 | $error = update_db::retrieve_owner($tmp_dir.'owner_tf.csv','TF'); |
2255 | - } else $error = "File ".$tmp_dir.'owner_tf.csv'." doesn't exist. Download failed."; |
|
2672 | + } else { |
|
2673 | + $error = "File ".$tmp_dir.'owner_tf.csv'." doesn't exist. Download failed."; |
|
2674 | + } |
|
2256 | 2675 | if ($error != '') { |
2257 | 2676 | return $error; |
2258 | - } elseif ($globalDebug) echo "Done\n"; |
|
2259 | - if ($globalDebug) echo "Owner Isle of Man: Download..."; |
|
2677 | + } elseif ($globalDebug) { |
|
2678 | + echo "Done\n"; |
|
2679 | + } |
|
2680 | + if ($globalDebug) { |
|
2681 | + echo "Owner Isle of Man: Download..."; |
|
2682 | + } |
|
2260 | 2683 | update_db::download('http://antonakis.co.uk/registers/IsleOfMan.txt',$tmp_dir.'owner_m.csv'); |
2261 | 2684 | if (file_exists($tmp_dir.'owner_m.csv')) { |
2262 | - if ($globalDebug) echo "Add to DB..."; |
|
2685 | + if ($globalDebug) { |
|
2686 | + echo "Add to DB..."; |
|
2687 | + } |
|
2263 | 2688 | $error = update_db::retrieve_owner($tmp_dir.'owner_m.csv','M'); |
2264 | - } else $error = "File ".$tmp_dir.'owner_m.csv'." doesn't exist. Download failed."; |
|
2689 | + } else { |
|
2690 | + $error = "File ".$tmp_dir.'owner_m.csv'." doesn't exist. Download failed."; |
|
2691 | + } |
|
2265 | 2692 | if ($error != '') { |
2266 | 2693 | return $error; |
2267 | - } elseif ($globalDebug) echo "Done\n"; |
|
2694 | + } elseif ($globalDebug) { |
|
2695 | + echo "Done\n"; |
|
2696 | + } |
|
2268 | 2697 | if ($globalMasterSource) { |
2269 | - if ($globalDebug) echo "ModeS Netherlands: Download..."; |
|
2698 | + if ($globalDebug) { |
|
2699 | + echo "ModeS Netherlands: Download..."; |
|
2700 | + } |
|
2270 | 2701 | update_db::download('http://antonakis.co.uk/registers/Netherlands.txt',$tmp_dir.'owner_ph.csv'); |
2271 | 2702 | if (file_exists($tmp_dir.'owner_ph.csv')) { |
2272 | - if ($globalDebug) echo "Add to DB..."; |
|
2703 | + if ($globalDebug) { |
|
2704 | + echo "Add to DB..."; |
|
2705 | + } |
|
2273 | 2706 | $error = update_db::retrieve_owner($tmp_dir.'owner_ph.csv','PH'); |
2274 | - } else $error = "File ".$tmp_dir.'owner_ph.csv'." doesn't exist. Download failed."; |
|
2707 | + } else { |
|
2708 | + $error = "File ".$tmp_dir.'owner_ph.csv'." doesn't exist. Download failed."; |
|
2709 | + } |
|
2275 | 2710 | if ($error != '') { |
2276 | 2711 | return $error; |
2277 | - } elseif ($globalDebug) echo "Done\n"; |
|
2278 | - if ($globalDebug) echo "ModeS Denmark: Download..."; |
|
2712 | + } elseif ($globalDebug) { |
|
2713 | + echo "Done\n"; |
|
2714 | + } |
|
2715 | + if ($globalDebug) { |
|
2716 | + echo "ModeS Denmark: Download..."; |
|
2717 | + } |
|
2279 | 2718 | update_db::download('http://antonakis.co.uk/registers/Denmark.txt',$tmp_dir.'owner_oy.csv'); |
2280 | 2719 | if (file_exists($tmp_dir.'owner_oy.csv')) { |
2281 | - if ($globalDebug) echo "Add to DB..."; |
|
2720 | + if ($globalDebug) { |
|
2721 | + echo "Add to DB..."; |
|
2722 | + } |
|
2282 | 2723 | $error = update_db::retrieve_owner($tmp_dir.'owner_oy.csv','OY'); |
2283 | - } else $error = "File ".$tmp_dir.'owner_oy.csv'." doesn't exist. Download failed."; |
|
2724 | + } else { |
|
2725 | + $error = "File ".$tmp_dir.'owner_oy.csv'." doesn't exist. Download failed."; |
|
2726 | + } |
|
2284 | 2727 | if ($error != '') { |
2285 | 2728 | return $error; |
2286 | - } elseif ($globalDebug) echo "Done\n"; |
|
2287 | - } elseif ($globalDebug) echo "Done\n"; |
|
2729 | + } elseif ($globalDebug) { |
|
2730 | + echo "Done\n"; |
|
2731 | + } |
|
2732 | + } elseif ($globalDebug) { |
|
2733 | + echo "Done\n"; |
|
2734 | + } |
|
2288 | 2735 | return ''; |
2289 | 2736 | } |
2290 | 2737 | |
2291 | 2738 | public static function update_translation() { |
2292 | 2739 | global $tmp_dir, $globalDebug; |
2293 | 2740 | $error = ''; |
2294 | - if ($globalDebug) echo "Translation : Download..."; |
|
2741 | + if ($globalDebug) { |
|
2742 | + echo "Translation : Download..."; |
|
2743 | + } |
|
2295 | 2744 | update_db::download('http://www.acarsd.org/download/translation.php',$tmp_dir.'translation.zip'); |
2296 | 2745 | if (file_exists($tmp_dir.'translation.zip')) { |
2297 | - if ($globalDebug) echo "Unzip..."; |
|
2746 | + if ($globalDebug) { |
|
2747 | + echo "Unzip..."; |
|
2748 | + } |
|
2298 | 2749 | update_db::unzip($tmp_dir.'translation.zip'); |
2299 | - if ($globalDebug) echo "Add to DB..."; |
|
2750 | + if ($globalDebug) { |
|
2751 | + echo "Add to DB..."; |
|
2752 | + } |
|
2300 | 2753 | $error = update_db::translation(); |
2301 | - } else $error = "File ".$tmp_dir.'translation.zip'." doesn't exist. Download failed."; |
|
2754 | + } else { |
|
2755 | + $error = "File ".$tmp_dir.'translation.zip'." doesn't exist. Download failed."; |
|
2756 | + } |
|
2302 | 2757 | if ($error != '') { |
2303 | 2758 | return $error; |
2304 | - } elseif ($globalDebug) echo "Done\n"; |
|
2759 | + } elseif ($globalDebug) { |
|
2760 | + echo "Done\n"; |
|
2761 | + } |
|
2305 | 2762 | return ''; |
2306 | 2763 | } |
2307 | 2764 | |
2308 | 2765 | public static function update_translation_fam() { |
2309 | 2766 | global $tmp_dir, $globalDebug; |
2310 | - if ($globalDebug) echo "Translation from FlightAirMap website : Download..."; |
|
2767 | + if ($globalDebug) { |
|
2768 | + echo "Translation from FlightAirMap website : Download..."; |
|
2769 | + } |
|
2311 | 2770 | update_db::download('http://data.flightairmap.com/data/translation.tsv.gz',$tmp_dir.'translation.tsv.gz'); |
2312 | 2771 | if (file_exists($tmp_dir.'translation.tsv.gz')) { |
2313 | - if ($globalDebug) echo "Gunzip..."; |
|
2772 | + if ($globalDebug) { |
|
2773 | + echo "Gunzip..."; |
|
2774 | + } |
|
2314 | 2775 | update_db::gunzip($tmp_dir.'translation.tsv.gz'); |
2315 | - if ($globalDebug) echo "Add to DB..."; |
|
2776 | + if ($globalDebug) { |
|
2777 | + echo "Add to DB..."; |
|
2778 | + } |
|
2316 | 2779 | $error = update_db::translation_fam(); |
2317 | - } else $error = "File ".$tmp_dir.'translation.tsv.gz'." doesn't exist. Download failed."; |
|
2780 | + } else { |
|
2781 | + $error = "File ".$tmp_dir.'translation.tsv.gz'." doesn't exist. Download failed."; |
|
2782 | + } |
|
2318 | 2783 | if ($error != '') { |
2319 | 2784 | return $error; |
2320 | - } elseif ($globalDebug) echo "Done\n"; |
|
2785 | + } elseif ($globalDebug) { |
|
2786 | + echo "Done\n"; |
|
2787 | + } |
|
2321 | 2788 | return ''; |
2322 | 2789 | } |
2323 | 2790 | public static function update_ModeS_fam() { |
2324 | 2791 | global $tmp_dir, $globalDebug; |
2325 | - if ($globalDebug) echo "ModeS from FlightAirMap website : Download..."; |
|
2792 | + if ($globalDebug) { |
|
2793 | + echo "ModeS from FlightAirMap website : Download..."; |
|
2794 | + } |
|
2326 | 2795 | update_db::download('http://data.flightairmap.com/data/modes.tsv.gz',$tmp_dir.'modes.tsv.gz'); |
2327 | 2796 | if (file_exists($tmp_dir.'modes.tsv.gz')) { |
2328 | - if ($globalDebug) echo "Gunzip..."; |
|
2797 | + if ($globalDebug) { |
|
2798 | + echo "Gunzip..."; |
|
2799 | + } |
|
2329 | 2800 | update_db::gunzip($tmp_dir.'modes.tsv.gz'); |
2330 | - if ($globalDebug) echo "Add to DB..."; |
|
2801 | + if ($globalDebug) { |
|
2802 | + echo "Add to DB..."; |
|
2803 | + } |
|
2331 | 2804 | $error = update_db::modes_fam(); |
2332 | - } else $error = "File ".$tmp_dir.'modes.tsv.gz'." doesn't exist. Download failed."; |
|
2805 | + } else { |
|
2806 | + $error = "File ".$tmp_dir.'modes.tsv.gz'." doesn't exist. Download failed."; |
|
2807 | + } |
|
2333 | 2808 | if ($error != '') { |
2334 | 2809 | return $error; |
2335 | - } elseif ($globalDebug) echo "Done\n"; |
|
2810 | + } elseif ($globalDebug) { |
|
2811 | + echo "Done\n"; |
|
2812 | + } |
|
2336 | 2813 | return ''; |
2337 | 2814 | } |
2338 | 2815 | public static function update_owner_fam() { |
2339 | 2816 | global $tmp_dir, $globalDebug, $globalOwner; |
2340 | - if ($globalDebug) echo "owner from FlightAirMap website : Download..."; |
|
2817 | + if ($globalDebug) { |
|
2818 | + echo "owner from FlightAirMap website : Download..."; |
|
2819 | + } |
|
2341 | 2820 | if ($globalOwner === TRUE) { |
2342 | 2821 | update_db::download('http://data.flightairmap.com/data/owners_all.tsv.gz',$tmp_dir.'owners.tsv.gz'); |
2343 | 2822 | } else { |
2344 | 2823 | update_db::download('http://data.flightairmap.com/data/owners.tsv.gz',$tmp_dir.'owners.tsv.gz'); |
2345 | 2824 | } |
2346 | 2825 | if (file_exists($tmp_dir.'owners.tsv.gz')) { |
2347 | - if ($globalDebug) echo "Gunzip..."; |
|
2826 | + if ($globalDebug) { |
|
2827 | + echo "Gunzip..."; |
|
2828 | + } |
|
2348 | 2829 | update_db::gunzip($tmp_dir.'owners.tsv.gz'); |
2349 | - if ($globalDebug) echo "Add to DB..."; |
|
2830 | + if ($globalDebug) { |
|
2831 | + echo "Add to DB..."; |
|
2832 | + } |
|
2350 | 2833 | $error = update_db::owner_fam(); |
2351 | - } else $error = "File ".$tmp_dir.'owners.tsv.gz'." doesn't exist. Download failed."; |
|
2834 | + } else { |
|
2835 | + $error = "File ".$tmp_dir.'owners.tsv.gz'." doesn't exist. Download failed."; |
|
2836 | + } |
|
2352 | 2837 | if ($error != '') { |
2353 | 2838 | return $error; |
2354 | - } elseif ($globalDebug) echo "Done\n"; |
|
2839 | + } elseif ($globalDebug) { |
|
2840 | + echo "Done\n"; |
|
2841 | + } |
|
2355 | 2842 | return ''; |
2356 | 2843 | } |
2357 | 2844 | public static function update_routes_fam() { |
2358 | 2845 | global $tmp_dir, $globalDebug; |
2359 | - if ($globalDebug) echo "Routes from FlightAirMap website : Download..."; |
|
2846 | + if ($globalDebug) { |
|
2847 | + echo "Routes from FlightAirMap website : Download..."; |
|
2848 | + } |
|
2360 | 2849 | update_db::download('http://data.flightairmap.com/data/routes.tsv.gz',$tmp_dir.'routes.tsv.gz'); |
2361 | 2850 | if (file_exists($tmp_dir.'routes.tsv.gz')) { |
2362 | - if ($globalDebug) echo "Gunzip..."; |
|
2851 | + if ($globalDebug) { |
|
2852 | + echo "Gunzip..."; |
|
2853 | + } |
|
2363 | 2854 | update_db::gunzip($tmp_dir.'routes.tsv.gz'); |
2364 | - if ($globalDebug) echo "Add to DB..."; |
|
2855 | + if ($globalDebug) { |
|
2856 | + echo "Add to DB..."; |
|
2857 | + } |
|
2365 | 2858 | $error = update_db::routes_fam(); |
2366 | - } else $error = "File ".$tmp_dir.'routes.tsv.gz'." doesn't exist. Download failed."; |
|
2859 | + } else { |
|
2860 | + $error = "File ".$tmp_dir.'routes.tsv.gz'." doesn't exist. Download failed."; |
|
2861 | + } |
|
2367 | 2862 | if ($error != '') { |
2368 | 2863 | return $error; |
2369 | - } elseif ($globalDebug) echo "Done\n"; |
|
2864 | + } elseif ($globalDebug) { |
|
2865 | + echo "Done\n"; |
|
2866 | + } |
|
2370 | 2867 | return ''; |
2371 | 2868 | } |
2372 | 2869 | public static function update_marine_identity_fam() { |
@@ -2376,14 +2873,22 @@ discard block |
||
2376 | 2873 | $marine_identity_md5_file = explode(' ',file_get_contents($tmp_dir.'marine_identity.tsv.gz.md5')); |
2377 | 2874 | $marine_identity_md5 = $marine_identity_md5_file[0]; |
2378 | 2875 | if (!update_db::check_marine_identity_version($marine_identity_md5)) { |
2379 | - if ($globalDebug) echo "Marine identity from FlightAirMap website : Download..."; |
|
2876 | + if ($globalDebug) { |
|
2877 | + echo "Marine identity from FlightAirMap website : Download..."; |
|
2878 | + } |
|
2380 | 2879 | update_db::download('http://data.flightairmap.com/data/marine_identity.tsv.gz',$tmp_dir.'marine_identity.tsv.gz'); |
2381 | 2880 | if (file_exists($tmp_dir.'marine_identity.tsv.gz')) { |
2382 | - if ($globalDebug) echo "Gunzip..."; |
|
2881 | + if ($globalDebug) { |
|
2882 | + echo "Gunzip..."; |
|
2883 | + } |
|
2383 | 2884 | update_db::gunzip($tmp_dir.'marine_identity.tsv.gz'); |
2384 | - if ($globalDebug) echo "Add to DB..."; |
|
2885 | + if ($globalDebug) { |
|
2886 | + echo "Add to DB..."; |
|
2887 | + } |
|
2385 | 2888 | $error = update_db::marine_identity_fam(); |
2386 | - } else $error = "File ".$tmp_dir.'marine_identity.tsv.gz'." doesn't exist. Download failed."; |
|
2889 | + } else { |
|
2890 | + $error = "File ".$tmp_dir.'marine_identity.tsv.gz'." doesn't exist. Download failed."; |
|
2891 | + } |
|
2387 | 2892 | if ($error != '') { |
2388 | 2893 | return $error; |
2389 | 2894 | } elseif ($globalDebug) { |
@@ -2402,14 +2907,22 @@ discard block |
||
2402 | 2907 | $satellite_md5_file = explode(' ',file_get_contents($tmp_dir.'satellite.tsv.gz.md5')); |
2403 | 2908 | $satellite_md5 = $satellite_md5_file[0]; |
2404 | 2909 | if (!update_db::check_satellite_version($satellite_md5)) { |
2405 | - if ($globalDebug) echo "Satellite from FlightAirMap website : Download..."; |
|
2910 | + if ($globalDebug) { |
|
2911 | + echo "Satellite from FlightAirMap website : Download..."; |
|
2912 | + } |
|
2406 | 2913 | update_db::download('http://data.flightairmap.com/data/satellite.tsv.gz',$tmp_dir.'satellite.tsv.gz'); |
2407 | 2914 | if (file_exists($tmp_dir.'satellite.tsv.gz')) { |
2408 | - if ($globalDebug) echo "Gunzip..."; |
|
2915 | + if ($globalDebug) { |
|
2916 | + echo "Gunzip..."; |
|
2917 | + } |
|
2409 | 2918 | update_db::gunzip($tmp_dir.'satellite.tsv.gz'); |
2410 | - if ($globalDebug) echo "Add to DB..."; |
|
2919 | + if ($globalDebug) { |
|
2920 | + echo "Add to DB..."; |
|
2921 | + } |
|
2411 | 2922 | $error = update_db::satellite_fam(); |
2412 | - } else $error = "File ".$tmp_dir.'satellite.tsv.gz'." doesn't exist. Download failed."; |
|
2923 | + } else { |
|
2924 | + $error = "File ".$tmp_dir.'satellite.tsv.gz'." doesn't exist. Download failed."; |
|
2925 | + } |
|
2413 | 2926 | if ($error != '') { |
2414 | 2927 | return $error; |
2415 | 2928 | } elseif ($globalDebug) { |
@@ -2422,17 +2935,25 @@ discard block |
||
2422 | 2935 | } |
2423 | 2936 | public static function update_banned_fam() { |
2424 | 2937 | global $tmp_dir, $globalDebug; |
2425 | - if ($globalDebug) echo "Banned airlines in Europe from FlightAirMap website : Download..."; |
|
2938 | + if ($globalDebug) { |
|
2939 | + echo "Banned airlines in Europe from FlightAirMap website : Download..."; |
|
2940 | + } |
|
2426 | 2941 | update_db::download('http://data.flightairmap.com/data/ban-eu.csv',$tmp_dir.'ban_eu.csv'); |
2427 | 2942 | if (file_exists($tmp_dir.'ban_eu.csv')) { |
2428 | 2943 | //if ($globalDebug) echo "Gunzip..."; |
2429 | 2944 | //update_db::gunzip($tmp_dir.'ban_ue.csv'); |
2430 | - if ($globalDebug) echo "Add to DB..."; |
|
2945 | + if ($globalDebug) { |
|
2946 | + echo "Add to DB..."; |
|
2947 | + } |
|
2431 | 2948 | $error = update_db::banned_fam(); |
2432 | - } else $error = "File ".$tmp_dir.'ban_eu.csv'." doesn't exist. Download failed."; |
|
2949 | + } else { |
|
2950 | + $error = "File ".$tmp_dir.'ban_eu.csv'." doesn't exist. Download failed."; |
|
2951 | + } |
|
2433 | 2952 | if ($error != '') { |
2434 | 2953 | return $error; |
2435 | - } elseif ($globalDebug) echo "Done\n"; |
|
2954 | + } elseif ($globalDebug) { |
|
2955 | + echo "Done\n"; |
|
2956 | + } |
|
2436 | 2957 | return ''; |
2437 | 2958 | } |
2438 | 2959 | |
@@ -2440,7 +2961,9 @@ discard block |
||
2440 | 2961 | global $tmp_dir, $globalDebug, $globalDBdriver; |
2441 | 2962 | include_once('class.create_db.php'); |
2442 | 2963 | $error = ''; |
2443 | - if ($globalDebug) echo "Airspace from FlightAirMap website : Download..."; |
|
2964 | + if ($globalDebug) { |
|
2965 | + echo "Airspace from FlightAirMap website : Download..."; |
|
2966 | + } |
|
2444 | 2967 | if ($globalDBdriver == 'mysql') { |
2445 | 2968 | update_db::download('http://data.flightairmap.com/data/airspace_mysql.sql.gz.md5',$tmp_dir.'airspace.sql.gz.md5'); |
2446 | 2969 | } else { |
@@ -2456,9 +2979,13 @@ discard block |
||
2456 | 2979 | update_db::download('http://data.flightairmap.com/data/airspace_pgsql.sql.gz',$tmp_dir.'airspace.sql.gz'); |
2457 | 2980 | } |
2458 | 2981 | if (file_exists($tmp_dir.'airspace.sql.gz')) { |
2459 | - if ($globalDebug) echo "Gunzip..."; |
|
2982 | + if ($globalDebug) { |
|
2983 | + echo "Gunzip..."; |
|
2984 | + } |
|
2460 | 2985 | update_db::gunzip($tmp_dir.'airspace.sql.gz'); |
2461 | - if ($globalDebug) echo "Add to DB..."; |
|
2986 | + if ($globalDebug) { |
|
2987 | + echo "Add to DB..."; |
|
2988 | + } |
|
2462 | 2989 | $Connection = new Connection(); |
2463 | 2990 | if ($Connection->tableExists('airspace')) { |
2464 | 2991 | $query = 'DROP TABLE airspace'; |
@@ -2471,19 +2998,27 @@ discard block |
||
2471 | 2998 | } |
2472 | 2999 | $error = create_db::import_file($tmp_dir.'airspace.sql'); |
2473 | 3000 | update_db::insert_airspace_version($airspace_md5); |
2474 | - } else $error = "File ".$tmp_dir.'airspace.sql.gz'." doesn't exist. Download failed."; |
|
3001 | + } else { |
|
3002 | + $error = "File ".$tmp_dir.'airspace.sql.gz'." doesn't exist. Download failed."; |
|
3003 | + } |
|
2475 | 3004 | } |
2476 | - } else $error = "File ".$tmp_dir.'airspace.sql.gz.md5'." doesn't exist. Download failed."; |
|
3005 | + } else { |
|
3006 | + $error = "File ".$tmp_dir.'airspace.sql.gz.md5'." doesn't exist. Download failed."; |
|
3007 | + } |
|
2477 | 3008 | if ($error != '') { |
2478 | 3009 | return $error; |
2479 | - } elseif ($globalDebug) echo "Done\n"; |
|
3010 | + } elseif ($globalDebug) { |
|
3011 | + echo "Done\n"; |
|
3012 | + } |
|
2480 | 3013 | return ''; |
2481 | 3014 | } |
2482 | 3015 | |
2483 | 3016 | public static function update_geoid_fam() { |
2484 | 3017 | global $tmp_dir, $globalDebug, $globalGeoidSource; |
2485 | 3018 | $error = ''; |
2486 | - if ($globalDebug) echo "Geoid from FlightAirMap website : Download..."; |
|
3019 | + if ($globalDebug) { |
|
3020 | + echo "Geoid from FlightAirMap website : Download..."; |
|
3021 | + } |
|
2487 | 3022 | update_db::download('http://data.flightairmap.com/data/geoid/'.$globalGeoidSource.'.pgm.gz.md5',$tmp_dir.$globalGeoidSource.'.pgm.gz.md5'); |
2488 | 3023 | if (file_exists($tmp_dir.$globalGeoidSource.'.pgm.gz.md5')) { |
2489 | 3024 | $geoid_md5_file = explode(' ',file_get_contents($tmp_dir.$globalGeoidSource.'.pgm.gz.md5')); |
@@ -2491,75 +3026,113 @@ discard block |
||
2491 | 3026 | if (!update_db::check_geoid_version($geoid_md5)) { |
2492 | 3027 | update_db::download('http://data.flightairmap.com/data/geoid/'.$globalGeoidSource.'.pgm.gz',$tmp_dir.$globalGeoidSource.'.pgm.gz'); |
2493 | 3028 | if (file_exists($tmp_dir.$globalGeoidSource.'.pgm.gz')) { |
2494 | - if ($globalDebug) echo "Gunzip..."; |
|
3029 | + if ($globalDebug) { |
|
3030 | + echo "Gunzip..."; |
|
3031 | + } |
|
2495 | 3032 | update_db::gunzip($tmp_dir.$globalGeoidSource.'.pgm.gz',dirname(__FILE__).'/../data/'.$globalGeoidSource.'.pgm'); |
2496 | 3033 | if (file_exists(dirname(__FILE__).'/../data/'.$globalGeoidSource.'.pgm')) { |
2497 | 3034 | update_db::insert_geoid_version($geoid_md5); |
2498 | 3035 | } |
2499 | - } else $error = "File ".$tmp_dir.$globalGeoidSource.'.pgm.gz'." doesn't exist. Download failed."; |
|
3036 | + } else { |
|
3037 | + $error = "File ".$tmp_dir.$globalGeoidSource.'.pgm.gz'." doesn't exist. Download failed."; |
|
3038 | + } |
|
2500 | 3039 | } |
2501 | - } else $error = "File ".$tmp_dir.$globalGeoidSource.'.pgm.gz.md5'." doesn't exist. Download failed."; |
|
3040 | + } else { |
|
3041 | + $error = "File ".$tmp_dir.$globalGeoidSource.'.pgm.gz.md5'." doesn't exist. Download failed."; |
|
3042 | + } |
|
2502 | 3043 | if ($error != '') { |
2503 | 3044 | return $error; |
2504 | - } elseif ($globalDebug) echo "Done\n"; |
|
3045 | + } elseif ($globalDebug) { |
|
3046 | + echo "Done\n"; |
|
3047 | + } |
|
2505 | 3048 | return ''; |
2506 | 3049 | } |
2507 | 3050 | |
2508 | 3051 | public static function update_tle() { |
2509 | 3052 | global $tmp_dir, $globalDebug; |
2510 | - if ($globalDebug) echo "Download TLE : Download..."; |
|
3053 | + if ($globalDebug) { |
|
3054 | + echo "Download TLE : Download..."; |
|
3055 | + } |
|
2511 | 3056 | $alltle = array('stations.txt','gps-ops.txt','glo-ops.txt','galileo.txt','weather.txt','noaa.txt','goes.txt','resource.txt','dmc.txt','tdrss.txt','geo.txt','intelsat.txt','gorizont.txt', |
2512 | 3057 | 'raduga.txt','molniya.txt','iridium.txt','orbcomm.txt','globalstar.txt','amateur.txt','x-comm.txt','other-comm.txt','sbas.txt','nnss.txt','musson.txt','science.txt','geodetic.txt', |
2513 | 3058 | 'engineering.txt','education.txt','military.txt','radar.txt','cubesat.txt','other.txt','tle-new.txt','visual.txt','sarsat.txt','argos.txt','ses.txt','iridium-NEXT.txt','beidou.txt'); |
2514 | 3059 | foreach ($alltle as $filename) { |
2515 | - if ($globalDebug) echo "downloading ".$filename.'...'; |
|
3060 | + if ($globalDebug) { |
|
3061 | + echo "downloading ".$filename.'...'; |
|
3062 | + } |
|
2516 | 3063 | update_db::download('http://celestrak.com/NORAD/elements/'.$filename,$tmp_dir.$filename); |
2517 | 3064 | if (file_exists($tmp_dir.$filename)) { |
2518 | - if ($globalDebug) echo "Add to DB ".$filename."..."; |
|
3065 | + if ($globalDebug) { |
|
3066 | + echo "Add to DB ".$filename."..."; |
|
3067 | + } |
|
2519 | 3068 | $error = update_db::tle($tmp_dir.$filename,str_replace('.txt','',$filename)); |
2520 | - } else $error = "File ".$tmp_dir.$filename." doesn't exist. Download failed."; |
|
3069 | + } else { |
|
3070 | + $error = "File ".$tmp_dir.$filename." doesn't exist. Download failed."; |
|
3071 | + } |
|
2521 | 3072 | if ($error != '') { |
2522 | 3073 | echo $error."\n"; |
2523 | - } elseif ($globalDebug) echo "Done\n"; |
|
3074 | + } elseif ($globalDebug) { |
|
3075 | + echo "Done\n"; |
|
3076 | + } |
|
2524 | 3077 | } |
2525 | 3078 | return ''; |
2526 | 3079 | } |
2527 | 3080 | |
2528 | 3081 | public static function update_ucsdb() { |
2529 | 3082 | global $tmp_dir, $globalDebug; |
2530 | - if ($globalDebug) echo "Download UCS DB : Download..."; |
|
3083 | + if ($globalDebug) { |
|
3084 | + echo "Download UCS DB : Download..."; |
|
3085 | + } |
|
2531 | 3086 | update_db::download('https://s3.amazonaws.com/ucs-documents/nuclear-weapons/sat-database/4-11-17-update/UCS_Satellite_Database_officialname_1-1-17.txt',$tmp_dir.'UCS_Satellite_Database_officialname_1-1-17.txt'); |
2532 | 3087 | if (file_exists($tmp_dir.'UCS_Satellite_Database_officialname_1-1-17.txt')) { |
2533 | - if ($globalDebug) echo "Add to DB..."; |
|
3088 | + if ($globalDebug) { |
|
3089 | + echo "Add to DB..."; |
|
3090 | + } |
|
2534 | 3091 | $error = update_db::satellite_ucsdb($tmp_dir.'UCS_Satellite_Database_officialname_1-1-17.txt'); |
2535 | - } else $error = "File ".$tmp_dir.'UCS_Satellite_Database_officialname_1-1-17.txt'." doesn't exist. Download failed."; |
|
3092 | + } else { |
|
3093 | + $error = "File ".$tmp_dir.'UCS_Satellite_Database_officialname_1-1-17.txt'." doesn't exist. Download failed."; |
|
3094 | + } |
|
2536 | 3095 | if ($error != '') { |
2537 | 3096 | echo $error."\n"; |
2538 | - } elseif ($globalDebug) echo "Done\n"; |
|
3097 | + } elseif ($globalDebug) { |
|
3098 | + echo "Done\n"; |
|
3099 | + } |
|
2539 | 3100 | return ''; |
2540 | 3101 | } |
2541 | 3102 | |
2542 | 3103 | public static function update_celestrak() { |
2543 | 3104 | global $tmp_dir, $globalDebug; |
2544 | - if ($globalDebug) echo "Download Celestrak DB : Download..."; |
|
3105 | + if ($globalDebug) { |
|
3106 | + echo "Download Celestrak DB : Download..."; |
|
3107 | + } |
|
2545 | 3108 | update_db::download('http://celestrak.com/pub/satcat.txt',$tmp_dir.'satcat.txt'); |
2546 | 3109 | if (file_exists($tmp_dir.'satcat.txt')) { |
2547 | - if ($globalDebug) echo "Add to DB..."; |
|
3110 | + if ($globalDebug) { |
|
3111 | + echo "Add to DB..."; |
|
3112 | + } |
|
2548 | 3113 | $error = update_db::satellite_celestrak($tmp_dir.'satcat.txt'); |
2549 | - } else $error = "File ".$tmp_dir.'satcat.txt'." doesn't exist. Download failed."; |
|
3114 | + } else { |
|
3115 | + $error = "File ".$tmp_dir.'satcat.txt'." doesn't exist. Download failed."; |
|
3116 | + } |
|
2550 | 3117 | if ($error != '') { |
2551 | 3118 | echo $error."\n"; |
2552 | - } elseif ($globalDebug) echo "Done\n"; |
|
3119 | + } elseif ($globalDebug) { |
|
3120 | + echo "Done\n"; |
|
3121 | + } |
|
2553 | 3122 | return ''; |
2554 | 3123 | } |
2555 | 3124 | |
2556 | 3125 | public static function update_models() { |
2557 | 3126 | global $tmp_dir, $globalDebug; |
2558 | 3127 | $error = ''; |
2559 | - if ($globalDebug) echo "Models from FlightAirMap website : Download..."; |
|
3128 | + if ($globalDebug) { |
|
3129 | + echo "Models from FlightAirMap website : Download..."; |
|
3130 | + } |
|
2560 | 3131 | update_db::download('http://data.flightairmap.com/data/models/models.md5sum',$tmp_dir.'models.md5sum'); |
2561 | 3132 | if (file_exists($tmp_dir.'models.md5sum')) { |
2562 | - if ($globalDebug) echo "Check files...\n"; |
|
3133 | + if ($globalDebug) { |
|
3134 | + echo "Check files...\n"; |
|
3135 | + } |
|
2563 | 3136 | $newmodelsdb = array(); |
2564 | 3137 | if (($handle = fopen($tmp_dir.'models.md5sum','r')) !== FALSE) { |
2565 | 3138 | while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
@@ -2578,25 +3151,35 @@ discard block |
||
2578 | 3151 | } |
2579 | 3152 | $diff = array_diff($newmodelsdb,$modelsdb); |
2580 | 3153 | foreach ($diff as $key => $value) { |
2581 | - if ($globalDebug) echo 'Downloading model '.$key.' ...'."\n"; |
|
3154 | + if ($globalDebug) { |
|
3155 | + echo 'Downloading model '.$key.' ...'."\n"; |
|
3156 | + } |
|
2582 | 3157 | update_db::download('http://data.flightairmap.com/data/models/'.$key,dirname(__FILE__).'/../models/'.$key); |
2583 | 3158 | |
2584 | 3159 | } |
2585 | 3160 | update_db::download('http://data.flightairmap.com/data/models/models.md5sum',dirname(__FILE__).'/../models/models.md5sum'); |
2586 | - } else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
3161 | + } else { |
|
3162 | + $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
3163 | + } |
|
2587 | 3164 | if ($error != '') { |
2588 | 3165 | return $error; |
2589 | - } elseif ($globalDebug) echo "Done\n"; |
|
3166 | + } elseif ($globalDebug) { |
|
3167 | + echo "Done\n"; |
|
3168 | + } |
|
2590 | 3169 | return ''; |
2591 | 3170 | } |
2592 | 3171 | |
2593 | 3172 | public static function update_space_models() { |
2594 | 3173 | global $tmp_dir, $globalDebug; |
2595 | 3174 | $error = ''; |
2596 | - if ($globalDebug) echo "Space models from FlightAirMap website : Download..."; |
|
3175 | + if ($globalDebug) { |
|
3176 | + echo "Space models from FlightAirMap website : Download..."; |
|
3177 | + } |
|
2597 | 3178 | update_db::download('http://data.flightairmap.com/data/models/space/space_models.md5sum',$tmp_dir.'space_models.md5sum'); |
2598 | 3179 | if (file_exists($tmp_dir.'space_models.md5sum')) { |
2599 | - if ($globalDebug) echo "Check files...\n"; |
|
3180 | + if ($globalDebug) { |
|
3181 | + echo "Check files...\n"; |
|
3182 | + } |
|
2600 | 3183 | $newmodelsdb = array(); |
2601 | 3184 | if (($handle = fopen($tmp_dir.'space_models.md5sum','r')) !== FALSE) { |
2602 | 3185 | while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
@@ -2615,25 +3198,35 @@ discard block |
||
2615 | 3198 | } |
2616 | 3199 | $diff = array_diff($newmodelsdb,$modelsdb); |
2617 | 3200 | foreach ($diff as $key => $value) { |
2618 | - if ($globalDebug) echo 'Downloading space model '.$key.' ...'."\n"; |
|
3201 | + if ($globalDebug) { |
|
3202 | + echo 'Downloading space model '.$key.' ...'."\n"; |
|
3203 | + } |
|
2619 | 3204 | update_db::download('http://data.flightairmap.com/data/models/space/'.$key,dirname(__FILE__).'/../models/space/'.$key); |
2620 | 3205 | |
2621 | 3206 | } |
2622 | 3207 | update_db::download('http://data.flightairmap.com/data/models/space/space_models.md5sum',dirname(__FILE__).'/../models/space/space_models.md5sum'); |
2623 | - } else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
3208 | + } else { |
|
3209 | + $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
3210 | + } |
|
2624 | 3211 | if ($error != '') { |
2625 | 3212 | return $error; |
2626 | - } elseif ($globalDebug) echo "Done\n"; |
|
3213 | + } elseif ($globalDebug) { |
|
3214 | + echo "Done\n"; |
|
3215 | + } |
|
2627 | 3216 | return ''; |
2628 | 3217 | } |
2629 | 3218 | |
2630 | 3219 | public static function update_vehicules_models() { |
2631 | 3220 | global $tmp_dir, $globalDebug; |
2632 | 3221 | $error = ''; |
2633 | - if ($globalDebug) echo "Vehicules models from FlightAirMap website : Download..."; |
|
3222 | + if ($globalDebug) { |
|
3223 | + echo "Vehicules models from FlightAirMap website : Download..."; |
|
3224 | + } |
|
2634 | 3225 | update_db::download('http://data.flightairmap.com/data/models/vehicules/vehicules_models.md5sum',$tmp_dir.'vehicules_models.md5sum'); |
2635 | 3226 | if (file_exists($tmp_dir.'vehicules_models.md5sum')) { |
2636 | - if ($globalDebug) echo "Check files...\n"; |
|
3227 | + if ($globalDebug) { |
|
3228 | + echo "Check files...\n"; |
|
3229 | + } |
|
2637 | 3230 | $newmodelsdb = array(); |
2638 | 3231 | if (($handle = fopen($tmp_dir.'vehicules_models.md5sum','r')) !== FALSE) { |
2639 | 3232 | while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
@@ -2652,15 +3245,21 @@ discard block |
||
2652 | 3245 | } |
2653 | 3246 | $diff = array_diff($newmodelsdb,$modelsdb); |
2654 | 3247 | foreach ($diff as $key => $value) { |
2655 | - if ($globalDebug) echo 'Downloading vehicules model '.$key.' ...'."\n"; |
|
3248 | + if ($globalDebug) { |
|
3249 | + echo 'Downloading vehicules model '.$key.' ...'."\n"; |
|
3250 | + } |
|
2656 | 3251 | update_db::download('http://data.flightairmap.com/data/models/vehicules/'.$key,dirname(__FILE__).'/../models/vehicules/'.$key); |
2657 | 3252 | |
2658 | 3253 | } |
2659 | 3254 | update_db::download('http://data.flightairmap.com/data/models/vehicules/vehicules_models.md5sum',dirname(__FILE__).'/../models/vehicules/vehicules_models.md5sum'); |
2660 | - } else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
3255 | + } else { |
|
3256 | + $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
3257 | + } |
|
2661 | 3258 | if ($error != '') { |
2662 | 3259 | return $error; |
2663 | - } elseif ($globalDebug) echo "Done\n"; |
|
3260 | + } elseif ($globalDebug) { |
|
3261 | + echo "Done\n"; |
|
3262 | + } |
|
2664 | 3263 | return ''; |
2665 | 3264 | } |
2666 | 3265 | |
@@ -2703,7 +3302,9 @@ discard block |
||
2703 | 3302 | } |
2704 | 3303 | |
2705 | 3304 | $error = ''; |
2706 | - if ($globalDebug) echo "Notam : Download..."; |
|
3305 | + if ($globalDebug) { |
|
3306 | + echo "Notam : Download..."; |
|
3307 | + } |
|
2707 | 3308 | update_db::download($globalNOTAMSource,$tmp_dir.'notam.rss'); |
2708 | 3309 | if (file_exists($tmp_dir.'notam.rss')) { |
2709 | 3310 | $notams = json_decode(json_encode(simplexml_load_file($tmp_dir.'notam.rss')),true); |
@@ -2718,14 +3319,30 @@ discard block |
||
2718 | 3319 | $data['fir'] = $q[0]; |
2719 | 3320 | $data['code'] = $q[1]; |
2720 | 3321 | $ifrvfr = $q[2]; |
2721 | - if ($ifrvfr == 'IV') $data['rules'] = 'IFR/VFR'; |
|
2722 | - if ($ifrvfr == 'I') $data['rules'] = 'IFR'; |
|
2723 | - if ($ifrvfr == 'V') $data['rules'] = 'VFR'; |
|
2724 | - if ($q[4] == 'A') $data['scope'] = 'Airport warning'; |
|
2725 | - if ($q[4] == 'E') $data['scope'] = 'Enroute warning'; |
|
2726 | - if ($q[4] == 'W') $data['scope'] = 'Navigation warning'; |
|
2727 | - if ($q[4] == 'AE') $data['scope'] = 'Airport/Enroute warning'; |
|
2728 | - if ($q[4] == 'AW') $data['scope'] = 'Airport/Navigation warning'; |
|
3322 | + if ($ifrvfr == 'IV') { |
|
3323 | + $data['rules'] = 'IFR/VFR'; |
|
3324 | + } |
|
3325 | + if ($ifrvfr == 'I') { |
|
3326 | + $data['rules'] = 'IFR'; |
|
3327 | + } |
|
3328 | + if ($ifrvfr == 'V') { |
|
3329 | + $data['rules'] = 'VFR'; |
|
3330 | + } |
|
3331 | + if ($q[4] == 'A') { |
|
3332 | + $data['scope'] = 'Airport warning'; |
|
3333 | + } |
|
3334 | + if ($q[4] == 'E') { |
|
3335 | + $data['scope'] = 'Enroute warning'; |
|
3336 | + } |
|
3337 | + if ($q[4] == 'W') { |
|
3338 | + $data['scope'] = 'Navigation warning'; |
|
3339 | + } |
|
3340 | + if ($q[4] == 'AE') { |
|
3341 | + $data['scope'] = 'Airport/Enroute warning'; |
|
3342 | + } |
|
3343 | + if ($q[4] == 'AW') { |
|
3344 | + $data['scope'] = 'Airport/Navigation warning'; |
|
3345 | + } |
|
2729 | 3346 | //$data['scope'] = $q[4]; |
2730 | 3347 | $data['lower_limit'] = $q[5]; |
2731 | 3348 | $data['upper_limit'] = $q[6]; |
@@ -2733,8 +3350,12 @@ discard block |
||
2733 | 3350 | sscanf($latlonrad,'%4c%c%5c%c%3d',$las,$lac,$lns,$lnc,$radius); |
2734 | 3351 | $latitude = $Common->convertDec($las,'latitude'); |
2735 | 3352 | $longitude = $Common->convertDec($lns,'longitude'); |
2736 | - if ($lac == 'S') $latitude = '-'.$latitude; |
|
2737 | - if ($lnc == 'W') $longitude = '-'.$longitude; |
|
3353 | + if ($lac == 'S') { |
|
3354 | + $latitude = '-'.$latitude; |
|
3355 | + } |
|
3356 | + if ($lnc == 'W') { |
|
3357 | + $longitude = '-'.$longitude; |
|
3358 | + } |
|
2738 | 3359 | $data['center_latitude'] = $latitude; |
2739 | 3360 | $data['center_longitude'] = $longitude; |
2740 | 3361 | $data['radius'] = intval($radius); |
@@ -2764,10 +3385,14 @@ discard block |
||
2764 | 3385 | $NOTAM->addNOTAM($data['ref'],$data['title'],'',$data['fir'],$data['code'],'',$data['scope'],$data['lower_limit'],$data['upper_limit'],$data['center_latitude'],$data['center_longitude'],$data['radius'],$data['date_begin'],$data['date_end'],$data['permanent'],$data['text'],$data['full_notam']); |
2765 | 3386 | unset($data); |
2766 | 3387 | } |
2767 | - } else $error = "File ".$tmp_dir.'notam.rss'." doesn't exist. Download failed."; |
|
3388 | + } else { |
|
3389 | + $error = "File ".$tmp_dir.'notam.rss'." doesn't exist. Download failed."; |
|
3390 | + } |
|
2768 | 3391 | if ($error != '') { |
2769 | 3392 | return $error; |
2770 | - } elseif ($globalDebug) echo "Done\n"; |
|
3393 | + } elseif ($globalDebug) { |
|
3394 | + echo "Done\n"; |
|
3395 | + } |
|
2771 | 3396 | return ''; |
2772 | 3397 | } |
2773 | 3398 | |
@@ -2792,7 +3417,9 @@ discard block |
||
2792 | 3417 | $airspace_lst = $Common->getData('https://raw.githubusercontent.com/XCSoar/xcsoar-data-repository/master/data/airspace.json'); |
2793 | 3418 | $airspace_json = json_decode($airspace_lst,true); |
2794 | 3419 | foreach ($airspace_json['records'] as $airspace) { |
2795 | - if ($globalDebug) echo $airspace['name']."...\n"; |
|
3420 | + if ($globalDebug) { |
|
3421 | + echo $airspace['name']."...\n"; |
|
3422 | + } |
|
2796 | 3423 | update_db::download($airspace['uri'],$tmp_dir.$airspace['name']); |
2797 | 3424 | if (file_exists($tmp_dir.$airspace['name'])) { |
2798 | 3425 | file_put_contents($tmp_dir.$airspace['name'], utf8_encode(file_get_contents($tmp_dir.$airspace['name']))); |
@@ -2836,8 +3463,11 @@ discard block |
||
2836 | 3463 | return "error : ".$e->getMessage(); |
2837 | 3464 | } |
2838 | 3465 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
2839 | - if ($row['nb'] > 0) return false; |
|
2840 | - else return true; |
|
3466 | + if ($row['nb'] > 0) { |
|
3467 | + return false; |
|
3468 | + } else { |
|
3469 | + return true; |
|
3470 | + } |
|
2841 | 3471 | } |
2842 | 3472 | |
2843 | 3473 | public static function insert_last_update() { |
@@ -2862,8 +3492,11 @@ discard block |
||
2862 | 3492 | return "error : ".$e->getMessage(); |
2863 | 3493 | } |
2864 | 3494 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
2865 | - if ($row['nb'] > 0) return true; |
|
2866 | - else return false; |
|
3495 | + if ($row['nb'] > 0) { |
|
3496 | + return true; |
|
3497 | + } else { |
|
3498 | + return false; |
|
3499 | + } |
|
2867 | 3500 | } |
2868 | 3501 | |
2869 | 3502 | public static function check_geoid_version($version) { |
@@ -2876,8 +3509,11 @@ discard block |
||
2876 | 3509 | return "error : ".$e->getMessage(); |
2877 | 3510 | } |
2878 | 3511 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
2879 | - if ($row['nb'] > 0) return true; |
|
2880 | - else return false; |
|
3512 | + if ($row['nb'] > 0) { |
|
3513 | + return true; |
|
3514 | + } else { |
|
3515 | + return false; |
|
3516 | + } |
|
2881 | 3517 | } |
2882 | 3518 | |
2883 | 3519 | public static function check_marine_identity_version($version) { |
@@ -2890,8 +3526,11 @@ discard block |
||
2890 | 3526 | return "error : ".$e->getMessage(); |
2891 | 3527 | } |
2892 | 3528 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
2893 | - if ($row['nb'] > 0) return true; |
|
2894 | - else return false; |
|
3529 | + if ($row['nb'] > 0) { |
|
3530 | + return true; |
|
3531 | + } else { |
|
3532 | + return false; |
|
3533 | + } |
|
2895 | 3534 | } |
2896 | 3535 | |
2897 | 3536 | public static function check_satellite_version($version) { |
@@ -2904,8 +3543,11 @@ discard block |
||
2904 | 3543 | return "error : ".$e->getMessage(); |
2905 | 3544 | } |
2906 | 3545 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
2907 | - if ($row['nb'] > 0) return true; |
|
2908 | - else return false; |
|
3546 | + if ($row['nb'] > 0) { |
|
3547 | + return true; |
|
3548 | + } else { |
|
3549 | + return false; |
|
3550 | + } |
|
2909 | 3551 | } |
2910 | 3552 | |
2911 | 3553 | |
@@ -2972,8 +3614,11 @@ discard block |
||
2972 | 3614 | return "error : ".$e->getMessage(); |
2973 | 3615 | } |
2974 | 3616 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
2975 | - if ($row['nb'] > 0) return false; |
|
2976 | - else return true; |
|
3617 | + if ($row['nb'] > 0) { |
|
3618 | + return false; |
|
3619 | + } else { |
|
3620 | + return true; |
|
3621 | + } |
|
2977 | 3622 | } |
2978 | 3623 | |
2979 | 3624 | public static function insert_last_notam_update() { |
@@ -3003,8 +3648,11 @@ discard block |
||
3003 | 3648 | return "error : ".$e->getMessage(); |
3004 | 3649 | } |
3005 | 3650 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
3006 | - if ($row['nb'] > 0) return false; |
|
3007 | - else return true; |
|
3651 | + if ($row['nb'] > 0) { |
|
3652 | + return false; |
|
3653 | + } else { |
|
3654 | + return true; |
|
3655 | + } |
|
3008 | 3656 | } |
3009 | 3657 | |
3010 | 3658 | public static function insert_last_airspace_update() { |
@@ -3034,8 +3682,11 @@ discard block |
||
3034 | 3682 | return "error : ".$e->getMessage(); |
3035 | 3683 | } |
3036 | 3684 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
3037 | - if ($row['nb'] > 0) return false; |
|
3038 | - else return true; |
|
3685 | + if ($row['nb'] > 0) { |
|
3686 | + return false; |
|
3687 | + } else { |
|
3688 | + return true; |
|
3689 | + } |
|
3039 | 3690 | } |
3040 | 3691 | |
3041 | 3692 | public static function insert_last_geoid_update() { |
@@ -3065,8 +3716,11 @@ discard block |
||
3065 | 3716 | return "error : ".$e->getMessage(); |
3066 | 3717 | } |
3067 | 3718 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
3068 | - if ($row['nb'] > 0) return false; |
|
3069 | - else return true; |
|
3719 | + if ($row['nb'] > 0) { |
|
3720 | + return false; |
|
3721 | + } else { |
|
3722 | + return true; |
|
3723 | + } |
|
3070 | 3724 | } |
3071 | 3725 | |
3072 | 3726 | public static function insert_last_owner_update() { |
@@ -3095,8 +3749,11 @@ discard block |
||
3095 | 3749 | return "error : ".$e->getMessage(); |
3096 | 3750 | } |
3097 | 3751 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
3098 | - if ($row['nb'] > 0) return false; |
|
3099 | - else return true; |
|
3752 | + if ($row['nb'] > 0) { |
|
3753 | + return false; |
|
3754 | + } else { |
|
3755 | + return true; |
|
3756 | + } |
|
3100 | 3757 | } |
3101 | 3758 | |
3102 | 3759 | public static function insert_last_schedules_update() { |
@@ -3126,8 +3783,11 @@ discard block |
||
3126 | 3783 | return "error : ".$e->getMessage(); |
3127 | 3784 | } |
3128 | 3785 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
3129 | - if ($row['nb'] > 0) return false; |
|
3130 | - else return true; |
|
3786 | + if ($row['nb'] > 0) { |
|
3787 | + return false; |
|
3788 | + } else { |
|
3789 | + return true; |
|
3790 | + } |
|
3131 | 3791 | } |
3132 | 3792 | |
3133 | 3793 | public static function insert_last_tle_update() { |
@@ -3157,8 +3817,11 @@ discard block |
||
3157 | 3817 | return "error : ".$e->getMessage(); |
3158 | 3818 | } |
3159 | 3819 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
3160 | - if ($row['nb'] > 0) return false; |
|
3161 | - else return true; |
|
3820 | + if ($row['nb'] > 0) { |
|
3821 | + return false; |
|
3822 | + } else { |
|
3823 | + return true; |
|
3824 | + } |
|
3162 | 3825 | } |
3163 | 3826 | |
3164 | 3827 | public static function insert_last_ucsdb_update() { |
@@ -3188,8 +3851,11 @@ discard block |
||
3188 | 3851 | return "error : ".$e->getMessage(); |
3189 | 3852 | } |
3190 | 3853 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
3191 | - if ($row['nb'] > 0) return false; |
|
3192 | - else return true; |
|
3854 | + if ($row['nb'] > 0) { |
|
3855 | + return false; |
|
3856 | + } else { |
|
3857 | + return true; |
|
3858 | + } |
|
3193 | 3859 | } |
3194 | 3860 | |
3195 | 3861 | public static function insert_last_celestrak_update() { |
@@ -3219,8 +3885,11 @@ discard block |
||
3219 | 3885 | return "error : ".$e->getMessage(); |
3220 | 3886 | } |
3221 | 3887 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
3222 | - if ($row['nb'] > 0) return false; |
|
3223 | - else return true; |
|
3888 | + if ($row['nb'] > 0) { |
|
3889 | + return false; |
|
3890 | + } else { |
|
3891 | + return true; |
|
3892 | + } |
|
3224 | 3893 | } |
3225 | 3894 | |
3226 | 3895 | public static function check_last_satellite_update() { |
@@ -3238,8 +3907,11 @@ discard block |
||
3238 | 3907 | return "error : ".$e->getMessage(); |
3239 | 3908 | } |
3240 | 3909 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
3241 | - if ($row['nb'] > 0) return false; |
|
3242 | - else return true; |
|
3910 | + if ($row['nb'] > 0) { |
|
3911 | + return false; |
|
3912 | + } else { |
|
3913 | + return true; |
|
3914 | + } |
|
3243 | 3915 | } |
3244 | 3916 | |
3245 | 3917 | public static function insert_last_marine_identity_update() { |
@@ -10,7 +10,9 @@ discard block |
||
10 | 10 | public static function import_file($filename) { |
11 | 11 | $filename = filter_var($filename,FILTER_SANITIZE_STRING); |
12 | 12 | $Connection = new Connection(); |
13 | - if (!$Connection->connectionExists()) return 'error: DB connection failed'; |
|
13 | + if (!$Connection->connectionExists()) { |
|
14 | + return 'error: DB connection failed'; |
|
15 | + } |
|
14 | 16 | //Connection::$db->beginTransaction(); |
15 | 17 | $templine = ''; |
16 | 18 | $handle = @fopen($filename,"r"); |
@@ -19,7 +21,9 @@ discard block |
||
19 | 21 | //foreach ($lines as $line) |
20 | 22 | while (($line = fgets($handle,4096)) !== false) |
21 | 23 | { |
22 | - if (substr($line,0,2) == '--' || $line == '') continue; |
|
24 | + if (substr($line,0,2) == '--' || $line == '') { |
|
25 | + continue; |
|
26 | + } |
|
23 | 27 | $templine .= $line; |
24 | 28 | if (substr(trim($line), -1,1) == ';') |
25 | 29 | { |
@@ -45,7 +49,9 @@ discard block |
||
45 | 49 | //foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory)) as $filename) |
46 | 50 | while(false !== ($filename = readdir($dh))) |
47 | 51 | { |
48 | - if (preg_match('/\.sql$/',$filename)) $error .= create_db::import_file($directory.$filename); |
|
52 | + if (preg_match('/\.sql$/',$filename)) { |
|
53 | + $error .= create_db::import_file($directory.$filename); |
|
54 | + } |
|
49 | 55 | } |
50 | 56 | return $error; |
51 | 57 | } |
@@ -58,19 +64,29 @@ discard block |
||
58 | 64 | $db = filter_var($db,FILTER_SANITIZE_STRING); |
59 | 65 | $db_type = filter_var($db_type,FILTER_SANITIZE_STRING); |
60 | 66 | $host = filter_var($host,FILTER_SANITIZE_STRING); |
61 | - if ($db_type == 'mysql' && $port == '') $port = 3306; |
|
62 | - elseif ($port == '') $port = 5432; |
|
67 | + if ($db_type == 'mysql' && $port == '') { |
|
68 | + $port = 3306; |
|
69 | + } elseif ($port == '') { |
|
70 | + $port = 5432; |
|
71 | + } |
|
63 | 72 | // Dirty hack |
64 | 73 | if ($host != 'localhost' && $host != '127.0.0.1') { |
65 | 74 | $grantright = $_SERVER['SERVER_ADDR']; |
66 | - } else $grantright = 'localhost'; |
|
75 | + } else { |
|
76 | + $grantright = 'localhost'; |
|
77 | + } |
|
67 | 78 | try { |
68 | - if ($host == 'localhost') $dbh = new PDO($db_type.':host=127.0.0.1',$root,$root_pass); |
|
69 | - else $dbh = new PDO($db_type.':host='.$host.';port='.$port,$root,$root_pass); |
|
79 | + if ($host == 'localhost') { |
|
80 | + $dbh = new PDO($db_type.':host=127.0.0.1',$root,$root_pass); |
|
81 | + } else { |
|
82 | + $dbh = new PDO($db_type.':host='.$host.';port='.$port,$root,$root_pass); |
|
83 | + } |
|
70 | 84 | $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); |
71 | 85 | if ($db_type == 'mysql') { |
72 | 86 | $dbh->exec('CREATE DATABASE IF NOT EXISTS `'.$db.'`;GRANT ALL ON `'.$db."`.* TO '".$user."'@'".$grantright."' IDENTIFIED BY '".$password."';FLUSH PRIVILEGES;"); |
73 | - if ($grantright == 'localhost') $dbh->exec('GRANT ALL ON `'.$db."`.* TO '".$user."'@'127.0.0.1' IDENTIFIED BY '".$password."';FLUSH PRIVILEGES;"); |
|
87 | + if ($grantright == 'localhost') { |
|
88 | + $dbh->exec('GRANT ALL ON `'.$db."`.* TO '".$user."'@'127.0.0.1' IDENTIFIED BY '".$password."';FLUSH PRIVILEGES;"); |
|
89 | + } |
|
74 | 90 | } else if ($db_type == 'pgsql') { |
75 | 91 | $dbh->exec("CREATE DATABASE ".$db.";"); |
76 | 92 | $dbh->exec("CREATE USER ".$user." WITH PASSWORD '".$password."'; |