@@ -15,8 +15,8 @@ discard block |
||
| 15 | 15 | require_once(dirname(__FILE__).'/../require/class.Common.php'); |
| 16 | 16 | if (isset($globalTracker) && $globalTracker) require_once(dirname(__FILE__).'/../require/class.TrackerImport.php'); |
| 17 | 17 | if (isset($globalMarine) && $globalMarine) { |
| 18 | - require_once(dirname(__FILE__).'/../require/class.AIS.php'); |
|
| 19 | - require_once(dirname(__FILE__).'/../require/class.MarineImport.php'); |
|
| 18 | + require_once(dirname(__FILE__).'/../require/class.AIS.php'); |
|
| 19 | + require_once(dirname(__FILE__).'/../require/class.MarineImport.php'); |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | if (!isset($globalDebug)) $globalDebug = FALSE; |
@@ -24,42 +24,42 @@ discard block |
||
| 24 | 24 | // Check if schema is at latest version |
| 25 | 25 | $Connection = new Connection(); |
| 26 | 26 | if ($Connection->latest() === false) { |
| 27 | - echo "You MUST update to latest schema. Run install/index.php"; |
|
| 28 | - exit(); |
|
| 27 | + echo "You MUST update to latest schema. Run install/index.php"; |
|
| 28 | + exit(); |
|
| 29 | 29 | } |
| 30 | 30 | if (PHP_SAPI != 'cli') { |
| 31 | - echo "This script MUST be called from console, not a web browser."; |
|
| 31 | + echo "This script MUST be called from console, not a web browser."; |
|
| 32 | 32 | // exit(); |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | // This is to be compatible with old version of settings.php |
| 36 | 36 | if (!isset($globalSources)) { |
| 37 | - if (isset($globalSBS1Hosts)) { |
|
| 38 | - //$hosts = $globalSBS1Hosts; |
|
| 39 | - foreach ($globalSBS1Hosts as $host) { |
|
| 40 | - $globalSources[] = array('host' => $host); |
|
| 41 | - } |
|
| 42 | - } else { |
|
| 43 | - if (!isset($globalSBS1Host)) { |
|
| 44 | - echo '$globalSources MUST be defined !'; |
|
| 45 | - die; |
|
| 37 | + if (isset($globalSBS1Hosts)) { |
|
| 38 | + //$hosts = $globalSBS1Hosts; |
|
| 39 | + foreach ($globalSBS1Hosts as $host) { |
|
| 40 | + $globalSources[] = array('host' => $host); |
|
| 41 | + } |
|
| 42 | + } else { |
|
| 43 | + if (!isset($globalSBS1Host)) { |
|
| 44 | + echo '$globalSources MUST be defined !'; |
|
| 45 | + die; |
|
| 46 | 46 | } |
| 47 | 47 | //$hosts = array($globalSBS1Host.':'.$globalSBS1Port); |
| 48 | 48 | $globalSources[] = array('host' => $globalSBS1Host,'port' => $globalSBS1Port); |
| 49 | - } |
|
| 49 | + } |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | $options = getopt('s::',array('source::','server','nodaemon','idsource::','aprsserverssid::','aprsserverpass::','aprsserverhost::','aprsserverport::','format::','noaprsserver')); |
| 53 | 53 | //if (isset($options['s'])) $hosts = array($options['s']); |
| 54 | 54 | //elseif (isset($options['source'])) $hosts = array($options['source']); |
| 55 | 55 | if (isset($options['s'])) { |
| 56 | - $globalSources = array(); |
|
| 57 | - if (isset($options['format'])) $globalSources[] = array('host' => $options['s'],'format' => $options['format']); |
|
| 58 | - else $globalSources[] = array('host' => $options['s']); |
|
| 56 | + $globalSources = array(); |
|
| 57 | + if (isset($options['format'])) $globalSources[] = array('host' => $options['s'],'format' => $options['format']); |
|
| 58 | + else $globalSources[] = array('host' => $options['s']); |
|
| 59 | 59 | } elseif (isset($options['source'])) { |
| 60 | - $globalSources = array(); |
|
| 61 | - if (isset($options['format'])) $globalSources[] = array('host' => $options['source'],'format' => $options['format']); |
|
| 62 | - else $globalSources[] = array('host' => $options['source']); |
|
| 60 | + $globalSources = array(); |
|
| 61 | + if (isset($options['format'])) $globalSources[] = array('host' => $options['source'],'format' => $options['format']); |
|
| 62 | + else $globalSources[] = array('host' => $options['source']); |
|
| 63 | 63 | } |
| 64 | 64 | if (isset($options['aprsserverhost'])) { |
| 65 | 65 | $globalServerAPRS = TRUE; |
@@ -74,8 +74,8 @@ discard block |
||
| 74 | 74 | if (isset($options['idsource'])) $id_source = $options['idsource']; |
| 75 | 75 | else $id_source = 1; |
| 76 | 76 | if (isset($globalServer) && $globalServer) { |
| 77 | - if ($globalDebug) echo "Using Server Mode\n"; |
|
| 78 | - $SI=new SpotterServer(); |
|
| 77 | + if ($globalDebug) echo "Using Server Mode\n"; |
|
| 78 | + $SI=new SpotterServer(); |
|
| 79 | 79 | /* |
| 80 | 80 | require_once(dirname(__FILE__).'/../require/class.APRS.php'); |
| 81 | 81 | $SI = new adsb2aprs(); |
@@ -84,8 +84,8 @@ discard block |
||
| 84 | 84 | } else $SI=new SpotterImport($Connection->db); |
| 85 | 85 | if (isset($globalTracker) && $globalTracker) $TI = new TrackerImport($Connection->db); |
| 86 | 86 | if (isset($globalMarine) && $globalMarine) { |
| 87 | - $AIS = new AIS(); |
|
| 88 | - $MI = new MarineImport($Connection->db); |
|
| 87 | + $AIS = new AIS(); |
|
| 88 | + $MI = new MarineImport($Connection->db); |
|
| 89 | 89 | } |
| 90 | 90 | //$APRS=new APRS($Connection->db); |
| 91 | 91 | $SBS=new SBS(); |
@@ -95,12 +95,12 @@ discard block |
||
| 95 | 95 | //$servertz = system('date +%Z'); |
| 96 | 96 | // signal handler - playing nice with sockets and dump1090 |
| 97 | 97 | if (function_exists('pcntl_fork')) { |
| 98 | - pcntl_signal(SIGINT, function() { |
|
| 99 | - global $sockets; |
|
| 100 | - echo "\n\nctrl-c or kill signal received. Tidying up ... "; |
|
| 101 | - die("Bye!\n"); |
|
| 102 | - }); |
|
| 103 | - pcntl_signal_dispatch(); |
|
| 98 | + pcntl_signal(SIGINT, function() { |
|
| 99 | + global $sockets; |
|
| 100 | + echo "\n\nctrl-c or kill signal received. Tidying up ... "; |
|
| 101 | + die("Bye!\n"); |
|
| 102 | + }); |
|
| 103 | + pcntl_signal_dispatch(); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | // let's try and connect |
@@ -110,153 +110,153 @@ discard block |
||
| 110 | 110 | $reset = 0; |
| 111 | 111 | |
| 112 | 112 | function connect_all($hosts) { |
| 113 | - //global $sockets, $formats, $globalDebug,$aprs_connect,$last_exec, $globalSourcesRights, $use_aprs; |
|
| 114 | - global $sockets,$httpfeeds, $globalSources, $globalDebug,$aprs_connect,$last_exec, $globalSourcesRights, $use_aprs, $reset,$context; |
|
| 115 | - $reset++; |
|
| 116 | - if ($globalDebug) echo 'Connect to all...'."\n"; |
|
| 117 | - foreach ($hosts as $id => $value) { |
|
| 113 | + //global $sockets, $formats, $globalDebug,$aprs_connect,$last_exec, $globalSourcesRights, $use_aprs; |
|
| 114 | + global $sockets,$httpfeeds, $globalSources, $globalDebug,$aprs_connect,$last_exec, $globalSourcesRights, $use_aprs, $reset,$context; |
|
| 115 | + $reset++; |
|
| 116 | + if ($globalDebug) echo 'Connect to all...'."\n"; |
|
| 117 | + foreach ($hosts as $id => $value) { |
|
| 118 | 118 | $host = $value['host']; |
| 119 | 119 | $globalSources[$id]['last_exec'] = 0; |
| 120 | 120 | // Here we check type of source(s) |
| 121 | 121 | if (filter_var($host,FILTER_VALIDATE_URL) && (!isset($globalSources[$id]['format']) || strtolower($globalSources[$id]['format']) == 'auto')) { |
| 122 | - if (preg_match('/deltadb.txt$/i',$host)) { |
|
| 123 | - //$formats[$id] = 'deltadbtxt'; |
|
| 124 | - $globalSources[$id]['format'] = 'deltadbtxt'; |
|
| 125 | - //$last_exec['deltadbtxt'] = 0; |
|
| 126 | - if ($globalDebug) echo "Connect to deltadb source (".$host.")...\n"; |
|
| 127 | - } else if (preg_match('/vatsim-data.txt$/i',$host)) { |
|
| 128 | - //$formats[$id] = 'vatsimtxt'; |
|
| 129 | - $globalSources[$id]['format'] = 'vatsimtxt'; |
|
| 130 | - //$last_exec['vatsimtxt'] = 0; |
|
| 131 | - if ($globalDebug) echo "Connect to vatsim source (".$host.")...\n"; |
|
| 132 | - } else if (preg_match('/aircraftlist.json$/i',$host)) { |
|
| 133 | - //$formats[$id] = 'aircraftlistjson'; |
|
| 134 | - $globalSources[$id]['format'] = 'aircraftlistjson'; |
|
| 135 | - //$last_exec['aircraftlistjson'] = 0; |
|
| 136 | - if ($globalDebug) echo "Connect to aircraftlist.json source (".$host.")...\n"; |
|
| 137 | - } else if (preg_match('/opensky/i',$host)) { |
|
| 138 | - //$formats[$id] = 'aircraftlistjson'; |
|
| 139 | - $globalSources[$id]['format'] = 'opensky'; |
|
| 140 | - //$last_exec['aircraftlistjson'] = 0; |
|
| 141 | - if ($globalDebug) echo "Connect to opensky source (".$host.")...\n"; |
|
| 142 | - } else if (preg_match('/radarvirtuel.com\/file.json$/i',$host)) { |
|
| 143 | - //$formats[$id] = 'radarvirtueljson'; |
|
| 144 | - $globalSources[$id]['format'] = 'radarvirtueljson'; |
|
| 145 | - //$last_exec['radarvirtueljson'] = 0; |
|
| 146 | - if ($globalDebug) echo "Connect to radarvirtuel.com/file.json source (".$host.")...\n"; |
|
| 147 | - if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
|
| 148 | - echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
|
| 149 | - exit(0); |
|
| 150 | - } |
|
| 151 | - } else if (preg_match('/planeUpdateFAA.php$/i',$host)) { |
|
| 152 | - //$formats[$id] = 'planeupdatefaa'; |
|
| 153 | - $globalSources[$id]['format'] = 'planeupdatefaa'; |
|
| 154 | - //$last_exec['planeupdatefaa'] = 0; |
|
| 155 | - if ($globalDebug) echo "Connect to planeUpdateFAA.php source (".$host.")...\n"; |
|
| 156 | - if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
|
| 157 | - echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
|
| 158 | - exit(0); |
|
| 159 | - } |
|
| 160 | - } else if (preg_match('/\/action.php\/acars\/data$/i',$host)) { |
|
| 161 | - //$formats[$id] = 'phpvmacars'; |
|
| 162 | - $globalSources[$id]['format'] = 'phpvmacars'; |
|
| 163 | - //$last_exec['phpvmacars'] = 0; |
|
| 164 | - if ($globalDebug) echo "Connect to phpvmacars source (".$host.")...\n"; |
|
| 165 | - } else if (preg_match('/VAM-json.php$/i',$host)) { |
|
| 166 | - //$formats[$id] = 'phpvmacars'; |
|
| 167 | - $globalSources[$id]['format'] = 'vam'; |
|
| 168 | - if ($globalDebug) echo "Connect to Vam source (".$host.")...\n"; |
|
| 169 | - } else if (preg_match('/whazzup/i',$host)) { |
|
| 170 | - //$formats[$id] = 'whazzup'; |
|
| 171 | - $globalSources[$id]['format'] = 'whazzup'; |
|
| 172 | - //$last_exec['whazzup'] = 0; |
|
| 173 | - if ($globalDebug) echo "Connect to whazzup source (".$host.")...\n"; |
|
| 174 | - } else if (preg_match('/recentpireps/i',$host)) { |
|
| 175 | - //$formats[$id] = 'pirepsjson'; |
|
| 176 | - $globalSources[$id]['format'] = 'pirepsjson'; |
|
| 177 | - //$last_exec['pirepsjson'] = 0; |
|
| 178 | - if ($globalDebug) echo "Connect to pirepsjson source (".$host.")...\n"; |
|
| 179 | - } else if (preg_match(':data.fr24.com/zones/fcgi/feed.js:i',$host)) { |
|
| 180 | - //$formats[$id] = 'fr24json'; |
|
| 181 | - $globalSources[$id]['format'] = 'fr24json'; |
|
| 182 | - //$last_exec['fr24json'] = 0; |
|
| 183 | - if ($globalDebug) echo "Connect to fr24 source (".$host.")...\n"; |
|
| 184 | - if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
|
| 185 | - echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
|
| 186 | - exit(0); |
|
| 187 | - } |
|
| 188 | - } else if (preg_match(':myshiptracking.com/:i',$host)) { |
|
| 189 | - //$formats[$id] = 'fr24json'; |
|
| 190 | - $globalSources[$id]['format'] = 'myshiptracking'; |
|
| 191 | - //$last_exec['fr24json'] = 0; |
|
| 192 | - if ($globalDebug) echo "Connect to myshiptracking source (".$host.")...\n"; |
|
| 193 | - if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
|
| 194 | - echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
|
| 195 | - exit(0); |
|
| 196 | - } |
|
| 197 | - //} else if (preg_match('/10001/',$host)) { |
|
| 198 | - } else if (preg_match('/10001/',$host) || (isset($globalSources[$id]['port']) && $globalSources[$id]['port'] == '10001')) { |
|
| 199 | - //$formats[$id] = 'tsv'; |
|
| 200 | - $globalSources[$id]['format'] = 'tsv'; |
|
| 201 | - if ($globalDebug) echo "Connect to tsv source (".$host.")...\n"; |
|
| 202 | - } |
|
| 203 | - } elseif (filter_var($host,FILTER_VALIDATE_URL)) { |
|
| 204 | - if ($globalSources[$id]['format'] == 'aisnmeahttp') { |
|
| 205 | - $idf = fopen($globalSources[$id]['host'],'r',false,$context); |
|
| 206 | - if ($idf !== false) { |
|
| 207 | - $httpfeeds[$id] = $idf; |
|
| 208 | - if ($globalDebug) echo "Connected to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
|
| 209 | - } |
|
| 210 | - elseif ($globalDebug) echo "Can't connect to ".$globalSources[$id]['host']."\n"; |
|
| 211 | - } elseif ($globalDebug) echo "Connect to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
|
| 212 | - } elseif (!filter_var($host,FILTER_VALIDATE_URL)) { |
|
| 213 | - $hostport = explode(':',$host); |
|
| 214 | - if (isset($hostport[1])) { |
|
| 122 | + if (preg_match('/deltadb.txt$/i',$host)) { |
|
| 123 | + //$formats[$id] = 'deltadbtxt'; |
|
| 124 | + $globalSources[$id]['format'] = 'deltadbtxt'; |
|
| 125 | + //$last_exec['deltadbtxt'] = 0; |
|
| 126 | + if ($globalDebug) echo "Connect to deltadb source (".$host.")...\n"; |
|
| 127 | + } else if (preg_match('/vatsim-data.txt$/i',$host)) { |
|
| 128 | + //$formats[$id] = 'vatsimtxt'; |
|
| 129 | + $globalSources[$id]['format'] = 'vatsimtxt'; |
|
| 130 | + //$last_exec['vatsimtxt'] = 0; |
|
| 131 | + if ($globalDebug) echo "Connect to vatsim source (".$host.")...\n"; |
|
| 132 | + } else if (preg_match('/aircraftlist.json$/i',$host)) { |
|
| 133 | + //$formats[$id] = 'aircraftlistjson'; |
|
| 134 | + $globalSources[$id]['format'] = 'aircraftlistjson'; |
|
| 135 | + //$last_exec['aircraftlistjson'] = 0; |
|
| 136 | + if ($globalDebug) echo "Connect to aircraftlist.json source (".$host.")...\n"; |
|
| 137 | + } else if (preg_match('/opensky/i',$host)) { |
|
| 138 | + //$formats[$id] = 'aircraftlistjson'; |
|
| 139 | + $globalSources[$id]['format'] = 'opensky'; |
|
| 140 | + //$last_exec['aircraftlistjson'] = 0; |
|
| 141 | + if ($globalDebug) echo "Connect to opensky source (".$host.")...\n"; |
|
| 142 | + } else if (preg_match('/radarvirtuel.com\/file.json$/i',$host)) { |
|
| 143 | + //$formats[$id] = 'radarvirtueljson'; |
|
| 144 | + $globalSources[$id]['format'] = 'radarvirtueljson'; |
|
| 145 | + //$last_exec['radarvirtueljson'] = 0; |
|
| 146 | + if ($globalDebug) echo "Connect to radarvirtuel.com/file.json source (".$host.")...\n"; |
|
| 147 | + if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
|
| 148 | + echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
|
| 149 | + exit(0); |
|
| 150 | + } |
|
| 151 | + } else if (preg_match('/planeUpdateFAA.php$/i',$host)) { |
|
| 152 | + //$formats[$id] = 'planeupdatefaa'; |
|
| 153 | + $globalSources[$id]['format'] = 'planeupdatefaa'; |
|
| 154 | + //$last_exec['planeupdatefaa'] = 0; |
|
| 155 | + if ($globalDebug) echo "Connect to planeUpdateFAA.php source (".$host.")...\n"; |
|
| 156 | + if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
|
| 157 | + echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
|
| 158 | + exit(0); |
|
| 159 | + } |
|
| 160 | + } else if (preg_match('/\/action.php\/acars\/data$/i',$host)) { |
|
| 161 | + //$formats[$id] = 'phpvmacars'; |
|
| 162 | + $globalSources[$id]['format'] = 'phpvmacars'; |
|
| 163 | + //$last_exec['phpvmacars'] = 0; |
|
| 164 | + if ($globalDebug) echo "Connect to phpvmacars source (".$host.")...\n"; |
|
| 165 | + } else if (preg_match('/VAM-json.php$/i',$host)) { |
|
| 166 | + //$formats[$id] = 'phpvmacars'; |
|
| 167 | + $globalSources[$id]['format'] = 'vam'; |
|
| 168 | + if ($globalDebug) echo "Connect to Vam source (".$host.")...\n"; |
|
| 169 | + } else if (preg_match('/whazzup/i',$host)) { |
|
| 170 | + //$formats[$id] = 'whazzup'; |
|
| 171 | + $globalSources[$id]['format'] = 'whazzup'; |
|
| 172 | + //$last_exec['whazzup'] = 0; |
|
| 173 | + if ($globalDebug) echo "Connect to whazzup source (".$host.")...\n"; |
|
| 174 | + } else if (preg_match('/recentpireps/i',$host)) { |
|
| 175 | + //$formats[$id] = 'pirepsjson'; |
|
| 176 | + $globalSources[$id]['format'] = 'pirepsjson'; |
|
| 177 | + //$last_exec['pirepsjson'] = 0; |
|
| 178 | + if ($globalDebug) echo "Connect to pirepsjson source (".$host.")...\n"; |
|
| 179 | + } else if (preg_match(':data.fr24.com/zones/fcgi/feed.js:i',$host)) { |
|
| 180 | + //$formats[$id] = 'fr24json'; |
|
| 181 | + $globalSources[$id]['format'] = 'fr24json'; |
|
| 182 | + //$last_exec['fr24json'] = 0; |
|
| 183 | + if ($globalDebug) echo "Connect to fr24 source (".$host.")...\n"; |
|
| 184 | + if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
|
| 185 | + echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
|
| 186 | + exit(0); |
|
| 187 | + } |
|
| 188 | + } else if (preg_match(':myshiptracking.com/:i',$host)) { |
|
| 189 | + //$formats[$id] = 'fr24json'; |
|
| 190 | + $globalSources[$id]['format'] = 'myshiptracking'; |
|
| 191 | + //$last_exec['fr24json'] = 0; |
|
| 192 | + if ($globalDebug) echo "Connect to myshiptracking source (".$host.")...\n"; |
|
| 193 | + if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
|
| 194 | + echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
|
| 195 | + exit(0); |
|
| 196 | + } |
|
| 197 | + //} else if (preg_match('/10001/',$host)) { |
|
| 198 | + } else if (preg_match('/10001/',$host) || (isset($globalSources[$id]['port']) && $globalSources[$id]['port'] == '10001')) { |
|
| 199 | + //$formats[$id] = 'tsv'; |
|
| 200 | + $globalSources[$id]['format'] = 'tsv'; |
|
| 201 | + if ($globalDebug) echo "Connect to tsv source (".$host.")...\n"; |
|
| 202 | + } |
|
| 203 | + } elseif (filter_var($host,FILTER_VALIDATE_URL)) { |
|
| 204 | + if ($globalSources[$id]['format'] == 'aisnmeahttp') { |
|
| 205 | + $idf = fopen($globalSources[$id]['host'],'r',false,$context); |
|
| 206 | + if ($idf !== false) { |
|
| 207 | + $httpfeeds[$id] = $idf; |
|
| 208 | + if ($globalDebug) echo "Connected to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
|
| 209 | + } |
|
| 210 | + elseif ($globalDebug) echo "Can't connect to ".$globalSources[$id]['host']."\n"; |
|
| 211 | + } elseif ($globalDebug) echo "Connect to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
|
| 212 | + } elseif (!filter_var($host,FILTER_VALIDATE_URL)) { |
|
| 213 | + $hostport = explode(':',$host); |
|
| 214 | + if (isset($hostport[1])) { |
|
| 215 | 215 | $port = $hostport[1]; |
| 216 | 216 | $hostn = $hostport[0]; |
| 217 | - } else { |
|
| 217 | + } else { |
|
| 218 | 218 | $port = $globalSources[$id]['port']; |
| 219 | 219 | $hostn = $globalSources[$id]['host']; |
| 220 | - } |
|
| 221 | - $Common = new Common(); |
|
| 222 | - if (!isset($globalSources[$id]['format']) || ($globalSources[$id]['format'] != 'acars' && $globalSources[$id]['format'] != 'flightgearsp')) { |
|
| 223 | - $s = $Common->create_socket($hostn,$port, $errno, $errstr); |
|
| 224 | - } else { |
|
| 225 | - $s = $Common->create_socket_udp($hostn,$port, $errno, $errstr); |
|
| 226 | - } |
|
| 227 | - if ($s) { |
|
| 228 | - $sockets[$id] = $s; |
|
| 229 | - if (!isset($globalSources[$id]['format']) || strtolower($globalSources[$id]['format']) == 'auto') { |
|
| 230 | - if (preg_match('/aprs/',$hostn) || $port == '10152' || $port == '14580') { |
|
| 220 | + } |
|
| 221 | + $Common = new Common(); |
|
| 222 | + if (!isset($globalSources[$id]['format']) || ($globalSources[$id]['format'] != 'acars' && $globalSources[$id]['format'] != 'flightgearsp')) { |
|
| 223 | + $s = $Common->create_socket($hostn,$port, $errno, $errstr); |
|
| 224 | + } else { |
|
| 225 | + $s = $Common->create_socket_udp($hostn,$port, $errno, $errstr); |
|
| 226 | + } |
|
| 227 | + if ($s) { |
|
| 228 | + $sockets[$id] = $s; |
|
| 229 | + if (!isset($globalSources[$id]['format']) || strtolower($globalSources[$id]['format']) == 'auto') { |
|
| 230 | + if (preg_match('/aprs/',$hostn) || $port == '10152' || $port == '14580') { |
|
| 231 | 231 | //$formats[$id] = 'aprs'; |
| 232 | 232 | $globalSources[$id]['format'] = 'aprs'; |
| 233 | 233 | //$aprs_connect = 0; |
| 234 | 234 | //$use_aprs = true; |
| 235 | - } elseif (preg_match('/pub-vrs/',$hostn) || $port == '32001' || $port == '32005' || $port == '32010' || $port == '32015' || $port == '32030') { |
|
| 235 | + } elseif (preg_match('/pub-vrs/',$hostn) || $port == '32001' || $port == '32005' || $port == '32010' || $port == '32015' || $port == '32030') { |
|
| 236 | 236 | $globalSources[$id]['format'] = 'vrstcp'; |
| 237 | - } elseif ($port == '10001') { |
|
| 238 | - //$formats[$id] = 'tsv'; |
|
| 239 | - $globalSources[$id]['format'] = 'tsv'; |
|
| 240 | - } elseif ($port == '30002') { |
|
| 241 | - //$formats[$id] = 'raw'; |
|
| 242 | - $globalSources[$id]['format'] = 'raw'; |
|
| 243 | - } elseif ($port == '5001') { |
|
| 244 | - //$formats[$id] = 'raw'; |
|
| 245 | - $globalSources[$id]['format'] = 'flightgearmp'; |
|
| 246 | - } elseif ($port == '30005') { |
|
| 237 | + } elseif ($port == '10001') { |
|
| 238 | + //$formats[$id] = 'tsv'; |
|
| 239 | + $globalSources[$id]['format'] = 'tsv'; |
|
| 240 | + } elseif ($port == '30002') { |
|
| 241 | + //$formats[$id] = 'raw'; |
|
| 242 | + $globalSources[$id]['format'] = 'raw'; |
|
| 243 | + } elseif ($port == '5001') { |
|
| 244 | + //$formats[$id] = 'raw'; |
|
| 245 | + $globalSources[$id]['format'] = 'flightgearmp'; |
|
| 246 | + } elseif ($port == '30005') { |
|
| 247 | 247 | // Not yet supported |
| 248 | - //$formats[$id] = 'beast'; |
|
| 249 | - $globalSources[$id]['format'] = 'beast'; |
|
| 250 | - //} else $formats[$id] = 'sbs'; |
|
| 251 | - } else $globalSources[$id]['format'] = 'sbs'; |
|
| 252 | - //if ($globalDebug) echo 'Connection in progress to '.$host.'('.$formats[$id].')....'."\n"; |
|
| 248 | + //$formats[$id] = 'beast'; |
|
| 249 | + $globalSources[$id]['format'] = 'beast'; |
|
| 250 | + //} else $formats[$id] = 'sbs'; |
|
| 251 | + } else $globalSources[$id]['format'] = 'sbs'; |
|
| 252 | + //if ($globalDebug) echo 'Connection in progress to '.$host.'('.$formats[$id].')....'."\n"; |
|
| 253 | 253 | } |
| 254 | 254 | if ($globalDebug) echo 'Connection in progress to '.$hostn.':'.$port.' ('.$globalSources[$id]['format'].')....'."\n"; |
| 255 | - } else { |
|
| 255 | + } else { |
|
| 256 | 256 | if ($globalDebug) echo 'Connection failed to '.$hostn.':'.$port.' : '.$errno.' '.$errstr."\n"; |
| 257 | - } |
|
| 258 | - } |
|
| 259 | - } |
|
| 257 | + } |
|
| 258 | + } |
|
| 259 | + } |
|
| 260 | 260 | } |
| 261 | 261 | if (!isset($globalMinFetch)) $globalMinFetch = 15; |
| 262 | 262 | |
@@ -279,9 +279,9 @@ discard block |
||
| 279 | 279 | //connect_all($globalSources); |
| 280 | 280 | |
| 281 | 281 | if (isset($globalProxy) && $globalProxy) { |
| 282 | - $context = stream_context_create(array('http' => array('timeout' => $timeout,'proxy' => $globalProxy,'request_fulluri' => true))); |
|
| 282 | + $context = stream_context_create(array('http' => array('timeout' => $timeout,'proxy' => $globalProxy,'request_fulluri' => true))); |
|
| 283 | 283 | } else { |
| 284 | - $context = stream_context_create(array('http' => array('timeout' => $timeout))); |
|
| 284 | + $context = stream_context_create(array('http' => array('timeout' => $timeout))); |
|
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | // APRS Configuration |
@@ -290,18 +290,18 @@ discard block |
||
| 290 | 290 | die; |
| 291 | 291 | } |
| 292 | 292 | foreach ($globalSources as $key => $source) { |
| 293 | - if (!isset($source['format'])) { |
|
| 294 | - $globalSources[$key]['format'] = 'auto'; |
|
| 295 | - } |
|
| 293 | + if (!isset($source['format'])) { |
|
| 294 | + $globalSources[$key]['format'] = 'auto'; |
|
| 295 | + } |
|
| 296 | 296 | } |
| 297 | 297 | connect_all($globalSources); |
| 298 | 298 | foreach ($globalSources as $key => $source) { |
| 299 | - if (isset($source['format']) && $source['format'] == 'aprs') { |
|
| 299 | + if (isset($source['format']) && $source['format'] == 'aprs') { |
|
| 300 | 300 | $aprs_connect = 0; |
| 301 | 301 | $use_aprs = true; |
| 302 | 302 | if (isset($source['port']) && $source['port'] == '10152') $aprs_full = true; |
| 303 | 303 | break; |
| 304 | - } |
|
| 304 | + } |
|
| 305 | 305 | } |
| 306 | 306 | |
| 307 | 307 | if ($use_aprs) { |
@@ -342,117 +342,117 @@ discard block |
||
| 342 | 342 | |
| 343 | 343 | // Infinite loop if daemon, else work for time defined in $globalCronEnd or only one time. |
| 344 | 344 | while ($i > 0) { |
| 345 | - if (!$globalDaemon) $i = $endtime-time(); |
|
| 346 | - // Delete old ATC |
|
| 347 | - if ($globalDaemon && ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM))) { |
|
| 345 | + if (!$globalDaemon) $i = $endtime-time(); |
|
| 346 | + // Delete old ATC |
|
| 347 | + if ($globalDaemon && ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM))) { |
|
| 348 | 348 | if ($globalDebug) echo 'Delete old ATC...'."\n"; |
| 349 | - $ATC->deleteOldATC(); |
|
| 350 | - } |
|
| 349 | + $ATC->deleteOldATC(); |
|
| 350 | + } |
|
| 351 | 351 | |
| 352 | - //if (count($last_exec) > 0) { |
|
| 353 | - if (count($last_exec) == count($globalSources)) { |
|
| 352 | + //if (count($last_exec) > 0) { |
|
| 353 | + if (count($last_exec) == count($globalSources)) { |
|
| 354 | 354 | $max = $globalMinFetch; |
| 355 | 355 | foreach ($last_exec as $last) { |
| 356 | - if ((time() - $last['last']) < $max) $max = time() - $last['last']; |
|
| 356 | + if ((time() - $last['last']) < $max) $max = time() - $last['last']; |
|
| 357 | 357 | } |
| 358 | 358 | if ($max != $globalMinFetch) { |
| 359 | - if ($globalDebug) echo 'Sleeping...'."\n"; |
|
| 360 | - sleep($globalMinFetch-$max+2); |
|
| 359 | + if ($globalDebug) echo 'Sleeping...'."\n"; |
|
| 360 | + sleep($globalMinFetch-$max+2); |
|
| 361 | + } |
|
| 361 | 362 | } |
| 362 | - } |
|
| 363 | 363 | |
| 364 | 364 | |
| 365 | - //foreach ($formats as $id => $value) { |
|
| 366 | - foreach ($globalSources as $id => $value) { |
|
| 365 | + //foreach ($formats as $id => $value) { |
|
| 366 | + foreach ($globalSources as $id => $value) { |
|
| 367 | 367 | date_default_timezone_set('UTC'); |
| 368 | 368 | if (!isset($last_exec[$id]['last'])) $last_exec[$id]['last'] = 0; |
| 369 | 369 | if ($value['format'] == 'deltadbtxt' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
| 370 | - //$buffer = $Common->getData($hosts[$id]); |
|
| 371 | - $buffer = $Common->getData($value['host']); |
|
| 372 | - if ($buffer != '') $reset = 0; |
|
| 373 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 374 | - $buffer = explode('\n',$buffer); |
|
| 375 | - foreach ($buffer as $line) { |
|
| 376 | - if ($line != '' && count($line) > 7) { |
|
| 377 | - $line = explode(',', $line); |
|
| 378 | - $data = array(); |
|
| 379 | - $data['hex'] = $line[1]; // hex |
|
| 380 | - $data['ident'] = $line[2]; // ident |
|
| 381 | - if (isset($line[3])) $data['altitude'] = $line[3]; // altitude |
|
| 382 | - if (isset($line[4])) $data['speed'] = $line[4]; // speed |
|
| 383 | - if (isset($line[5])) $data['heading'] = $line[5]; // heading |
|
| 384 | - if (isset($line[6])) $data['latitude'] = $line[6]; // lat |
|
| 385 | - if (isset($line[7])) $data['longitude'] = $line[7]; // long |
|
| 386 | - $data['verticalrate'] = ''; // vertical rate |
|
| 387 | - //if (isset($line[9])) $data['squawk'] = $line[9]; // squawk |
|
| 388 | - $data['emergency'] = ''; // emergency |
|
| 389 | - $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 390 | - $data['format_source'] = 'deltadbtxt'; |
|
| 391 | - $data['id_source'] = $id_source; |
|
| 392 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 393 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 394 | - if (isset($value['sourcestats'])) $data['sourcestats'] = $value['sourcestats']; |
|
| 395 | - $SI->add($data); |
|
| 396 | - unset($data); |
|
| 397 | - } |
|
| 398 | - } |
|
| 399 | - $last_exec[$id]['last'] = time(); |
|
| 370 | + //$buffer = $Common->getData($hosts[$id]); |
|
| 371 | + $buffer = $Common->getData($value['host']); |
|
| 372 | + if ($buffer != '') $reset = 0; |
|
| 373 | + $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 374 | + $buffer = explode('\n',$buffer); |
|
| 375 | + foreach ($buffer as $line) { |
|
| 376 | + if ($line != '' && count($line) > 7) { |
|
| 377 | + $line = explode(',', $line); |
|
| 378 | + $data = array(); |
|
| 379 | + $data['hex'] = $line[1]; // hex |
|
| 380 | + $data['ident'] = $line[2]; // ident |
|
| 381 | + if (isset($line[3])) $data['altitude'] = $line[3]; // altitude |
|
| 382 | + if (isset($line[4])) $data['speed'] = $line[4]; // speed |
|
| 383 | + if (isset($line[5])) $data['heading'] = $line[5]; // heading |
|
| 384 | + if (isset($line[6])) $data['latitude'] = $line[6]; // lat |
|
| 385 | + if (isset($line[7])) $data['longitude'] = $line[7]; // long |
|
| 386 | + $data['verticalrate'] = ''; // vertical rate |
|
| 387 | + //if (isset($line[9])) $data['squawk'] = $line[9]; // squawk |
|
| 388 | + $data['emergency'] = ''; // emergency |
|
| 389 | + $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 390 | + $data['format_source'] = 'deltadbtxt'; |
|
| 391 | + $data['id_source'] = $id_source; |
|
| 392 | + if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 393 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 394 | + if (isset($value['sourcestats'])) $data['sourcestats'] = $value['sourcestats']; |
|
| 395 | + $SI->add($data); |
|
| 396 | + unset($data); |
|
| 397 | + } |
|
| 398 | + } |
|
| 399 | + $last_exec[$id]['last'] = time(); |
|
| 400 | 400 | } elseif ($value['format'] == 'aisnmeatxt' && (time() - $last_exec[$id]['last'] > $globalMinFetch*3)) { |
| 401 | - date_default_timezone_set('CET'); |
|
| 402 | - $buffer = $Common->getData(str_replace('{date}',date('Ymd'),$value['host'])); |
|
| 403 | - date_default_timezone_set('UTC'); |
|
| 404 | - if ($buffer != '') $reset = 0; |
|
| 405 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 406 | - $buffer = explode('\n',$buffer); |
|
| 407 | - foreach ($buffer as $line) { |
|
| 401 | + date_default_timezone_set('CET'); |
|
| 402 | + $buffer = $Common->getData(str_replace('{date}',date('Ymd'),$value['host'])); |
|
| 403 | + date_default_timezone_set('UTC'); |
|
| 404 | + if ($buffer != '') $reset = 0; |
|
| 405 | + $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 406 | + $buffer = explode('\n',$buffer); |
|
| 407 | + foreach ($buffer as $line) { |
|
| 408 | 408 | if ($line != '') { |
| 409 | - echo "'".$line."'\n"; |
|
| 410 | - $add = false; |
|
| 411 | - $ais_data = $AIS->parse_line(trim($line)); |
|
| 412 | - $data = array(); |
|
| 413 | - if (isset($ais_data['ident'])) $data['ident'] = $ais_data['ident']; |
|
| 414 | - if (isset($ais_data['mmsi'])) $data['mmsi'] = $ais_data['mmsi']; |
|
| 415 | - if (isset($ais_data['speed'])) $data['speed'] = $ais_data['speed']; |
|
| 416 | - if (isset($ais_data['heading'])) $data['heading'] = $ais_data['heading']; |
|
| 417 | - if (isset($ais_data['latitude'])) $data['latitude'] = $ais_data['latitude']; |
|
| 418 | - if (isset($ais_data['longitude'])) $data['longitude'] = $ais_data['longitude']; |
|
| 419 | - if (isset($ais_data['status'])) $data['status'] = $ais_data['status']; |
|
| 420 | - if (isset($ais_data['type'])) $data['type'] = $ais_data['type']; |
|
| 421 | - if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
|
| 422 | - if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
|
| 423 | - if (isset($ais_data['timestamp'])) { |
|
| 409 | + echo "'".$line."'\n"; |
|
| 410 | + $add = false; |
|
| 411 | + $ais_data = $AIS->parse_line(trim($line)); |
|
| 412 | + $data = array(); |
|
| 413 | + if (isset($ais_data['ident'])) $data['ident'] = $ais_data['ident']; |
|
| 414 | + if (isset($ais_data['mmsi'])) $data['mmsi'] = $ais_data['mmsi']; |
|
| 415 | + if (isset($ais_data['speed'])) $data['speed'] = $ais_data['speed']; |
|
| 416 | + if (isset($ais_data['heading'])) $data['heading'] = $ais_data['heading']; |
|
| 417 | + if (isset($ais_data['latitude'])) $data['latitude'] = $ais_data['latitude']; |
|
| 418 | + if (isset($ais_data['longitude'])) $data['longitude'] = $ais_data['longitude']; |
|
| 419 | + if (isset($ais_data['status'])) $data['status'] = $ais_data['status']; |
|
| 420 | + if (isset($ais_data['type'])) $data['type'] = $ais_data['type']; |
|
| 421 | + if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
|
| 422 | + if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
|
| 423 | + if (isset($ais_data['timestamp'])) { |
|
| 424 | 424 | $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
| 425 | 425 | if (!isset($last_exec[$id]['timestamp']) || $ais_data['timestamp'] >= $last_exec[$id]['timestamp']) { |
| 426 | - $last_exec[$id]['timestamp'] = $ais_data['timestamp']; |
|
| 427 | - $add = true; |
|
| 426 | + $last_exec[$id]['timestamp'] = $ais_data['timestamp']; |
|
| 427 | + $add = true; |
|
| 428 | 428 | } |
| 429 | - } else { |
|
| 429 | + } else { |
|
| 430 | 430 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 431 | 431 | $add = true; |
| 432 | - } |
|
| 433 | - $data['format_source'] = 'aisnmeatxt'; |
|
| 434 | - $data['id_source'] = $id_source; |
|
| 435 | - //print_r($data); |
|
| 436 | - echo 'Add...'."\n"; |
|
| 437 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 438 | - if ($add && isset($ais_data['mmsi_type']) && $ais_data['mmsi_type'] == 'Ship') $MI->add($data); |
|
| 439 | - unset($data); |
|
| 432 | + } |
|
| 433 | + $data['format_source'] = 'aisnmeatxt'; |
|
| 434 | + $data['id_source'] = $id_source; |
|
| 435 | + //print_r($data); |
|
| 436 | + echo 'Add...'."\n"; |
|
| 437 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 438 | + if ($add && isset($ais_data['mmsi_type']) && $ais_data['mmsi_type'] == 'Ship') $MI->add($data); |
|
| 439 | + unset($data); |
|
| 440 | 440 | } |
| 441 | - } |
|
| 442 | - $last_exec[$id]['last'] = time(); |
|
| 441 | + } |
|
| 442 | + $last_exec[$id]['last'] = time(); |
|
| 443 | 443 | } elseif ($value['format'] == 'aisnmeahttp') { |
| 444 | - $arr = $httpfeeds; |
|
| 445 | - $w = $e = null; |
|
| 444 | + $arr = $httpfeeds; |
|
| 445 | + $w = $e = null; |
|
| 446 | 446 | |
| 447 | - if (isset($arr[$id])) { |
|
| 447 | + if (isset($arr[$id])) { |
|
| 448 | 448 | $nn = stream_select($arr,$w,$e,$timeout); |
| 449 | 449 | if ($nn > 0) { |
| 450 | - foreach ($httpfeeds as $feed) { |
|
| 450 | + foreach ($httpfeeds as $feed) { |
|
| 451 | 451 | $buffer = stream_get_line($feed,2000,"\n"); |
| 452 | 452 | $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
| 453 | 453 | $buffer = explode('\n',$buffer); |
| 454 | 454 | foreach ($buffer as $line) { |
| 455 | - if ($line != '') { |
|
| 455 | + if ($line != '') { |
|
| 456 | 456 | $ais_data = $AIS->parse_line(trim($line)); |
| 457 | 457 | $data = array(); |
| 458 | 458 | if (isset($ais_data['ident'])) $data['ident'] = $ais_data['ident']; |
@@ -468,39 +468,39 @@ discard block |
||
| 468 | 468 | if (isset($ais_data['destination'])) $data['arrival_code'] = $ais_data['destination']; |
| 469 | 469 | if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s',$ais_data['eta_ts']); |
| 470 | 470 | if (isset($ais_data['timestamp'])) { |
| 471 | - $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
|
| 471 | + $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
|
| 472 | 472 | } else { |
| 473 | - $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 473 | + $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 474 | 474 | } |
| 475 | 475 | $data['format_source'] = 'aisnmeahttp'; |
| 476 | 476 | $data['id_source'] = $id_source; |
| 477 | 477 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
| 478 | 478 | if (isset($ais_data['mmsi_type']) && $ais_data['mmsi_type'] == 'Ship') $MI->add($data); |
| 479 | 479 | unset($data); |
| 480 | - } |
|
| 480 | + } |
|
| 481 | + } |
|
| 481 | 482 | } |
| 482 | - } |
|
| 483 | 483 | } else { |
| 484 | - $format = $value['format']; |
|
| 485 | - if (isset($tt[$format])) $tt[$format]++; |
|
| 486 | - else $tt[$format] = 0; |
|
| 487 | - if ($tt[$format] > 30) { |
|
| 484 | + $format = $value['format']; |
|
| 485 | + if (isset($tt[$format])) $tt[$format]++; |
|
| 486 | + else $tt[$format] = 0; |
|
| 487 | + if ($tt[$format] > 30) { |
|
| 488 | 488 | sleep(2); |
| 489 | 489 | $sourceeen[] = $value; |
| 490 | 490 | connect_all($sourceeen); |
| 491 | 491 | $sourceeen = array(); |
| 492 | - } |
|
| 492 | + } |
|
| 493 | + } |
|
| 493 | 494 | } |
| 494 | - } |
|
| 495 | 495 | } elseif ($value['format'] == 'myshiptracking' && (time() - $last_exec[$id]['last'] > $globalMinFetch*3)) { |
| 496 | - $buffer = $Common->getData($value['host'],'get','','','','','20'); |
|
| 497 | - if ($buffer != '') { |
|
| 496 | + $buffer = $Common->getData($value['host'],'get','','','','','20'); |
|
| 497 | + if ($buffer != '') { |
|
| 498 | 498 | //echo $buffer; |
| 499 | 499 | $all_data = json_decode($buffer,true); |
| 500 | 500 | //print_r($all_data); |
| 501 | 501 | if (isset($all_data[0]['DATA'])) { |
| 502 | 502 | foreach ($all_data[0]['DATA'] as $line) { |
| 503 | - if ($line != '') { |
|
| 503 | + if ($line != '') { |
|
| 504 | 504 | $data = array(); |
| 505 | 505 | $data['ident'] = $line['NAME']; |
| 506 | 506 | $data['mmsi'] = $line['MMSI']; |
@@ -517,89 +517,89 @@ discard block |
||
| 517 | 517 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
| 518 | 518 | $MI->add($data); |
| 519 | 519 | unset($data); |
| 520 | - } |
|
| 520 | + } |
|
| 521 | 521 | } |
| 522 | 522 | } |
| 523 | 523 | |
| 524 | - } |
|
| 525 | - $last_exec[$id]['last'] = time(); |
|
| 524 | + } |
|
| 525 | + $last_exec[$id]['last'] = time(); |
|
| 526 | 526 | } elseif ($value['format'] == 'boatbeaconapp' && (time() - $last_exec[$id]['last'] > $globalMinFetch*3)) { |
| 527 | - $buffer = $Common->getData(str_replace('{timestamp}',time(),$value['host'])); |
|
| 528 | - if ($buffer != '') { |
|
| 527 | + $buffer = $Common->getData(str_replace('{timestamp}',time(),$value['host'])); |
|
| 528 | + if ($buffer != '') { |
|
| 529 | 529 | $all_data = json_decode($buffer,true); |
| 530 | 530 | if (isset($all_data[0]['mmsi'])) { |
| 531 | - foreach ($all_data as $line) { |
|
| 531 | + foreach ($all_data as $line) { |
|
| 532 | 532 | if ($line != '') { |
| 533 | - $data = array(); |
|
| 534 | - $data['ident'] = $line['shipname']; |
|
| 535 | - $data['callsign'] = $line['callsign']; |
|
| 536 | - $data['mmsi'] = $line['mmsi']; |
|
| 537 | - $data['speed'] = $line['sog']; |
|
| 538 | - if ($line['heading'] != '511') $data['heading'] = $line['heading']; |
|
| 539 | - $data['latitude'] = $line['latitude']; |
|
| 540 | - $data['longitude'] = $line['longitude']; |
|
| 541 | - $data['type_id'] = $line['shiptype']; |
|
| 542 | - $data['arrival_code'] = $line['destination']; |
|
| 543 | - $data['datetime'] = $line['time']; |
|
| 544 | - $data['format_source'] = 'boatbeaconapp'; |
|
| 545 | - $data['id_source'] = $id_source; |
|
| 546 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 547 | - $MI->add($data); |
|
| 548 | - unset($data); |
|
| 533 | + $data = array(); |
|
| 534 | + $data['ident'] = $line['shipname']; |
|
| 535 | + $data['callsign'] = $line['callsign']; |
|
| 536 | + $data['mmsi'] = $line['mmsi']; |
|
| 537 | + $data['speed'] = $line['sog']; |
|
| 538 | + if ($line['heading'] != '511') $data['heading'] = $line['heading']; |
|
| 539 | + $data['latitude'] = $line['latitude']; |
|
| 540 | + $data['longitude'] = $line['longitude']; |
|
| 541 | + $data['type_id'] = $line['shiptype']; |
|
| 542 | + $data['arrival_code'] = $line['destination']; |
|
| 543 | + $data['datetime'] = $line['time']; |
|
| 544 | + $data['format_source'] = 'boatbeaconapp'; |
|
| 545 | + $data['id_source'] = $id_source; |
|
| 546 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 547 | + $MI->add($data); |
|
| 548 | + unset($data); |
|
| 549 | + } |
|
| 549 | 550 | } |
| 550 | - } |
|
| 551 | 551 | } |
| 552 | 552 | |
| 553 | - } |
|
| 554 | - $last_exec[$id]['last'] = time(); |
|
| 553 | + } |
|
| 554 | + $last_exec[$id]['last'] = time(); |
|
| 555 | 555 | } elseif ($value['format'] == 'shipplotter' && (time() - $last_exec[$id]['last'] > $globalMinFetch*3)) { |
| 556 | - echo 'download...'; |
|
| 557 | - $buffer = $Common->getData($value['host'],'post',$value['post'],'','','','','ShipPlotter'); |
|
| 558 | - echo 'done !'."\n"; |
|
| 559 | - if ($buffer != '') $reset = 0; |
|
| 560 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 561 | - $buffer = explode('\n',$buffer); |
|
| 562 | - foreach ($buffer as $line) { |
|
| 556 | + echo 'download...'; |
|
| 557 | + $buffer = $Common->getData($value['host'],'post',$value['post'],'','','','','ShipPlotter'); |
|
| 558 | + echo 'done !'."\n"; |
|
| 559 | + if ($buffer != '') $reset = 0; |
|
| 560 | + $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 561 | + $buffer = explode('\n',$buffer); |
|
| 562 | + foreach ($buffer as $line) { |
|
| 563 | 563 | if ($line != '') { |
| 564 | - $data = array(); |
|
| 565 | - $data['mmsi'] = (int)substr($line,0,9); |
|
| 566 | - $data['datetime'] = date('Y-m-d H:i:s',substr($line,10,10)); |
|
| 567 | - //$data['status'] = substr($line,21,2); |
|
| 568 | - //$data['type'] = substr($line,24,3); |
|
| 569 | - $data['latitude'] = substr($line,29,9); |
|
| 570 | - $data['longitude'] = substr($line,41,9); |
|
| 571 | - $data['speed'] = round(substr($line,51,5)); |
|
| 572 | - //$data['course'] = substr($line,57,5); |
|
| 573 | - $data['heading'] = round(substr($line,63,3)); |
|
| 574 | - //$data['draft'] = substr($line,67,4); |
|
| 575 | - //$data['length'] = substr($line,72,3); |
|
| 576 | - //$data['beam'] = substr($line,76,2); |
|
| 577 | - $data['ident'] = trim(utf8_encode(substr($line,79,20))); |
|
| 578 | - //$data['callsign'] = trim(substr($line,100,7); |
|
| 579 | - //$data['dest'] = substr($line,108,20); |
|
| 580 | - //$data['etaDate'] = substr($line,129,5); |
|
| 581 | - //$data['etaTime'] = substr($line,135,5); |
|
| 582 | - $data['format_source'] = 'shipplotter'; |
|
| 583 | - $data['id_source'] = $id_source; |
|
| 584 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 585 | - //print_r($data); |
|
| 586 | - echo 'Add...'."\n"; |
|
| 587 | - $MI->add($data); |
|
| 588 | - unset($data); |
|
| 564 | + $data = array(); |
|
| 565 | + $data['mmsi'] = (int)substr($line,0,9); |
|
| 566 | + $data['datetime'] = date('Y-m-d H:i:s',substr($line,10,10)); |
|
| 567 | + //$data['status'] = substr($line,21,2); |
|
| 568 | + //$data['type'] = substr($line,24,3); |
|
| 569 | + $data['latitude'] = substr($line,29,9); |
|
| 570 | + $data['longitude'] = substr($line,41,9); |
|
| 571 | + $data['speed'] = round(substr($line,51,5)); |
|
| 572 | + //$data['course'] = substr($line,57,5); |
|
| 573 | + $data['heading'] = round(substr($line,63,3)); |
|
| 574 | + //$data['draft'] = substr($line,67,4); |
|
| 575 | + //$data['length'] = substr($line,72,3); |
|
| 576 | + //$data['beam'] = substr($line,76,2); |
|
| 577 | + $data['ident'] = trim(utf8_encode(substr($line,79,20))); |
|
| 578 | + //$data['callsign'] = trim(substr($line,100,7); |
|
| 579 | + //$data['dest'] = substr($line,108,20); |
|
| 580 | + //$data['etaDate'] = substr($line,129,5); |
|
| 581 | + //$data['etaTime'] = substr($line,135,5); |
|
| 582 | + $data['format_source'] = 'shipplotter'; |
|
| 583 | + $data['id_source'] = $id_source; |
|
| 584 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 585 | + //print_r($data); |
|
| 586 | + echo 'Add...'."\n"; |
|
| 587 | + $MI->add($data); |
|
| 588 | + unset($data); |
|
| 589 | 589 | } |
| 590 | - } |
|
| 591 | - $last_exec[$id]['last'] = time(); |
|
| 590 | + } |
|
| 591 | + $last_exec[$id]['last'] = time(); |
|
| 592 | 592 | //} elseif (($value == 'whazzup' && (time() - $last_exec['whazzup'] > $globalMinFetch)) || ($value == 'vatsimtxt' && (time() - $last_exec['vatsimtxt'] > $globalMinFetch))) { |
| 593 | 593 | } elseif (($value['format'] == 'whazzup' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) || ($value['format'] == 'vatsimtxt' && (time() - $last_exec[$id]['last'] > $globalMinFetch))) { |
| 594 | - //$buffer = $Common->getData($hosts[$id]); |
|
| 595 | - $buffer = $Common->getData($value['host']); |
|
| 596 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 597 | - $buffer = explode('\n',$buffer); |
|
| 598 | - $reset = 0; |
|
| 599 | - foreach ($buffer as $line) { |
|
| 600 | - if ($line != '') { |
|
| 601 | - $line = explode(':', $line); |
|
| 602 | - if (count($line) > 30 && $line[0] != 'callsign') { |
|
| 594 | + //$buffer = $Common->getData($hosts[$id]); |
|
| 595 | + $buffer = $Common->getData($value['host']); |
|
| 596 | + $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 597 | + $buffer = explode('\n',$buffer); |
|
| 598 | + $reset = 0; |
|
| 599 | + foreach ($buffer as $line) { |
|
| 600 | + if ($line != '') { |
|
| 601 | + $line = explode(':', $line); |
|
| 602 | + if (count($line) > 30 && $line[0] != 'callsign') { |
|
| 603 | 603 | $data = array(); |
| 604 | 604 | if (isset($line[37]) && $line[37] != '') $data['id'] = $value['format'].'-'.$line[1].'-'.$line[0].'-'.$line[37]; |
| 605 | 605 | else $data['id'] = $value['format'].'-'.$line[1].'-'.$line[0]; |
@@ -612,37 +612,37 @@ discard block |
||
| 612 | 612 | if (isset($line[45])) $data['heading'] = $line[45]; // heading |
| 613 | 613 | elseif (isset($line[38])) $data['heading'] = $line[38]; // heading |
| 614 | 614 | $data['latitude'] = $line[5]; // lat |
| 615 | - $data['longitude'] = $line[6]; // long |
|
| 616 | - $data['verticalrate'] = ''; // vertical rate |
|
| 617 | - $data['squawk'] = ''; // squawk |
|
| 618 | - $data['emergency'] = ''; // emergency |
|
| 619 | - $data['waypoints'] = $line[30]; |
|
| 615 | + $data['longitude'] = $line[6]; // long |
|
| 616 | + $data['verticalrate'] = ''; // vertical rate |
|
| 617 | + $data['squawk'] = ''; // squawk |
|
| 618 | + $data['emergency'] = ''; // emergency |
|
| 619 | + $data['waypoints'] = $line[30]; |
|
| 620 | 620 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 621 | 621 | //$data['datetime'] = date('Y-m-d H:i:s',strtotime($line[37])); |
| 622 | 622 | //if (isset($line[37])) $data['last_update'] = $line[37]; |
| 623 | - $data['departure_airport_icao'] = $line[11]; |
|
| 624 | - $data['departure_airport_time'] = rtrim(chunk_split($line[22],2,':'),':'); |
|
| 625 | - $data['arrival_airport_icao'] = $line[13]; |
|
| 623 | + $data['departure_airport_icao'] = $line[11]; |
|
| 624 | + $data['departure_airport_time'] = rtrim(chunk_split($line[22],2,':'),':'); |
|
| 625 | + $data['arrival_airport_icao'] = $line[13]; |
|
| 626 | 626 | $data['frequency'] = $line[4]; |
| 627 | 627 | $data['type'] = $line[18]; |
| 628 | 628 | $data['range'] = $line[19]; |
| 629 | 629 | if (isset($line[35])) $data['info'] = $line[35]; |
| 630 | - $data['id_source'] = $id_source; |
|
| 631 | - //$data['arrival_airport_time'] = ; |
|
| 632 | - if ($line[9] != '') { |
|
| 633 | - $aircraft_data = explode('/',$line[9]); |
|
| 634 | - if (isset($aircraft_data[1])) { |
|
| 635 | - $data['aircraft_icao'] = $aircraft_data[1]; |
|
| 636 | - } |
|
| 637 | - } |
|
| 638 | - /* |
|
| 630 | + $data['id_source'] = $id_source; |
|
| 631 | + //$data['arrival_airport_time'] = ; |
|
| 632 | + if ($line[9] != '') { |
|
| 633 | + $aircraft_data = explode('/',$line[9]); |
|
| 634 | + if (isset($aircraft_data[1])) { |
|
| 635 | + $data['aircraft_icao'] = $aircraft_data[1]; |
|
| 636 | + } |
|
| 637 | + } |
|
| 638 | + /* |
|
| 639 | 639 | if ($value == 'whazzup') $data['format_source'] = 'whazzup'; |
| 640 | 640 | elseif ($value == 'vatsimtxt') $data['format_source'] = 'vatsimtxt'; |
| 641 | 641 | */ |
| 642 | - $data['format_source'] = $value['format']; |
|
| 642 | + $data['format_source'] = $value['format']; |
|
| 643 | 643 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
| 644 | 644 | if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
| 645 | - if ($line[3] == 'PILOT') $SI->add($data); |
|
| 645 | + if ($line[3] == 'PILOT') $SI->add($data); |
|
| 646 | 646 | elseif ($line[3] == 'ATC') { |
| 647 | 647 | //print_r($data); |
| 648 | 648 | $data['info'] = str_replace('^§','<br />',$data['info']); |
@@ -660,254 +660,254 @@ discard block |
||
| 660 | 660 | if (!isset($data['source_name'])) $data['source_name'] = ''; |
| 661 | 661 | if (isset($ATC)) echo $ATC->add($data['ident'],$data['frequency'],$data['latitude'],$data['longitude'],$data['range'],$data['info'],$data['datetime'],$data['type'],$data['pilot_id'],$data['pilot_name'],$data['format_source'],$data['source_name']); |
| 662 | 662 | } |
| 663 | - unset($data); |
|
| 664 | - } |
|
| 665 | - } |
|
| 666 | - } |
|
| 667 | - //if ($value == 'whazzup') $last_exec['whazzup'] = time(); |
|
| 668 | - //elseif ($value == 'vatsimtxt') $last_exec['vatsimtxt'] = time(); |
|
| 669 | - $last_exec[$id]['last'] = time(); |
|
| 670 | - //} elseif ($value == 'aircraftlistjson' && (time() - $last_exec['aircraftlistjson'] > $globalMinFetch)) { |
|
| 671 | - } elseif ($value['format'] == 'aircraftlistjson' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 672 | - $buffer = $Common->getData($value['host'],'get','','','','','20'); |
|
| 673 | - if ($buffer != '') { |
|
| 674 | - $all_data = json_decode($buffer,true); |
|
| 675 | - if (isset($all_data['acList'])) { |
|
| 663 | + unset($data); |
|
| 664 | + } |
|
| 665 | + } |
|
| 666 | + } |
|
| 667 | + //if ($value == 'whazzup') $last_exec['whazzup'] = time(); |
|
| 668 | + //elseif ($value == 'vatsimtxt') $last_exec['vatsimtxt'] = time(); |
|
| 669 | + $last_exec[$id]['last'] = time(); |
|
| 670 | + //} elseif ($value == 'aircraftlistjson' && (time() - $last_exec['aircraftlistjson'] > $globalMinFetch)) { |
|
| 671 | + } elseif ($value['format'] == 'aircraftlistjson' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 672 | + $buffer = $Common->getData($value['host'],'get','','','','','20'); |
|
| 673 | + if ($buffer != '') { |
|
| 674 | + $all_data = json_decode($buffer,true); |
|
| 675 | + if (isset($all_data['acList'])) { |
|
| 676 | 676 | $reset = 0; |
| 677 | 677 | foreach ($all_data['acList'] as $line) { |
| 678 | - $data = array(); |
|
| 679 | - $data['hex'] = $line['Icao']; // hex |
|
| 680 | - if (isset($line['Call'])) $data['ident'] = $line['Call']; // ident |
|
| 681 | - if (isset($line['Alt'])) $data['altitude'] = $line['Alt']; // altitude |
|
| 682 | - if (isset($line['Spd'])) $data['speed'] = $line['Spd']; // speed |
|
| 683 | - if (isset($line['Trak'])) $data['heading'] = $line['Trak']; // heading |
|
| 684 | - if (isset($line['Lat'])) $data['latitude'] = $line['Lat']; // lat |
|
| 685 | - if (isset($line['Long'])) $data['longitude'] = $line['Long']; // long |
|
| 686 | - //$data['verticalrate'] = $line['']; // verticale rate |
|
| 687 | - if (isset($line['Sqk'])) $data['squawk'] = $line['Sqk']; // squawk |
|
| 688 | - $data['emergency'] = ''; // emergency |
|
| 689 | - if (isset($line['Reg'])) $data['registration'] = $line['Reg']; |
|
| 690 | - /* |
|
| 678 | + $data = array(); |
|
| 679 | + $data['hex'] = $line['Icao']; // hex |
|
| 680 | + if (isset($line['Call'])) $data['ident'] = $line['Call']; // ident |
|
| 681 | + if (isset($line['Alt'])) $data['altitude'] = $line['Alt']; // altitude |
|
| 682 | + if (isset($line['Spd'])) $data['speed'] = $line['Spd']; // speed |
|
| 683 | + if (isset($line['Trak'])) $data['heading'] = $line['Trak']; // heading |
|
| 684 | + if (isset($line['Lat'])) $data['latitude'] = $line['Lat']; // lat |
|
| 685 | + if (isset($line['Long'])) $data['longitude'] = $line['Long']; // long |
|
| 686 | + //$data['verticalrate'] = $line['']; // verticale rate |
|
| 687 | + if (isset($line['Sqk'])) $data['squawk'] = $line['Sqk']; // squawk |
|
| 688 | + $data['emergency'] = ''; // emergency |
|
| 689 | + if (isset($line['Reg'])) $data['registration'] = $line['Reg']; |
|
| 690 | + /* |
|
| 691 | 691 | if (isset($line['PosTime'])) $data['datetime'] = date('Y-m-d H:i:s',$line['PosTime']/1000); |
| 692 | 692 | else $data['datetime'] = date('Y-m-d H:i:s'); |
| 693 | 693 | */ |
| 694 | - $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 695 | - if (isset($line['Type'])) $data['aircraft_icao'] = $line['Type']; |
|
| 696 | - $data['format_source'] = 'aircraftlistjson'; |
|
| 697 | - $data['id_source'] = $id_source; |
|
| 698 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 699 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 700 | - if (isset($data['latitude'])) $SI->add($data); |
|
| 701 | - unset($data); |
|
| 694 | + $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 695 | + if (isset($line['Type'])) $data['aircraft_icao'] = $line['Type']; |
|
| 696 | + $data['format_source'] = 'aircraftlistjson'; |
|
| 697 | + $data['id_source'] = $id_source; |
|
| 698 | + if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 699 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 700 | + if (isset($data['latitude'])) $SI->add($data); |
|
| 701 | + unset($data); |
|
| 702 | 702 | } |
| 703 | - } elseif (is_array($all_data)) { |
|
| 703 | + } elseif (is_array($all_data)) { |
|
| 704 | 704 | $reset = 0; |
| 705 | 705 | foreach ($all_data as $line) { |
| 706 | - $data = array(); |
|
| 707 | - $data['hex'] = $line['hex']; // hex |
|
| 708 | - $data['ident'] = $line['flight']; // ident |
|
| 709 | - $data['altitude'] = $line['altitude']; // altitude |
|
| 710 | - $data['speed'] = $line['speed']; // speed |
|
| 711 | - $data['heading'] = $line['track']; // heading |
|
| 712 | - $data['latitude'] = $line['lat']; // lat |
|
| 713 | - $data['longitude'] = $line['lon']; // long |
|
| 714 | - $data['verticalrate'] = $line['vrt']; // verticale rate |
|
| 715 | - $data['squawk'] = $line['squawk']; // squawk |
|
| 716 | - $data['emergency'] = ''; // emergency |
|
| 717 | - $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 718 | - $data['format_source'] = 'aircraftlistjson'; |
|
| 719 | - $data['id_source'] = $id_source; |
|
| 720 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 721 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 722 | - $SI->add($data); |
|
| 723 | - unset($data); |
|
| 706 | + $data = array(); |
|
| 707 | + $data['hex'] = $line['hex']; // hex |
|
| 708 | + $data['ident'] = $line['flight']; // ident |
|
| 709 | + $data['altitude'] = $line['altitude']; // altitude |
|
| 710 | + $data['speed'] = $line['speed']; // speed |
|
| 711 | + $data['heading'] = $line['track']; // heading |
|
| 712 | + $data['latitude'] = $line['lat']; // lat |
|
| 713 | + $data['longitude'] = $line['lon']; // long |
|
| 714 | + $data['verticalrate'] = $line['vrt']; // verticale rate |
|
| 715 | + $data['squawk'] = $line['squawk']; // squawk |
|
| 716 | + $data['emergency'] = ''; // emergency |
|
| 717 | + $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 718 | + $data['format_source'] = 'aircraftlistjson'; |
|
| 719 | + $data['id_source'] = $id_source; |
|
| 720 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 721 | + if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 722 | + $SI->add($data); |
|
| 723 | + unset($data); |
|
| 724 | 724 | } |
| 725 | - } |
|
| 726 | - } |
|
| 727 | - //$last_exec['aircraftlistjson'] = time(); |
|
| 728 | - $last_exec[$id]['last'] = time(); |
|
| 729 | - //} elseif ($value == 'planeupdatefaa' && (time() - $last_exec['planeupdatefaa'] > $globalMinFetch)) { |
|
| 730 | - } elseif ($value['format'] == 'planeupdatefaa' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 731 | - $buffer = $Common->getData($value['host']); |
|
| 732 | - $all_data = json_decode($buffer,true); |
|
| 733 | - if (isset($all_data['planes'])) { |
|
| 725 | + } |
|
| 726 | + } |
|
| 727 | + //$last_exec['aircraftlistjson'] = time(); |
|
| 728 | + $last_exec[$id]['last'] = time(); |
|
| 729 | + //} elseif ($value == 'planeupdatefaa' && (time() - $last_exec['planeupdatefaa'] > $globalMinFetch)) { |
|
| 730 | + } elseif ($value['format'] == 'planeupdatefaa' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 731 | + $buffer = $Common->getData($value['host']); |
|
| 732 | + $all_data = json_decode($buffer,true); |
|
| 733 | + if (isset($all_data['planes'])) { |
|
| 734 | 734 | $reset = 0; |
| 735 | 735 | foreach ($all_data['planes'] as $key => $line) { |
| 736 | - $data = array(); |
|
| 737 | - $data['hex'] = $key; // hex |
|
| 738 | - $data['ident'] = $line[3]; // ident |
|
| 739 | - $data['altitude'] = $line[6]; // altitude |
|
| 740 | - $data['speed'] = $line[8]; // speed |
|
| 741 | - $data['heading'] = $line[7]; // heading |
|
| 742 | - $data['latitude'] = $line[4]; // lat |
|
| 743 | - $data['longitude'] = $line[5]; // long |
|
| 744 | - //$data['verticalrate'] = $line[]; // verticale rate |
|
| 745 | - $data['squawk'] = $line[10]; // squawk |
|
| 746 | - $data['emergency'] = ''; // emergency |
|
| 747 | - $data['registration'] = $line[2]; |
|
| 748 | - $data['aircraft_icao'] = $line[0]; |
|
| 749 | - $deparr = explode('-',$line[1]); |
|
| 750 | - if (count($deparr) == 2) { |
|
| 736 | + $data = array(); |
|
| 737 | + $data['hex'] = $key; // hex |
|
| 738 | + $data['ident'] = $line[3]; // ident |
|
| 739 | + $data['altitude'] = $line[6]; // altitude |
|
| 740 | + $data['speed'] = $line[8]; // speed |
|
| 741 | + $data['heading'] = $line[7]; // heading |
|
| 742 | + $data['latitude'] = $line[4]; // lat |
|
| 743 | + $data['longitude'] = $line[5]; // long |
|
| 744 | + //$data['verticalrate'] = $line[]; // verticale rate |
|
| 745 | + $data['squawk'] = $line[10]; // squawk |
|
| 746 | + $data['emergency'] = ''; // emergency |
|
| 747 | + $data['registration'] = $line[2]; |
|
| 748 | + $data['aircraft_icao'] = $line[0]; |
|
| 749 | + $deparr = explode('-',$line[1]); |
|
| 750 | + if (count($deparr) == 2) { |
|
| 751 | 751 | $data['departure_airport_icao'] = $deparr[0]; |
| 752 | 752 | $data['arrival_airport_icao'] = $deparr[1]; |
| 753 | - } |
|
| 754 | - $data['datetime'] = date('Y-m-d H:i:s',$line[9]); |
|
| 755 | - $data['format_source'] = 'planeupdatefaa'; |
|
| 756 | - $data['id_source'] = $id_source; |
|
| 757 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 758 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 759 | - $SI->add($data); |
|
| 760 | - unset($data); |
|
| 753 | + } |
|
| 754 | + $data['datetime'] = date('Y-m-d H:i:s',$line[9]); |
|
| 755 | + $data['format_source'] = 'planeupdatefaa'; |
|
| 756 | + $data['id_source'] = $id_source; |
|
| 757 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 758 | + if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 759 | + $SI->add($data); |
|
| 760 | + unset($data); |
|
| 761 | 761 | } |
| 762 | - } |
|
| 763 | - //$last_exec['planeupdatefaa'] = time(); |
|
| 764 | - $last_exec[$id]['last'] = time(); |
|
| 765 | - } elseif ($value['format'] == 'opensky' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 766 | - $buffer = $Common->getData($value['host']); |
|
| 767 | - $all_data = json_decode($buffer,true); |
|
| 768 | - if (isset($all_data['states'])) { |
|
| 762 | + } |
|
| 763 | + //$last_exec['planeupdatefaa'] = time(); |
|
| 764 | + $last_exec[$id]['last'] = time(); |
|
| 765 | + } elseif ($value['format'] == 'opensky' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 766 | + $buffer = $Common->getData($value['host']); |
|
| 767 | + $all_data = json_decode($buffer,true); |
|
| 768 | + if (isset($all_data['states'])) { |
|
| 769 | 769 | $reset = 0; |
| 770 | 770 | foreach ($all_data['states'] as $key => $line) { |
| 771 | - $data = array(); |
|
| 772 | - $data['hex'] = $line[0]; // hex |
|
| 773 | - $data['ident'] = trim($line[1]); // ident |
|
| 774 | - $data['altitude'] = round($line[7]*3.28084); // altitude |
|
| 775 | - $data['speed'] = round($line[9]*1.94384); // speed |
|
| 776 | - $data['heading'] = round($line[10]); // heading |
|
| 777 | - $data['latitude'] = $line[5]; // lat |
|
| 778 | - $data['longitude'] = $line[6]; // long |
|
| 779 | - $data['verticalrate'] = $line[11]; // verticale rate |
|
| 780 | - //$data['squawk'] = $line[10]; // squawk |
|
| 781 | - //$data['emergency'] = ''; // emergency |
|
| 782 | - //$data['registration'] = $line[2]; |
|
| 783 | - //$data['aircraft_icao'] = $line[0]; |
|
| 784 | - $data['datetime'] = date('Y-m-d H:i:s',$line[3]); |
|
| 785 | - $data['format_source'] = 'opensky'; |
|
| 786 | - $data['id_source'] = $id_source; |
|
| 787 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 788 | - $SI->add($data); |
|
| 789 | - unset($data); |
|
| 771 | + $data = array(); |
|
| 772 | + $data['hex'] = $line[0]; // hex |
|
| 773 | + $data['ident'] = trim($line[1]); // ident |
|
| 774 | + $data['altitude'] = round($line[7]*3.28084); // altitude |
|
| 775 | + $data['speed'] = round($line[9]*1.94384); // speed |
|
| 776 | + $data['heading'] = round($line[10]); // heading |
|
| 777 | + $data['latitude'] = $line[5]; // lat |
|
| 778 | + $data['longitude'] = $line[6]; // long |
|
| 779 | + $data['verticalrate'] = $line[11]; // verticale rate |
|
| 780 | + //$data['squawk'] = $line[10]; // squawk |
|
| 781 | + //$data['emergency'] = ''; // emergency |
|
| 782 | + //$data['registration'] = $line[2]; |
|
| 783 | + //$data['aircraft_icao'] = $line[0]; |
|
| 784 | + $data['datetime'] = date('Y-m-d H:i:s',$line[3]); |
|
| 785 | + $data['format_source'] = 'opensky'; |
|
| 786 | + $data['id_source'] = $id_source; |
|
| 787 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 788 | + $SI->add($data); |
|
| 789 | + unset($data); |
|
| 790 | + } |
|
| 790 | 791 | } |
| 791 | - } |
|
| 792 | - //$last_exec['planeupdatefaa'] = time(); |
|
| 793 | - $last_exec[$id]['last'] = time(); |
|
| 794 | - //} elseif ($value == 'fr24json' && (time() - $last_exec['fr24json'] > $globalMinFetch)) { |
|
| 795 | - } elseif ($value['format'] == 'fr24json' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 796 | - //$buffer = $Common->getData($hosts[$id]); |
|
| 797 | - $buffer = $Common->getData($value['host']); |
|
| 798 | - $all_data = json_decode($buffer,true); |
|
| 799 | - if (!empty($all_data)) $reset = 0; |
|
| 800 | - foreach ($all_data as $key => $line) { |
|
| 792 | + //$last_exec['planeupdatefaa'] = time(); |
|
| 793 | + $last_exec[$id]['last'] = time(); |
|
| 794 | + //} elseif ($value == 'fr24json' && (time() - $last_exec['fr24json'] > $globalMinFetch)) { |
|
| 795 | + } elseif ($value['format'] == 'fr24json' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 796 | + //$buffer = $Common->getData($hosts[$id]); |
|
| 797 | + $buffer = $Common->getData($value['host']); |
|
| 798 | + $all_data = json_decode($buffer,true); |
|
| 799 | + if (!empty($all_data)) $reset = 0; |
|
| 800 | + foreach ($all_data as $key => $line) { |
|
| 801 | 801 | if ($key != 'full_count' && $key != 'version' && $key != 'stats') { |
| 802 | - $data = array(); |
|
| 803 | - $data['hex'] = $line[0]; |
|
| 804 | - $data['ident'] = $line[16]; //$line[13] |
|
| 805 | - $data['altitude'] = $line[4]; // altitude |
|
| 806 | - $data['speed'] = $line[5]; // speed |
|
| 807 | - $data['heading'] = $line[3]; // heading |
|
| 808 | - $data['latitude'] = $line[1]; // lat |
|
| 809 | - $data['longitude'] = $line[2]; // long |
|
| 810 | - $data['verticalrate'] = $line[15]; // verticale rate |
|
| 811 | - $data['squawk'] = $line[6]; // squawk |
|
| 812 | - $data['aircraft_icao'] = $line[8]; |
|
| 813 | - $data['registration'] = $line[9]; |
|
| 814 | - $data['departure_airport_iata'] = $line[11]; |
|
| 815 | - $data['arrival_airport_iata'] = $line[12]; |
|
| 816 | - $data['emergency'] = ''; // emergency |
|
| 817 | - $data['datetime'] = date('Y-m-d H:i:s'); //$line[10] |
|
| 818 | - $data['format_source'] = 'fr24json'; |
|
| 819 | - $data['id_source'] = $id_source; |
|
| 820 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 821 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 822 | - $SI->add($data); |
|
| 823 | - unset($data); |
|
| 802 | + $data = array(); |
|
| 803 | + $data['hex'] = $line[0]; |
|
| 804 | + $data['ident'] = $line[16]; //$line[13] |
|
| 805 | + $data['altitude'] = $line[4]; // altitude |
|
| 806 | + $data['speed'] = $line[5]; // speed |
|
| 807 | + $data['heading'] = $line[3]; // heading |
|
| 808 | + $data['latitude'] = $line[1]; // lat |
|
| 809 | + $data['longitude'] = $line[2]; // long |
|
| 810 | + $data['verticalrate'] = $line[15]; // verticale rate |
|
| 811 | + $data['squawk'] = $line[6]; // squawk |
|
| 812 | + $data['aircraft_icao'] = $line[8]; |
|
| 813 | + $data['registration'] = $line[9]; |
|
| 814 | + $data['departure_airport_iata'] = $line[11]; |
|
| 815 | + $data['arrival_airport_iata'] = $line[12]; |
|
| 816 | + $data['emergency'] = ''; // emergency |
|
| 817 | + $data['datetime'] = date('Y-m-d H:i:s'); //$line[10] |
|
| 818 | + $data['format_source'] = 'fr24json'; |
|
| 819 | + $data['id_source'] = $id_source; |
|
| 820 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 821 | + if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 822 | + $SI->add($data); |
|
| 823 | + unset($data); |
|
| 824 | + } |
|
| 824 | 825 | } |
| 825 | - } |
|
| 826 | - //$last_exec['fr24json'] = time(); |
|
| 827 | - $last_exec[$id]['last'] = time(); |
|
| 828 | - //} elseif ($value == 'radarvirtueljson' && (time() - $last_exec['radarvirtueljson'] > $globalMinFetch)) { |
|
| 829 | - } elseif ($value['format'] == 'radarvirtueljson' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 830 | - //$buffer = $Common->getData($hosts[$id],'get','','','','','150'); |
|
| 831 | - $buffer = $Common->getData($value['host'],'get','','','','','150'); |
|
| 832 | - //echo $buffer; |
|
| 833 | - $buffer = str_replace(array("\n","\r"),"",$buffer); |
|
| 834 | - $buffer = preg_replace('/,"num":(.+)/','}',$buffer); |
|
| 835 | - $all_data = json_decode($buffer,true); |
|
| 836 | - if (json_last_error() != JSON_ERROR_NONE) { |
|
| 826 | + //$last_exec['fr24json'] = time(); |
|
| 827 | + $last_exec[$id]['last'] = time(); |
|
| 828 | + //} elseif ($value == 'radarvirtueljson' && (time() - $last_exec['radarvirtueljson'] > $globalMinFetch)) { |
|
| 829 | + } elseif ($value['format'] == 'radarvirtueljson' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 830 | + //$buffer = $Common->getData($hosts[$id],'get','','','','','150'); |
|
| 831 | + $buffer = $Common->getData($value['host'],'get','','','','','150'); |
|
| 832 | + //echo $buffer; |
|
| 833 | + $buffer = str_replace(array("\n","\r"),"",$buffer); |
|
| 834 | + $buffer = preg_replace('/,"num":(.+)/','}',$buffer); |
|
| 835 | + $all_data = json_decode($buffer,true); |
|
| 836 | + if (json_last_error() != JSON_ERROR_NONE) { |
|
| 837 | 837 | die(json_last_error_msg()); |
| 838 | - } |
|
| 839 | - if (isset($all_data['mrkrs'])) { |
|
| 838 | + } |
|
| 839 | + if (isset($all_data['mrkrs'])) { |
|
| 840 | 840 | $reset = 0; |
| 841 | 841 | foreach ($all_data['mrkrs'] as $key => $line) { |
| 842 | - if (isset($line['inf'])) { |
|
| 842 | + if (isset($line['inf'])) { |
|
| 843 | 843 | $data = array(); |
| 844 | 844 | $data['hex'] = $line['inf']['ia']; |
| 845 | 845 | if (isset($line['inf']['cs'])) $data['ident'] = $line['inf']['cs']; //$line[13] |
| 846 | - $data['altitude'] = round($line['inf']['al']*3.28084); // altitude |
|
| 847 | - if (isset($line['inf']['gs'])) $data['speed'] = round($line['inf']['gs']*0.539957); // speed |
|
| 848 | - if (isset($line['inf']['tr'])) $data['heading'] = $line['inf']['tr']; // heading |
|
| 849 | - $data['latitude'] = $line['pt'][0]; // lat |
|
| 850 | - $data['longitude'] = $line['pt'][1]; // long |
|
| 851 | - //if (isset($line['inf']['vs'])) $data['verticalrate'] = $line['inf']['vs']; // verticale rate |
|
| 852 | - if (isset($line['inf']['sq'])) $data['squawk'] = $line['inf']['sq']; // squawk |
|
| 853 | - //$data['aircraft_icao'] = $line[8]; |
|
| 854 | - if (isset($line['inf']['rc'])) $data['registration'] = $line['inf']['rc']; |
|
| 846 | + $data['altitude'] = round($line['inf']['al']*3.28084); // altitude |
|
| 847 | + if (isset($line['inf']['gs'])) $data['speed'] = round($line['inf']['gs']*0.539957); // speed |
|
| 848 | + if (isset($line['inf']['tr'])) $data['heading'] = $line['inf']['tr']; // heading |
|
| 849 | + $data['latitude'] = $line['pt'][0]; // lat |
|
| 850 | + $data['longitude'] = $line['pt'][1]; // long |
|
| 851 | + //if (isset($line['inf']['vs'])) $data['verticalrate'] = $line['inf']['vs']; // verticale rate |
|
| 852 | + if (isset($line['inf']['sq'])) $data['squawk'] = $line['inf']['sq']; // squawk |
|
| 853 | + //$data['aircraft_icao'] = $line[8]; |
|
| 854 | + if (isset($line['inf']['rc'])) $data['registration'] = $line['inf']['rc']; |
|
| 855 | 855 | //$data['departure_airport_iata'] = $line[11]; |
| 856 | 856 | //$data['arrival_airport_iata'] = $line[12]; |
| 857 | - //$data['emergency'] = ''; // emergency |
|
| 857 | + //$data['emergency'] = ''; // emergency |
|
| 858 | 858 | $data['datetime'] = date('Y-m-d H:i:s',$line['inf']['dt']); //$line[10] |
| 859 | - $data['format_source'] = 'radarvirtueljson'; |
|
| 860 | - $data['id_source'] = $id_source; |
|
| 859 | + $data['format_source'] = 'radarvirtueljson'; |
|
| 860 | + $data['id_source'] = $id_source; |
|
| 861 | 861 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
| 862 | 862 | if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
| 863 | 863 | $SI->add($data); |
| 864 | 864 | unset($data); |
| 865 | - } |
|
| 865 | + } |
|
| 866 | + } |
|
| 866 | 867 | } |
| 867 | - } |
|
| 868 | - //$last_exec['radarvirtueljson'] = time(); |
|
| 869 | - $last_exec[$id]['last'] = time(); |
|
| 870 | - //} elseif ($value == 'pirepsjson' && (time() - $last_exec['pirepsjson'] > $globalMinFetch)) { |
|
| 871 | - } elseif ($value['format'] == 'pirepsjson' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 872 | - //$buffer = $Common->getData($hosts[$id]); |
|
| 873 | - $buffer = $Common->getData($value['host'].'?'.time()); |
|
| 874 | - $all_data = json_decode(utf8_encode($buffer),true); |
|
| 868 | + //$last_exec['radarvirtueljson'] = time(); |
|
| 869 | + $last_exec[$id]['last'] = time(); |
|
| 870 | + //} elseif ($value == 'pirepsjson' && (time() - $last_exec['pirepsjson'] > $globalMinFetch)) { |
|
| 871 | + } elseif ($value['format'] == 'pirepsjson' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 872 | + //$buffer = $Common->getData($hosts[$id]); |
|
| 873 | + $buffer = $Common->getData($value['host'].'?'.time()); |
|
| 874 | + $all_data = json_decode(utf8_encode($buffer),true); |
|
| 875 | 875 | |
| 876 | - if (isset($all_data['pireps'])) { |
|
| 876 | + if (isset($all_data['pireps'])) { |
|
| 877 | 877 | $reset = 0; |
| 878 | - foreach ($all_data['pireps'] as $line) { |
|
| 879 | - $data = array(); |
|
| 880 | - $data['id'] = $line['id']; |
|
| 881 | - $data['hex'] = substr(str_pad(dechex($line['id']),6,'000000',STR_PAD_LEFT),0,6); |
|
| 882 | - $data['ident'] = $line['callsign']; // ident |
|
| 883 | - if (isset($line['pilotid'])) $data['pilot_id'] = $line['pilotid']; // pilot id |
|
| 884 | - if (isset($line['name'])) $data['pilot_name'] = $line['name']; // pilot name |
|
| 885 | - if (isset($line['alt'])) $data['altitude'] = $line['alt']; // altitude |
|
| 886 | - if (isset($line['gs'])) $data['speed'] = $line['gs']; // speed |
|
| 887 | - if (isset($line['heading'])) $data['heading'] = $line['heading']; // heading |
|
| 888 | - if (isset($line['route'])) $data['waypoints'] = $line['route']; // route |
|
| 889 | - $data['latitude'] = $line['lat']; // lat |
|
| 890 | - $data['longitude'] = $line['lon']; // long |
|
| 891 | - //$data['verticalrate'] = $line['vrt']; // verticale rate |
|
| 892 | - //$data['squawk'] = $line['squawk']; // squawk |
|
| 893 | - //$data['emergency'] = ''; // emergency |
|
| 894 | - if (isset($line['depicao'])) $data['departure_airport_icao'] = $line['depicao']; |
|
| 895 | - if (isset($line['deptime'])) $data['departure_airport_time'] = $line['deptime']; |
|
| 896 | - if (isset($line['arricao'])) $data['arrival_airport_icao'] = $line['arricao']; |
|
| 897 | - //$data['arrival_airport_time'] = $line['arrtime']; |
|
| 898 | - if (isset($line['aircraft'])) $data['aircraft_icao'] = $line['aircraft']; |
|
| 899 | - if (isset($line['transponder'])) $data['squawk'] = $line['transponder']; |
|
| 900 | - if (isset($line['atis'])) $data['info'] = $line['atis']; |
|
| 901 | - else $data['info'] = ''; |
|
| 902 | - $data['format_source'] = 'pireps'; |
|
| 903 | - $data['id_source'] = $id_source; |
|
| 904 | - $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 905 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 906 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 907 | - if ($line['icon'] == 'plane') { |
|
| 878 | + foreach ($all_data['pireps'] as $line) { |
|
| 879 | + $data = array(); |
|
| 880 | + $data['id'] = $line['id']; |
|
| 881 | + $data['hex'] = substr(str_pad(dechex($line['id']),6,'000000',STR_PAD_LEFT),0,6); |
|
| 882 | + $data['ident'] = $line['callsign']; // ident |
|
| 883 | + if (isset($line['pilotid'])) $data['pilot_id'] = $line['pilotid']; // pilot id |
|
| 884 | + if (isset($line['name'])) $data['pilot_name'] = $line['name']; // pilot name |
|
| 885 | + if (isset($line['alt'])) $data['altitude'] = $line['alt']; // altitude |
|
| 886 | + if (isset($line['gs'])) $data['speed'] = $line['gs']; // speed |
|
| 887 | + if (isset($line['heading'])) $data['heading'] = $line['heading']; // heading |
|
| 888 | + if (isset($line['route'])) $data['waypoints'] = $line['route']; // route |
|
| 889 | + $data['latitude'] = $line['lat']; // lat |
|
| 890 | + $data['longitude'] = $line['lon']; // long |
|
| 891 | + //$data['verticalrate'] = $line['vrt']; // verticale rate |
|
| 892 | + //$data['squawk'] = $line['squawk']; // squawk |
|
| 893 | + //$data['emergency'] = ''; // emergency |
|
| 894 | + if (isset($line['depicao'])) $data['departure_airport_icao'] = $line['depicao']; |
|
| 895 | + if (isset($line['deptime'])) $data['departure_airport_time'] = $line['deptime']; |
|
| 896 | + if (isset($line['arricao'])) $data['arrival_airport_icao'] = $line['arricao']; |
|
| 897 | + //$data['arrival_airport_time'] = $line['arrtime']; |
|
| 898 | + if (isset($line['aircraft'])) $data['aircraft_icao'] = $line['aircraft']; |
|
| 899 | + if (isset($line['transponder'])) $data['squawk'] = $line['transponder']; |
|
| 900 | + if (isset($line['atis'])) $data['info'] = $line['atis']; |
|
| 901 | + else $data['info'] = ''; |
|
| 902 | + $data['format_source'] = 'pireps'; |
|
| 903 | + $data['id_source'] = $id_source; |
|
| 904 | + $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 905 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 906 | + if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 907 | + if ($line['icon'] == 'plane') { |
|
| 908 | 908 | $SI->add($data); |
| 909 | - // print_r($data); |
|
| 910 | - } elseif ($line['icon'] == 'ct') { |
|
| 909 | + // print_r($data); |
|
| 910 | + } elseif ($line['icon'] == 'ct') { |
|
| 911 | 911 | $data['info'] = str_replace('^§','<br />',$data['info']); |
| 912 | 912 | $data['info'] = str_replace('&sect;','',$data['info']); |
| 913 | 913 | $typec = substr($data['ident'],-3); |
@@ -922,196 +922,196 @@ discard block |
||
| 922 | 922 | elseif ($typec == 'CTR') $data['type'] = 'Control Radar or Centre'; |
| 923 | 923 | else $data['type'] = 'Observer'; |
| 924 | 924 | if (isset($ATC)) echo $ATC->add($data['ident'],'',$data['latitude'],$data['longitude'],'0',$data['info'],$data['datetime'],$data['type'],$data['pilot_id'],$data['pilot_name'],$data['format_source']); |
| 925 | - } |
|
| 926 | - unset($data); |
|
| 925 | + } |
|
| 926 | + unset($data); |
|
| 927 | + } |
|
| 927 | 928 | } |
| 928 | - } |
|
| 929 | - //$last_exec['pirepsjson'] = time(); |
|
| 930 | - $last_exec[$id]['last'] = time(); |
|
| 931 | - //} elseif ($value == 'phpvmacars' && (time() - $last_exec['phpvmacars'] > $globalMinFetch)) { |
|
| 932 | - } elseif ($value['format'] == 'phpvmacars' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 933 | - //$buffer = $Common->getData($hosts[$id]); |
|
| 934 | - if ($globalDebug) echo 'Get Data...'."\n"; |
|
| 935 | - $buffer = $Common->getData($value['host']); |
|
| 936 | - $all_data = json_decode($buffer,true); |
|
| 937 | - if ($buffer != '' && is_array($all_data)) { |
|
| 929 | + //$last_exec['pirepsjson'] = time(); |
|
| 930 | + $last_exec[$id]['last'] = time(); |
|
| 931 | + //} elseif ($value == 'phpvmacars' && (time() - $last_exec['phpvmacars'] > $globalMinFetch)) { |
|
| 932 | + } elseif ($value['format'] == 'phpvmacars' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 933 | + //$buffer = $Common->getData($hosts[$id]); |
|
| 934 | + if ($globalDebug) echo 'Get Data...'."\n"; |
|
| 935 | + $buffer = $Common->getData($value['host']); |
|
| 936 | + $all_data = json_decode($buffer,true); |
|
| 937 | + if ($buffer != '' && is_array($all_data)) { |
|
| 938 | 938 | $reset = 0; |
| 939 | 939 | foreach ($all_data as $line) { |
| 940 | - $data = array(); |
|
| 941 | - //$data['id'] = $line['id']; // id not usable |
|
| 942 | - if (isset($line['pilotid'])) $data['id'] = $line['pilotid'].$line['flightnum']; |
|
| 943 | - $data['hex'] = substr(str_pad(bin2hex($line['flightnum']),6,'000000',STR_PAD_LEFT),-6); // hex |
|
| 944 | - if (isset($line['pilotname'])) $data['pilot_name'] = $line['pilotname']; |
|
| 945 | - if (isset($line['pilotid'])) $data['pilot_id'] = $line['pilotid']; |
|
| 946 | - $data['ident'] = $line['flightnum']; // ident |
|
| 947 | - $data['altitude'] = $line['alt']; // altitude |
|
| 948 | - $data['speed'] = $line['gs']; // speed |
|
| 949 | - $data['heading'] = $line['heading']; // heading |
|
| 950 | - $data['latitude'] = $line['lat']; // lat |
|
| 951 | - $data['longitude'] = $line['lng']; // long |
|
| 952 | - $data['verticalrate'] = ''; // verticale rate |
|
| 953 | - $data['squawk'] = ''; // squawk |
|
| 954 | - $data['emergency'] = ''; // emergency |
|
| 955 | - //$data['datetime'] = $line['lastupdate']; |
|
| 956 | - $data['last_update'] = $line['lastupdate']; |
|
| 957 | - $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 958 | - $data['departure_airport_icao'] = $line['depicao']; |
|
| 959 | - $data['departure_airport_time'] = $line['deptime']; |
|
| 960 | - $data['arrival_airport_icao'] = $line['arricao']; |
|
| 961 | - $data['arrival_airport_time'] = $line['arrtime']; |
|
| 962 | - $data['registration'] = $line['aircraft']; |
|
| 963 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 964 | - if (isset($line['route'])) $data['waypoints'] = $line['route']; // route |
|
| 965 | - if (isset($line['aircraftname'])) { |
|
| 940 | + $data = array(); |
|
| 941 | + //$data['id'] = $line['id']; // id not usable |
|
| 942 | + if (isset($line['pilotid'])) $data['id'] = $line['pilotid'].$line['flightnum']; |
|
| 943 | + $data['hex'] = substr(str_pad(bin2hex($line['flightnum']),6,'000000',STR_PAD_LEFT),-6); // hex |
|
| 944 | + if (isset($line['pilotname'])) $data['pilot_name'] = $line['pilotname']; |
|
| 945 | + if (isset($line['pilotid'])) $data['pilot_id'] = $line['pilotid']; |
|
| 946 | + $data['ident'] = $line['flightnum']; // ident |
|
| 947 | + $data['altitude'] = $line['alt']; // altitude |
|
| 948 | + $data['speed'] = $line['gs']; // speed |
|
| 949 | + $data['heading'] = $line['heading']; // heading |
|
| 950 | + $data['latitude'] = $line['lat']; // lat |
|
| 951 | + $data['longitude'] = $line['lng']; // long |
|
| 952 | + $data['verticalrate'] = ''; // verticale rate |
|
| 953 | + $data['squawk'] = ''; // squawk |
|
| 954 | + $data['emergency'] = ''; // emergency |
|
| 955 | + //$data['datetime'] = $line['lastupdate']; |
|
| 956 | + $data['last_update'] = $line['lastupdate']; |
|
| 957 | + $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 958 | + $data['departure_airport_icao'] = $line['depicao']; |
|
| 959 | + $data['departure_airport_time'] = $line['deptime']; |
|
| 960 | + $data['arrival_airport_icao'] = $line['arricao']; |
|
| 961 | + $data['arrival_airport_time'] = $line['arrtime']; |
|
| 962 | + $data['registration'] = $line['aircraft']; |
|
| 963 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 964 | + if (isset($line['route'])) $data['waypoints'] = $line['route']; // route |
|
| 965 | + if (isset($line['aircraftname'])) { |
|
| 966 | 966 | $line['aircraftname'] = strtoupper($line['aircraftname']); |
| 967 | 967 | $line['aircraftname'] = str_replace('BOEING ','B',$line['aircraftname']); |
| 968 | - $aircraft_data = explode('-',$line['aircraftname']); |
|
| 969 | - if (isset($aircraft_data[1]) && strlen($aircraft_data[0]) >= 3 && strlen($aircraft_data[0]) <= 4) $data['aircraft_icao'] = $aircraft_data[0]; |
|
| 970 | - elseif (isset($aircraft_data[1]) && strlen($aircraft_data[1]) >= 3 && strlen($aircraft_data[1]) <= 4) $data['aircraft_icao'] = $aircraft_data[1]; |
|
| 971 | - else { |
|
| 972 | - $aircraft_data = explode(' ',$line['aircraftname']); |
|
| 973 | - if (isset($aircraft_data[1])) $data['aircraft_icao'] = str_replace('-','',$aircraft_data[1]); |
|
| 974 | - else $data['aircraft_icao'] = str_replace('-','',$line['aircraftname']); |
|
| 975 | - } |
|
| 976 | - } |
|
| 977 | - if (isset($line['route'])) $data['waypoints'] = $line['route']; |
|
| 978 | - $data['id_source'] = $id_source; |
|
| 979 | - $data['format_source'] = 'phpvmacars'; |
|
| 980 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 981 | - $SI->add($data); |
|
| 982 | - unset($data); |
|
| 968 | + $aircraft_data = explode('-',$line['aircraftname']); |
|
| 969 | + if (isset($aircraft_data[1]) && strlen($aircraft_data[0]) >= 3 && strlen($aircraft_data[0]) <= 4) $data['aircraft_icao'] = $aircraft_data[0]; |
|
| 970 | + elseif (isset($aircraft_data[1]) && strlen($aircraft_data[1]) >= 3 && strlen($aircraft_data[1]) <= 4) $data['aircraft_icao'] = $aircraft_data[1]; |
|
| 971 | + else { |
|
| 972 | + $aircraft_data = explode(' ',$line['aircraftname']); |
|
| 973 | + if (isset($aircraft_data[1])) $data['aircraft_icao'] = str_replace('-','',$aircraft_data[1]); |
|
| 974 | + else $data['aircraft_icao'] = str_replace('-','',$line['aircraftname']); |
|
| 975 | + } |
|
| 976 | + } |
|
| 977 | + if (isset($line['route'])) $data['waypoints'] = $line['route']; |
|
| 978 | + $data['id_source'] = $id_source; |
|
| 979 | + $data['format_source'] = 'phpvmacars'; |
|
| 980 | + if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 981 | + $SI->add($data); |
|
| 982 | + unset($data); |
|
| 983 | 983 | } |
| 984 | 984 | if ($globalDebug) echo 'No more data...'."\n"; |
| 985 | 985 | unset($buffer); |
| 986 | 986 | unset($all_data); |
| 987 | - } |
|
| 988 | - //$last_exec['phpvmacars'] = time(); |
|
| 989 | - $last_exec[$id]['last'] = time(); |
|
| 990 | - } elseif ($value['format'] == 'vam' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 991 | - //$buffer = $Common->getData($hosts[$id]); |
|
| 992 | - if ($globalDebug) echo 'Get Data...'."\n"; |
|
| 993 | - $buffer = $Common->getData($value['host']); |
|
| 994 | - $all_data = json_decode($buffer,true); |
|
| 995 | - if ($buffer != '' && is_array($all_data)) { |
|
| 987 | + } |
|
| 988 | + //$last_exec['phpvmacars'] = time(); |
|
| 989 | + $last_exec[$id]['last'] = time(); |
|
| 990 | + } elseif ($value['format'] == 'vam' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
|
| 991 | + //$buffer = $Common->getData($hosts[$id]); |
|
| 992 | + if ($globalDebug) echo 'Get Data...'."\n"; |
|
| 993 | + $buffer = $Common->getData($value['host']); |
|
| 994 | + $all_data = json_decode($buffer,true); |
|
| 995 | + if ($buffer != '' && is_array($all_data)) { |
|
| 996 | 996 | $reset = 0; |
| 997 | 997 | foreach ($all_data as $line) { |
| 998 | - $data = array(); |
|
| 999 | - //$data['id'] = $line['id']; // id not usable |
|
| 1000 | - $data['id'] = trim($line['flight_id']); |
|
| 1001 | - $data['hex'] = substr(str_pad(bin2hex($line['callsign']),6,'000000',STR_PAD_LEFT),-6); // hex |
|
| 1002 | - $data['pilot_name'] = $line['pilot_name']; |
|
| 1003 | - $data['pilot_id'] = $line['pilot_id']; |
|
| 1004 | - $data['ident'] = trim($line['callsign']); // ident |
|
| 1005 | - $data['altitude'] = $line['altitude']; // altitude |
|
| 1006 | - $data['speed'] = $line['gs']; // speed |
|
| 1007 | - $data['heading'] = $line['heading']; // heading |
|
| 1008 | - $data['latitude'] = $line['latitude']; // lat |
|
| 1009 | - $data['longitude'] = $line['longitude']; // long |
|
| 1010 | - $data['verticalrate'] = ''; // verticale rate |
|
| 1011 | - $data['squawk'] = ''; // squawk |
|
| 1012 | - $data['emergency'] = ''; // emergency |
|
| 1013 | - //$data['datetime'] = $line['lastupdate']; |
|
| 1014 | - $data['last_update'] = $line['last_update']; |
|
| 1015 | - $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1016 | - $data['departure_airport_icao'] = $line['departure']; |
|
| 1017 | - //$data['departure_airport_time'] = $line['departure_time']; |
|
| 1018 | - $data['arrival_airport_icao'] = $line['arrival']; |
|
| 1019 | - //$data['arrival_airport_time'] = $line['arrival_time']; |
|
| 1020 | - //$data['registration'] = $line['aircraft']; |
|
| 1021 | - if (isset($line['route'])) $data['waypoints'] = $line['route']; // route |
|
| 1022 | - $data['aircraft_icao'] = $line['plane_type']; |
|
| 1023 | - $data['id_source'] = $id_source; |
|
| 1024 | - $data['format_source'] = 'vam'; |
|
| 1025 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1026 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 1027 | - $SI->add($data); |
|
| 1028 | - unset($data); |
|
| 998 | + $data = array(); |
|
| 999 | + //$data['id'] = $line['id']; // id not usable |
|
| 1000 | + $data['id'] = trim($line['flight_id']); |
|
| 1001 | + $data['hex'] = substr(str_pad(bin2hex($line['callsign']),6,'000000',STR_PAD_LEFT),-6); // hex |
|
| 1002 | + $data['pilot_name'] = $line['pilot_name']; |
|
| 1003 | + $data['pilot_id'] = $line['pilot_id']; |
|
| 1004 | + $data['ident'] = trim($line['callsign']); // ident |
|
| 1005 | + $data['altitude'] = $line['altitude']; // altitude |
|
| 1006 | + $data['speed'] = $line['gs']; // speed |
|
| 1007 | + $data['heading'] = $line['heading']; // heading |
|
| 1008 | + $data['latitude'] = $line['latitude']; // lat |
|
| 1009 | + $data['longitude'] = $line['longitude']; // long |
|
| 1010 | + $data['verticalrate'] = ''; // verticale rate |
|
| 1011 | + $data['squawk'] = ''; // squawk |
|
| 1012 | + $data['emergency'] = ''; // emergency |
|
| 1013 | + //$data['datetime'] = $line['lastupdate']; |
|
| 1014 | + $data['last_update'] = $line['last_update']; |
|
| 1015 | + $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1016 | + $data['departure_airport_icao'] = $line['departure']; |
|
| 1017 | + //$data['departure_airport_time'] = $line['departure_time']; |
|
| 1018 | + $data['arrival_airport_icao'] = $line['arrival']; |
|
| 1019 | + //$data['arrival_airport_time'] = $line['arrival_time']; |
|
| 1020 | + //$data['registration'] = $line['aircraft']; |
|
| 1021 | + if (isset($line['route'])) $data['waypoints'] = $line['route']; // route |
|
| 1022 | + $data['aircraft_icao'] = $line['plane_type']; |
|
| 1023 | + $data['id_source'] = $id_source; |
|
| 1024 | + $data['format_source'] = 'vam'; |
|
| 1025 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1026 | + if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 1027 | + $SI->add($data); |
|
| 1028 | + unset($data); |
|
| 1029 | 1029 | } |
| 1030 | 1030 | if ($globalDebug) echo 'No more data...'."\n"; |
| 1031 | 1031 | unset($buffer); |
| 1032 | 1032 | unset($all_data); |
| 1033 | - } |
|
| 1034 | - //$last_exec['phpvmacars'] = time(); |
|
| 1035 | - $last_exec[$id]['last'] = time(); |
|
| 1033 | + } |
|
| 1034 | + //$last_exec['phpvmacars'] = time(); |
|
| 1035 | + $last_exec[$id]['last'] = time(); |
|
| 1036 | 1036 | //} elseif ($value == 'sbs' || $value == 'tsv' || $value == 'raw' || $value == 'aprs' || $value == 'beast') { |
| 1037 | 1037 | } elseif ($value['format'] == 'sbs' || $value['format'] == 'tsv' || $value['format'] == 'raw' || $value['format'] == 'aprs' || $value['format'] == 'beast' || $value['format'] == 'flightgearmp' || $value['format'] == 'flightgearsp' || $value['format'] == 'acars' || $value['format'] == 'acarssbs3' || $value['format'] == 'ais' || $value['format'] == 'vrstcp') { |
| 1038 | - if (function_exists('pcntl_fork')) pcntl_signal_dispatch(); |
|
| 1039 | - //$last_exec[$id]['last'] = time(); |
|
| 1038 | + if (function_exists('pcntl_fork')) pcntl_signal_dispatch(); |
|
| 1039 | + //$last_exec[$id]['last'] = time(); |
|
| 1040 | 1040 | |
| 1041 | - //$read = array( $sockets[$id] ); |
|
| 1042 | - $read = $sockets; |
|
| 1043 | - $write = NULL; |
|
| 1044 | - $e = NULL; |
|
| 1045 | - $n = socket_select($read, $write, $e, $timeout); |
|
| 1046 | - if ($e != NULL) var_dump($e); |
|
| 1047 | - if ($n > 0) { |
|
| 1041 | + //$read = array( $sockets[$id] ); |
|
| 1042 | + $read = $sockets; |
|
| 1043 | + $write = NULL; |
|
| 1044 | + $e = NULL; |
|
| 1045 | + $n = socket_select($read, $write, $e, $timeout); |
|
| 1046 | + if ($e != NULL) var_dump($e); |
|
| 1047 | + if ($n > 0) { |
|
| 1048 | 1048 | $reset = 0; |
| 1049 | 1049 | foreach ($read as $nb => $r) { |
| 1050 | - //$value = $formats[$nb]; |
|
| 1051 | - $format = $globalSources[$nb]['format']; |
|
| 1052 | - if ($format == 'sbs' || $format == 'aprs' || $format == 'raw' || $format == 'tsv' || $format == 'acarssbs3') { |
|
| 1050 | + //$value = $formats[$nb]; |
|
| 1051 | + $format = $globalSources[$nb]['format']; |
|
| 1052 | + if ($format == 'sbs' || $format == 'aprs' || $format == 'raw' || $format == 'tsv' || $format == 'acarssbs3') { |
|
| 1053 | 1053 | $buffer = @socket_read($r, 6000,PHP_NORMAL_READ); |
| 1054 | - } elseif ($format == 'vrstcp') { |
|
| 1054 | + } elseif ($format == 'vrstcp') { |
|
| 1055 | 1055 | $buffer = @socket_read($r, 6000); |
| 1056 | - } else { |
|
| 1056 | + } else { |
|
| 1057 | 1057 | $az = socket_recvfrom($r,$buffer,6000,0,$remote_ip,$remote_port); |
| 1058 | - } |
|
| 1059 | - //$buffer = socket_read($r, 60000,PHP_NORMAL_READ); |
|
| 1060 | - //echo $buffer."\n"; |
|
| 1061 | - // lets play nice and handle signals such as ctrl-c/kill properly |
|
| 1062 | - //if (function_exists('pcntl_fork')) pcntl_signal_dispatch(); |
|
| 1063 | - $error = false; |
|
| 1064 | - //$SI::del(); |
|
| 1065 | - if ($format == 'vrstcp') { |
|
| 1058 | + } |
|
| 1059 | + //$buffer = socket_read($r, 60000,PHP_NORMAL_READ); |
|
| 1060 | + //echo $buffer."\n"; |
|
| 1061 | + // lets play nice and handle signals such as ctrl-c/kill properly |
|
| 1062 | + //if (function_exists('pcntl_fork')) pcntl_signal_dispatch(); |
|
| 1063 | + $error = false; |
|
| 1064 | + //$SI::del(); |
|
| 1065 | + if ($format == 'vrstcp') { |
|
| 1066 | 1066 | $buffer = explode('},{',$buffer); |
| 1067 | - } else $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'',$buffer)); |
|
| 1068 | - // SBS format is CSV format |
|
| 1069 | - if ($buffer !== FALSE && $buffer != '') { |
|
| 1067 | + } else $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'',$buffer)); |
|
| 1068 | + // SBS format is CSV format |
|
| 1069 | + if ($buffer !== FALSE && $buffer != '') { |
|
| 1070 | 1070 | $tt[$format] = 0; |
| 1071 | 1071 | if ($format == 'acarssbs3') { |
| 1072 | - if ($globalDebug) echo 'ACARS : '.$buffer."\n"; |
|
| 1073 | - $ACARS->add(trim($buffer)); |
|
| 1074 | - $ACARS->deleteLiveAcarsData(); |
|
| 1072 | + if ($globalDebug) echo 'ACARS : '.$buffer."\n"; |
|
| 1073 | + $ACARS->add(trim($buffer)); |
|
| 1074 | + $ACARS->deleteLiveAcarsData(); |
|
| 1075 | 1075 | } elseif ($format == 'raw') { |
| 1076 | - // AVR format |
|
| 1077 | - $data = $SBS->parse($buffer); |
|
| 1078 | - if (is_array($data)) { |
|
| 1076 | + // AVR format |
|
| 1077 | + $data = $SBS->parse($buffer); |
|
| 1078 | + if (is_array($data)) { |
|
| 1079 | 1079 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 1080 | 1080 | $data['format_source'] = 'raw'; |
| 1081 | 1081 | if (isset($globalSources[$nb]['name']) && $globalSources[$nb]['name'] != '') $data['source_name'] = $globalSources[$nb]['name']; |
| 1082 | 1082 | if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
| 1083 | 1083 | if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
| 1084 | 1084 | if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
| 1085 | - } |
|
| 1085 | + } |
|
| 1086 | 1086 | } elseif ($format == 'ais') { |
| 1087 | - $ais_data = $AIS->parse_line(trim($buffer)); |
|
| 1088 | - $data = array(); |
|
| 1089 | - if (isset($ais_data['ident'])) $data['ident'] = $ais_data['ident']; |
|
| 1090 | - if (isset($ais_data['mmsi'])) $data['mmsi'] = $ais_data['mmsi']; |
|
| 1091 | - if (isset($ais_data['speed'])) $data['speed'] = $ais_data['speed']; |
|
| 1092 | - if (isset($ais_data['heading'])) $data['heading'] = $ais_data['heading']; |
|
| 1093 | - if (isset($ais_data['latitude'])) $data['latitude'] = $ais_data['latitude']; |
|
| 1094 | - if (isset($ais_data['longitude'])) $data['longitude'] = $ais_data['longitude']; |
|
| 1095 | - if (isset($ais_data['status'])) $data['status'] = $ais_data['status']; |
|
| 1096 | - if (isset($ais_data['type'])) $data['type'] = $ais_data['type']; |
|
| 1097 | - if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
|
| 1098 | - if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
|
| 1099 | - if (isset($ais_data['destination'])) $data['arrival_code'] = $ais_data['destination']; |
|
| 1100 | - if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s',$ais_data['eta_ts']); |
|
| 1101 | - if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1087 | + $ais_data = $AIS->parse_line(trim($buffer)); |
|
| 1088 | + $data = array(); |
|
| 1089 | + if (isset($ais_data['ident'])) $data['ident'] = $ais_data['ident']; |
|
| 1090 | + if (isset($ais_data['mmsi'])) $data['mmsi'] = $ais_data['mmsi']; |
|
| 1091 | + if (isset($ais_data['speed'])) $data['speed'] = $ais_data['speed']; |
|
| 1092 | + if (isset($ais_data['heading'])) $data['heading'] = $ais_data['heading']; |
|
| 1093 | + if (isset($ais_data['latitude'])) $data['latitude'] = $ais_data['latitude']; |
|
| 1094 | + if (isset($ais_data['longitude'])) $data['longitude'] = $ais_data['longitude']; |
|
| 1095 | + if (isset($ais_data['status'])) $data['status'] = $ais_data['status']; |
|
| 1096 | + if (isset($ais_data['type'])) $data['type'] = $ais_data['type']; |
|
| 1097 | + if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
|
| 1098 | + if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
|
| 1099 | + if (isset($ais_data['destination'])) $data['arrival_code'] = $ais_data['destination']; |
|
| 1100 | + if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s',$ais_data['eta_ts']); |
|
| 1101 | + if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1102 | 1102 | |
| 1103 | - if (isset($ais_data['timestamp'])) { |
|
| 1103 | + if (isset($ais_data['timestamp'])) { |
|
| 1104 | 1104 | $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
| 1105 | - } else { |
|
| 1105 | + } else { |
|
| 1106 | 1106 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 1107 | - } |
|
| 1108 | - $data['format_source'] = 'aisnmea'; |
|
| 1109 | - $data['id_source'] = $id_source; |
|
| 1110 | - if (isset($ais_data['mmsi_type']) && $ais_data['mmsi_type'] == 'Ship') $MI->add($data); |
|
| 1111 | - unset($data); |
|
| 1112 | - } elseif ($format == 'flightgearsp') { |
|
| 1113 | - //echo $buffer."\n"; |
|
| 1114 | - if (strlen($buffer) > 5) { |
|
| 1107 | + } |
|
| 1108 | + $data['format_source'] = 'aisnmea'; |
|
| 1109 | + $data['id_source'] = $id_source; |
|
| 1110 | + if (isset($ais_data['mmsi_type']) && $ais_data['mmsi_type'] == 'Ship') $MI->add($data); |
|
| 1111 | + unset($data); |
|
| 1112 | + } elseif ($format == 'flightgearsp') { |
|
| 1113 | + //echo $buffer."\n"; |
|
| 1114 | + if (strlen($buffer) > 5) { |
|
| 1115 | 1115 | $line = explode(',',$buffer); |
| 1116 | 1116 | $data = array(); |
| 1117 | 1117 | //XGPS,2.0947,41.3093,-3047.6953,198.930,0.000,callsign,c172p |
@@ -1128,38 +1128,38 @@ discard block |
||
| 1128 | 1128 | if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
| 1129 | 1129 | if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
| 1130 | 1130 | $send = @ socket_send( $r , $data_aprs , strlen($data_aprs) , 0 ); |
| 1131 | - } |
|
| 1132 | - } elseif ($format == 'acars') { |
|
| 1133 | - if ($globalDebug) echo 'ACARS : '.$buffer."\n"; |
|
| 1134 | - $ACARS->add(trim($buffer)); |
|
| 1135 | - socket_sendto($r, "OK " . $buffer , 100 , 0 , $remote_ip , $remote_port); |
|
| 1136 | - $ACARS->deleteLiveAcarsData(); |
|
| 1131 | + } |
|
| 1132 | + } elseif ($format == 'acars') { |
|
| 1133 | + if ($globalDebug) echo 'ACARS : '.$buffer."\n"; |
|
| 1134 | + $ACARS->add(trim($buffer)); |
|
| 1135 | + socket_sendto($r, "OK " . $buffer , 100 , 0 , $remote_ip , $remote_port); |
|
| 1136 | + $ACARS->deleteLiveAcarsData(); |
|
| 1137 | 1137 | } elseif ($format == 'flightgearmp') { |
| 1138 | - if (substr($buffer,0,1) != '#') { |
|
| 1138 | + if (substr($buffer,0,1) != '#') { |
|
| 1139 | 1139 | $data = array(); |
| 1140 | 1140 | //echo $buffer."\n"; |
| 1141 | 1141 | $line = explode(' ',$buffer); |
| 1142 | 1142 | if (count($line) == 11) { |
| 1143 | - $userserver = explode('@',$line[0]); |
|
| 1144 | - $data['hex'] = substr(str_pad(bin2hex($line[0]),6,'000000',STR_PAD_LEFT),0,6); // hex |
|
| 1145 | - $data['ident'] = $userserver[0]; |
|
| 1146 | - $data['registration'] = $userserver[0]; |
|
| 1147 | - $data['latitude'] = $line[4]; |
|
| 1148 | - $data['longitude'] = $line[5]; |
|
| 1149 | - $data['altitude'] = $line[6]; |
|
| 1150 | - $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1151 | - $aircraft_type = $line[10]; |
|
| 1152 | - $aircraft_type = preg_split(':/:',$aircraft_type); |
|
| 1153 | - $data['aircraft_name'] = substr(end($aircraft_type),0,-4); |
|
| 1154 | - if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1155 | - if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
|
| 1143 | + $userserver = explode('@',$line[0]); |
|
| 1144 | + $data['hex'] = substr(str_pad(bin2hex($line[0]),6,'000000',STR_PAD_LEFT),0,6); // hex |
|
| 1145 | + $data['ident'] = $userserver[0]; |
|
| 1146 | + $data['registration'] = $userserver[0]; |
|
| 1147 | + $data['latitude'] = $line[4]; |
|
| 1148 | + $data['longitude'] = $line[5]; |
|
| 1149 | + $data['altitude'] = $line[6]; |
|
| 1150 | + $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1151 | + $aircraft_type = $line[10]; |
|
| 1152 | + $aircraft_type = preg_split(':/:',$aircraft_type); |
|
| 1153 | + $data['aircraft_name'] = substr(end($aircraft_type),0,-4); |
|
| 1154 | + if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1155 | + if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
|
| 1156 | + } |
|
| 1156 | 1157 | } |
| 1157 | - } |
|
| 1158 | 1158 | } elseif ($format == 'beast') { |
| 1159 | - echo 'Beast Binary format not yet supported. Beast AVR format is supported in alpha state'."\n"; |
|
| 1160 | - die; |
|
| 1159 | + echo 'Beast Binary format not yet supported. Beast AVR format is supported in alpha state'."\n"; |
|
| 1160 | + die; |
|
| 1161 | 1161 | } elseif ($format == 'vrstcp') { |
| 1162 | - foreach($buffer as $all_data) { |
|
| 1162 | + foreach($buffer as $all_data) { |
|
| 1163 | 1163 | $line = json_decode('{'.$all_data.'}',true); |
| 1164 | 1164 | $data = array(); |
| 1165 | 1165 | if (isset($line['Icao'])) $data['hex'] = $line['Icao']; // hex |
@@ -1179,106 +1179,106 @@ discard block |
||
| 1179 | 1179 | */ |
| 1180 | 1180 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 1181 | 1181 | if (isset($line['Type'])) $data['aircraft_icao'] = $line['Type']; |
| 1182 | - $data['format_source'] = 'vrstcp'; |
|
| 1182 | + $data['format_source'] = 'vrstcp'; |
|
| 1183 | 1183 | $data['id_source'] = $id_source; |
| 1184 | 1184 | if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
| 1185 | 1185 | if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
| 1186 | 1186 | if (isset($data['latitude']) && isset($data['hex'])) $SI->add($data); |
| 1187 | 1187 | unset($data); |
| 1188 | - } |
|
| 1188 | + } |
|
| 1189 | 1189 | } elseif ($format == 'tsv' || substr($buffer,0,4) == 'clock') { |
| 1190 | - $line = explode("\t", $buffer); |
|
| 1191 | - for($k = 0; $k < count($line); $k=$k+2) { |
|
| 1190 | + $line = explode("\t", $buffer); |
|
| 1191 | + for($k = 0; $k < count($line); $k=$k+2) { |
|
| 1192 | 1192 | $key = $line[$k]; |
| 1193 | - $lined[$key] = $line[$k+1]; |
|
| 1194 | - } |
|
| 1195 | - if (count($lined) > 3) { |
|
| 1196 | - $data['hex'] = $lined['hexid']; |
|
| 1197 | - //$data['datetime'] = date('Y-m-d H:i:s',strtotime($lined['clock']));; |
|
| 1198 | - $data['datetime'] = date('Y-m-d H:i:s');; |
|
| 1199 | - if (isset($lined['ident'])) $data['ident'] = $lined['ident']; |
|
| 1200 | - if (isset($lined['lat'])) $data['latitude'] = $lined['lat']; |
|
| 1201 | - if (isset($lined['lon'])) $data['longitude'] = $lined['lon']; |
|
| 1202 | - if (isset($lined['speed'])) $data['speed'] = $lined['speed']; |
|
| 1203 | - if (isset($lined['squawk'])) $data['squawk'] = $lined['squawk']; |
|
| 1204 | - if (isset($lined['alt'])) $data['altitude'] = $lined['alt']; |
|
| 1205 | - if (isset($lined['heading'])) $data['heading'] = $lined['heading']; |
|
| 1206 | - $data['id_source'] = $id_source; |
|
| 1207 | - $data['format_source'] = 'tsv'; |
|
| 1208 | - if (isset($globalSources[$nb]['name']) && $globalSources[$nb]['name'] != '') $data['source_name'] = $globalSources[$nb]['name']; |
|
| 1209 | - if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1193 | + $lined[$key] = $line[$k+1]; |
|
| 1194 | + } |
|
| 1195 | + if (count($lined) > 3) { |
|
| 1196 | + $data['hex'] = $lined['hexid']; |
|
| 1197 | + //$data['datetime'] = date('Y-m-d H:i:s',strtotime($lined['clock']));; |
|
| 1198 | + $data['datetime'] = date('Y-m-d H:i:s');; |
|
| 1199 | + if (isset($lined['ident'])) $data['ident'] = $lined['ident']; |
|
| 1200 | + if (isset($lined['lat'])) $data['latitude'] = $lined['lat']; |
|
| 1201 | + if (isset($lined['lon'])) $data['longitude'] = $lined['lon']; |
|
| 1202 | + if (isset($lined['speed'])) $data['speed'] = $lined['speed']; |
|
| 1203 | + if (isset($lined['squawk'])) $data['squawk'] = $lined['squawk']; |
|
| 1204 | + if (isset($lined['alt'])) $data['altitude'] = $lined['alt']; |
|
| 1205 | + if (isset($lined['heading'])) $data['heading'] = $lined['heading']; |
|
| 1206 | + $data['id_source'] = $id_source; |
|
| 1207 | + $data['format_source'] = 'tsv'; |
|
| 1208 | + if (isset($globalSources[$nb]['name']) && $globalSources[$nb]['name'] != '') $data['source_name'] = $globalSources[$nb]['name']; |
|
| 1209 | + if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1210 | 1210 | if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
| 1211 | - if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
|
| 1212 | - unset($lined); |
|
| 1213 | - unset($data); |
|
| 1214 | - } else $error = true; |
|
| 1211 | + if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
|
| 1212 | + unset($lined); |
|
| 1213 | + unset($data); |
|
| 1214 | + } else $error = true; |
|
| 1215 | 1215 | } elseif ($format == 'aprs' && $use_aprs) { |
| 1216 | - if ($aprs_connect == 0) { |
|
| 1216 | + if ($aprs_connect == 0) { |
|
| 1217 | 1217 | $send = @ socket_send( $r , $aprs_login , strlen($aprs_login) , 0 ); |
| 1218 | 1218 | $aprs_connect = 1; |
| 1219 | - } |
|
| 1219 | + } |
|
| 1220 | 1220 | |
| 1221 | - if ( $aprs_keep>60 && time() - $aprs_last_tx > $aprs_keep ) { |
|
| 1221 | + if ( $aprs_keep>60 && time() - $aprs_last_tx > $aprs_keep ) { |
|
| 1222 | 1222 | $aprs_last_tx = time(); |
| 1223 | 1223 | $data_aprs = "# Keep alive"; |
| 1224 | 1224 | $send = @ socket_send( $r , $data_aprs , strlen($data_aprs) , 0 ); |
| 1225 | - } |
|
| 1225 | + } |
|
| 1226 | 1226 | |
| 1227 | - //echo 'Connect : '.$aprs_connect.' '.$buffer."\n"; |
|
| 1228 | - //echo 'APRS data : '.$buffer."\n"; |
|
| 1229 | - $buffer = str_replace('APRS <- ','',$buffer); |
|
| 1230 | - $buffer = str_replace('APRS -> ','',$buffer); |
|
| 1231 | - //echo $buffer."\n"; |
|
| 1232 | - if (substr($buffer,0,1) != '#' && substr($buffer,0,1) != '@' && substr($buffer,0,5) != 'APRS ') { |
|
| 1227 | + //echo 'Connect : '.$aprs_connect.' '.$buffer."\n"; |
|
| 1228 | + //echo 'APRS data : '.$buffer."\n"; |
|
| 1229 | + $buffer = str_replace('APRS <- ','',$buffer); |
|
| 1230 | + $buffer = str_replace('APRS -> ','',$buffer); |
|
| 1231 | + //echo $buffer."\n"; |
|
| 1232 | + if (substr($buffer,0,1) != '#' && substr($buffer,0,1) != '@' && substr($buffer,0,5) != 'APRS ') { |
|
| 1233 | 1233 | $line = $APRS->parse($buffer); |
| 1234 | 1234 | //if (is_array($line) && isset($line['address']) && $line['address'] != '' && isset($line['ident'])) { |
| 1235 | 1235 | if (is_array($line) && isset($line['latitude']) && isset($line['longitude']) && (isset($line['ident']) || isset($line['address']) || isset($line['mmsi']))) { |
| 1236 | - $aprs_last_tx = time(); |
|
| 1237 | - $data = array(); |
|
| 1238 | - //print_r($line); |
|
| 1239 | - if (isset($line['address'])) $data['hex'] = $line['address']; |
|
| 1240 | - if (isset($line['mmsi'])) $data['mmsi'] = $line['mmsi']; |
|
| 1241 | - if (isset($line['timestamp'])) $data['datetime'] = date('Y-m-d H:i:s',$line['timestamp']); |
|
| 1242 | - else $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1243 | - //$data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1244 | - if (isset($line['ident'])) $data['ident'] = $line['ident']; |
|
| 1245 | - $data['latitude'] = $line['latitude']; |
|
| 1246 | - $data['longitude'] = $line['longitude']; |
|
| 1247 | - //$data['verticalrate'] = $line[16]; |
|
| 1248 | - if (isset($line['speed'])) $data['speed'] = $line['speed']; |
|
| 1249 | - else $data['speed'] = 0; |
|
| 1250 | - if (isset($line['altitude'])) $data['altitude'] = $line['altitude']; |
|
| 1251 | - if (isset($line['comment'])) $data['comment'] = $line['comment']; |
|
| 1252 | - if (isset($line['symbol'])) $data['type'] = $line['symbol']; |
|
| 1253 | - if (isset($line['heading'])) $data['heading'] = $line['heading']; |
|
| 1254 | - //else $data['heading'] = 0; |
|
| 1255 | - if (isset($line['stealth'])) $data['aircraft_type'] = $line['stealth']; |
|
| 1256 | - if (!isset($globalAPRSarchive) || (isset($globalAPRSarchive) && $globalAPRSarchive === FALSE)) $data['noarchive'] = true; |
|
| 1257 | - if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1258 | - $data['id_source'] = $id_source; |
|
| 1259 | - if (isset($line['format_source'])) $data['format_source'] = $line['format_source']; |
|
| 1260 | - else $data['format_source'] = 'aprs'; |
|
| 1261 | - $data['source_name'] = $line['source']; |
|
| 1262 | - if (isset($line['source_type'])) $data['source_type'] = $line['source_type']; |
|
| 1263 | - else $data['source_type'] = 'flarm'; |
|
| 1264 | - if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1265 | - $currentdate = date('Y-m-d H:i:s'); |
|
| 1266 | - $aprsdate = strtotime($data['datetime']); |
|
| 1267 | - // Accept data if time <= system time + 20s |
|
| 1268 | - if (($data['source_type'] == 'modes') || isset($line['stealth']) && ($line['stealth'] == 0 || $line['stealth'] == '') && (strtotime($data['datetime']) <= strtotime($currentdate)+20) && (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude'])))) { |
|
| 1236 | + $aprs_last_tx = time(); |
|
| 1237 | + $data = array(); |
|
| 1238 | + //print_r($line); |
|
| 1239 | + if (isset($line['address'])) $data['hex'] = $line['address']; |
|
| 1240 | + if (isset($line['mmsi'])) $data['mmsi'] = $line['mmsi']; |
|
| 1241 | + if (isset($line['timestamp'])) $data['datetime'] = date('Y-m-d H:i:s',$line['timestamp']); |
|
| 1242 | + else $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1243 | + //$data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1244 | + if (isset($line['ident'])) $data['ident'] = $line['ident']; |
|
| 1245 | + $data['latitude'] = $line['latitude']; |
|
| 1246 | + $data['longitude'] = $line['longitude']; |
|
| 1247 | + //$data['verticalrate'] = $line[16]; |
|
| 1248 | + if (isset($line['speed'])) $data['speed'] = $line['speed']; |
|
| 1249 | + else $data['speed'] = 0; |
|
| 1250 | + if (isset($line['altitude'])) $data['altitude'] = $line['altitude']; |
|
| 1251 | + if (isset($line['comment'])) $data['comment'] = $line['comment']; |
|
| 1252 | + if (isset($line['symbol'])) $data['type'] = $line['symbol']; |
|
| 1253 | + if (isset($line['heading'])) $data['heading'] = $line['heading']; |
|
| 1254 | + //else $data['heading'] = 0; |
|
| 1255 | + if (isset($line['stealth'])) $data['aircraft_type'] = $line['stealth']; |
|
| 1256 | + if (!isset($globalAPRSarchive) || (isset($globalAPRSarchive) && $globalAPRSarchive === FALSE)) $data['noarchive'] = true; |
|
| 1257 | + if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1258 | + $data['id_source'] = $id_source; |
|
| 1259 | + if (isset($line['format_source'])) $data['format_source'] = $line['format_source']; |
|
| 1260 | + else $data['format_source'] = 'aprs'; |
|
| 1261 | + $data['source_name'] = $line['source']; |
|
| 1262 | + if (isset($line['source_type'])) $data['source_type'] = $line['source_type']; |
|
| 1263 | + else $data['source_type'] = 'flarm'; |
|
| 1264 | + if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1265 | + $currentdate = date('Y-m-d H:i:s'); |
|
| 1266 | + $aprsdate = strtotime($data['datetime']); |
|
| 1267 | + // Accept data if time <= system time + 20s |
|
| 1268 | + if (($data['source_type'] == 'modes') || isset($line['stealth']) && ($line['stealth'] == 0 || $line['stealth'] == '') && (strtotime($data['datetime']) <= strtotime($currentdate)+20) && (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude'])))) { |
|
| 1269 | 1269 | $send = $SI->add($data); |
| 1270 | - } elseif ($data['source_type'] == 'ais') { |
|
| 1270 | + } elseif ($data['source_type'] == 'ais') { |
|
| 1271 | 1271 | echo 'add...'."\n"; |
| 1272 | 1272 | $send = $MI->add($data); |
| 1273 | - } elseif (isset($line['stealth'])) { |
|
| 1273 | + } elseif (isset($line['stealth'])) { |
|
| 1274 | 1274 | if ($line['stealth'] != 0) echo '-------- '.$data['ident'].' : APRS stealth ON => not adding'."\n"; |
| 1275 | 1275 | else echo '--------- '.$data['ident'].' : Date APRS : '.$data['datetime'].' - Current date : '.$currentdate.' => not adding future event'."\n"; |
| 1276 | - //} elseif (isset($line['symbol']) && isset($line['latitude']) && isset($line['longitude']) && ($line['symbol'] == 'Car' || $line['symbol'] == 'Ambulance' || $line['symbol'] == 'Van' || $line['symbol'] == 'Truck' || $line['symbol'] == 'Truck (18 Wheeler)' || $line['symbol'] == 'Motorcycle' || $line['symbol'] == 'Police' || $line['symbol'] == 'Bike' || $line['symbol'] == 'Jogger' || $line['symbol'] == 'Bus' || $line['symbol'] == 'Jeep' || $line['symbol'] == 'Recreational Vehicle' || $line['symbol'] == 'Yacht (Sail)' || $line['symbol'] == 'Ship (Power Boat)' || $line['symbol'] == 'Firetruck' || $line['symbol'] == 'Balloon' || $line['symbol'] == 'Aircraft (small)' || $line['symbol'] == 'Helicopter')) { |
|
| 1277 | - } elseif (isset($line['symbol']) && isset($line['latitude']) && isset($line['longitude']) && isset($line['speed']) && $line['symbol'] != 'Weather Station' && $line['symbol'] != 'House QTH (VHF)' && $line['symbol'] != 'Dot' && $line['symbol'] != 'TCP-IP' && $line['symbol'] != 'xAPRS (UNIX)' && $line['symbol'] != 'Antenna' && $line['symbol'] != 'Cloudy' && $line['symbol'] != 'HF Gateway' && $line['symbol'] != 'Yagi At QTH' && $line['symbol'] != 'Digi' && $line['symbol'] != '8' && $line['symbol'] != 'MacAPRS') { |
|
| 1276 | + //} elseif (isset($line['symbol']) && isset($line['latitude']) && isset($line['longitude']) && ($line['symbol'] == 'Car' || $line['symbol'] == 'Ambulance' || $line['symbol'] == 'Van' || $line['symbol'] == 'Truck' || $line['symbol'] == 'Truck (18 Wheeler)' || $line['symbol'] == 'Motorcycle' || $line['symbol'] == 'Police' || $line['symbol'] == 'Bike' || $line['symbol'] == 'Jogger' || $line['symbol'] == 'Bus' || $line['symbol'] == 'Jeep' || $line['symbol'] == 'Recreational Vehicle' || $line['symbol'] == 'Yacht (Sail)' || $line['symbol'] == 'Ship (Power Boat)' || $line['symbol'] == 'Firetruck' || $line['symbol'] == 'Balloon' || $line['symbol'] == 'Aircraft (small)' || $line['symbol'] == 'Helicopter')) { |
|
| 1277 | + } elseif (isset($line['symbol']) && isset($line['latitude']) && isset($line['longitude']) && isset($line['speed']) && $line['symbol'] != 'Weather Station' && $line['symbol'] != 'House QTH (VHF)' && $line['symbol'] != 'Dot' && $line['symbol'] != 'TCP-IP' && $line['symbol'] != 'xAPRS (UNIX)' && $line['symbol'] != 'Antenna' && $line['symbol'] != 'Cloudy' && $line['symbol'] != 'HF Gateway' && $line['symbol'] != 'Yagi At QTH' && $line['symbol'] != 'Digi' && $line['symbol'] != '8' && $line['symbol'] != 'MacAPRS') { |
|
| 1278 | 1278 | //echo '!!!!!!!!!!!!!!!! SEND !!!!!!!!!!!!!!!!!!!!'."\n"; |
| 1279 | 1279 | if (isset($globalTracker) && $globalTracker) $send = $TI->add($data); |
| 1280 | - } |
|
| 1281 | - unset($data); |
|
| 1280 | + } |
|
| 1281 | + unset($data); |
|
| 1282 | 1282 | } |
| 1283 | 1283 | elseif (is_array($line) && $globalDebug && isset($line['symbol']) && $line['symbol'] == 'Weather Station') { |
| 1284 | 1284 | echo '!! Weather Station not yet supported'."\n"; |
@@ -1288,12 +1288,12 @@ discard block |
||
| 1288 | 1288 | } |
| 1289 | 1289 | //elseif ($line == false && $globalDebug) echo 'Ignored ('.$buffer.")\n"; |
| 1290 | 1290 | //elseif ($line == true && $globalDebug) echo '!! Failed : '.$buffer."!!\n"; |
| 1291 | - } |
|
| 1291 | + } |
|
| 1292 | 1292 | } else { |
| 1293 | - $line = explode(',', $buffer); |
|
| 1294 | - if (count($line) > 20) { |
|
| 1295 | - $data['hex'] = $line[4]; |
|
| 1296 | - /* |
|
| 1293 | + $line = explode(',', $buffer); |
|
| 1294 | + if (count($line) > 20) { |
|
| 1295 | + $data['hex'] = $line[4]; |
|
| 1296 | + /* |
|
| 1297 | 1297 | $data['datetime'] = $line[6].' '.$line[7]; |
| 1298 | 1298 | date_default_timezone_set($globalTimezone); |
| 1299 | 1299 | $datetime = new DateTime($data['datetime']); |
@@ -1301,30 +1301,30 @@ discard block |
||
| 1301 | 1301 | $data['datetime'] = $datetime->format('Y-m-d H:i:s'); |
| 1302 | 1302 | date_default_timezone_set('UTC'); |
| 1303 | 1303 | */ |
| 1304 | - // Force datetime to current UTC datetime |
|
| 1305 | - date_default_timezone_set('UTC'); |
|
| 1306 | - $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1307 | - $data['ident'] = trim($line[10]); |
|
| 1308 | - $data['latitude'] = $line[14]; |
|
| 1309 | - $data['longitude'] = $line[15]; |
|
| 1310 | - $data['verticalrate'] = $line[16]; |
|
| 1311 | - $data['emergency'] = $line[20]; |
|
| 1312 | - $data['speed'] = $line[12]; |
|
| 1313 | - $data['squawk'] = $line[17]; |
|
| 1314 | - $data['altitude'] = $line[11]; |
|
| 1315 | - $data['heading'] = $line[13]; |
|
| 1316 | - $data['ground'] = $line[21]; |
|
| 1317 | - $data['emergency'] = $line[19]; |
|
| 1318 | - $data['format_source'] = 'sbs'; |
|
| 1304 | + // Force datetime to current UTC datetime |
|
| 1305 | + date_default_timezone_set('UTC'); |
|
| 1306 | + $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1307 | + $data['ident'] = trim($line[10]); |
|
| 1308 | + $data['latitude'] = $line[14]; |
|
| 1309 | + $data['longitude'] = $line[15]; |
|
| 1310 | + $data['verticalrate'] = $line[16]; |
|
| 1311 | + $data['emergency'] = $line[20]; |
|
| 1312 | + $data['speed'] = $line[12]; |
|
| 1313 | + $data['squawk'] = $line[17]; |
|
| 1314 | + $data['altitude'] = $line[11]; |
|
| 1315 | + $data['heading'] = $line[13]; |
|
| 1316 | + $data['ground'] = $line[21]; |
|
| 1317 | + $data['emergency'] = $line[19]; |
|
| 1318 | + $data['format_source'] = 'sbs'; |
|
| 1319 | 1319 | if (isset($globalSources[$nb]['name']) && $globalSources[$nb]['name'] != '') $data['source_name'] = $globalSources[$nb]['name']; |
| 1320 | - if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1320 | + if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1321 | 1321 | if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
| 1322 | - $data['id_source'] = $id_source; |
|
| 1323 | - if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $send = $SI->add($data); |
|
| 1324 | - else $error = true; |
|
| 1325 | - unset($data); |
|
| 1326 | - } else $error = true; |
|
| 1327 | - if ($error) { |
|
| 1322 | + $data['id_source'] = $id_source; |
|
| 1323 | + if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $send = $SI->add($data); |
|
| 1324 | + else $error = true; |
|
| 1325 | + unset($data); |
|
| 1326 | + } else $error = true; |
|
| 1327 | + if ($error) { |
|
| 1328 | 1328 | if (count($line) > 1 && ($line[0] == 'STA' || $line[0] == 'AIR' || $line[0] == 'SEL' || $line[0] == 'ID' || $line[0] == 'CLK')) { |
| 1329 | 1329 | if ($globalDebug) echo "Not a message. Ignoring... \n"; |
| 1330 | 1330 | } else { |
@@ -1340,13 +1340,13 @@ discard block |
||
| 1340 | 1340 | connect_all($sourceer); |
| 1341 | 1341 | $sourceer = array(); |
| 1342 | 1342 | } |
| 1343 | - } |
|
| 1343 | + } |
|
| 1344 | 1344 | } |
| 1345 | 1345 | // Sleep for xxx microseconds |
| 1346 | 1346 | if (isset($globalSBSSleep)) usleep($globalSBSSleep); |
| 1347 | - } else { |
|
| 1347 | + } else { |
|
| 1348 | 1348 | if ($format == 'flightgearmp') { |
| 1349 | - if ($globalDebug) echo "Reconnect FlightGear MP..."; |
|
| 1349 | + if ($globalDebug) echo "Reconnect FlightGear MP..."; |
|
| 1350 | 1350 | //@socket_close($r); |
| 1351 | 1351 | sleep($globalMinFetch); |
| 1352 | 1352 | $sourcefg[$nb] = $globalSources[$nb]; |
@@ -1355,9 +1355,9 @@ discard block |
||
| 1355 | 1355 | break; |
| 1356 | 1356 | |
| 1357 | 1357 | } elseif ($format != 'acars' && $format != 'flightgearsp') { |
| 1358 | - if (isset($tt[$format])) $tt[$format]++; |
|
| 1359 | - else $tt[$format] = 0; |
|
| 1360 | - if ($tt[$format] > 30) { |
|
| 1358 | + if (isset($tt[$format])) $tt[$format]++; |
|
| 1359 | + else $tt[$format] = 0; |
|
| 1360 | + if ($tt[$format] > 30) { |
|
| 1361 | 1361 | if ($globalDebug) echo "ERROR : Reconnect ".$format."..."; |
| 1362 | 1362 | //@socket_close($r); |
| 1363 | 1363 | sleep(2); |
@@ -1368,23 +1368,23 @@ discard block |
||
| 1368 | 1368 | //connect_all($globalSources); |
| 1369 | 1369 | $tt[$format]=0; |
| 1370 | 1370 | break; |
| 1371 | - } |
|
| 1371 | + } |
|
| 1372 | + } |
|
| 1372 | 1373 | } |
| 1373 | - } |
|
| 1374 | 1374 | } |
| 1375 | - } else { |
|
| 1375 | + } else { |
|
| 1376 | 1376 | $error = socket_strerror(socket_last_error()); |
| 1377 | 1377 | if (($error != SOCKET_EINPROGRESS && $error != SOCKET_EALREADY && $error != 'Success') || (time() - $time >= $timeout && $error != 'Success')) { |
| 1378 | 1378 | if ($globalDebug) echo "ERROR : socket_select give this error ".$error . "\n"; |
| 1379 | 1379 | if (isset($globalDebug)) echo "Restarting...\n"; |
| 1380 | 1380 | // Restart the script if possible |
| 1381 | 1381 | if (is_array($sockets)) { |
| 1382 | - if ($globalDebug) echo "Shutdown all sockets..."; |
|
| 1382 | + if ($globalDebug) echo "Shutdown all sockets..."; |
|
| 1383 | 1383 | |
| 1384 | - foreach ($sockets as $sock) { |
|
| 1384 | + foreach ($sockets as $sock) { |
|
| 1385 | 1385 | @socket_shutdown($sock,2); |
| 1386 | 1386 | @socket_close($sock); |
| 1387 | - } |
|
| 1387 | + } |
|
| 1388 | 1388 | |
| 1389 | 1389 | } |
| 1390 | 1390 | if ($globalDebug) echo "Restart all connections..."; |
@@ -1398,13 +1398,13 @@ discard block |
||
| 1398 | 1398 | if ($reset > 100) exit('Too many attempts...'); |
| 1399 | 1399 | connect_all($globalSources); |
| 1400 | 1400 | } |
| 1401 | - } |
|
| 1401 | + } |
|
| 1402 | 1402 | } |
| 1403 | 1403 | if ($globalDaemon === false) { |
| 1404 | - if ($globalDebug) echo 'Check all...'."\n"; |
|
| 1405 | - $SI->checkAll(); |
|
| 1404 | + if ($globalDebug) echo 'Check all...'."\n"; |
|
| 1405 | + $SI->checkAll(); |
|
| 1406 | + } |
|
| 1406 | 1407 | } |
| 1407 | - } |
|
| 1408 | 1408 | } |
| 1409 | 1409 | |
| 1410 | 1410 | ?> |
@@ -45,20 +45,20 @@ discard block |
||
| 45 | 45 | die; |
| 46 | 46 | } |
| 47 | 47 | //$hosts = array($globalSBS1Host.':'.$globalSBS1Port); |
| 48 | - $globalSources[] = array('host' => $globalSBS1Host,'port' => $globalSBS1Port); |
|
| 48 | + $globalSources[] = array('host' => $globalSBS1Host, 'port' => $globalSBS1Port); |
|
| 49 | 49 | } |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | -$options = getopt('s::',array('source::','server','nodaemon','idsource::','aprsserverssid::','aprsserverpass::','aprsserverhost::','aprsserverport::','format::','noaprsserver')); |
|
| 52 | +$options = getopt('s::', array('source::', 'server', 'nodaemon', 'idsource::', 'aprsserverssid::', 'aprsserverpass::', 'aprsserverhost::', 'aprsserverport::', 'format::', 'noaprsserver')); |
|
| 53 | 53 | //if (isset($options['s'])) $hosts = array($options['s']); |
| 54 | 54 | //elseif (isset($options['source'])) $hosts = array($options['source']); |
| 55 | 55 | if (isset($options['s'])) { |
| 56 | 56 | $globalSources = array(); |
| 57 | - if (isset($options['format'])) $globalSources[] = array('host' => $options['s'],'format' => $options['format']); |
|
| 57 | + if (isset($options['format'])) $globalSources[] = array('host' => $options['s'], 'format' => $options['format']); |
|
| 58 | 58 | else $globalSources[] = array('host' => $options['s']); |
| 59 | 59 | } elseif (isset($options['source'])) { |
| 60 | 60 | $globalSources = array(); |
| 61 | - if (isset($options['format'])) $globalSources[] = array('host' => $options['source'],'format' => $options['format']); |
|
| 61 | + if (isset($options['format'])) $globalSources[] = array('host' => $options['source'], 'format' => $options['format']); |
|
| 62 | 62 | else $globalSources[] = array('host' => $options['source']); |
| 63 | 63 | } |
| 64 | 64 | if (isset($options['aprsserverhost'])) { |
@@ -75,27 +75,27 @@ discard block |
||
| 75 | 75 | else $id_source = 1; |
| 76 | 76 | if (isset($globalServer) && $globalServer) { |
| 77 | 77 | if ($globalDebug) echo "Using Server Mode\n"; |
| 78 | - $SI=new SpotterServer(); |
|
| 78 | + $SI = new SpotterServer(); |
|
| 79 | 79 | /* |
| 80 | 80 | require_once(dirname(__FILE__).'/../require/class.APRS.php'); |
| 81 | 81 | $SI = new adsb2aprs(); |
| 82 | 82 | $SI->connect(); |
| 83 | 83 | */ |
| 84 | -} else $SI=new SpotterImport($Connection->db); |
|
| 84 | +} else $SI = new SpotterImport($Connection->db); |
|
| 85 | 85 | if (isset($globalTracker) && $globalTracker) $TI = new TrackerImport($Connection->db); |
| 86 | 86 | if (isset($globalMarine) && $globalMarine) { |
| 87 | 87 | $AIS = new AIS(); |
| 88 | 88 | $MI = new MarineImport($Connection->db); |
| 89 | 89 | } |
| 90 | 90 | //$APRS=new APRS($Connection->db); |
| 91 | -$SBS=new SBS(); |
|
| 92 | -$ACARS=new ACARS($Connection->db); |
|
| 93 | -$Common=new Common(); |
|
| 91 | +$SBS = new SBS(); |
|
| 92 | +$ACARS = new ACARS($Connection->db); |
|
| 93 | +$Common = new Common(); |
|
| 94 | 94 | date_default_timezone_set('UTC'); |
| 95 | 95 | //$servertz = system('date +%Z'); |
| 96 | 96 | // signal handler - playing nice with sockets and dump1090 |
| 97 | 97 | if (function_exists('pcntl_fork')) { |
| 98 | - pcntl_signal(SIGINT, function() { |
|
| 98 | + pcntl_signal(SIGINT, function() { |
|
| 99 | 99 | global $sockets; |
| 100 | 100 | echo "\n\nctrl-c or kill signal received. Tidying up ... "; |
| 101 | 101 | die("Bye!\n"); |
@@ -111,35 +111,35 @@ discard block |
||
| 111 | 111 | |
| 112 | 112 | function connect_all($hosts) { |
| 113 | 113 | //global $sockets, $formats, $globalDebug,$aprs_connect,$last_exec, $globalSourcesRights, $use_aprs; |
| 114 | - global $sockets,$httpfeeds, $globalSources, $globalDebug,$aprs_connect,$last_exec, $globalSourcesRights, $use_aprs, $reset,$context; |
|
| 114 | + global $sockets, $httpfeeds, $globalSources, $globalDebug, $aprs_connect, $last_exec, $globalSourcesRights, $use_aprs, $reset, $context; |
|
| 115 | 115 | $reset++; |
| 116 | 116 | if ($globalDebug) echo 'Connect to all...'."\n"; |
| 117 | 117 | foreach ($hosts as $id => $value) { |
| 118 | 118 | $host = $value['host']; |
| 119 | 119 | $globalSources[$id]['last_exec'] = 0; |
| 120 | 120 | // Here we check type of source(s) |
| 121 | - if (filter_var($host,FILTER_VALIDATE_URL) && (!isset($globalSources[$id]['format']) || strtolower($globalSources[$id]['format']) == 'auto')) { |
|
| 122 | - if (preg_match('/deltadb.txt$/i',$host)) { |
|
| 121 | + if (filter_var($host, FILTER_VALIDATE_URL) && (!isset($globalSources[$id]['format']) || strtolower($globalSources[$id]['format']) == 'auto')) { |
|
| 122 | + if (preg_match('/deltadb.txt$/i', $host)) { |
|
| 123 | 123 | //$formats[$id] = 'deltadbtxt'; |
| 124 | 124 | $globalSources[$id]['format'] = 'deltadbtxt'; |
| 125 | 125 | //$last_exec['deltadbtxt'] = 0; |
| 126 | 126 | if ($globalDebug) echo "Connect to deltadb source (".$host.")...\n"; |
| 127 | - } else if (preg_match('/vatsim-data.txt$/i',$host)) { |
|
| 127 | + } else if (preg_match('/vatsim-data.txt$/i', $host)) { |
|
| 128 | 128 | //$formats[$id] = 'vatsimtxt'; |
| 129 | 129 | $globalSources[$id]['format'] = 'vatsimtxt'; |
| 130 | 130 | //$last_exec['vatsimtxt'] = 0; |
| 131 | 131 | if ($globalDebug) echo "Connect to vatsim source (".$host.")...\n"; |
| 132 | - } else if (preg_match('/aircraftlist.json$/i',$host)) { |
|
| 132 | + } else if (preg_match('/aircraftlist.json$/i', $host)) { |
|
| 133 | 133 | //$formats[$id] = 'aircraftlistjson'; |
| 134 | 134 | $globalSources[$id]['format'] = 'aircraftlistjson'; |
| 135 | 135 | //$last_exec['aircraftlistjson'] = 0; |
| 136 | 136 | if ($globalDebug) echo "Connect to aircraftlist.json source (".$host.")...\n"; |
| 137 | - } else if (preg_match('/opensky/i',$host)) { |
|
| 137 | + } else if (preg_match('/opensky/i', $host)) { |
|
| 138 | 138 | //$formats[$id] = 'aircraftlistjson'; |
| 139 | 139 | $globalSources[$id]['format'] = 'opensky'; |
| 140 | 140 | //$last_exec['aircraftlistjson'] = 0; |
| 141 | 141 | if ($globalDebug) echo "Connect to opensky source (".$host.")...\n"; |
| 142 | - } else if (preg_match('/radarvirtuel.com\/file.json$/i',$host)) { |
|
| 142 | + } else if (preg_match('/radarvirtuel.com\/file.json$/i', $host)) { |
|
| 143 | 143 | //$formats[$id] = 'radarvirtueljson'; |
| 144 | 144 | $globalSources[$id]['format'] = 'radarvirtueljson'; |
| 145 | 145 | //$last_exec['radarvirtueljson'] = 0; |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
| 149 | 149 | exit(0); |
| 150 | 150 | } |
| 151 | - } else if (preg_match('/planeUpdateFAA.php$/i',$host)) { |
|
| 151 | + } else if (preg_match('/planeUpdateFAA.php$/i', $host)) { |
|
| 152 | 152 | //$formats[$id] = 'planeupdatefaa'; |
| 153 | 153 | $globalSources[$id]['format'] = 'planeupdatefaa'; |
| 154 | 154 | //$last_exec['planeupdatefaa'] = 0; |
@@ -157,26 +157,26 @@ discard block |
||
| 157 | 157 | echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
| 158 | 158 | exit(0); |
| 159 | 159 | } |
| 160 | - } else if (preg_match('/\/action.php\/acars\/data$/i',$host)) { |
|
| 160 | + } else if (preg_match('/\/action.php\/acars\/data$/i', $host)) { |
|
| 161 | 161 | //$formats[$id] = 'phpvmacars'; |
| 162 | 162 | $globalSources[$id]['format'] = 'phpvmacars'; |
| 163 | 163 | //$last_exec['phpvmacars'] = 0; |
| 164 | 164 | if ($globalDebug) echo "Connect to phpvmacars source (".$host.")...\n"; |
| 165 | - } else if (preg_match('/VAM-json.php$/i',$host)) { |
|
| 165 | + } else if (preg_match('/VAM-json.php$/i', $host)) { |
|
| 166 | 166 | //$formats[$id] = 'phpvmacars'; |
| 167 | 167 | $globalSources[$id]['format'] = 'vam'; |
| 168 | 168 | if ($globalDebug) echo "Connect to Vam source (".$host.")...\n"; |
| 169 | - } else if (preg_match('/whazzup/i',$host)) { |
|
| 169 | + } else if (preg_match('/whazzup/i', $host)) { |
|
| 170 | 170 | //$formats[$id] = 'whazzup'; |
| 171 | 171 | $globalSources[$id]['format'] = 'whazzup'; |
| 172 | 172 | //$last_exec['whazzup'] = 0; |
| 173 | 173 | if ($globalDebug) echo "Connect to whazzup source (".$host.")...\n"; |
| 174 | - } else if (preg_match('/recentpireps/i',$host)) { |
|
| 174 | + } else if (preg_match('/recentpireps/i', $host)) { |
|
| 175 | 175 | //$formats[$id] = 'pirepsjson'; |
| 176 | 176 | $globalSources[$id]['format'] = 'pirepsjson'; |
| 177 | 177 | //$last_exec['pirepsjson'] = 0; |
| 178 | 178 | if ($globalDebug) echo "Connect to pirepsjson source (".$host.")...\n"; |
| 179 | - } else if (preg_match(':data.fr24.com/zones/fcgi/feed.js:i',$host)) { |
|
| 179 | + } else if (preg_match(':data.fr24.com/zones/fcgi/feed.js:i', $host)) { |
|
| 180 | 180 | //$formats[$id] = 'fr24json'; |
| 181 | 181 | $globalSources[$id]['format'] = 'fr24json'; |
| 182 | 182 | //$last_exec['fr24json'] = 0; |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
| 186 | 186 | exit(0); |
| 187 | 187 | } |
| 188 | - } else if (preg_match(':myshiptracking.com/:i',$host)) { |
|
| 188 | + } else if (preg_match(':myshiptracking.com/:i', $host)) { |
|
| 189 | 189 | //$formats[$id] = 'fr24json'; |
| 190 | 190 | $globalSources[$id]['format'] = 'myshiptracking'; |
| 191 | 191 | //$last_exec['fr24json'] = 0; |
@@ -195,22 +195,22 @@ discard block |
||
| 195 | 195 | exit(0); |
| 196 | 196 | } |
| 197 | 197 | //} else if (preg_match('/10001/',$host)) { |
| 198 | - } else if (preg_match('/10001/',$host) || (isset($globalSources[$id]['port']) && $globalSources[$id]['port'] == '10001')) { |
|
| 198 | + } else if (preg_match('/10001/', $host) || (isset($globalSources[$id]['port']) && $globalSources[$id]['port'] == '10001')) { |
|
| 199 | 199 | //$formats[$id] = 'tsv'; |
| 200 | 200 | $globalSources[$id]['format'] = 'tsv'; |
| 201 | 201 | if ($globalDebug) echo "Connect to tsv source (".$host.")...\n"; |
| 202 | 202 | } |
| 203 | - } elseif (filter_var($host,FILTER_VALIDATE_URL)) { |
|
| 203 | + } elseif (filter_var($host, FILTER_VALIDATE_URL)) { |
|
| 204 | 204 | if ($globalSources[$id]['format'] == 'aisnmeahttp') { |
| 205 | - $idf = fopen($globalSources[$id]['host'],'r',false,$context); |
|
| 205 | + $idf = fopen($globalSources[$id]['host'], 'r', false, $context); |
|
| 206 | 206 | if ($idf !== false) { |
| 207 | 207 | $httpfeeds[$id] = $idf; |
| 208 | 208 | if ($globalDebug) echo "Connected to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
| 209 | 209 | } |
| 210 | 210 | elseif ($globalDebug) echo "Can't connect to ".$globalSources[$id]['host']."\n"; |
| 211 | 211 | } elseif ($globalDebug) echo "Connect to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
| 212 | - } elseif (!filter_var($host,FILTER_VALIDATE_URL)) { |
|
| 213 | - $hostport = explode(':',$host); |
|
| 212 | + } elseif (!filter_var($host, FILTER_VALIDATE_URL)) { |
|
| 213 | + $hostport = explode(':', $host); |
|
| 214 | 214 | if (isset($hostport[1])) { |
| 215 | 215 | $port = $hostport[1]; |
| 216 | 216 | $hostn = $hostport[0]; |
@@ -220,19 +220,19 @@ discard block |
||
| 220 | 220 | } |
| 221 | 221 | $Common = new Common(); |
| 222 | 222 | if (!isset($globalSources[$id]['format']) || ($globalSources[$id]['format'] != 'acars' && $globalSources[$id]['format'] != 'flightgearsp')) { |
| 223 | - $s = $Common->create_socket($hostn,$port, $errno, $errstr); |
|
| 223 | + $s = $Common->create_socket($hostn, $port, $errno, $errstr); |
|
| 224 | 224 | } else { |
| 225 | - $s = $Common->create_socket_udp($hostn,$port, $errno, $errstr); |
|
| 225 | + $s = $Common->create_socket_udp($hostn, $port, $errno, $errstr); |
|
| 226 | 226 | } |
| 227 | 227 | if ($s) { |
| 228 | 228 | $sockets[$id] = $s; |
| 229 | 229 | if (!isset($globalSources[$id]['format']) || strtolower($globalSources[$id]['format']) == 'auto') { |
| 230 | - if (preg_match('/aprs/',$hostn) || $port == '10152' || $port == '14580') { |
|
| 230 | + if (preg_match('/aprs/', $hostn) || $port == '10152' || $port == '14580') { |
|
| 231 | 231 | //$formats[$id] = 'aprs'; |
| 232 | 232 | $globalSources[$id]['format'] = 'aprs'; |
| 233 | 233 | //$aprs_connect = 0; |
| 234 | 234 | //$use_aprs = true; |
| 235 | - } elseif (preg_match('/pub-vrs/',$hostn) || $port == '32001' || $port == '32005' || $port == '32010' || $port == '32015' || $port == '32030') { |
|
| 235 | + } elseif (preg_match('/pub-vrs/', $hostn) || $port == '32001' || $port == '32005' || $port == '32010' || $port == '32015' || $port == '32030') { |
|
| 236 | 236 | $globalSources[$id]['format'] = 'vrstcp'; |
| 237 | 237 | } elseif ($port == '10001') { |
| 238 | 238 | //$formats[$id] = 'tsv'; |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | else if (isset($globalSBS1TimeOut)) $timeout = $globalSBS1TimeOut; |
| 272 | 272 | else $timeout = 20; |
| 273 | 273 | $errno = ''; |
| 274 | -$errstr=''; |
|
| 274 | +$errstr = ''; |
|
| 275 | 275 | |
| 276 | 276 | if (!isset($globalDaemon)) $globalDaemon = TRUE; |
| 277 | 277 | /* Initiate connections to all the hosts simultaneously */ |
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | //connect_all($globalSources); |
| 280 | 280 | |
| 281 | 281 | if (isset($globalProxy) && $globalProxy) { |
| 282 | - $context = stream_context_create(array('http' => array('timeout' => $timeout,'proxy' => $globalProxy,'request_fulluri' => true))); |
|
| 282 | + $context = stream_context_create(array('http' => array('timeout' => $timeout, 'proxy' => $globalProxy, 'request_fulluri' => true))); |
|
| 283 | 283 | } else { |
| 284 | 284 | $context = stream_context_create(array('http' => array('timeout' => $timeout))); |
| 285 | 285 | } |
@@ -306,16 +306,16 @@ discard block |
||
| 306 | 306 | |
| 307 | 307 | if ($use_aprs) { |
| 308 | 308 | require_once(dirname(__FILE__).'/../require/class.APRS.php'); |
| 309 | - $APRS=new APRS(); |
|
| 309 | + $APRS = new APRS(); |
|
| 310 | 310 | $aprs_connect = 0; |
| 311 | 311 | $aprs_keep = 120; |
| 312 | 312 | $aprs_last_tx = time(); |
| 313 | 313 | if (isset($globalAPRSversion)) $aprs_version = $globalAPRSversion; |
| 314 | - else $aprs_version = 'FlightAirMap '.str_replace(' ','_',$globalName); |
|
| 314 | + else $aprs_version = 'FlightAirMap '.str_replace(' ', '_', $globalName); |
|
| 315 | 315 | if (isset($globalAPRSssid)) $aprs_ssid = $globalAPRSssid; |
| 316 | - else $aprs_ssid = substr('FAM'.strtoupper(str_replace(' ','_',$globalName)),0,8); |
|
| 316 | + else $aprs_ssid = substr('FAM'.strtoupper(str_replace(' ', '_', $globalName)), 0, 8); |
|
| 317 | 317 | if (isset($globalAPRSfilter)) $aprs_filter = $globalAPRSfilter; |
| 318 | - else $aprs_filter = 'r/'.$globalCenterLatitude.'/'.$globalCenterLongitude.'/250.0'; |
|
| 318 | + else $aprs_filter = 'r/'.$globalCenterLatitude.'/'.$globalCenterLongitude.'/250.0'; |
|
| 319 | 319 | if ($aprs_full) $aprs_filter = ''; |
| 320 | 320 | if (isset($globalAPRSpass)) $aprs_pass = $globalAPRSpass; |
| 321 | 321 | else $aprs_pass = '-1'; |
@@ -329,12 +329,12 @@ discard block |
||
| 329 | 329 | sleep(1); |
| 330 | 330 | if ($globalDebug) echo "SCAN MODE \n\n"; |
| 331 | 331 | if (!isset($globalCronEnd)) $globalCronEnd = 60; |
| 332 | -$endtime = time()+$globalCronEnd; |
|
| 332 | +$endtime = time() + $globalCronEnd; |
|
| 333 | 333 | $i = 1; |
| 334 | 334 | $tt = array(); |
| 335 | 335 | // Delete all ATC |
| 336 | 336 | if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM)) { |
| 337 | - $ATC=new ATC($Connection->db); |
|
| 337 | + $ATC = new ATC($Connection->db); |
|
| 338 | 338 | } |
| 339 | 339 | if (!$globalDaemon && ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM))) { |
| 340 | 340 | $ATC->deleteAll(); |
@@ -342,7 +342,7 @@ discard block |
||
| 342 | 342 | |
| 343 | 343 | // Infinite loop if daemon, else work for time defined in $globalCronEnd or only one time. |
| 344 | 344 | while ($i > 0) { |
| 345 | - if (!$globalDaemon) $i = $endtime-time(); |
|
| 345 | + if (!$globalDaemon) $i = $endtime - time(); |
|
| 346 | 346 | // Delete old ATC |
| 347 | 347 | if ($globalDaemon && ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM))) { |
| 348 | 348 | if ($globalDebug) echo 'Delete old ATC...'."\n"; |
@@ -357,7 +357,7 @@ discard block |
||
| 357 | 357 | } |
| 358 | 358 | if ($max != $globalMinFetch) { |
| 359 | 359 | if ($globalDebug) echo 'Sleeping...'."\n"; |
| 360 | - sleep($globalMinFetch-$max+2); |
|
| 360 | + sleep($globalMinFetch - $max + 2); |
|
| 361 | 361 | } |
| 362 | 362 | } |
| 363 | 363 | |
@@ -370,8 +370,8 @@ discard block |
||
| 370 | 370 | //$buffer = $Common->getData($hosts[$id]); |
| 371 | 371 | $buffer = $Common->getData($value['host']); |
| 372 | 372 | if ($buffer != '') $reset = 0; |
| 373 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 374 | - $buffer = explode('\n',$buffer); |
|
| 373 | + $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '\n', $buffer)); |
|
| 374 | + $buffer = explode('\n', $buffer); |
|
| 375 | 375 | foreach ($buffer as $line) { |
| 376 | 376 | if ($line != '' && count($line) > 7) { |
| 377 | 377 | $line = explode(',', $line); |
@@ -399,11 +399,11 @@ discard block |
||
| 399 | 399 | $last_exec[$id]['last'] = time(); |
| 400 | 400 | } elseif ($value['format'] == 'aisnmeatxt' && (time() - $last_exec[$id]['last'] > $globalMinFetch*3)) { |
| 401 | 401 | date_default_timezone_set('CET'); |
| 402 | - $buffer = $Common->getData(str_replace('{date}',date('Ymd'),$value['host'])); |
|
| 402 | + $buffer = $Common->getData(str_replace('{date}', date('Ymd'), $value['host'])); |
|
| 403 | 403 | date_default_timezone_set('UTC'); |
| 404 | 404 | if ($buffer != '') $reset = 0; |
| 405 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 406 | - $buffer = explode('\n',$buffer); |
|
| 405 | + $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '\n', $buffer)); |
|
| 406 | + $buffer = explode('\n', $buffer); |
|
| 407 | 407 | foreach ($buffer as $line) { |
| 408 | 408 | if ($line != '') { |
| 409 | 409 | echo "'".$line."'\n"; |
@@ -421,7 +421,7 @@ discard block |
||
| 421 | 421 | if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
| 422 | 422 | if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
| 423 | 423 | if (isset($ais_data['timestamp'])) { |
| 424 | - $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
|
| 424 | + $data['datetime'] = date('Y-m-d H:i:s', $ais_data['timestamp']); |
|
| 425 | 425 | if (!isset($last_exec[$id]['timestamp']) || $ais_data['timestamp'] >= $last_exec[$id]['timestamp']) { |
| 426 | 426 | $last_exec[$id]['timestamp'] = $ais_data['timestamp']; |
| 427 | 427 | $add = true; |
@@ -445,12 +445,12 @@ discard block |
||
| 445 | 445 | $w = $e = null; |
| 446 | 446 | |
| 447 | 447 | if (isset($arr[$id])) { |
| 448 | - $nn = stream_select($arr,$w,$e,$timeout); |
|
| 448 | + $nn = stream_select($arr, $w, $e, $timeout); |
|
| 449 | 449 | if ($nn > 0) { |
| 450 | 450 | foreach ($httpfeeds as $feed) { |
| 451 | - $buffer = stream_get_line($feed,2000,"\n"); |
|
| 452 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 453 | - $buffer = explode('\n',$buffer); |
|
| 451 | + $buffer = stream_get_line($feed, 2000, "\n"); |
|
| 452 | + $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '\n', $buffer)); |
|
| 453 | + $buffer = explode('\n', $buffer); |
|
| 454 | 454 | foreach ($buffer as $line) { |
| 455 | 455 | if ($line != '') { |
| 456 | 456 | $ais_data = $AIS->parse_line(trim($line)); |
@@ -466,9 +466,9 @@ discard block |
||
| 466 | 466 | if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
| 467 | 467 | if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
| 468 | 468 | if (isset($ais_data['destination'])) $data['arrival_code'] = $ais_data['destination']; |
| 469 | - if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s',$ais_data['eta_ts']); |
|
| 469 | + if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s', $ais_data['eta_ts']); |
|
| 470 | 470 | if (isset($ais_data['timestamp'])) { |
| 471 | - $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
|
| 471 | + $data['datetime'] = date('Y-m-d H:i:s', $ais_data['timestamp']); |
|
| 472 | 472 | } else { |
| 473 | 473 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 474 | 474 | } |
@@ -493,10 +493,10 @@ discard block |
||
| 493 | 493 | } |
| 494 | 494 | } |
| 495 | 495 | } elseif ($value['format'] == 'myshiptracking' && (time() - $last_exec[$id]['last'] > $globalMinFetch*3)) { |
| 496 | - $buffer = $Common->getData($value['host'],'get','','','','','20'); |
|
| 496 | + $buffer = $Common->getData($value['host'], 'get', '', '', '', '', '20'); |
|
| 497 | 497 | if ($buffer != '') { |
| 498 | 498 | //echo $buffer; |
| 499 | - $all_data = json_decode($buffer,true); |
|
| 499 | + $all_data = json_decode($buffer, true); |
|
| 500 | 500 | //print_r($all_data); |
| 501 | 501 | if (isset($all_data[0]['DATA'])) { |
| 502 | 502 | foreach ($all_data[0]['DATA'] as $line) { |
@@ -511,7 +511,7 @@ discard block |
||
| 511 | 511 | // if (isset($ais_data['type'])) $data['type'] = $ais_data['type']; |
| 512 | 512 | $data['imo'] = $line['IMO']; |
| 513 | 513 | //$data['arrival_code'] = $ais_data['destination']; |
| 514 | - $data['datetime'] = date('Y-m-d H:i:s',$line['T']); |
|
| 514 | + $data['datetime'] = date('Y-m-d H:i:s', $line['T']); |
|
| 515 | 515 | $data['format_source'] = 'myshiptracking'; |
| 516 | 516 | $data['id_source'] = $id_source; |
| 517 | 517 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
@@ -524,9 +524,9 @@ discard block |
||
| 524 | 524 | } |
| 525 | 525 | $last_exec[$id]['last'] = time(); |
| 526 | 526 | } elseif ($value['format'] == 'boatbeaconapp' && (time() - $last_exec[$id]['last'] > $globalMinFetch*3)) { |
| 527 | - $buffer = $Common->getData(str_replace('{timestamp}',time(),$value['host'])); |
|
| 527 | + $buffer = $Common->getData(str_replace('{timestamp}', time(), $value['host'])); |
|
| 528 | 528 | if ($buffer != '') { |
| 529 | - $all_data = json_decode($buffer,true); |
|
| 529 | + $all_data = json_decode($buffer, true); |
|
| 530 | 530 | if (isset($all_data[0]['mmsi'])) { |
| 531 | 531 | foreach ($all_data as $line) { |
| 532 | 532 | if ($line != '') { |
@@ -554,27 +554,27 @@ discard block |
||
| 554 | 554 | $last_exec[$id]['last'] = time(); |
| 555 | 555 | } elseif ($value['format'] == 'shipplotter' && (time() - $last_exec[$id]['last'] > $globalMinFetch*3)) { |
| 556 | 556 | echo 'download...'; |
| 557 | - $buffer = $Common->getData($value['host'],'post',$value['post'],'','','','','ShipPlotter'); |
|
| 557 | + $buffer = $Common->getData($value['host'], 'post', $value['post'], '', '', '', '', 'ShipPlotter'); |
|
| 558 | 558 | echo 'done !'."\n"; |
| 559 | 559 | if ($buffer != '') $reset = 0; |
| 560 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 561 | - $buffer = explode('\n',$buffer); |
|
| 560 | + $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '\n', $buffer)); |
|
| 561 | + $buffer = explode('\n', $buffer); |
|
| 562 | 562 | foreach ($buffer as $line) { |
| 563 | 563 | if ($line != '') { |
| 564 | 564 | $data = array(); |
| 565 | - $data['mmsi'] = (int)substr($line,0,9); |
|
| 566 | - $data['datetime'] = date('Y-m-d H:i:s',substr($line,10,10)); |
|
| 565 | + $data['mmsi'] = (int) substr($line, 0, 9); |
|
| 566 | + $data['datetime'] = date('Y-m-d H:i:s', substr($line, 10, 10)); |
|
| 567 | 567 | //$data['status'] = substr($line,21,2); |
| 568 | 568 | //$data['type'] = substr($line,24,3); |
| 569 | - $data['latitude'] = substr($line,29,9); |
|
| 570 | - $data['longitude'] = substr($line,41,9); |
|
| 571 | - $data['speed'] = round(substr($line,51,5)); |
|
| 569 | + $data['latitude'] = substr($line, 29, 9); |
|
| 570 | + $data['longitude'] = substr($line, 41, 9); |
|
| 571 | + $data['speed'] = round(substr($line, 51, 5)); |
|
| 572 | 572 | //$data['course'] = substr($line,57,5); |
| 573 | - $data['heading'] = round(substr($line,63,3)); |
|
| 573 | + $data['heading'] = round(substr($line, 63, 3)); |
|
| 574 | 574 | //$data['draft'] = substr($line,67,4); |
| 575 | 575 | //$data['length'] = substr($line,72,3); |
| 576 | 576 | //$data['beam'] = substr($line,76,2); |
| 577 | - $data['ident'] = trim(utf8_encode(substr($line,79,20))); |
|
| 577 | + $data['ident'] = trim(utf8_encode(substr($line, 79, 20))); |
|
| 578 | 578 | //$data['callsign'] = trim(substr($line,100,7); |
| 579 | 579 | //$data['dest'] = substr($line,108,20); |
| 580 | 580 | //$data['etaDate'] = substr($line,129,5); |
@@ -593,8 +593,8 @@ discard block |
||
| 593 | 593 | } elseif (($value['format'] == 'whazzup' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) || ($value['format'] == 'vatsimtxt' && (time() - $last_exec[$id]['last'] > $globalMinFetch))) { |
| 594 | 594 | //$buffer = $Common->getData($hosts[$id]); |
| 595 | 595 | $buffer = $Common->getData($value['host']); |
| 596 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 597 | - $buffer = explode('\n',$buffer); |
|
| 596 | + $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '\n', $buffer)); |
|
| 597 | + $buffer = explode('\n', $buffer); |
|
| 598 | 598 | $reset = 0; |
| 599 | 599 | foreach ($buffer as $line) { |
| 600 | 600 | if ($line != '') { |
@@ -605,7 +605,7 @@ discard block |
||
| 605 | 605 | else $data['id'] = $value['format'].'-'.$line[1].'-'.$line[0]; |
| 606 | 606 | $data['pilot_id'] = $line[1]; |
| 607 | 607 | $data['pilot_name'] = $line[2]; |
| 608 | - $data['hex'] = str_pad(dechex($Common->str2int($line[1])),6,'000000',STR_PAD_LEFT); |
|
| 608 | + $data['hex'] = str_pad(dechex($Common->str2int($line[1])), 6, '000000', STR_PAD_LEFT); |
|
| 609 | 609 | $data['ident'] = $line[0]; // ident |
| 610 | 610 | if ($line[7] != '' && $line[7] != 0) $data['altitude'] = $line[7]; // altitude |
| 611 | 611 | $data['speed'] = $line[8]; // speed |
@@ -621,7 +621,7 @@ discard block |
||
| 621 | 621 | //$data['datetime'] = date('Y-m-d H:i:s',strtotime($line[37])); |
| 622 | 622 | //if (isset($line[37])) $data['last_update'] = $line[37]; |
| 623 | 623 | $data['departure_airport_icao'] = $line[11]; |
| 624 | - $data['departure_airport_time'] = rtrim(chunk_split($line[22],2,':'),':'); |
|
| 624 | + $data['departure_airport_time'] = rtrim(chunk_split($line[22], 2, ':'), ':'); |
|
| 625 | 625 | $data['arrival_airport_icao'] = $line[13]; |
| 626 | 626 | $data['frequency'] = $line[4]; |
| 627 | 627 | $data['type'] = $line[18]; |
@@ -630,7 +630,7 @@ discard block |
||
| 630 | 630 | $data['id_source'] = $id_source; |
| 631 | 631 | //$data['arrival_airport_time'] = ; |
| 632 | 632 | if ($line[9] != '') { |
| 633 | - $aircraft_data = explode('/',$line[9]); |
|
| 633 | + $aircraft_data = explode('/', $line[9]); |
|
| 634 | 634 | if (isset($aircraft_data[1])) { |
| 635 | 635 | $data['aircraft_icao'] = $aircraft_data[1]; |
| 636 | 636 | } |
@@ -645,9 +645,9 @@ discard block |
||
| 645 | 645 | if ($line[3] == 'PILOT') $SI->add($data); |
| 646 | 646 | elseif ($line[3] == 'ATC') { |
| 647 | 647 | //print_r($data); |
| 648 | - $data['info'] = str_replace('^§','<br />',$data['info']); |
|
| 649 | - $data['info'] = str_replace('&sect;','',$data['info']); |
|
| 650 | - $typec = substr($data['ident'],-3); |
|
| 648 | + $data['info'] = str_replace('^§', '<br />', $data['info']); |
|
| 649 | + $data['info'] = str_replace('&sect;', '', $data['info']); |
|
| 650 | + $typec = substr($data['ident'], -3); |
|
| 651 | 651 | if ($typec == 'APP') $data['type'] = 'Approach'; |
| 652 | 652 | elseif ($typec == 'TWR') $data['type'] = 'Tower'; |
| 653 | 653 | elseif ($typec == 'OBS') $data['type'] = 'Observer'; |
@@ -658,7 +658,7 @@ discard block |
||
| 658 | 658 | elseif ($typec == 'CTR') $data['type'] = 'Control Radar or Centre'; |
| 659 | 659 | elseif ($data['type'] == '') $data['type'] = 'Observer'; |
| 660 | 660 | if (!isset($data['source_name'])) $data['source_name'] = ''; |
| 661 | - if (isset($ATC)) echo $ATC->add($data['ident'],$data['frequency'],$data['latitude'],$data['longitude'],$data['range'],$data['info'],$data['datetime'],$data['type'],$data['pilot_id'],$data['pilot_name'],$data['format_source'],$data['source_name']); |
|
| 661 | + if (isset($ATC)) echo $ATC->add($data['ident'], $data['frequency'], $data['latitude'], $data['longitude'], $data['range'], $data['info'], $data['datetime'], $data['type'], $data['pilot_id'], $data['pilot_name'], $data['format_source'], $data['source_name']); |
|
| 662 | 662 | } |
| 663 | 663 | unset($data); |
| 664 | 664 | } |
@@ -669,9 +669,9 @@ discard block |
||
| 669 | 669 | $last_exec[$id]['last'] = time(); |
| 670 | 670 | //} elseif ($value == 'aircraftlistjson' && (time() - $last_exec['aircraftlistjson'] > $globalMinFetch)) { |
| 671 | 671 | } elseif ($value['format'] == 'aircraftlistjson' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
| 672 | - $buffer = $Common->getData($value['host'],'get','','','','','20'); |
|
| 672 | + $buffer = $Common->getData($value['host'], 'get', '', '', '', '', '20'); |
|
| 673 | 673 | if ($buffer != '') { |
| 674 | - $all_data = json_decode($buffer,true); |
|
| 674 | + $all_data = json_decode($buffer, true); |
|
| 675 | 675 | if (isset($all_data['acList'])) { |
| 676 | 676 | $reset = 0; |
| 677 | 677 | foreach ($all_data['acList'] as $line) { |
@@ -729,7 +729,7 @@ discard block |
||
| 729 | 729 | //} elseif ($value == 'planeupdatefaa' && (time() - $last_exec['planeupdatefaa'] > $globalMinFetch)) { |
| 730 | 730 | } elseif ($value['format'] == 'planeupdatefaa' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
| 731 | 731 | $buffer = $Common->getData($value['host']); |
| 732 | - $all_data = json_decode($buffer,true); |
|
| 732 | + $all_data = json_decode($buffer, true); |
|
| 733 | 733 | if (isset($all_data['planes'])) { |
| 734 | 734 | $reset = 0; |
| 735 | 735 | foreach ($all_data['planes'] as $key => $line) { |
@@ -746,12 +746,12 @@ discard block |
||
| 746 | 746 | $data['emergency'] = ''; // emergency |
| 747 | 747 | $data['registration'] = $line[2]; |
| 748 | 748 | $data['aircraft_icao'] = $line[0]; |
| 749 | - $deparr = explode('-',$line[1]); |
|
| 749 | + $deparr = explode('-', $line[1]); |
|
| 750 | 750 | if (count($deparr) == 2) { |
| 751 | 751 | $data['departure_airport_icao'] = $deparr[0]; |
| 752 | 752 | $data['arrival_airport_icao'] = $deparr[1]; |
| 753 | 753 | } |
| 754 | - $data['datetime'] = date('Y-m-d H:i:s',$line[9]); |
|
| 754 | + $data['datetime'] = date('Y-m-d H:i:s', $line[9]); |
|
| 755 | 755 | $data['format_source'] = 'planeupdatefaa'; |
| 756 | 756 | $data['id_source'] = $id_source; |
| 757 | 757 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
@@ -764,7 +764,7 @@ discard block |
||
| 764 | 764 | $last_exec[$id]['last'] = time(); |
| 765 | 765 | } elseif ($value['format'] == 'opensky' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
| 766 | 766 | $buffer = $Common->getData($value['host']); |
| 767 | - $all_data = json_decode($buffer,true); |
|
| 767 | + $all_data = json_decode($buffer, true); |
|
| 768 | 768 | if (isset($all_data['states'])) { |
| 769 | 769 | $reset = 0; |
| 770 | 770 | foreach ($all_data['states'] as $key => $line) { |
@@ -781,7 +781,7 @@ discard block |
||
| 781 | 781 | //$data['emergency'] = ''; // emergency |
| 782 | 782 | //$data['registration'] = $line[2]; |
| 783 | 783 | //$data['aircraft_icao'] = $line[0]; |
| 784 | - $data['datetime'] = date('Y-m-d H:i:s',$line[3]); |
|
| 784 | + $data['datetime'] = date('Y-m-d H:i:s', $line[3]); |
|
| 785 | 785 | $data['format_source'] = 'opensky'; |
| 786 | 786 | $data['id_source'] = $id_source; |
| 787 | 787 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
@@ -795,7 +795,7 @@ discard block |
||
| 795 | 795 | } elseif ($value['format'] == 'fr24json' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
| 796 | 796 | //$buffer = $Common->getData($hosts[$id]); |
| 797 | 797 | $buffer = $Common->getData($value['host']); |
| 798 | - $all_data = json_decode($buffer,true); |
|
| 798 | + $all_data = json_decode($buffer, true); |
|
| 799 | 799 | if (!empty($all_data)) $reset = 0; |
| 800 | 800 | foreach ($all_data as $key => $line) { |
| 801 | 801 | if ($key != 'full_count' && $key != 'version' && $key != 'stats') { |
@@ -828,11 +828,11 @@ discard block |
||
| 828 | 828 | //} elseif ($value == 'radarvirtueljson' && (time() - $last_exec['radarvirtueljson'] > $globalMinFetch)) { |
| 829 | 829 | } elseif ($value['format'] == 'radarvirtueljson' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
| 830 | 830 | //$buffer = $Common->getData($hosts[$id],'get','','','','','150'); |
| 831 | - $buffer = $Common->getData($value['host'],'get','','','','','150'); |
|
| 831 | + $buffer = $Common->getData($value['host'], 'get', '', '', '', '', '150'); |
|
| 832 | 832 | //echo $buffer; |
| 833 | - $buffer = str_replace(array("\n","\r"),"",$buffer); |
|
| 834 | - $buffer = preg_replace('/,"num":(.+)/','}',$buffer); |
|
| 835 | - $all_data = json_decode($buffer,true); |
|
| 833 | + $buffer = str_replace(array("\n", "\r"), "", $buffer); |
|
| 834 | + $buffer = preg_replace('/,"num":(.+)/', '}', $buffer); |
|
| 835 | + $all_data = json_decode($buffer, true); |
|
| 836 | 836 | if (json_last_error() != JSON_ERROR_NONE) { |
| 837 | 837 | die(json_last_error_msg()); |
| 838 | 838 | } |
@@ -855,7 +855,7 @@ discard block |
||
| 855 | 855 | //$data['departure_airport_iata'] = $line[11]; |
| 856 | 856 | //$data['arrival_airport_iata'] = $line[12]; |
| 857 | 857 | //$data['emergency'] = ''; // emergency |
| 858 | - $data['datetime'] = date('Y-m-d H:i:s',$line['inf']['dt']); //$line[10] |
|
| 858 | + $data['datetime'] = date('Y-m-d H:i:s', $line['inf']['dt']); //$line[10] |
|
| 859 | 859 | $data['format_source'] = 'radarvirtueljson'; |
| 860 | 860 | $data['id_source'] = $id_source; |
| 861 | 861 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
@@ -871,14 +871,14 @@ discard block |
||
| 871 | 871 | } elseif ($value['format'] == 'pirepsjson' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
| 872 | 872 | //$buffer = $Common->getData($hosts[$id]); |
| 873 | 873 | $buffer = $Common->getData($value['host'].'?'.time()); |
| 874 | - $all_data = json_decode(utf8_encode($buffer),true); |
|
| 874 | + $all_data = json_decode(utf8_encode($buffer), true); |
|
| 875 | 875 | |
| 876 | 876 | if (isset($all_data['pireps'])) { |
| 877 | 877 | $reset = 0; |
| 878 | 878 | foreach ($all_data['pireps'] as $line) { |
| 879 | 879 | $data = array(); |
| 880 | 880 | $data['id'] = $line['id']; |
| 881 | - $data['hex'] = substr(str_pad(dechex($line['id']),6,'000000',STR_PAD_LEFT),0,6); |
|
| 881 | + $data['hex'] = substr(str_pad(dechex($line['id']), 6, '000000', STR_PAD_LEFT), 0, 6); |
|
| 882 | 882 | $data['ident'] = $line['callsign']; // ident |
| 883 | 883 | if (isset($line['pilotid'])) $data['pilot_id'] = $line['pilotid']; // pilot id |
| 884 | 884 | if (isset($line['name'])) $data['pilot_name'] = $line['name']; // pilot name |
@@ -908,9 +908,9 @@ discard block |
||
| 908 | 908 | $SI->add($data); |
| 909 | 909 | // print_r($data); |
| 910 | 910 | } elseif ($line['icon'] == 'ct') { |
| 911 | - $data['info'] = str_replace('^§','<br />',$data['info']); |
|
| 912 | - $data['info'] = str_replace('&sect;','',$data['info']); |
|
| 913 | - $typec = substr($data['ident'],-3); |
|
| 911 | + $data['info'] = str_replace('^§', '<br />', $data['info']); |
|
| 912 | + $data['info'] = str_replace('&sect;', '', $data['info']); |
|
| 913 | + $typec = substr($data['ident'], -3); |
|
| 914 | 914 | $data['type'] = ''; |
| 915 | 915 | if ($typec == 'APP') $data['type'] = 'Approach'; |
| 916 | 916 | elseif ($typec == 'TWR') $data['type'] = 'Tower'; |
@@ -921,7 +921,7 @@ discard block |
||
| 921 | 921 | elseif ($typec == 'FSS') $data['type'] = 'Flight Service Station'; |
| 922 | 922 | elseif ($typec == 'CTR') $data['type'] = 'Control Radar or Centre'; |
| 923 | 923 | else $data['type'] = 'Observer'; |
| 924 | - if (isset($ATC)) echo $ATC->add($data['ident'],'',$data['latitude'],$data['longitude'],'0',$data['info'],$data['datetime'],$data['type'],$data['pilot_id'],$data['pilot_name'],$data['format_source']); |
|
| 924 | + if (isset($ATC)) echo $ATC->add($data['ident'], '', $data['latitude'], $data['longitude'], '0', $data['info'], $data['datetime'], $data['type'], $data['pilot_id'], $data['pilot_name'], $data['format_source']); |
|
| 925 | 925 | } |
| 926 | 926 | unset($data); |
| 927 | 927 | } |
@@ -933,14 +933,14 @@ discard block |
||
| 933 | 933 | //$buffer = $Common->getData($hosts[$id]); |
| 934 | 934 | if ($globalDebug) echo 'Get Data...'."\n"; |
| 935 | 935 | $buffer = $Common->getData($value['host']); |
| 936 | - $all_data = json_decode($buffer,true); |
|
| 936 | + $all_data = json_decode($buffer, true); |
|
| 937 | 937 | if ($buffer != '' && is_array($all_data)) { |
| 938 | 938 | $reset = 0; |
| 939 | 939 | foreach ($all_data as $line) { |
| 940 | 940 | $data = array(); |
| 941 | 941 | //$data['id'] = $line['id']; // id not usable |
| 942 | 942 | if (isset($line['pilotid'])) $data['id'] = $line['pilotid'].$line['flightnum']; |
| 943 | - $data['hex'] = substr(str_pad(bin2hex($line['flightnum']),6,'000000',STR_PAD_LEFT),-6); // hex |
|
| 943 | + $data['hex'] = substr(str_pad(bin2hex($line['flightnum']), 6, '000000', STR_PAD_LEFT), -6); // hex |
|
| 944 | 944 | if (isset($line['pilotname'])) $data['pilot_name'] = $line['pilotname']; |
| 945 | 945 | if (isset($line['pilotid'])) $data['pilot_id'] = $line['pilotid']; |
| 946 | 946 | $data['ident'] = $line['flightnum']; // ident |
@@ -964,14 +964,14 @@ discard block |
||
| 964 | 964 | if (isset($line['route'])) $data['waypoints'] = $line['route']; // route |
| 965 | 965 | if (isset($line['aircraftname'])) { |
| 966 | 966 | $line['aircraftname'] = strtoupper($line['aircraftname']); |
| 967 | - $line['aircraftname'] = str_replace('BOEING ','B',$line['aircraftname']); |
|
| 968 | - $aircraft_data = explode('-',$line['aircraftname']); |
|
| 967 | + $line['aircraftname'] = str_replace('BOEING ', 'B', $line['aircraftname']); |
|
| 968 | + $aircraft_data = explode('-', $line['aircraftname']); |
|
| 969 | 969 | if (isset($aircraft_data[1]) && strlen($aircraft_data[0]) >= 3 && strlen($aircraft_data[0]) <= 4) $data['aircraft_icao'] = $aircraft_data[0]; |
| 970 | 970 | elseif (isset($aircraft_data[1]) && strlen($aircraft_data[1]) >= 3 && strlen($aircraft_data[1]) <= 4) $data['aircraft_icao'] = $aircraft_data[1]; |
| 971 | 971 | else { |
| 972 | - $aircraft_data = explode(' ',$line['aircraftname']); |
|
| 973 | - if (isset($aircraft_data[1])) $data['aircraft_icao'] = str_replace('-','',$aircraft_data[1]); |
|
| 974 | - else $data['aircraft_icao'] = str_replace('-','',$line['aircraftname']); |
|
| 972 | + $aircraft_data = explode(' ', $line['aircraftname']); |
|
| 973 | + if (isset($aircraft_data[1])) $data['aircraft_icao'] = str_replace('-', '', $aircraft_data[1]); |
|
| 974 | + else $data['aircraft_icao'] = str_replace('-', '', $line['aircraftname']); |
|
| 975 | 975 | } |
| 976 | 976 | } |
| 977 | 977 | if (isset($line['route'])) $data['waypoints'] = $line['route']; |
@@ -991,14 +991,14 @@ discard block |
||
| 991 | 991 | //$buffer = $Common->getData($hosts[$id]); |
| 992 | 992 | if ($globalDebug) echo 'Get Data...'."\n"; |
| 993 | 993 | $buffer = $Common->getData($value['host']); |
| 994 | - $all_data = json_decode($buffer,true); |
|
| 994 | + $all_data = json_decode($buffer, true); |
|
| 995 | 995 | if ($buffer != '' && is_array($all_data)) { |
| 996 | 996 | $reset = 0; |
| 997 | 997 | foreach ($all_data as $line) { |
| 998 | 998 | $data = array(); |
| 999 | 999 | //$data['id'] = $line['id']; // id not usable |
| 1000 | 1000 | $data['id'] = trim($line['flight_id']); |
| 1001 | - $data['hex'] = substr(str_pad(bin2hex($line['callsign']),6,'000000',STR_PAD_LEFT),-6); // hex |
|
| 1001 | + $data['hex'] = substr(str_pad(bin2hex($line['callsign']), 6, '000000', STR_PAD_LEFT), -6); // hex |
|
| 1002 | 1002 | $data['pilot_name'] = $line['pilot_name']; |
| 1003 | 1003 | $data['pilot_id'] = $line['pilot_id']; |
| 1004 | 1004 | $data['ident'] = trim($line['callsign']); // ident |
@@ -1050,11 +1050,11 @@ discard block |
||
| 1050 | 1050 | //$value = $formats[$nb]; |
| 1051 | 1051 | $format = $globalSources[$nb]['format']; |
| 1052 | 1052 | if ($format == 'sbs' || $format == 'aprs' || $format == 'raw' || $format == 'tsv' || $format == 'acarssbs3') { |
| 1053 | - $buffer = @socket_read($r, 6000,PHP_NORMAL_READ); |
|
| 1053 | + $buffer = @socket_read($r, 6000, PHP_NORMAL_READ); |
|
| 1054 | 1054 | } elseif ($format == 'vrstcp') { |
| 1055 | 1055 | $buffer = @socket_read($r, 6000); |
| 1056 | 1056 | } else { |
| 1057 | - $az = socket_recvfrom($r,$buffer,6000,0,$remote_ip,$remote_port); |
|
| 1057 | + $az = socket_recvfrom($r, $buffer, 6000, 0, $remote_ip, $remote_port); |
|
| 1058 | 1058 | } |
| 1059 | 1059 | //$buffer = socket_read($r, 60000,PHP_NORMAL_READ); |
| 1060 | 1060 | //echo $buffer."\n"; |
@@ -1063,8 +1063,8 @@ discard block |
||
| 1063 | 1063 | $error = false; |
| 1064 | 1064 | //$SI::del(); |
| 1065 | 1065 | if ($format == 'vrstcp') { |
| 1066 | - $buffer = explode('},{',$buffer); |
|
| 1067 | - } else $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'',$buffer)); |
|
| 1066 | + $buffer = explode('},{', $buffer); |
|
| 1067 | + } else $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '', $buffer)); |
|
| 1068 | 1068 | // SBS format is CSV format |
| 1069 | 1069 | if ($buffer !== FALSE && $buffer != '') { |
| 1070 | 1070 | $tt[$format] = 0; |
@@ -1097,11 +1097,11 @@ discard block |
||
| 1097 | 1097 | if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
| 1098 | 1098 | if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
| 1099 | 1099 | if (isset($ais_data['destination'])) $data['arrival_code'] = $ais_data['destination']; |
| 1100 | - if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s',$ais_data['eta_ts']); |
|
| 1100 | + if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s', $ais_data['eta_ts']); |
|
| 1101 | 1101 | if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
| 1102 | 1102 | |
| 1103 | 1103 | if (isset($ais_data['timestamp'])) { |
| 1104 | - $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
|
| 1104 | + $data['datetime'] = date('Y-m-d H:i:s', $ais_data['timestamp']); |
|
| 1105 | 1105 | } else { |
| 1106 | 1106 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 1107 | 1107 | } |
@@ -1112,10 +1112,10 @@ discard block |
||
| 1112 | 1112 | } elseif ($format == 'flightgearsp') { |
| 1113 | 1113 | //echo $buffer."\n"; |
| 1114 | 1114 | if (strlen($buffer) > 5) { |
| 1115 | - $line = explode(',',$buffer); |
|
| 1115 | + $line = explode(',', $buffer); |
|
| 1116 | 1116 | $data = array(); |
| 1117 | 1117 | //XGPS,2.0947,41.3093,-3047.6953,198.930,0.000,callsign,c172p |
| 1118 | - $data['hex'] = substr(str_pad(bin2hex($line[6].$line[7]),6,'000000',STR_PAD_LEFT),0,6); |
|
| 1118 | + $data['hex'] = substr(str_pad(bin2hex($line[6].$line[7]), 6, '000000', STR_PAD_LEFT), 0, 6); |
|
| 1119 | 1119 | $data['ident'] = $line[6]; |
| 1120 | 1120 | $data['aircraft_name'] = $line[7]; |
| 1121 | 1121 | $data['longitude'] = $line[1]; |
@@ -1127,21 +1127,21 @@ discard block |
||
| 1127 | 1127 | $data['format_source'] = 'flightgearsp'; |
| 1128 | 1128 | if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
| 1129 | 1129 | if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
| 1130 | - $send = @ socket_send( $r , $data_aprs , strlen($data_aprs) , 0 ); |
|
| 1130 | + $send = @ socket_send($r, $data_aprs, strlen($data_aprs), 0); |
|
| 1131 | 1131 | } |
| 1132 | 1132 | } elseif ($format == 'acars') { |
| 1133 | 1133 | if ($globalDebug) echo 'ACARS : '.$buffer."\n"; |
| 1134 | 1134 | $ACARS->add(trim($buffer)); |
| 1135 | - socket_sendto($r, "OK " . $buffer , 100 , 0 , $remote_ip , $remote_port); |
|
| 1135 | + socket_sendto($r, "OK ".$buffer, 100, 0, $remote_ip, $remote_port); |
|
| 1136 | 1136 | $ACARS->deleteLiveAcarsData(); |
| 1137 | 1137 | } elseif ($format == 'flightgearmp') { |
| 1138 | - if (substr($buffer,0,1) != '#') { |
|
| 1138 | + if (substr($buffer, 0, 1) != '#') { |
|
| 1139 | 1139 | $data = array(); |
| 1140 | 1140 | //echo $buffer."\n"; |
| 1141 | - $line = explode(' ',$buffer); |
|
| 1141 | + $line = explode(' ', $buffer); |
|
| 1142 | 1142 | if (count($line) == 11) { |
| 1143 | - $userserver = explode('@',$line[0]); |
|
| 1144 | - $data['hex'] = substr(str_pad(bin2hex($line[0]),6,'000000',STR_PAD_LEFT),0,6); // hex |
|
| 1143 | + $userserver = explode('@', $line[0]); |
|
| 1144 | + $data['hex'] = substr(str_pad(bin2hex($line[0]), 6, '000000', STR_PAD_LEFT), 0, 6); // hex |
|
| 1145 | 1145 | $data['ident'] = $userserver[0]; |
| 1146 | 1146 | $data['registration'] = $userserver[0]; |
| 1147 | 1147 | $data['latitude'] = $line[4]; |
@@ -1149,8 +1149,8 @@ discard block |
||
| 1149 | 1149 | $data['altitude'] = $line[6]; |
| 1150 | 1150 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 1151 | 1151 | $aircraft_type = $line[10]; |
| 1152 | - $aircraft_type = preg_split(':/:',$aircraft_type); |
|
| 1153 | - $data['aircraft_name'] = substr(end($aircraft_type),0,-4); |
|
| 1152 | + $aircraft_type = preg_split(':/:', $aircraft_type); |
|
| 1153 | + $data['aircraft_name'] = substr(end($aircraft_type), 0, -4); |
|
| 1154 | 1154 | if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
| 1155 | 1155 | if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
| 1156 | 1156 | } |
@@ -1159,8 +1159,8 @@ discard block |
||
| 1159 | 1159 | echo 'Beast Binary format not yet supported. Beast AVR format is supported in alpha state'."\n"; |
| 1160 | 1160 | die; |
| 1161 | 1161 | } elseif ($format == 'vrstcp') { |
| 1162 | - foreach($buffer as $all_data) { |
|
| 1163 | - $line = json_decode('{'.$all_data.'}',true); |
|
| 1162 | + foreach ($buffer as $all_data) { |
|
| 1163 | + $line = json_decode('{'.$all_data.'}', true); |
|
| 1164 | 1164 | $data = array(); |
| 1165 | 1165 | if (isset($line['Icao'])) $data['hex'] = $line['Icao']; // hex |
| 1166 | 1166 | if (isset($line['Call'])) $data['ident'] = $line['Call']; // ident |
@@ -1186,16 +1186,16 @@ discard block |
||
| 1186 | 1186 | if (isset($data['latitude']) && isset($data['hex'])) $SI->add($data); |
| 1187 | 1187 | unset($data); |
| 1188 | 1188 | } |
| 1189 | - } elseif ($format == 'tsv' || substr($buffer,0,4) == 'clock') { |
|
| 1189 | + } elseif ($format == 'tsv' || substr($buffer, 0, 4) == 'clock') { |
|
| 1190 | 1190 | $line = explode("\t", $buffer); |
| 1191 | - for($k = 0; $k < count($line); $k=$k+2) { |
|
| 1191 | + for ($k = 0; $k < count($line); $k = $k + 2) { |
|
| 1192 | 1192 | $key = $line[$k]; |
| 1193 | - $lined[$key] = $line[$k+1]; |
|
| 1193 | + $lined[$key] = $line[$k + 1]; |
|
| 1194 | 1194 | } |
| 1195 | 1195 | if (count($lined) > 3) { |
| 1196 | 1196 | $data['hex'] = $lined['hexid']; |
| 1197 | 1197 | //$data['datetime'] = date('Y-m-d H:i:s',strtotime($lined['clock']));; |
| 1198 | - $data['datetime'] = date('Y-m-d H:i:s');; |
|
| 1198 | + $data['datetime'] = date('Y-m-d H:i:s'); ; |
|
| 1199 | 1199 | if (isset($lined['ident'])) $data['ident'] = $lined['ident']; |
| 1200 | 1200 | if (isset($lined['lat'])) $data['latitude'] = $lined['lat']; |
| 1201 | 1201 | if (isset($lined['lon'])) $data['longitude'] = $lined['lon']; |
@@ -1214,22 +1214,22 @@ discard block |
||
| 1214 | 1214 | } else $error = true; |
| 1215 | 1215 | } elseif ($format == 'aprs' && $use_aprs) { |
| 1216 | 1216 | if ($aprs_connect == 0) { |
| 1217 | - $send = @ socket_send( $r , $aprs_login , strlen($aprs_login) , 0 ); |
|
| 1217 | + $send = @ socket_send($r, $aprs_login, strlen($aprs_login), 0); |
|
| 1218 | 1218 | $aprs_connect = 1; |
| 1219 | 1219 | } |
| 1220 | 1220 | |
| 1221 | - if ( $aprs_keep>60 && time() - $aprs_last_tx > $aprs_keep ) { |
|
| 1221 | + if ($aprs_keep > 60 && time() - $aprs_last_tx > $aprs_keep) { |
|
| 1222 | 1222 | $aprs_last_tx = time(); |
| 1223 | 1223 | $data_aprs = "# Keep alive"; |
| 1224 | - $send = @ socket_send( $r , $data_aprs , strlen($data_aprs) , 0 ); |
|
| 1224 | + $send = @ socket_send($r, $data_aprs, strlen($data_aprs), 0); |
|
| 1225 | 1225 | } |
| 1226 | 1226 | |
| 1227 | 1227 | //echo 'Connect : '.$aprs_connect.' '.$buffer."\n"; |
| 1228 | 1228 | //echo 'APRS data : '.$buffer."\n"; |
| 1229 | - $buffer = str_replace('APRS <- ','',$buffer); |
|
| 1230 | - $buffer = str_replace('APRS -> ','',$buffer); |
|
| 1229 | + $buffer = str_replace('APRS <- ', '', $buffer); |
|
| 1230 | + $buffer = str_replace('APRS -> ', '', $buffer); |
|
| 1231 | 1231 | //echo $buffer."\n"; |
| 1232 | - if (substr($buffer,0,1) != '#' && substr($buffer,0,1) != '@' && substr($buffer,0,5) != 'APRS ') { |
|
| 1232 | + if (substr($buffer, 0, 1) != '#' && substr($buffer, 0, 1) != '@' && substr($buffer, 0, 5) != 'APRS ') { |
|
| 1233 | 1233 | $line = $APRS->parse($buffer); |
| 1234 | 1234 | //if (is_array($line) && isset($line['address']) && $line['address'] != '' && isset($line['ident'])) { |
| 1235 | 1235 | if (is_array($line) && isset($line['latitude']) && isset($line['longitude']) && (isset($line['ident']) || isset($line['address']) || isset($line['mmsi']))) { |
@@ -1238,7 +1238,7 @@ discard block |
||
| 1238 | 1238 | //print_r($line); |
| 1239 | 1239 | if (isset($line['address'])) $data['hex'] = $line['address']; |
| 1240 | 1240 | if (isset($line['mmsi'])) $data['mmsi'] = $line['mmsi']; |
| 1241 | - if (isset($line['timestamp'])) $data['datetime'] = date('Y-m-d H:i:s',$line['timestamp']); |
|
| 1241 | + if (isset($line['timestamp'])) $data['datetime'] = date('Y-m-d H:i:s', $line['timestamp']); |
|
| 1242 | 1242 | else $data['datetime'] = date('Y-m-d H:i:s'); |
| 1243 | 1243 | //$data['datetime'] = date('Y-m-d H:i:s'); |
| 1244 | 1244 | if (isset($line['ident'])) $data['ident'] = $line['ident']; |
@@ -1265,7 +1265,7 @@ discard block |
||
| 1265 | 1265 | $currentdate = date('Y-m-d H:i:s'); |
| 1266 | 1266 | $aprsdate = strtotime($data['datetime']); |
| 1267 | 1267 | // Accept data if time <= system time + 20s |
| 1268 | - if (($data['source_type'] == 'modes') || isset($line['stealth']) && ($line['stealth'] == 0 || $line['stealth'] == '') && (strtotime($data['datetime']) <= strtotime($currentdate)+20) && (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude'])))) { |
|
| 1268 | + if (($data['source_type'] == 'modes') || isset($line['stealth']) && ($line['stealth'] == 0 || $line['stealth'] == '') && (strtotime($data['datetime']) <= strtotime($currentdate) + 20) && (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude'])))) { |
|
| 1269 | 1269 | $send = $SI->add($data); |
| 1270 | 1270 | } elseif ($data['source_type'] == 'ais') { |
| 1271 | 1271 | echo 'add...'."\n"; |
@@ -1366,7 +1366,7 @@ discard block |
||
| 1366 | 1366 | connect_all($sourceee); |
| 1367 | 1367 | $sourceee = array(); |
| 1368 | 1368 | //connect_all($globalSources); |
| 1369 | - $tt[$format]=0; |
|
| 1369 | + $tt[$format] = 0; |
|
| 1370 | 1370 | break; |
| 1371 | 1371 | } |
| 1372 | 1372 | } |
@@ -1375,14 +1375,14 @@ discard block |
||
| 1375 | 1375 | } else { |
| 1376 | 1376 | $error = socket_strerror(socket_last_error()); |
| 1377 | 1377 | if (($error != SOCKET_EINPROGRESS && $error != SOCKET_EALREADY && $error != 'Success') || (time() - $time >= $timeout && $error != 'Success')) { |
| 1378 | - if ($globalDebug) echo "ERROR : socket_select give this error ".$error . "\n"; |
|
| 1378 | + if ($globalDebug) echo "ERROR : socket_select give this error ".$error."\n"; |
|
| 1379 | 1379 | if (isset($globalDebug)) echo "Restarting...\n"; |
| 1380 | 1380 | // Restart the script if possible |
| 1381 | 1381 | if (is_array($sockets)) { |
| 1382 | 1382 | if ($globalDebug) echo "Shutdown all sockets..."; |
| 1383 | 1383 | |
| 1384 | 1384 | foreach ($sockets as $sock) { |
| 1385 | - @socket_shutdown($sock,2); |
|
| 1385 | + @socket_shutdown($sock, 2); |
|
| 1386 | 1386 | @socket_close($sock); |
| 1387 | 1387 | } |
| 1388 | 1388 | |
@@ -13,13 +13,17 @@ discard block |
||
| 13 | 13 | require_once(dirname(__FILE__).'/../require/class.SBS.php'); |
| 14 | 14 | require_once(dirname(__FILE__).'/../require/class.Connection.php'); |
| 15 | 15 | require_once(dirname(__FILE__).'/../require/class.Common.php'); |
| 16 | -if (isset($globalTracker) && $globalTracker) require_once(dirname(__FILE__).'/../require/class.TrackerImport.php'); |
|
| 16 | +if (isset($globalTracker) && $globalTracker) { |
|
| 17 | + require_once(dirname(__FILE__).'/../require/class.TrackerImport.php'); |
|
| 18 | +} |
|
| 17 | 19 | if (isset($globalMarine) && $globalMarine) { |
| 18 | 20 | require_once(dirname(__FILE__).'/../require/class.AIS.php'); |
| 19 | 21 | require_once(dirname(__FILE__).'/../require/class.MarineImport.php'); |
| 20 | 22 | } |
| 21 | 23 | |
| 22 | -if (!isset($globalDebug)) $globalDebug = FALSE; |
|
| 24 | +if (!isset($globalDebug)) { |
|
| 25 | + $globalDebug = FALSE; |
|
| 26 | +} |
|
| 23 | 27 | |
| 24 | 28 | // Check if schema is at latest version |
| 25 | 29 | $Connection = new Connection(); |
@@ -54,35 +58,62 @@ discard block |
||
| 54 | 58 | //elseif (isset($options['source'])) $hosts = array($options['source']); |
| 55 | 59 | if (isset($options['s'])) { |
| 56 | 60 | $globalSources = array(); |
| 57 | - if (isset($options['format'])) $globalSources[] = array('host' => $options['s'],'format' => $options['format']); |
|
| 58 | - else $globalSources[] = array('host' => $options['s']); |
|
| 59 | -} elseif (isset($options['source'])) { |
|
| 61 | + if (isset($options['format'])) { |
|
| 62 | + $globalSources[] = array('host' => $options['s'],'format' => $options['format']); |
|
| 63 | + } else { |
|
| 64 | + $globalSources[] = array('host' => $options['s']); |
|
| 65 | + } |
|
| 66 | + } elseif (isset($options['source'])) { |
|
| 60 | 67 | $globalSources = array(); |
| 61 | - if (isset($options['format'])) $globalSources[] = array('host' => $options['source'],'format' => $options['format']); |
|
| 62 | - else $globalSources[] = array('host' => $options['source']); |
|
| 63 | -} |
|
| 68 | + if (isset($options['format'])) { |
|
| 69 | + $globalSources[] = array('host' => $options['source'],'format' => $options['format']); |
|
| 70 | + } else { |
|
| 71 | + $globalSources[] = array('host' => $options['source']); |
|
| 72 | + } |
|
| 73 | + } |
|
| 64 | 74 | if (isset($options['aprsserverhost'])) { |
| 65 | 75 | $globalServerAPRS = TRUE; |
| 66 | 76 | $globalServerAPRShost = $options['aprsserverhost']; |
| 67 | 77 | } |
| 68 | -if (isset($options['aprsserverport'])) $globalServerAPRSport = $options['aprsserverport']; |
|
| 69 | -if (isset($options['aprsserverssid'])) $globalServerAPRSssid = $options['aprsserverssid']; |
|
| 70 | -if (isset($options['aprsserverpass'])) $globalServerAPRSpass = $options['aprsserverpass']; |
|
| 71 | -if (isset($options['noaprsserver'])) $globalServerAPRS = FALSE; |
|
| 72 | -if (isset($options['nodaemon'])) $globalDaemon = FALSE; |
|
| 73 | -if (isset($options['server'])) $globalServer = TRUE; |
|
| 74 | -if (isset($options['idsource'])) $id_source = $options['idsource']; |
|
| 75 | -else $id_source = 1; |
|
| 78 | +if (isset($options['aprsserverport'])) { |
|
| 79 | + $globalServerAPRSport = $options['aprsserverport']; |
|
| 80 | +} |
|
| 81 | +if (isset($options['aprsserverssid'])) { |
|
| 82 | + $globalServerAPRSssid = $options['aprsserverssid']; |
|
| 83 | +} |
|
| 84 | +if (isset($options['aprsserverpass'])) { |
|
| 85 | + $globalServerAPRSpass = $options['aprsserverpass']; |
|
| 86 | +} |
|
| 87 | +if (isset($options['noaprsserver'])) { |
|
| 88 | + $globalServerAPRS = FALSE; |
|
| 89 | +} |
|
| 90 | +if (isset($options['nodaemon'])) { |
|
| 91 | + $globalDaemon = FALSE; |
|
| 92 | +} |
|
| 93 | +if (isset($options['server'])) { |
|
| 94 | + $globalServer = TRUE; |
|
| 95 | +} |
|
| 96 | +if (isset($options['idsource'])) { |
|
| 97 | + $id_source = $options['idsource']; |
|
| 98 | +} else { |
|
| 99 | + $id_source = 1; |
|
| 100 | +} |
|
| 76 | 101 | if (isset($globalServer) && $globalServer) { |
| 77 | - if ($globalDebug) echo "Using Server Mode\n"; |
|
| 102 | + if ($globalDebug) { |
|
| 103 | + echo "Using Server Mode\n"; |
|
| 104 | + } |
|
| 78 | 105 | $SI=new SpotterServer(); |
| 79 | 106 | /* |
| 80 | 107 | require_once(dirname(__FILE__).'/../require/class.APRS.php'); |
| 81 | 108 | $SI = new adsb2aprs(); |
| 82 | 109 | $SI->connect(); |
| 83 | 110 | */ |
| 84 | -} else $SI=new SpotterImport($Connection->db); |
|
| 85 | -if (isset($globalTracker) && $globalTracker) $TI = new TrackerImport($Connection->db); |
|
| 111 | +} else { |
|
| 112 | + $SI=new SpotterImport($Connection->db); |
|
| 113 | +} |
|
| 114 | +if (isset($globalTracker) && $globalTracker) { |
|
| 115 | + $TI = new TrackerImport($Connection->db); |
|
| 116 | +} |
|
| 86 | 117 | if (isset($globalMarine) && $globalMarine) { |
| 87 | 118 | $AIS = new AIS(); |
| 88 | 119 | $MI = new MarineImport($Connection->db); |
@@ -104,7 +135,9 @@ discard block |
||
| 104 | 135 | } |
| 105 | 136 | |
| 106 | 137 | // let's try and connect |
| 107 | -if ($globalDebug) echo "Connecting...\n"; |
|
| 138 | +if ($globalDebug) { |
|
| 139 | + echo "Connecting...\n"; |
|
| 140 | +} |
|
| 108 | 141 | $use_aprs = false; |
| 109 | 142 | $aprs_full = false; |
| 110 | 143 | $reset = 0; |
@@ -113,7 +146,9 @@ discard block |
||
| 113 | 146 | //global $sockets, $formats, $globalDebug,$aprs_connect,$last_exec, $globalSourcesRights, $use_aprs; |
| 114 | 147 | global $sockets,$httpfeeds, $globalSources, $globalDebug,$aprs_connect,$last_exec, $globalSourcesRights, $use_aprs, $reset,$context; |
| 115 | 148 | $reset++; |
| 116 | - if ($globalDebug) echo 'Connect to all...'."\n"; |
|
| 149 | + if ($globalDebug) { |
|
| 150 | + echo 'Connect to all...'."\n"; |
|
| 151 | + } |
|
| 117 | 152 | foreach ($hosts as $id => $value) { |
| 118 | 153 | $host = $value['host']; |
| 119 | 154 | $globalSources[$id]['last_exec'] = 0; |
@@ -123,27 +158,37 @@ discard block |
||
| 123 | 158 | //$formats[$id] = 'deltadbtxt'; |
| 124 | 159 | $globalSources[$id]['format'] = 'deltadbtxt'; |
| 125 | 160 | //$last_exec['deltadbtxt'] = 0; |
| 126 | - if ($globalDebug) echo "Connect to deltadb source (".$host.")...\n"; |
|
| 161 | + if ($globalDebug) { |
|
| 162 | + echo "Connect to deltadb source (".$host.")...\n"; |
|
| 163 | + } |
|
| 127 | 164 | } else if (preg_match('/vatsim-data.txt$/i',$host)) { |
| 128 | 165 | //$formats[$id] = 'vatsimtxt'; |
| 129 | 166 | $globalSources[$id]['format'] = 'vatsimtxt'; |
| 130 | 167 | //$last_exec['vatsimtxt'] = 0; |
| 131 | - if ($globalDebug) echo "Connect to vatsim source (".$host.")...\n"; |
|
| 168 | + if ($globalDebug) { |
|
| 169 | + echo "Connect to vatsim source (".$host.")...\n"; |
|
| 170 | + } |
|
| 132 | 171 | } else if (preg_match('/aircraftlist.json$/i',$host)) { |
| 133 | 172 | //$formats[$id] = 'aircraftlistjson'; |
| 134 | 173 | $globalSources[$id]['format'] = 'aircraftlistjson'; |
| 135 | 174 | //$last_exec['aircraftlistjson'] = 0; |
| 136 | - if ($globalDebug) echo "Connect to aircraftlist.json source (".$host.")...\n"; |
|
| 175 | + if ($globalDebug) { |
|
| 176 | + echo "Connect to aircraftlist.json source (".$host.")...\n"; |
|
| 177 | + } |
|
| 137 | 178 | } else if (preg_match('/opensky/i',$host)) { |
| 138 | 179 | //$formats[$id] = 'aircraftlistjson'; |
| 139 | 180 | $globalSources[$id]['format'] = 'opensky'; |
| 140 | 181 | //$last_exec['aircraftlistjson'] = 0; |
| 141 | - if ($globalDebug) echo "Connect to opensky source (".$host.")...\n"; |
|
| 182 | + if ($globalDebug) { |
|
| 183 | + echo "Connect to opensky source (".$host.")...\n"; |
|
| 184 | + } |
|
| 142 | 185 | } else if (preg_match('/radarvirtuel.com\/file.json$/i',$host)) { |
| 143 | 186 | //$formats[$id] = 'radarvirtueljson'; |
| 144 | 187 | $globalSources[$id]['format'] = 'radarvirtueljson'; |
| 145 | 188 | //$last_exec['radarvirtueljson'] = 0; |
| 146 | - if ($globalDebug) echo "Connect to radarvirtuel.com/file.json source (".$host.")...\n"; |
|
| 189 | + if ($globalDebug) { |
|
| 190 | + echo "Connect to radarvirtuel.com/file.json source (".$host.")...\n"; |
|
| 191 | + } |
|
| 147 | 192 | if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
| 148 | 193 | echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
| 149 | 194 | exit(0); |
@@ -152,7 +197,9 @@ discard block |
||
| 152 | 197 | //$formats[$id] = 'planeupdatefaa'; |
| 153 | 198 | $globalSources[$id]['format'] = 'planeupdatefaa'; |
| 154 | 199 | //$last_exec['planeupdatefaa'] = 0; |
| 155 | - if ($globalDebug) echo "Connect to planeUpdateFAA.php source (".$host.")...\n"; |
|
| 200 | + if ($globalDebug) { |
|
| 201 | + echo "Connect to planeUpdateFAA.php source (".$host.")...\n"; |
|
| 202 | + } |
|
| 156 | 203 | if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
| 157 | 204 | echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
| 158 | 205 | exit(0); |
@@ -161,26 +208,36 @@ discard block |
||
| 161 | 208 | //$formats[$id] = 'phpvmacars'; |
| 162 | 209 | $globalSources[$id]['format'] = 'phpvmacars'; |
| 163 | 210 | //$last_exec['phpvmacars'] = 0; |
| 164 | - if ($globalDebug) echo "Connect to phpvmacars source (".$host.")...\n"; |
|
| 211 | + if ($globalDebug) { |
|
| 212 | + echo "Connect to phpvmacars source (".$host.")...\n"; |
|
| 213 | + } |
|
| 165 | 214 | } else if (preg_match('/VAM-json.php$/i',$host)) { |
| 166 | 215 | //$formats[$id] = 'phpvmacars'; |
| 167 | 216 | $globalSources[$id]['format'] = 'vam'; |
| 168 | - if ($globalDebug) echo "Connect to Vam source (".$host.")...\n"; |
|
| 217 | + if ($globalDebug) { |
|
| 218 | + echo "Connect to Vam source (".$host.")...\n"; |
|
| 219 | + } |
|
| 169 | 220 | } else if (preg_match('/whazzup/i',$host)) { |
| 170 | 221 | //$formats[$id] = 'whazzup'; |
| 171 | 222 | $globalSources[$id]['format'] = 'whazzup'; |
| 172 | 223 | //$last_exec['whazzup'] = 0; |
| 173 | - if ($globalDebug) echo "Connect to whazzup source (".$host.")...\n"; |
|
| 224 | + if ($globalDebug) { |
|
| 225 | + echo "Connect to whazzup source (".$host.")...\n"; |
|
| 226 | + } |
|
| 174 | 227 | } else if (preg_match('/recentpireps/i',$host)) { |
| 175 | 228 | //$formats[$id] = 'pirepsjson'; |
| 176 | 229 | $globalSources[$id]['format'] = 'pirepsjson'; |
| 177 | 230 | //$last_exec['pirepsjson'] = 0; |
| 178 | - if ($globalDebug) echo "Connect to pirepsjson source (".$host.")...\n"; |
|
| 231 | + if ($globalDebug) { |
|
| 232 | + echo "Connect to pirepsjson source (".$host.")...\n"; |
|
| 233 | + } |
|
| 179 | 234 | } else if (preg_match(':data.fr24.com/zones/fcgi/feed.js:i',$host)) { |
| 180 | 235 | //$formats[$id] = 'fr24json'; |
| 181 | 236 | $globalSources[$id]['format'] = 'fr24json'; |
| 182 | 237 | //$last_exec['fr24json'] = 0; |
| 183 | - if ($globalDebug) echo "Connect to fr24 source (".$host.")...\n"; |
|
| 238 | + if ($globalDebug) { |
|
| 239 | + echo "Connect to fr24 source (".$host.")...\n"; |
|
| 240 | + } |
|
| 184 | 241 | if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
| 185 | 242 | echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
| 186 | 243 | exit(0); |
@@ -189,7 +246,9 @@ discard block |
||
| 189 | 246 | //$formats[$id] = 'fr24json'; |
| 190 | 247 | $globalSources[$id]['format'] = 'myshiptracking'; |
| 191 | 248 | //$last_exec['fr24json'] = 0; |
| 192 | - if ($globalDebug) echo "Connect to myshiptracking source (".$host.")...\n"; |
|
| 249 | + if ($globalDebug) { |
|
| 250 | + echo "Connect to myshiptracking source (".$host.")...\n"; |
|
| 251 | + } |
|
| 193 | 252 | if (!isset($globalSourcesRights) || (isset($globalSourcesRights) && !$globalSourcesRights)) { |
| 194 | 253 | echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
| 195 | 254 | exit(0); |
@@ -198,17 +257,24 @@ discard block |
||
| 198 | 257 | } else if (preg_match('/10001/',$host) || (isset($globalSources[$id]['port']) && $globalSources[$id]['port'] == '10001')) { |
| 199 | 258 | //$formats[$id] = 'tsv'; |
| 200 | 259 | $globalSources[$id]['format'] = 'tsv'; |
| 201 | - if ($globalDebug) echo "Connect to tsv source (".$host.")...\n"; |
|
| 260 | + if ($globalDebug) { |
|
| 261 | + echo "Connect to tsv source (".$host.")...\n"; |
|
| 262 | + } |
|
| 202 | 263 | } |
| 203 | 264 | } elseif (filter_var($host,FILTER_VALIDATE_URL)) { |
| 204 | 265 | if ($globalSources[$id]['format'] == 'aisnmeahttp') { |
| 205 | 266 | $idf = fopen($globalSources[$id]['host'],'r',false,$context); |
| 206 | 267 | if ($idf !== false) { |
| 207 | 268 | $httpfeeds[$id] = $idf; |
| 208 | - if ($globalDebug) echo "Connected to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
|
| 269 | + if ($globalDebug) { |
|
| 270 | + echo "Connected to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
|
| 271 | + } |
|
| 272 | + } elseif ($globalDebug) { |
|
| 273 | + echo "Can't connect to ".$globalSources[$id]['host']."\n"; |
|
| 209 | 274 | } |
| 210 | - elseif ($globalDebug) echo "Can't connect to ".$globalSources[$id]['host']."\n"; |
|
| 211 | - } elseif ($globalDebug) echo "Connect to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
|
| 275 | + } elseif ($globalDebug) { |
|
| 276 | + echo "Connect to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
|
| 277 | + } |
|
| 212 | 278 | } elseif (!filter_var($host,FILTER_VALIDATE_URL)) { |
| 213 | 279 | $hostport = explode(':',$host); |
| 214 | 280 | if (isset($hostport[1])) { |
@@ -248,17 +314,25 @@ discard block |
||
| 248 | 314 | //$formats[$id] = 'beast'; |
| 249 | 315 | $globalSources[$id]['format'] = 'beast'; |
| 250 | 316 | //} else $formats[$id] = 'sbs'; |
| 251 | - } else $globalSources[$id]['format'] = 'sbs'; |
|
| 317 | + } else { |
|
| 318 | + $globalSources[$id]['format'] = 'sbs'; |
|
| 319 | + } |
|
| 252 | 320 | //if ($globalDebug) echo 'Connection in progress to '.$host.'('.$formats[$id].')....'."\n"; |
| 253 | 321 | } |
| 254 | - if ($globalDebug) echo 'Connection in progress to '.$hostn.':'.$port.' ('.$globalSources[$id]['format'].')....'."\n"; |
|
| 322 | + if ($globalDebug) { |
|
| 323 | + echo 'Connection in progress to '.$hostn.':'.$port.' ('.$globalSources[$id]['format'].')....'."\n"; |
|
| 324 | + } |
|
| 255 | 325 | } else { |
| 256 | - if ($globalDebug) echo 'Connection failed to '.$hostn.':'.$port.' : '.$errno.' '.$errstr."\n"; |
|
| 326 | + if ($globalDebug) { |
|
| 327 | + echo 'Connection failed to '.$hostn.':'.$port.' : '.$errno.' '.$errstr."\n"; |
|
| 328 | + } |
|
| 257 | 329 | } |
| 258 | 330 | } |
| 259 | 331 | } |
| 260 | 332 | } |
| 261 | -if (!isset($globalMinFetch)) $globalMinFetch = 15; |
|
| 333 | +if (!isset($globalMinFetch)) { |
|
| 334 | + $globalMinFetch = 15; |
|
| 335 | +} |
|
| 262 | 336 | |
| 263 | 337 | // Initialize all |
| 264 | 338 | $status = array(); |
@@ -267,13 +341,19 @@ discard block |
||
| 267 | 341 | $formats = array(); |
| 268 | 342 | $last_exec = array(); |
| 269 | 343 | $time = time(); |
| 270 | -if (isset($globalSourcesTimeout)) $timeout = $globalSourcesTimeOut; |
|
| 271 | -else if (isset($globalSBS1TimeOut)) $timeout = $globalSBS1TimeOut; |
|
| 272 | -else $timeout = 20; |
|
| 344 | +if (isset($globalSourcesTimeout)) { |
|
| 345 | + $timeout = $globalSourcesTimeOut; |
|
| 346 | +} else if (isset($globalSBS1TimeOut)) { |
|
| 347 | + $timeout = $globalSBS1TimeOut; |
|
| 348 | +} else { |
|
| 349 | + $timeout = 20; |
|
| 350 | +} |
|
| 273 | 351 | $errno = ''; |
| 274 | 352 | $errstr=''; |
| 275 | 353 | |
| 276 | -if (!isset($globalDaemon)) $globalDaemon = TRUE; |
|
| 354 | +if (!isset($globalDaemon)) { |
|
| 355 | + $globalDaemon = TRUE; |
|
| 356 | +} |
|
| 277 | 357 | /* Initiate connections to all the hosts simultaneously */ |
| 278 | 358 | //connect_all($hosts); |
| 279 | 359 | //connect_all($globalSources); |
@@ -299,7 +379,9 @@ discard block |
||
| 299 | 379 | if (isset($source['format']) && $source['format'] == 'aprs') { |
| 300 | 380 | $aprs_connect = 0; |
| 301 | 381 | $use_aprs = true; |
| 302 | - if (isset($source['port']) && $source['port'] == '10152') $aprs_full = true; |
|
| 382 | + if (isset($source['port']) && $source['port'] == '10152') { |
|
| 383 | + $aprs_full = true; |
|
| 384 | + } |
|
| 303 | 385 | break; |
| 304 | 386 | } |
| 305 | 387 | } |
@@ -310,25 +392,48 @@ discard block |
||
| 310 | 392 | $aprs_connect = 0; |
| 311 | 393 | $aprs_keep = 120; |
| 312 | 394 | $aprs_last_tx = time(); |
| 313 | - if (isset($globalAPRSversion)) $aprs_version = $globalAPRSversion; |
|
| 314 | - else $aprs_version = 'FlightAirMap '.str_replace(' ','_',$globalName); |
|
| 315 | - if (isset($globalAPRSssid)) $aprs_ssid = $globalAPRSssid; |
|
| 316 | - else $aprs_ssid = substr('FAM'.strtoupper(str_replace(' ','_',$globalName)),0,8); |
|
| 317 | - if (isset($globalAPRSfilter)) $aprs_filter = $globalAPRSfilter; |
|
| 318 | - else $aprs_filter = 'r/'.$globalCenterLatitude.'/'.$globalCenterLongitude.'/250.0'; |
|
| 319 | - if ($aprs_full) $aprs_filter = ''; |
|
| 320 | - if (isset($globalAPRSpass)) $aprs_pass = $globalAPRSpass; |
|
| 321 | - else $aprs_pass = '-1'; |
|
| 395 | + if (isset($globalAPRSversion)) { |
|
| 396 | + $aprs_version = $globalAPRSversion; |
|
| 397 | + } else { |
|
| 398 | + $aprs_version = 'FlightAirMap '.str_replace(' ','_',$globalName); |
|
| 399 | + } |
|
| 400 | + if (isset($globalAPRSssid)) { |
|
| 401 | + $aprs_ssid = $globalAPRSssid; |
|
| 402 | + } else { |
|
| 403 | + $aprs_ssid = substr('FAM'.strtoupper(str_replace(' ','_',$globalName)),0,8); |
|
| 404 | + } |
|
| 405 | + if (isset($globalAPRSfilter)) { |
|
| 406 | + $aprs_filter = $globalAPRSfilter; |
|
| 407 | + } else { |
|
| 408 | + $aprs_filter = 'r/'.$globalCenterLatitude.'/'.$globalCenterLongitude.'/250.0'; |
|
| 409 | + } |
|
| 410 | + if ($aprs_full) { |
|
| 411 | + $aprs_filter = ''; |
|
| 412 | + } |
|
| 413 | + if (isset($globalAPRSpass)) { |
|
| 414 | + $aprs_pass = $globalAPRSpass; |
|
| 415 | + } else { |
|
| 416 | + $aprs_pass = '-1'; |
|
| 417 | + } |
|
| 322 | 418 | |
| 323 | - if ($aprs_filter != '') $aprs_login = "user {$aprs_ssid} pass {$aprs_pass} vers {$aprs_version} filter {$aprs_filter}\n"; |
|
| 324 | - else $aprs_login = "user {$aprs_ssid} pass {$aprs_pass} vers {$aprs_version}\n"; |
|
| 325 | -} |
|
| 419 | + if ($aprs_filter != '') { |
|
| 420 | + $aprs_login = "user {$aprs_ssid} pass {$aprs_pass} vers {$aprs_version} filter {$aprs_filter}\n"; |
|
| 421 | + } else { |
|
| 422 | + $aprs_login = "user {$aprs_ssid} pass {$aprs_pass} vers {$aprs_version}\n"; |
|
| 423 | + } |
|
| 424 | + } |
|
| 326 | 425 | |
| 327 | 426 | // connected - lets do some work |
| 328 | -if ($globalDebug) echo "Connected!\n"; |
|
| 427 | +if ($globalDebug) { |
|
| 428 | + echo "Connected!\n"; |
|
| 429 | +} |
|
| 329 | 430 | sleep(1); |
| 330 | -if ($globalDebug) echo "SCAN MODE \n\n"; |
|
| 331 | -if (!isset($globalCronEnd)) $globalCronEnd = 60; |
|
| 431 | +if ($globalDebug) { |
|
| 432 | + echo "SCAN MODE \n\n"; |
|
| 433 | +} |
|
| 434 | +if (!isset($globalCronEnd)) { |
|
| 435 | + $globalCronEnd = 60; |
|
| 436 | +} |
|
| 332 | 437 | $endtime = time()+$globalCronEnd; |
| 333 | 438 | $i = 1; |
| 334 | 439 | $tt = array(); |
@@ -342,10 +447,14 @@ discard block |
||
| 342 | 447 | |
| 343 | 448 | // Infinite loop if daemon, else work for time defined in $globalCronEnd or only one time. |
| 344 | 449 | while ($i > 0) { |
| 345 | - if (!$globalDaemon) $i = $endtime-time(); |
|
| 450 | + if (!$globalDaemon) { |
|
| 451 | + $i = $endtime-time(); |
|
| 452 | + } |
|
| 346 | 453 | // Delete old ATC |
| 347 | 454 | if ($globalDaemon && ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM))) { |
| 348 | - if ($globalDebug) echo 'Delete old ATC...'."\n"; |
|
| 455 | + if ($globalDebug) { |
|
| 456 | + echo 'Delete old ATC...'."\n"; |
|
| 457 | + } |
|
| 349 | 458 | $ATC->deleteOldATC(); |
| 350 | 459 | } |
| 351 | 460 | |
@@ -353,10 +462,14 @@ discard block |
||
| 353 | 462 | if (count($last_exec) == count($globalSources)) { |
| 354 | 463 | $max = $globalMinFetch; |
| 355 | 464 | foreach ($last_exec as $last) { |
| 356 | - if ((time() - $last['last']) < $max) $max = time() - $last['last']; |
|
| 465 | + if ((time() - $last['last']) < $max) { |
|
| 466 | + $max = time() - $last['last']; |
|
| 467 | + } |
|
| 357 | 468 | } |
| 358 | 469 | if ($max != $globalMinFetch) { |
| 359 | - if ($globalDebug) echo 'Sleeping...'."\n"; |
|
| 470 | + if ($globalDebug) { |
|
| 471 | + echo 'Sleeping...'."\n"; |
|
| 472 | + } |
|
| 360 | 473 | sleep($globalMinFetch-$max+2); |
| 361 | 474 | } |
| 362 | 475 | } |
@@ -365,11 +478,15 @@ discard block |
||
| 365 | 478 | //foreach ($formats as $id => $value) { |
| 366 | 479 | foreach ($globalSources as $id => $value) { |
| 367 | 480 | date_default_timezone_set('UTC'); |
| 368 | - if (!isset($last_exec[$id]['last'])) $last_exec[$id]['last'] = 0; |
|
| 481 | + if (!isset($last_exec[$id]['last'])) { |
|
| 482 | + $last_exec[$id]['last'] = 0; |
|
| 483 | + } |
|
| 369 | 484 | if ($value['format'] == 'deltadbtxt' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
| 370 | 485 | //$buffer = $Common->getData($hosts[$id]); |
| 371 | 486 | $buffer = $Common->getData($value['host']); |
| 372 | - if ($buffer != '') $reset = 0; |
|
| 487 | + if ($buffer != '') { |
|
| 488 | + $reset = 0; |
|
| 489 | + } |
|
| 373 | 490 | $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
| 374 | 491 | $buffer = explode('\n',$buffer); |
| 375 | 492 | foreach ($buffer as $line) { |
@@ -378,20 +495,41 @@ discard block |
||
| 378 | 495 | $data = array(); |
| 379 | 496 | $data['hex'] = $line[1]; // hex |
| 380 | 497 | $data['ident'] = $line[2]; // ident |
| 381 | - if (isset($line[3])) $data['altitude'] = $line[3]; // altitude |
|
| 382 | - if (isset($line[4])) $data['speed'] = $line[4]; // speed |
|
| 383 | - if (isset($line[5])) $data['heading'] = $line[5]; // heading |
|
| 384 | - if (isset($line[6])) $data['latitude'] = $line[6]; // lat |
|
| 385 | - if (isset($line[7])) $data['longitude'] = $line[7]; // long |
|
| 498 | + if (isset($line[3])) { |
|
| 499 | + $data['altitude'] = $line[3]; |
|
| 500 | + } |
|
| 501 | + // altitude |
|
| 502 | + if (isset($line[4])) { |
|
| 503 | + $data['speed'] = $line[4]; |
|
| 504 | + } |
|
| 505 | + // speed |
|
| 506 | + if (isset($line[5])) { |
|
| 507 | + $data['heading'] = $line[5]; |
|
| 508 | + } |
|
| 509 | + // heading |
|
| 510 | + if (isset($line[6])) { |
|
| 511 | + $data['latitude'] = $line[6]; |
|
| 512 | + } |
|
| 513 | + // lat |
|
| 514 | + if (isset($line[7])) { |
|
| 515 | + $data['longitude'] = $line[7]; |
|
| 516 | + } |
|
| 517 | + // long |
|
| 386 | 518 | $data['verticalrate'] = ''; // vertical rate |
| 387 | 519 | //if (isset($line[9])) $data['squawk'] = $line[9]; // squawk |
| 388 | 520 | $data['emergency'] = ''; // emergency |
| 389 | 521 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 390 | 522 | $data['format_source'] = 'deltadbtxt'; |
| 391 | 523 | $data['id_source'] = $id_source; |
| 392 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 393 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 394 | - if (isset($value['sourcestats'])) $data['sourcestats'] = $value['sourcestats']; |
|
| 524 | + if (isset($value['name']) && $value['name'] != '') { |
|
| 525 | + $data['source_name'] = $value['name']; |
|
| 526 | + } |
|
| 527 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 528 | + $data['noarchive'] = true; |
|
| 529 | + } |
|
| 530 | + if (isset($value['sourcestats'])) { |
|
| 531 | + $data['sourcestats'] = $value['sourcestats']; |
|
| 532 | + } |
|
| 395 | 533 | $SI->add($data); |
| 396 | 534 | unset($data); |
| 397 | 535 | } |
@@ -401,7 +539,9 @@ discard block |
||
| 401 | 539 | date_default_timezone_set('CET'); |
| 402 | 540 | $buffer = $Common->getData(str_replace('{date}',date('Ymd'),$value['host'])); |
| 403 | 541 | date_default_timezone_set('UTC'); |
| 404 | - if ($buffer != '') $reset = 0; |
|
| 542 | + if ($buffer != '') { |
|
| 543 | + $reset = 0; |
|
| 544 | + } |
|
| 405 | 545 | $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
| 406 | 546 | $buffer = explode('\n',$buffer); |
| 407 | 547 | foreach ($buffer as $line) { |
@@ -410,16 +550,36 @@ discard block |
||
| 410 | 550 | $add = false; |
| 411 | 551 | $ais_data = $AIS->parse_line(trim($line)); |
| 412 | 552 | $data = array(); |
| 413 | - if (isset($ais_data['ident'])) $data['ident'] = $ais_data['ident']; |
|
| 414 | - if (isset($ais_data['mmsi'])) $data['mmsi'] = $ais_data['mmsi']; |
|
| 415 | - if (isset($ais_data['speed'])) $data['speed'] = $ais_data['speed']; |
|
| 416 | - if (isset($ais_data['heading'])) $data['heading'] = $ais_data['heading']; |
|
| 417 | - if (isset($ais_data['latitude'])) $data['latitude'] = $ais_data['latitude']; |
|
| 418 | - if (isset($ais_data['longitude'])) $data['longitude'] = $ais_data['longitude']; |
|
| 419 | - if (isset($ais_data['status'])) $data['status'] = $ais_data['status']; |
|
| 420 | - if (isset($ais_data['type'])) $data['type'] = $ais_data['type']; |
|
| 421 | - if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
|
| 422 | - if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
|
| 553 | + if (isset($ais_data['ident'])) { |
|
| 554 | + $data['ident'] = $ais_data['ident']; |
|
| 555 | + } |
|
| 556 | + if (isset($ais_data['mmsi'])) { |
|
| 557 | + $data['mmsi'] = $ais_data['mmsi']; |
|
| 558 | + } |
|
| 559 | + if (isset($ais_data['speed'])) { |
|
| 560 | + $data['speed'] = $ais_data['speed']; |
|
| 561 | + } |
|
| 562 | + if (isset($ais_data['heading'])) { |
|
| 563 | + $data['heading'] = $ais_data['heading']; |
|
| 564 | + } |
|
| 565 | + if (isset($ais_data['latitude'])) { |
|
| 566 | + $data['latitude'] = $ais_data['latitude']; |
|
| 567 | + } |
|
| 568 | + if (isset($ais_data['longitude'])) { |
|
| 569 | + $data['longitude'] = $ais_data['longitude']; |
|
| 570 | + } |
|
| 571 | + if (isset($ais_data['status'])) { |
|
| 572 | + $data['status'] = $ais_data['status']; |
|
| 573 | + } |
|
| 574 | + if (isset($ais_data['type'])) { |
|
| 575 | + $data['type'] = $ais_data['type']; |
|
| 576 | + } |
|
| 577 | + if (isset($ais_data['imo'])) { |
|
| 578 | + $data['imo'] = $ais_data['imo']; |
|
| 579 | + } |
|
| 580 | + if (isset($ais_data['callsign'])) { |
|
| 581 | + $data['callsign'] = $ais_data['callsign']; |
|
| 582 | + } |
|
| 423 | 583 | if (isset($ais_data['timestamp'])) { |
| 424 | 584 | $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
| 425 | 585 | if (!isset($last_exec[$id]['timestamp']) || $ais_data['timestamp'] >= $last_exec[$id]['timestamp']) { |
@@ -434,8 +594,12 @@ discard block |
||
| 434 | 594 | $data['id_source'] = $id_source; |
| 435 | 595 | //print_r($data); |
| 436 | 596 | echo 'Add...'."\n"; |
| 437 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 438 | - if ($add && isset($ais_data['mmsi_type']) && $ais_data['mmsi_type'] == 'Ship') $MI->add($data); |
|
| 597 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 598 | + $data['noarchive'] = true; |
|
| 599 | + } |
|
| 600 | + if ($add && isset($ais_data['mmsi_type']) && $ais_data['mmsi_type'] == 'Ship') { |
|
| 601 | + $MI->add($data); |
|
| 602 | + } |
|
| 439 | 603 | unset($data); |
| 440 | 604 | } |
| 441 | 605 | } |
@@ -455,18 +619,42 @@ discard block |
||
| 455 | 619 | if ($line != '') { |
| 456 | 620 | $ais_data = $AIS->parse_line(trim($line)); |
| 457 | 621 | $data = array(); |
| 458 | - if (isset($ais_data['ident'])) $data['ident'] = $ais_data['ident']; |
|
| 459 | - if (isset($ais_data['mmsi'])) $data['mmsi'] = $ais_data['mmsi']; |
|
| 460 | - if (isset($ais_data['speed'])) $data['speed'] = $ais_data['speed']; |
|
| 461 | - if (isset($ais_data['heading'])) $data['heading'] = $ais_data['heading']; |
|
| 462 | - if (isset($ais_data['latitude'])) $data['latitude'] = $ais_data['latitude']; |
|
| 463 | - if (isset($ais_data['longitude'])) $data['longitude'] = $ais_data['longitude']; |
|
| 464 | - if (isset($ais_data['status'])) $data['status'] = $ais_data['status']; |
|
| 465 | - if (isset($ais_data['type'])) $data['type'] = $ais_data['type']; |
|
| 466 | - if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
|
| 467 | - if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
|
| 468 | - if (isset($ais_data['destination'])) $data['arrival_code'] = $ais_data['destination']; |
|
| 469 | - if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s',$ais_data['eta_ts']); |
|
| 622 | + if (isset($ais_data['ident'])) { |
|
| 623 | + $data['ident'] = $ais_data['ident']; |
|
| 624 | + } |
|
| 625 | + if (isset($ais_data['mmsi'])) { |
|
| 626 | + $data['mmsi'] = $ais_data['mmsi']; |
|
| 627 | + } |
|
| 628 | + if (isset($ais_data['speed'])) { |
|
| 629 | + $data['speed'] = $ais_data['speed']; |
|
| 630 | + } |
|
| 631 | + if (isset($ais_data['heading'])) { |
|
| 632 | + $data['heading'] = $ais_data['heading']; |
|
| 633 | + } |
|
| 634 | + if (isset($ais_data['latitude'])) { |
|
| 635 | + $data['latitude'] = $ais_data['latitude']; |
|
| 636 | + } |
|
| 637 | + if (isset($ais_data['longitude'])) { |
|
| 638 | + $data['longitude'] = $ais_data['longitude']; |
|
| 639 | + } |
|
| 640 | + if (isset($ais_data['status'])) { |
|
| 641 | + $data['status'] = $ais_data['status']; |
|
| 642 | + } |
|
| 643 | + if (isset($ais_data['type'])) { |
|
| 644 | + $data['type'] = $ais_data['type']; |
|
| 645 | + } |
|
| 646 | + if (isset($ais_data['imo'])) { |
|
| 647 | + $data['imo'] = $ais_data['imo']; |
|
| 648 | + } |
|
| 649 | + if (isset($ais_data['callsign'])) { |
|
| 650 | + $data['callsign'] = $ais_data['callsign']; |
|
| 651 | + } |
|
| 652 | + if (isset($ais_data['destination'])) { |
|
| 653 | + $data['arrival_code'] = $ais_data['destination']; |
|
| 654 | + } |
|
| 655 | + if (isset($ais_data['eta_ts'])) { |
|
| 656 | + $data['arrival_date'] = date('Y-m-d H:i:s',$ais_data['eta_ts']); |
|
| 657 | + } |
|
| 470 | 658 | if (isset($ais_data['timestamp'])) { |
| 471 | 659 | $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
| 472 | 660 | } else { |
@@ -474,16 +662,23 @@ discard block |
||
| 474 | 662 | } |
| 475 | 663 | $data['format_source'] = 'aisnmeahttp'; |
| 476 | 664 | $data['id_source'] = $id_source; |
| 477 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 478 | - if (isset($ais_data['mmsi_type']) && $ais_data['mmsi_type'] == 'Ship') $MI->add($data); |
|
| 665 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 666 | + $data['noarchive'] = true; |
|
| 667 | + } |
|
| 668 | + if (isset($ais_data['mmsi_type']) && $ais_data['mmsi_type'] == 'Ship') { |
|
| 669 | + $MI->add($data); |
|
| 670 | + } |
|
| 479 | 671 | unset($data); |
| 480 | 672 | } |
| 481 | 673 | } |
| 482 | 674 | } |
| 483 | 675 | } else { |
| 484 | 676 | $format = $value['format']; |
| 485 | - if (isset($tt[$format])) $tt[$format]++; |
|
| 486 | - else $tt[$format] = 0; |
|
| 677 | + if (isset($tt[$format])) { |
|
| 678 | + $tt[$format]++; |
|
| 679 | + } else { |
|
| 680 | + $tt[$format] = 0; |
|
| 681 | + } |
|
| 487 | 682 | if ($tt[$format] > 30) { |
| 488 | 683 | sleep(2); |
| 489 | 684 | $sourceeen[] = $value; |
@@ -514,7 +709,9 @@ discard block |
||
| 514 | 709 | $data['datetime'] = date('Y-m-d H:i:s',$line['T']); |
| 515 | 710 | $data['format_source'] = 'myshiptracking'; |
| 516 | 711 | $data['id_source'] = $id_source; |
| 517 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 712 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 713 | + $data['noarchive'] = true; |
|
| 714 | + } |
|
| 518 | 715 | $MI->add($data); |
| 519 | 716 | unset($data); |
| 520 | 717 | } |
@@ -535,7 +732,9 @@ discard block |
||
| 535 | 732 | $data['callsign'] = $line['callsign']; |
| 536 | 733 | $data['mmsi'] = $line['mmsi']; |
| 537 | 734 | $data['speed'] = $line['sog']; |
| 538 | - if ($line['heading'] != '511') $data['heading'] = $line['heading']; |
|
| 735 | + if ($line['heading'] != '511') { |
|
| 736 | + $data['heading'] = $line['heading']; |
|
| 737 | + } |
|
| 539 | 738 | $data['latitude'] = $line['latitude']; |
| 540 | 739 | $data['longitude'] = $line['longitude']; |
| 541 | 740 | $data['type_id'] = $line['shiptype']; |
@@ -543,7 +742,9 @@ discard block |
||
| 543 | 742 | $data['datetime'] = $line['time']; |
| 544 | 743 | $data['format_source'] = 'boatbeaconapp'; |
| 545 | 744 | $data['id_source'] = $id_source; |
| 546 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 745 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 746 | + $data['noarchive'] = true; |
|
| 747 | + } |
|
| 547 | 748 | $MI->add($data); |
| 548 | 749 | unset($data); |
| 549 | 750 | } |
@@ -556,7 +757,9 @@ discard block |
||
| 556 | 757 | echo 'download...'; |
| 557 | 758 | $buffer = $Common->getData($value['host'],'post',$value['post'],'','','','','ShipPlotter'); |
| 558 | 759 | echo 'done !'."\n"; |
| 559 | - if ($buffer != '') $reset = 0; |
|
| 760 | + if ($buffer != '') { |
|
| 761 | + $reset = 0; |
|
| 762 | + } |
|
| 560 | 763 | $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
| 561 | 764 | $buffer = explode('\n',$buffer); |
| 562 | 765 | foreach ($buffer as $line) { |
@@ -581,7 +784,9 @@ discard block |
||
| 581 | 784 | //$data['etaTime'] = substr($line,135,5); |
| 582 | 785 | $data['format_source'] = 'shipplotter'; |
| 583 | 786 | $data['id_source'] = $id_source; |
| 584 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 787 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 788 | + $data['noarchive'] = true; |
|
| 789 | + } |
|
| 585 | 790 | //print_r($data); |
| 586 | 791 | echo 'Add...'."\n"; |
| 587 | 792 | $MI->add($data); |
@@ -601,16 +806,28 @@ discard block |
||
| 601 | 806 | $line = explode(':', $line); |
| 602 | 807 | if (count($line) > 30 && $line[0] != 'callsign') { |
| 603 | 808 | $data = array(); |
| 604 | - if (isset($line[37]) && $line[37] != '') $data['id'] = $value['format'].'-'.$line[1].'-'.$line[0].'-'.$line[37]; |
|
| 605 | - else $data['id'] = $value['format'].'-'.$line[1].'-'.$line[0]; |
|
| 809 | + if (isset($line[37]) && $line[37] != '') { |
|
| 810 | + $data['id'] = $value['format'].'-'.$line[1].'-'.$line[0].'-'.$line[37]; |
|
| 811 | + } else { |
|
| 812 | + $data['id'] = $value['format'].'-'.$line[1].'-'.$line[0]; |
|
| 813 | + } |
|
| 606 | 814 | $data['pilot_id'] = $line[1]; |
| 607 | 815 | $data['pilot_name'] = $line[2]; |
| 608 | 816 | $data['hex'] = str_pad(dechex($Common->str2int($line[1])),6,'000000',STR_PAD_LEFT); |
| 609 | 817 | $data['ident'] = $line[0]; // ident |
| 610 | - if ($line[7] != '' && $line[7] != 0) $data['altitude'] = $line[7]; // altitude |
|
| 818 | + if ($line[7] != '' && $line[7] != 0) { |
|
| 819 | + $data['altitude'] = $line[7]; |
|
| 820 | + } |
|
| 821 | + // altitude |
|
| 611 | 822 | $data['speed'] = $line[8]; // speed |
| 612 | - if (isset($line[45])) $data['heading'] = $line[45]; // heading |
|
| 613 | - elseif (isset($line[38])) $data['heading'] = $line[38]; // heading |
|
| 823 | + if (isset($line[45])) { |
|
| 824 | + $data['heading'] = $line[45]; |
|
| 825 | + } |
|
| 826 | + // heading |
|
| 827 | + elseif (isset($line[38])) { |
|
| 828 | + $data['heading'] = $line[38]; |
|
| 829 | + } |
|
| 830 | + // heading |
|
| 614 | 831 | $data['latitude'] = $line[5]; // lat |
| 615 | 832 | $data['longitude'] = $line[6]; // long |
| 616 | 833 | $data['verticalrate'] = ''; // vertical rate |
@@ -626,7 +843,9 @@ discard block |
||
| 626 | 843 | $data['frequency'] = $line[4]; |
| 627 | 844 | $data['type'] = $line[18]; |
| 628 | 845 | $data['range'] = $line[19]; |
| 629 | - if (isset($line[35])) $data['info'] = $line[35]; |
|
| 846 | + if (isset($line[35])) { |
|
| 847 | + $data['info'] = $line[35]; |
|
| 848 | + } |
|
| 630 | 849 | $data['id_source'] = $id_source; |
| 631 | 850 | //$data['arrival_airport_time'] = ; |
| 632 | 851 | if ($line[9] != '') { |
@@ -640,25 +859,44 @@ discard block |
||
| 640 | 859 | elseif ($value == 'vatsimtxt') $data['format_source'] = 'vatsimtxt'; |
| 641 | 860 | */ |
| 642 | 861 | $data['format_source'] = $value['format']; |
| 643 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 644 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 645 | - if ($line[3] == 'PILOT') $SI->add($data); |
|
| 646 | - elseif ($line[3] == 'ATC') { |
|
| 862 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 863 | + $data['noarchive'] = true; |
|
| 864 | + } |
|
| 865 | + if (isset($value['name']) && $value['name'] != '') { |
|
| 866 | + $data['source_name'] = $value['name']; |
|
| 867 | + } |
|
| 868 | + if ($line[3] == 'PILOT') { |
|
| 869 | + $SI->add($data); |
|
| 870 | + } elseif ($line[3] == 'ATC') { |
|
| 647 | 871 | //print_r($data); |
| 648 | 872 | $data['info'] = str_replace('^§','<br />',$data['info']); |
| 649 | 873 | $data['info'] = str_replace('&sect;','',$data['info']); |
| 650 | 874 | $typec = substr($data['ident'],-3); |
| 651 | - if ($typec == 'APP') $data['type'] = 'Approach'; |
|
| 652 | - elseif ($typec == 'TWR') $data['type'] = 'Tower'; |
|
| 653 | - elseif ($typec == 'OBS') $data['type'] = 'Observer'; |
|
| 654 | - elseif ($typec == 'GND') $data['type'] = 'Ground'; |
|
| 655 | - elseif ($typec == 'DEL') $data['type'] = 'Delivery'; |
|
| 656 | - elseif ($typec == 'DEP') $data['type'] = 'Departure'; |
|
| 657 | - elseif ($typec == 'FSS') $data['type'] = 'Flight Service Station'; |
|
| 658 | - elseif ($typec == 'CTR') $data['type'] = 'Control Radar or Centre'; |
|
| 659 | - elseif ($data['type'] == '') $data['type'] = 'Observer'; |
|
| 660 | - if (!isset($data['source_name'])) $data['source_name'] = ''; |
|
| 661 | - if (isset($ATC)) echo $ATC->add($data['ident'],$data['frequency'],$data['latitude'],$data['longitude'],$data['range'],$data['info'],$data['datetime'],$data['type'],$data['pilot_id'],$data['pilot_name'],$data['format_source'],$data['source_name']); |
|
| 875 | + if ($typec == 'APP') { |
|
| 876 | + $data['type'] = 'Approach'; |
|
| 877 | + } elseif ($typec == 'TWR') { |
|
| 878 | + $data['type'] = 'Tower'; |
|
| 879 | + } elseif ($typec == 'OBS') { |
|
| 880 | + $data['type'] = 'Observer'; |
|
| 881 | + } elseif ($typec == 'GND') { |
|
| 882 | + $data['type'] = 'Ground'; |
|
| 883 | + } elseif ($typec == 'DEL') { |
|
| 884 | + $data['type'] = 'Delivery'; |
|
| 885 | + } elseif ($typec == 'DEP') { |
|
| 886 | + $data['type'] = 'Departure'; |
|
| 887 | + } elseif ($typec == 'FSS') { |
|
| 888 | + $data['type'] = 'Flight Service Station'; |
|
| 889 | + } elseif ($typec == 'CTR') { |
|
| 890 | + $data['type'] = 'Control Radar or Centre'; |
|
| 891 | + } elseif ($data['type'] == '') { |
|
| 892 | + $data['type'] = 'Observer'; |
|
| 893 | + } |
|
| 894 | + if (!isset($data['source_name'])) { |
|
| 895 | + $data['source_name'] = ''; |
|
| 896 | + } |
|
| 897 | + if (isset($ATC)) { |
|
| 898 | + echo $ATC->add($data['ident'],$data['frequency'],$data['latitude'],$data['longitude'],$data['range'],$data['info'],$data['datetime'],$data['type'],$data['pilot_id'],$data['pilot_name'],$data['format_source'],$data['source_name']); |
|
| 899 | + } |
|
| 662 | 900 | } |
| 663 | 901 | unset($data); |
| 664 | 902 | } |
@@ -677,27 +915,58 @@ discard block |
||
| 677 | 915 | foreach ($all_data['acList'] as $line) { |
| 678 | 916 | $data = array(); |
| 679 | 917 | $data['hex'] = $line['Icao']; // hex |
| 680 | - if (isset($line['Call'])) $data['ident'] = $line['Call']; // ident |
|
| 681 | - if (isset($line['Alt'])) $data['altitude'] = $line['Alt']; // altitude |
|
| 682 | - if (isset($line['Spd'])) $data['speed'] = $line['Spd']; // speed |
|
| 683 | - if (isset($line['Trak'])) $data['heading'] = $line['Trak']; // heading |
|
| 684 | - if (isset($line['Lat'])) $data['latitude'] = $line['Lat']; // lat |
|
| 685 | - if (isset($line['Long'])) $data['longitude'] = $line['Long']; // long |
|
| 918 | + if (isset($line['Call'])) { |
|
| 919 | + $data['ident'] = $line['Call']; |
|
| 920 | + } |
|
| 921 | + // ident |
|
| 922 | + if (isset($line['Alt'])) { |
|
| 923 | + $data['altitude'] = $line['Alt']; |
|
| 924 | + } |
|
| 925 | + // altitude |
|
| 926 | + if (isset($line['Spd'])) { |
|
| 927 | + $data['speed'] = $line['Spd']; |
|
| 928 | + } |
|
| 929 | + // speed |
|
| 930 | + if (isset($line['Trak'])) { |
|
| 931 | + $data['heading'] = $line['Trak']; |
|
| 932 | + } |
|
| 933 | + // heading |
|
| 934 | + if (isset($line['Lat'])) { |
|
| 935 | + $data['latitude'] = $line['Lat']; |
|
| 936 | + } |
|
| 937 | + // lat |
|
| 938 | + if (isset($line['Long'])) { |
|
| 939 | + $data['longitude'] = $line['Long']; |
|
| 940 | + } |
|
| 941 | + // long |
|
| 686 | 942 | //$data['verticalrate'] = $line['']; // verticale rate |
| 687 | - if (isset($line['Sqk'])) $data['squawk'] = $line['Sqk']; // squawk |
|
| 943 | + if (isset($line['Sqk'])) { |
|
| 944 | + $data['squawk'] = $line['Sqk']; |
|
| 945 | + } |
|
| 946 | + // squawk |
|
| 688 | 947 | $data['emergency'] = ''; // emergency |
| 689 | - if (isset($line['Reg'])) $data['registration'] = $line['Reg']; |
|
| 948 | + if (isset($line['Reg'])) { |
|
| 949 | + $data['registration'] = $line['Reg']; |
|
| 950 | + } |
|
| 690 | 951 | /* |
| 691 | 952 | if (isset($line['PosTime'])) $data['datetime'] = date('Y-m-d H:i:s',$line['PosTime']/1000); |
| 692 | 953 | else $data['datetime'] = date('Y-m-d H:i:s'); |
| 693 | 954 | */ |
| 694 | 955 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 695 | - if (isset($line['Type'])) $data['aircraft_icao'] = $line['Type']; |
|
| 956 | + if (isset($line['Type'])) { |
|
| 957 | + $data['aircraft_icao'] = $line['Type']; |
|
| 958 | + } |
|
| 696 | 959 | $data['format_source'] = 'aircraftlistjson'; |
| 697 | 960 | $data['id_source'] = $id_source; |
| 698 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 699 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 700 | - if (isset($data['latitude'])) $SI->add($data); |
|
| 961 | + if (isset($value['name']) && $value['name'] != '') { |
|
| 962 | + $data['source_name'] = $value['name']; |
|
| 963 | + } |
|
| 964 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 965 | + $data['noarchive'] = true; |
|
| 966 | + } |
|
| 967 | + if (isset($data['latitude'])) { |
|
| 968 | + $SI->add($data); |
|
| 969 | + } |
|
| 701 | 970 | unset($data); |
| 702 | 971 | } |
| 703 | 972 | } elseif (is_array($all_data)) { |
@@ -717,8 +986,12 @@ discard block |
||
| 717 | 986 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 718 | 987 | $data['format_source'] = 'aircraftlistjson'; |
| 719 | 988 | $data['id_source'] = $id_source; |
| 720 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 721 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 989 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 990 | + $data['noarchive'] = true; |
|
| 991 | + } |
|
| 992 | + if (isset($value['name']) && $value['name'] != '') { |
|
| 993 | + $data['source_name'] = $value['name']; |
|
| 994 | + } |
|
| 722 | 995 | $SI->add($data); |
| 723 | 996 | unset($data); |
| 724 | 997 | } |
@@ -754,8 +1027,12 @@ discard block |
||
| 754 | 1027 | $data['datetime'] = date('Y-m-d H:i:s',$line[9]); |
| 755 | 1028 | $data['format_source'] = 'planeupdatefaa'; |
| 756 | 1029 | $data['id_source'] = $id_source; |
| 757 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 758 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 1030 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 1031 | + $data['noarchive'] = true; |
|
| 1032 | + } |
|
| 1033 | + if (isset($value['name']) && $value['name'] != '') { |
|
| 1034 | + $data['source_name'] = $value['name']; |
|
| 1035 | + } |
|
| 759 | 1036 | $SI->add($data); |
| 760 | 1037 | unset($data); |
| 761 | 1038 | } |
@@ -784,7 +1061,9 @@ discard block |
||
| 784 | 1061 | $data['datetime'] = date('Y-m-d H:i:s',$line[3]); |
| 785 | 1062 | $data['format_source'] = 'opensky'; |
| 786 | 1063 | $data['id_source'] = $id_source; |
| 787 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1064 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 1065 | + $data['noarchive'] = true; |
|
| 1066 | + } |
|
| 788 | 1067 | $SI->add($data); |
| 789 | 1068 | unset($data); |
| 790 | 1069 | } |
@@ -796,7 +1075,9 @@ discard block |
||
| 796 | 1075 | //$buffer = $Common->getData($hosts[$id]); |
| 797 | 1076 | $buffer = $Common->getData($value['host']); |
| 798 | 1077 | $all_data = json_decode($buffer,true); |
| 799 | - if (!empty($all_data)) $reset = 0; |
|
| 1078 | + if (!empty($all_data)) { |
|
| 1079 | + $reset = 0; |
|
| 1080 | + } |
|
| 800 | 1081 | foreach ($all_data as $key => $line) { |
| 801 | 1082 | if ($key != 'full_count' && $key != 'version' && $key != 'stats') { |
| 802 | 1083 | $data = array(); |
@@ -817,8 +1098,12 @@ discard block |
||
| 817 | 1098 | $data['datetime'] = date('Y-m-d H:i:s'); //$line[10] |
| 818 | 1099 | $data['format_source'] = 'fr24json'; |
| 819 | 1100 | $data['id_source'] = $id_source; |
| 820 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 821 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 1101 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 1102 | + $data['noarchive'] = true; |
|
| 1103 | + } |
|
| 1104 | + if (isset($value['name']) && $value['name'] != '') { |
|
| 1105 | + $data['source_name'] = $value['name']; |
|
| 1106 | + } |
|
| 822 | 1107 | $SI->add($data); |
| 823 | 1108 | unset($data); |
| 824 | 1109 | } |
@@ -842,24 +1127,42 @@ discard block |
||
| 842 | 1127 | if (isset($line['inf'])) { |
| 843 | 1128 | $data = array(); |
| 844 | 1129 | $data['hex'] = $line['inf']['ia']; |
| 845 | - if (isset($line['inf']['cs'])) $data['ident'] = $line['inf']['cs']; //$line[13] |
|
| 1130 | + if (isset($line['inf']['cs'])) { |
|
| 1131 | + $data['ident'] = $line['inf']['cs']; |
|
| 1132 | + } |
|
| 1133 | + //$line[13] |
|
| 846 | 1134 | $data['altitude'] = round($line['inf']['al']*3.28084); // altitude |
| 847 | - if (isset($line['inf']['gs'])) $data['speed'] = round($line['inf']['gs']*0.539957); // speed |
|
| 848 | - if (isset($line['inf']['tr'])) $data['heading'] = $line['inf']['tr']; // heading |
|
| 1135 | + if (isset($line['inf']['gs'])) { |
|
| 1136 | + $data['speed'] = round($line['inf']['gs']*0.539957); |
|
| 1137 | + } |
|
| 1138 | + // speed |
|
| 1139 | + if (isset($line['inf']['tr'])) { |
|
| 1140 | + $data['heading'] = $line['inf']['tr']; |
|
| 1141 | + } |
|
| 1142 | + // heading |
|
| 849 | 1143 | $data['latitude'] = $line['pt'][0]; // lat |
| 850 | 1144 | $data['longitude'] = $line['pt'][1]; // long |
| 851 | 1145 | //if (isset($line['inf']['vs'])) $data['verticalrate'] = $line['inf']['vs']; // verticale rate |
| 852 | - if (isset($line['inf']['sq'])) $data['squawk'] = $line['inf']['sq']; // squawk |
|
| 1146 | + if (isset($line['inf']['sq'])) { |
|
| 1147 | + $data['squawk'] = $line['inf']['sq']; |
|
| 1148 | + } |
|
| 1149 | + // squawk |
|
| 853 | 1150 | //$data['aircraft_icao'] = $line[8]; |
| 854 | - if (isset($line['inf']['rc'])) $data['registration'] = $line['inf']['rc']; |
|
| 1151 | + if (isset($line['inf']['rc'])) { |
|
| 1152 | + $data['registration'] = $line['inf']['rc']; |
|
| 1153 | + } |
|
| 855 | 1154 | //$data['departure_airport_iata'] = $line[11]; |
| 856 | 1155 | //$data['arrival_airport_iata'] = $line[12]; |
| 857 | 1156 | //$data['emergency'] = ''; // emergency |
| 858 | 1157 | $data['datetime'] = date('Y-m-d H:i:s',$line['inf']['dt']); //$line[10] |
| 859 | 1158 | $data['format_source'] = 'radarvirtueljson'; |
| 860 | 1159 | $data['id_source'] = $id_source; |
| 861 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 862 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 1160 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 1161 | + $data['noarchive'] = true; |
|
| 1162 | + } |
|
| 1163 | + if (isset($value['name']) && $value['name'] != '') { |
|
| 1164 | + $data['source_name'] = $value['name']; |
|
| 1165 | + } |
|
| 863 | 1166 | $SI->add($data); |
| 864 | 1167 | unset($data); |
| 865 | 1168 | } |
@@ -880,30 +1183,65 @@ discard block |
||
| 880 | 1183 | $data['id'] = $line['id']; |
| 881 | 1184 | $data['hex'] = substr(str_pad(dechex($line['id']),6,'000000',STR_PAD_LEFT),0,6); |
| 882 | 1185 | $data['ident'] = $line['callsign']; // ident |
| 883 | - if (isset($line['pilotid'])) $data['pilot_id'] = $line['pilotid']; // pilot id |
|
| 884 | - if (isset($line['name'])) $data['pilot_name'] = $line['name']; // pilot name |
|
| 885 | - if (isset($line['alt'])) $data['altitude'] = $line['alt']; // altitude |
|
| 886 | - if (isset($line['gs'])) $data['speed'] = $line['gs']; // speed |
|
| 887 | - if (isset($line['heading'])) $data['heading'] = $line['heading']; // heading |
|
| 888 | - if (isset($line['route'])) $data['waypoints'] = $line['route']; // route |
|
| 1186 | + if (isset($line['pilotid'])) { |
|
| 1187 | + $data['pilot_id'] = $line['pilotid']; |
|
| 1188 | + } |
|
| 1189 | + // pilot id |
|
| 1190 | + if (isset($line['name'])) { |
|
| 1191 | + $data['pilot_name'] = $line['name']; |
|
| 1192 | + } |
|
| 1193 | + // pilot name |
|
| 1194 | + if (isset($line['alt'])) { |
|
| 1195 | + $data['altitude'] = $line['alt']; |
|
| 1196 | + } |
|
| 1197 | + // altitude |
|
| 1198 | + if (isset($line['gs'])) { |
|
| 1199 | + $data['speed'] = $line['gs']; |
|
| 1200 | + } |
|
| 1201 | + // speed |
|
| 1202 | + if (isset($line['heading'])) { |
|
| 1203 | + $data['heading'] = $line['heading']; |
|
| 1204 | + } |
|
| 1205 | + // heading |
|
| 1206 | + if (isset($line['route'])) { |
|
| 1207 | + $data['waypoints'] = $line['route']; |
|
| 1208 | + } |
|
| 1209 | + // route |
|
| 889 | 1210 | $data['latitude'] = $line['lat']; // lat |
| 890 | 1211 | $data['longitude'] = $line['lon']; // long |
| 891 | 1212 | //$data['verticalrate'] = $line['vrt']; // verticale rate |
| 892 | 1213 | //$data['squawk'] = $line['squawk']; // squawk |
| 893 | 1214 | //$data['emergency'] = ''; // emergency |
| 894 | - if (isset($line['depicao'])) $data['departure_airport_icao'] = $line['depicao']; |
|
| 895 | - if (isset($line['deptime'])) $data['departure_airport_time'] = $line['deptime']; |
|
| 896 | - if (isset($line['arricao'])) $data['arrival_airport_icao'] = $line['arricao']; |
|
| 1215 | + if (isset($line['depicao'])) { |
|
| 1216 | + $data['departure_airport_icao'] = $line['depicao']; |
|
| 1217 | + } |
|
| 1218 | + if (isset($line['deptime'])) { |
|
| 1219 | + $data['departure_airport_time'] = $line['deptime']; |
|
| 1220 | + } |
|
| 1221 | + if (isset($line['arricao'])) { |
|
| 1222 | + $data['arrival_airport_icao'] = $line['arricao']; |
|
| 1223 | + } |
|
| 897 | 1224 | //$data['arrival_airport_time'] = $line['arrtime']; |
| 898 | - if (isset($line['aircraft'])) $data['aircraft_icao'] = $line['aircraft']; |
|
| 899 | - if (isset($line['transponder'])) $data['squawk'] = $line['transponder']; |
|
| 900 | - if (isset($line['atis'])) $data['info'] = $line['atis']; |
|
| 901 | - else $data['info'] = ''; |
|
| 1225 | + if (isset($line['aircraft'])) { |
|
| 1226 | + $data['aircraft_icao'] = $line['aircraft']; |
|
| 1227 | + } |
|
| 1228 | + if (isset($line['transponder'])) { |
|
| 1229 | + $data['squawk'] = $line['transponder']; |
|
| 1230 | + } |
|
| 1231 | + if (isset($line['atis'])) { |
|
| 1232 | + $data['info'] = $line['atis']; |
|
| 1233 | + } else { |
|
| 1234 | + $data['info'] = ''; |
|
| 1235 | + } |
|
| 902 | 1236 | $data['format_source'] = 'pireps'; |
| 903 | 1237 | $data['id_source'] = $id_source; |
| 904 | 1238 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 905 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 906 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 1239 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 1240 | + $data['noarchive'] = true; |
|
| 1241 | + } |
|
| 1242 | + if (isset($value['name']) && $value['name'] != '') { |
|
| 1243 | + $data['source_name'] = $value['name']; |
|
| 1244 | + } |
|
| 907 | 1245 | if ($line['icon'] == 'plane') { |
| 908 | 1246 | $SI->add($data); |
| 909 | 1247 | // print_r($data); |
@@ -912,16 +1250,28 @@ discard block |
||
| 912 | 1250 | $data['info'] = str_replace('&sect;','',$data['info']); |
| 913 | 1251 | $typec = substr($data['ident'],-3); |
| 914 | 1252 | $data['type'] = ''; |
| 915 | - if ($typec == 'APP') $data['type'] = 'Approach'; |
|
| 916 | - elseif ($typec == 'TWR') $data['type'] = 'Tower'; |
|
| 917 | - elseif ($typec == 'OBS') $data['type'] = 'Observer'; |
|
| 918 | - elseif ($typec == 'GND') $data['type'] = 'Ground'; |
|
| 919 | - elseif ($typec == 'DEL') $data['type'] = 'Delivery'; |
|
| 920 | - elseif ($typec == 'DEP') $data['type'] = 'Departure'; |
|
| 921 | - elseif ($typec == 'FSS') $data['type'] = 'Flight Service Station'; |
|
| 922 | - elseif ($typec == 'CTR') $data['type'] = 'Control Radar or Centre'; |
|
| 923 | - else $data['type'] = 'Observer'; |
|
| 924 | - if (isset($ATC)) echo $ATC->add($data['ident'],'',$data['latitude'],$data['longitude'],'0',$data['info'],$data['datetime'],$data['type'],$data['pilot_id'],$data['pilot_name'],$data['format_source']); |
|
| 1253 | + if ($typec == 'APP') { |
|
| 1254 | + $data['type'] = 'Approach'; |
|
| 1255 | + } elseif ($typec == 'TWR') { |
|
| 1256 | + $data['type'] = 'Tower'; |
|
| 1257 | + } elseif ($typec == 'OBS') { |
|
| 1258 | + $data['type'] = 'Observer'; |
|
| 1259 | + } elseif ($typec == 'GND') { |
|
| 1260 | + $data['type'] = 'Ground'; |
|
| 1261 | + } elseif ($typec == 'DEL') { |
|
| 1262 | + $data['type'] = 'Delivery'; |
|
| 1263 | + } elseif ($typec == 'DEP') { |
|
| 1264 | + $data['type'] = 'Departure'; |
|
| 1265 | + } elseif ($typec == 'FSS') { |
|
| 1266 | + $data['type'] = 'Flight Service Station'; |
|
| 1267 | + } elseif ($typec == 'CTR') { |
|
| 1268 | + $data['type'] = 'Control Radar or Centre'; |
|
| 1269 | + } else { |
|
| 1270 | + $data['type'] = 'Observer'; |
|
| 1271 | + } |
|
| 1272 | + if (isset($ATC)) { |
|
| 1273 | + echo $ATC->add($data['ident'],'',$data['latitude'],$data['longitude'],'0',$data['info'],$data['datetime'],$data['type'],$data['pilot_id'],$data['pilot_name'],$data['format_source']); |
|
| 1274 | + } |
|
| 925 | 1275 | } |
| 926 | 1276 | unset($data); |
| 927 | 1277 | } |
@@ -931,7 +1281,9 @@ discard block |
||
| 931 | 1281 | //} elseif ($value == 'phpvmacars' && (time() - $last_exec['phpvmacars'] > $globalMinFetch)) { |
| 932 | 1282 | } elseif ($value['format'] == 'phpvmacars' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
| 933 | 1283 | //$buffer = $Common->getData($hosts[$id]); |
| 934 | - if ($globalDebug) echo 'Get Data...'."\n"; |
|
| 1284 | + if ($globalDebug) { |
|
| 1285 | + echo 'Get Data...'."\n"; |
|
| 1286 | + } |
|
| 935 | 1287 | $buffer = $Common->getData($value['host']); |
| 936 | 1288 | $all_data = json_decode($buffer,true); |
| 937 | 1289 | if ($buffer != '' && is_array($all_data)) { |
@@ -939,10 +1291,16 @@ discard block |
||
| 939 | 1291 | foreach ($all_data as $line) { |
| 940 | 1292 | $data = array(); |
| 941 | 1293 | //$data['id'] = $line['id']; // id not usable |
| 942 | - if (isset($line['pilotid'])) $data['id'] = $line['pilotid'].$line['flightnum']; |
|
| 1294 | + if (isset($line['pilotid'])) { |
|
| 1295 | + $data['id'] = $line['pilotid'].$line['flightnum']; |
|
| 1296 | + } |
|
| 943 | 1297 | $data['hex'] = substr(str_pad(bin2hex($line['flightnum']),6,'000000',STR_PAD_LEFT),-6); // hex |
| 944 | - if (isset($line['pilotname'])) $data['pilot_name'] = $line['pilotname']; |
|
| 945 | - if (isset($line['pilotid'])) $data['pilot_id'] = $line['pilotid']; |
|
| 1298 | + if (isset($line['pilotname'])) { |
|
| 1299 | + $data['pilot_name'] = $line['pilotname']; |
|
| 1300 | + } |
|
| 1301 | + if (isset($line['pilotid'])) { |
|
| 1302 | + $data['pilot_id'] = $line['pilotid']; |
|
| 1303 | + } |
|
| 946 | 1304 | $data['ident'] = $line['flightnum']; // ident |
| 947 | 1305 | $data['altitude'] = $line['alt']; // altitude |
| 948 | 1306 | $data['speed'] = $line['gs']; // speed |
@@ -960,28 +1318,44 @@ discard block |
||
| 960 | 1318 | $data['arrival_airport_icao'] = $line['arricao']; |
| 961 | 1319 | $data['arrival_airport_time'] = $line['arrtime']; |
| 962 | 1320 | $data['registration'] = $line['aircraft']; |
| 963 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 964 | - if (isset($line['route'])) $data['waypoints'] = $line['route']; // route |
|
| 1321 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 1322 | + $data['noarchive'] = true; |
|
| 1323 | + } |
|
| 1324 | + if (isset($line['route'])) { |
|
| 1325 | + $data['waypoints'] = $line['route']; |
|
| 1326 | + } |
|
| 1327 | + // route |
|
| 965 | 1328 | if (isset($line['aircraftname'])) { |
| 966 | 1329 | $line['aircraftname'] = strtoupper($line['aircraftname']); |
| 967 | 1330 | $line['aircraftname'] = str_replace('BOEING ','B',$line['aircraftname']); |
| 968 | 1331 | $aircraft_data = explode('-',$line['aircraftname']); |
| 969 | - if (isset($aircraft_data[1]) && strlen($aircraft_data[0]) >= 3 && strlen($aircraft_data[0]) <= 4) $data['aircraft_icao'] = $aircraft_data[0]; |
|
| 970 | - elseif (isset($aircraft_data[1]) && strlen($aircraft_data[1]) >= 3 && strlen($aircraft_data[1]) <= 4) $data['aircraft_icao'] = $aircraft_data[1]; |
|
| 971 | - else { |
|
| 1332 | + if (isset($aircraft_data[1]) && strlen($aircraft_data[0]) >= 3 && strlen($aircraft_data[0]) <= 4) { |
|
| 1333 | + $data['aircraft_icao'] = $aircraft_data[0]; |
|
| 1334 | + } elseif (isset($aircraft_data[1]) && strlen($aircraft_data[1]) >= 3 && strlen($aircraft_data[1]) <= 4) { |
|
| 1335 | + $data['aircraft_icao'] = $aircraft_data[1]; |
|
| 1336 | + } else { |
|
| 972 | 1337 | $aircraft_data = explode(' ',$line['aircraftname']); |
| 973 | - if (isset($aircraft_data[1])) $data['aircraft_icao'] = str_replace('-','',$aircraft_data[1]); |
|
| 974 | - else $data['aircraft_icao'] = str_replace('-','',$line['aircraftname']); |
|
| 1338 | + if (isset($aircraft_data[1])) { |
|
| 1339 | + $data['aircraft_icao'] = str_replace('-','',$aircraft_data[1]); |
|
| 1340 | + } else { |
|
| 1341 | + $data['aircraft_icao'] = str_replace('-','',$line['aircraftname']); |
|
| 1342 | + } |
|
| 975 | 1343 | } |
| 976 | 1344 | } |
| 977 | - if (isset($line['route'])) $data['waypoints'] = $line['route']; |
|
| 1345 | + if (isset($line['route'])) { |
|
| 1346 | + $data['waypoints'] = $line['route']; |
|
| 1347 | + } |
|
| 978 | 1348 | $data['id_source'] = $id_source; |
| 979 | 1349 | $data['format_source'] = 'phpvmacars'; |
| 980 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 1350 | + if (isset($value['name']) && $value['name'] != '') { |
|
| 1351 | + $data['source_name'] = $value['name']; |
|
| 1352 | + } |
|
| 981 | 1353 | $SI->add($data); |
| 982 | 1354 | unset($data); |
| 983 | 1355 | } |
| 984 | - if ($globalDebug) echo 'No more data...'."\n"; |
|
| 1356 | + if ($globalDebug) { |
|
| 1357 | + echo 'No more data...'."\n"; |
|
| 1358 | + } |
|
| 985 | 1359 | unset($buffer); |
| 986 | 1360 | unset($all_data); |
| 987 | 1361 | } |
@@ -989,7 +1363,9 @@ discard block |
||
| 989 | 1363 | $last_exec[$id]['last'] = time(); |
| 990 | 1364 | } elseif ($value['format'] == 'vam' && (time() - $last_exec[$id]['last'] > $globalMinFetch)) { |
| 991 | 1365 | //$buffer = $Common->getData($hosts[$id]); |
| 992 | - if ($globalDebug) echo 'Get Data...'."\n"; |
|
| 1366 | + if ($globalDebug) { |
|
| 1367 | + echo 'Get Data...'."\n"; |
|
| 1368 | + } |
|
| 993 | 1369 | $buffer = $Common->getData($value['host']); |
| 994 | 1370 | $all_data = json_decode($buffer,true); |
| 995 | 1371 | if ($buffer != '' && is_array($all_data)) { |
@@ -1018,16 +1394,25 @@ discard block |
||
| 1018 | 1394 | $data['arrival_airport_icao'] = $line['arrival']; |
| 1019 | 1395 | //$data['arrival_airport_time'] = $line['arrival_time']; |
| 1020 | 1396 | //$data['registration'] = $line['aircraft']; |
| 1021 | - if (isset($line['route'])) $data['waypoints'] = $line['route']; // route |
|
| 1397 | + if (isset($line['route'])) { |
|
| 1398 | + $data['waypoints'] = $line['route']; |
|
| 1399 | + } |
|
| 1400 | + // route |
|
| 1022 | 1401 | $data['aircraft_icao'] = $line['plane_type']; |
| 1023 | 1402 | $data['id_source'] = $id_source; |
| 1024 | 1403 | $data['format_source'] = 'vam'; |
| 1025 | - if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1026 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 1404 | + if (isset($value['noarchive']) && $value['noarchive'] === TRUE) { |
|
| 1405 | + $data['noarchive'] = true; |
|
| 1406 | + } |
|
| 1407 | + if (isset($value['name']) && $value['name'] != '') { |
|
| 1408 | + $data['source_name'] = $value['name']; |
|
| 1409 | + } |
|
| 1027 | 1410 | $SI->add($data); |
| 1028 | 1411 | unset($data); |
| 1029 | 1412 | } |
| 1030 | - if ($globalDebug) echo 'No more data...'."\n"; |
|
| 1413 | + if ($globalDebug) { |
|
| 1414 | + echo 'No more data...'."\n"; |
|
| 1415 | + } |
|
| 1031 | 1416 | unset($buffer); |
| 1032 | 1417 | unset($all_data); |
| 1033 | 1418 | } |
@@ -1035,7 +1420,9 @@ discard block |
||
| 1035 | 1420 | $last_exec[$id]['last'] = time(); |
| 1036 | 1421 | //} elseif ($value == 'sbs' || $value == 'tsv' || $value == 'raw' || $value == 'aprs' || $value == 'beast') { |
| 1037 | 1422 | } elseif ($value['format'] == 'sbs' || $value['format'] == 'tsv' || $value['format'] == 'raw' || $value['format'] == 'aprs' || $value['format'] == 'beast' || $value['format'] == 'flightgearmp' || $value['format'] == 'flightgearsp' || $value['format'] == 'acars' || $value['format'] == 'acarssbs3' || $value['format'] == 'ais' || $value['format'] == 'vrstcp') { |
| 1038 | - if (function_exists('pcntl_fork')) pcntl_signal_dispatch(); |
|
| 1423 | + if (function_exists('pcntl_fork')) { |
|
| 1424 | + pcntl_signal_dispatch(); |
|
| 1425 | + } |
|
| 1039 | 1426 | //$last_exec[$id]['last'] = time(); |
| 1040 | 1427 | |
| 1041 | 1428 | //$read = array( $sockets[$id] ); |
@@ -1043,7 +1430,9 @@ discard block |
||
| 1043 | 1430 | $write = NULL; |
| 1044 | 1431 | $e = NULL; |
| 1045 | 1432 | $n = socket_select($read, $write, $e, $timeout); |
| 1046 | - if ($e != NULL) var_dump($e); |
|
| 1433 | + if ($e != NULL) { |
|
| 1434 | + var_dump($e); |
|
| 1435 | + } |
|
| 1047 | 1436 | if ($n > 0) { |
| 1048 | 1437 | $reset = 0; |
| 1049 | 1438 | foreach ($read as $nb => $r) { |
@@ -1064,12 +1453,16 @@ discard block |
||
| 1064 | 1453 | //$SI::del(); |
| 1065 | 1454 | if ($format == 'vrstcp') { |
| 1066 | 1455 | $buffer = explode('},{',$buffer); |
| 1067 | - } else $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'',$buffer)); |
|
| 1456 | + } else { |
|
| 1457 | + $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'',$buffer)); |
|
| 1458 | + } |
|
| 1068 | 1459 | // SBS format is CSV format |
| 1069 | 1460 | if ($buffer !== FALSE && $buffer != '') { |
| 1070 | 1461 | $tt[$format] = 0; |
| 1071 | 1462 | if ($format == 'acarssbs3') { |
| 1072 | - if ($globalDebug) echo 'ACARS : '.$buffer."\n"; |
|
| 1463 | + if ($globalDebug) { |
|
| 1464 | + echo 'ACARS : '.$buffer."\n"; |
|
| 1465 | + } |
|
| 1073 | 1466 | $ACARS->add(trim($buffer)); |
| 1074 | 1467 | $ACARS->deleteLiveAcarsData(); |
| 1075 | 1468 | } elseif ($format == 'raw') { |
@@ -1078,27 +1471,61 @@ discard block |
||
| 1078 | 1471 | if (is_array($data)) { |
| 1079 | 1472 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 1080 | 1473 | $data['format_source'] = 'raw'; |
| 1081 | - if (isset($globalSources[$nb]['name']) && $globalSources[$nb]['name'] != '') $data['source_name'] = $globalSources[$nb]['name']; |
|
| 1082 | - if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1083 | - if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1084 | - if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
|
| 1474 | + if (isset($globalSources[$nb]['name']) && $globalSources[$nb]['name'] != '') { |
|
| 1475 | + $data['source_name'] = $globalSources[$nb]['name']; |
|
| 1476 | + } |
|
| 1477 | + if (isset($globalSources[$nb]['sourcestats'])) { |
|
| 1478 | + $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1479 | + } |
|
| 1480 | + if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) { |
|
| 1481 | + $data['noarchive'] = true; |
|
| 1482 | + } |
|
| 1483 | + if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) { |
|
| 1484 | + $SI->add($data); |
|
| 1485 | + } |
|
| 1085 | 1486 | } |
| 1086 | 1487 | } elseif ($format == 'ais') { |
| 1087 | 1488 | $ais_data = $AIS->parse_line(trim($buffer)); |
| 1088 | 1489 | $data = array(); |
| 1089 | - if (isset($ais_data['ident'])) $data['ident'] = $ais_data['ident']; |
|
| 1090 | - if (isset($ais_data['mmsi'])) $data['mmsi'] = $ais_data['mmsi']; |
|
| 1091 | - if (isset($ais_data['speed'])) $data['speed'] = $ais_data['speed']; |
|
| 1092 | - if (isset($ais_data['heading'])) $data['heading'] = $ais_data['heading']; |
|
| 1093 | - if (isset($ais_data['latitude'])) $data['latitude'] = $ais_data['latitude']; |
|
| 1094 | - if (isset($ais_data['longitude'])) $data['longitude'] = $ais_data['longitude']; |
|
| 1095 | - if (isset($ais_data['status'])) $data['status'] = $ais_data['status']; |
|
| 1096 | - if (isset($ais_data['type'])) $data['type'] = $ais_data['type']; |
|
| 1097 | - if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
|
| 1098 | - if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
|
| 1099 | - if (isset($ais_data['destination'])) $data['arrival_code'] = $ais_data['destination']; |
|
| 1100 | - if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s',$ais_data['eta_ts']); |
|
| 1101 | - if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1490 | + if (isset($ais_data['ident'])) { |
|
| 1491 | + $data['ident'] = $ais_data['ident']; |
|
| 1492 | + } |
|
| 1493 | + if (isset($ais_data['mmsi'])) { |
|
| 1494 | + $data['mmsi'] = $ais_data['mmsi']; |
|
| 1495 | + } |
|
| 1496 | + if (isset($ais_data['speed'])) { |
|
| 1497 | + $data['speed'] = $ais_data['speed']; |
|
| 1498 | + } |
|
| 1499 | + if (isset($ais_data['heading'])) { |
|
| 1500 | + $data['heading'] = $ais_data['heading']; |
|
| 1501 | + } |
|
| 1502 | + if (isset($ais_data['latitude'])) { |
|
| 1503 | + $data['latitude'] = $ais_data['latitude']; |
|
| 1504 | + } |
|
| 1505 | + if (isset($ais_data['longitude'])) { |
|
| 1506 | + $data['longitude'] = $ais_data['longitude']; |
|
| 1507 | + } |
|
| 1508 | + if (isset($ais_data['status'])) { |
|
| 1509 | + $data['status'] = $ais_data['status']; |
|
| 1510 | + } |
|
| 1511 | + if (isset($ais_data['type'])) { |
|
| 1512 | + $data['type'] = $ais_data['type']; |
|
| 1513 | + } |
|
| 1514 | + if (isset($ais_data['imo'])) { |
|
| 1515 | + $data['imo'] = $ais_data['imo']; |
|
| 1516 | + } |
|
| 1517 | + if (isset($ais_data['callsign'])) { |
|
| 1518 | + $data['callsign'] = $ais_data['callsign']; |
|
| 1519 | + } |
|
| 1520 | + if (isset($ais_data['destination'])) { |
|
| 1521 | + $data['arrival_code'] = $ais_data['destination']; |
|
| 1522 | + } |
|
| 1523 | + if (isset($ais_data['eta_ts'])) { |
|
| 1524 | + $data['arrival_date'] = date('Y-m-d H:i:s',$ais_data['eta_ts']); |
|
| 1525 | + } |
|
| 1526 | + if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) { |
|
| 1527 | + $data['noarchive'] = true; |
|
| 1528 | + } |
|
| 1102 | 1529 | |
| 1103 | 1530 | if (isset($ais_data['timestamp'])) { |
| 1104 | 1531 | $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
@@ -1107,7 +1534,9 @@ discard block |
||
| 1107 | 1534 | } |
| 1108 | 1535 | $data['format_source'] = 'aisnmea'; |
| 1109 | 1536 | $data['id_source'] = $id_source; |
| 1110 | - if (isset($ais_data['mmsi_type']) && $ais_data['mmsi_type'] == 'Ship') $MI->add($data); |
|
| 1537 | + if (isset($ais_data['mmsi_type']) && $ais_data['mmsi_type'] == 'Ship') { |
|
| 1538 | + $MI->add($data); |
|
| 1539 | + } |
|
| 1111 | 1540 | unset($data); |
| 1112 | 1541 | } elseif ($format == 'flightgearsp') { |
| 1113 | 1542 | //echo $buffer."\n"; |
@@ -1125,12 +1554,18 @@ discard block |
||
| 1125 | 1554 | $data['speed'] = round($line[5]*1.94384); |
| 1126 | 1555 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 1127 | 1556 | $data['format_source'] = 'flightgearsp'; |
| 1128 | - if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1129 | - if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
|
| 1557 | + if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) { |
|
| 1558 | + $data['noarchive'] = true; |
|
| 1559 | + } |
|
| 1560 | + if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) { |
|
| 1561 | + $SI->add($data); |
|
| 1562 | + } |
|
| 1130 | 1563 | $send = @ socket_send( $r , $data_aprs , strlen($data_aprs) , 0 ); |
| 1131 | 1564 | } |
| 1132 | 1565 | } elseif ($format == 'acars') { |
| 1133 | - if ($globalDebug) echo 'ACARS : '.$buffer."\n"; |
|
| 1566 | + if ($globalDebug) { |
|
| 1567 | + echo 'ACARS : '.$buffer."\n"; |
|
| 1568 | + } |
|
| 1134 | 1569 | $ACARS->add(trim($buffer)); |
| 1135 | 1570 | socket_sendto($r, "OK " . $buffer , 100 , 0 , $remote_ip , $remote_port); |
| 1136 | 1571 | $ACARS->deleteLiveAcarsData(); |
@@ -1151,8 +1586,12 @@ discard block |
||
| 1151 | 1586 | $aircraft_type = $line[10]; |
| 1152 | 1587 | $aircraft_type = preg_split(':/:',$aircraft_type); |
| 1153 | 1588 | $data['aircraft_name'] = substr(end($aircraft_type),0,-4); |
| 1154 | - if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1155 | - if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
|
| 1589 | + if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) { |
|
| 1590 | + $data['noarchive'] = true; |
|
| 1591 | + } |
|
| 1592 | + if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) { |
|
| 1593 | + $SI->add($data); |
|
| 1594 | + } |
|
| 1156 | 1595 | } |
| 1157 | 1596 | } |
| 1158 | 1597 | } elseif ($format == 'beast') { |
@@ -1162,28 +1601,62 @@ discard block |
||
| 1162 | 1601 | foreach($buffer as $all_data) { |
| 1163 | 1602 | $line = json_decode('{'.$all_data.'}',true); |
| 1164 | 1603 | $data = array(); |
| 1165 | - if (isset($line['Icao'])) $data['hex'] = $line['Icao']; // hex |
|
| 1166 | - if (isset($line['Call'])) $data['ident'] = $line['Call']; // ident |
|
| 1167 | - if (isset($line['Alt'])) $data['altitude'] = $line['Alt']; // altitude |
|
| 1168 | - if (isset($line['Spd'])) $data['speed'] = $line['Spd']; // speed |
|
| 1169 | - if (isset($line['Trak'])) $data['heading'] = $line['Trak']; // heading |
|
| 1170 | - if (isset($line['Lat'])) $data['latitude'] = $line['Lat']; // lat |
|
| 1171 | - if (isset($line['Long'])) $data['longitude'] = $line['Long']; // long |
|
| 1604 | + if (isset($line['Icao'])) { |
|
| 1605 | + $data['hex'] = $line['Icao']; |
|
| 1606 | + } |
|
| 1607 | + // hex |
|
| 1608 | + if (isset($line['Call'])) { |
|
| 1609 | + $data['ident'] = $line['Call']; |
|
| 1610 | + } |
|
| 1611 | + // ident |
|
| 1612 | + if (isset($line['Alt'])) { |
|
| 1613 | + $data['altitude'] = $line['Alt']; |
|
| 1614 | + } |
|
| 1615 | + // altitude |
|
| 1616 | + if (isset($line['Spd'])) { |
|
| 1617 | + $data['speed'] = $line['Spd']; |
|
| 1618 | + } |
|
| 1619 | + // speed |
|
| 1620 | + if (isset($line['Trak'])) { |
|
| 1621 | + $data['heading'] = $line['Trak']; |
|
| 1622 | + } |
|
| 1623 | + // heading |
|
| 1624 | + if (isset($line['Lat'])) { |
|
| 1625 | + $data['latitude'] = $line['Lat']; |
|
| 1626 | + } |
|
| 1627 | + // lat |
|
| 1628 | + if (isset($line['Long'])) { |
|
| 1629 | + $data['longitude'] = $line['Long']; |
|
| 1630 | + } |
|
| 1631 | + // long |
|
| 1172 | 1632 | //$data['verticalrate'] = $line['']; // verticale rate |
| 1173 | - if (isset($line['Sqk'])) $data['squawk'] = $line['Sqk']; // squawk |
|
| 1633 | + if (isset($line['Sqk'])) { |
|
| 1634 | + $data['squawk'] = $line['Sqk']; |
|
| 1635 | + } |
|
| 1636 | + // squawk |
|
| 1174 | 1637 | $data['emergency'] = ''; // emergency |
| 1175 | - if (isset($line['Reg'])) $data['registration'] = $line['Reg']; |
|
| 1638 | + if (isset($line['Reg'])) { |
|
| 1639 | + $data['registration'] = $line['Reg']; |
|
| 1640 | + } |
|
| 1176 | 1641 | /* |
| 1177 | 1642 | if (isset($line['PosTime'])) $data['datetime'] = date('Y-m-d H:i:s',$line['PosTime']/1000); |
| 1178 | 1643 | else $data['datetime'] = date('Y-m-d H:i:s'); |
| 1179 | 1644 | */ |
| 1180 | 1645 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 1181 | - if (isset($line['Type'])) $data['aircraft_icao'] = $line['Type']; |
|
| 1646 | + if (isset($line['Type'])) { |
|
| 1647 | + $data['aircraft_icao'] = $line['Type']; |
|
| 1648 | + } |
|
| 1182 | 1649 | $data['format_source'] = 'vrstcp'; |
| 1183 | 1650 | $data['id_source'] = $id_source; |
| 1184 | - if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1185 | - if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
|
| 1186 | - if (isset($data['latitude']) && isset($data['hex'])) $SI->add($data); |
|
| 1651 | + if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) { |
|
| 1652 | + $data['noarchive'] = true; |
|
| 1653 | + } |
|
| 1654 | + if (isset($value['name']) && $value['name'] != '') { |
|
| 1655 | + $data['source_name'] = $value['name']; |
|
| 1656 | + } |
|
| 1657 | + if (isset($data['latitude']) && isset($data['hex'])) { |
|
| 1658 | + $SI->add($data); |
|
| 1659 | + } |
|
| 1187 | 1660 | unset($data); |
| 1188 | 1661 | } |
| 1189 | 1662 | } elseif ($format == 'tsv' || substr($buffer,0,4) == 'clock') { |
@@ -1196,22 +1669,46 @@ discard block |
||
| 1196 | 1669 | $data['hex'] = $lined['hexid']; |
| 1197 | 1670 | //$data['datetime'] = date('Y-m-d H:i:s',strtotime($lined['clock']));; |
| 1198 | 1671 | $data['datetime'] = date('Y-m-d H:i:s');; |
| 1199 | - if (isset($lined['ident'])) $data['ident'] = $lined['ident']; |
|
| 1200 | - if (isset($lined['lat'])) $data['latitude'] = $lined['lat']; |
|
| 1201 | - if (isset($lined['lon'])) $data['longitude'] = $lined['lon']; |
|
| 1202 | - if (isset($lined['speed'])) $data['speed'] = $lined['speed']; |
|
| 1203 | - if (isset($lined['squawk'])) $data['squawk'] = $lined['squawk']; |
|
| 1204 | - if (isset($lined['alt'])) $data['altitude'] = $lined['alt']; |
|
| 1205 | - if (isset($lined['heading'])) $data['heading'] = $lined['heading']; |
|
| 1672 | + if (isset($lined['ident'])) { |
|
| 1673 | + $data['ident'] = $lined['ident']; |
|
| 1674 | + } |
|
| 1675 | + if (isset($lined['lat'])) { |
|
| 1676 | + $data['latitude'] = $lined['lat']; |
|
| 1677 | + } |
|
| 1678 | + if (isset($lined['lon'])) { |
|
| 1679 | + $data['longitude'] = $lined['lon']; |
|
| 1680 | + } |
|
| 1681 | + if (isset($lined['speed'])) { |
|
| 1682 | + $data['speed'] = $lined['speed']; |
|
| 1683 | + } |
|
| 1684 | + if (isset($lined['squawk'])) { |
|
| 1685 | + $data['squawk'] = $lined['squawk']; |
|
| 1686 | + } |
|
| 1687 | + if (isset($lined['alt'])) { |
|
| 1688 | + $data['altitude'] = $lined['alt']; |
|
| 1689 | + } |
|
| 1690 | + if (isset($lined['heading'])) { |
|
| 1691 | + $data['heading'] = $lined['heading']; |
|
| 1692 | + } |
|
| 1206 | 1693 | $data['id_source'] = $id_source; |
| 1207 | 1694 | $data['format_source'] = 'tsv'; |
| 1208 | - if (isset($globalSources[$nb]['name']) && $globalSources[$nb]['name'] != '') $data['source_name'] = $globalSources[$nb]['name']; |
|
| 1209 | - if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1210 | - if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1211 | - if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
|
| 1695 | + if (isset($globalSources[$nb]['name']) && $globalSources[$nb]['name'] != '') { |
|
| 1696 | + $data['source_name'] = $globalSources[$nb]['name']; |
|
| 1697 | + } |
|
| 1698 | + if (isset($globalSources[$nb]['sourcestats'])) { |
|
| 1699 | + $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1700 | + } |
|
| 1701 | + if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) { |
|
| 1702 | + $data['noarchive'] = true; |
|
| 1703 | + } |
|
| 1704 | + if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) { |
|
| 1705 | + $SI->add($data); |
|
| 1706 | + } |
|
| 1212 | 1707 | unset($lined); |
| 1213 | 1708 | unset($data); |
| 1214 | - } else $error = true; |
|
| 1709 | + } else { |
|
| 1710 | + $error = true; |
|
| 1711 | + } |
|
| 1215 | 1712 | } elseif ($format == 'aprs' && $use_aprs) { |
| 1216 | 1713 | if ($aprs_connect == 0) { |
| 1217 | 1714 | $send = @ socket_send( $r , $aprs_login , strlen($aprs_login) , 0 ); |
@@ -1236,32 +1733,66 @@ discard block |
||
| 1236 | 1733 | $aprs_last_tx = time(); |
| 1237 | 1734 | $data = array(); |
| 1238 | 1735 | //print_r($line); |
| 1239 | - if (isset($line['address'])) $data['hex'] = $line['address']; |
|
| 1240 | - if (isset($line['mmsi'])) $data['mmsi'] = $line['mmsi']; |
|
| 1241 | - if (isset($line['timestamp'])) $data['datetime'] = date('Y-m-d H:i:s',$line['timestamp']); |
|
| 1242 | - else $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1736 | + if (isset($line['address'])) { |
|
| 1737 | + $data['hex'] = $line['address']; |
|
| 1738 | + } |
|
| 1739 | + if (isset($line['mmsi'])) { |
|
| 1740 | + $data['mmsi'] = $line['mmsi']; |
|
| 1741 | + } |
|
| 1742 | + if (isset($line['timestamp'])) { |
|
| 1743 | + $data['datetime'] = date('Y-m-d H:i:s',$line['timestamp']); |
|
| 1744 | + } else { |
|
| 1745 | + $data['datetime'] = date('Y-m-d H:i:s'); |
|
| 1746 | + } |
|
| 1243 | 1747 | //$data['datetime'] = date('Y-m-d H:i:s'); |
| 1244 | - if (isset($line['ident'])) $data['ident'] = $line['ident']; |
|
| 1748 | + if (isset($line['ident'])) { |
|
| 1749 | + $data['ident'] = $line['ident']; |
|
| 1750 | + } |
|
| 1245 | 1751 | $data['latitude'] = $line['latitude']; |
| 1246 | 1752 | $data['longitude'] = $line['longitude']; |
| 1247 | 1753 | //$data['verticalrate'] = $line[16]; |
| 1248 | - if (isset($line['speed'])) $data['speed'] = $line['speed']; |
|
| 1249 | - else $data['speed'] = 0; |
|
| 1250 | - if (isset($line['altitude'])) $data['altitude'] = $line['altitude']; |
|
| 1251 | - if (isset($line['comment'])) $data['comment'] = $line['comment']; |
|
| 1252 | - if (isset($line['symbol'])) $data['type'] = $line['symbol']; |
|
| 1253 | - if (isset($line['heading'])) $data['heading'] = $line['heading']; |
|
| 1754 | + if (isset($line['speed'])) { |
|
| 1755 | + $data['speed'] = $line['speed']; |
|
| 1756 | + } else { |
|
| 1757 | + $data['speed'] = 0; |
|
| 1758 | + } |
|
| 1759 | + if (isset($line['altitude'])) { |
|
| 1760 | + $data['altitude'] = $line['altitude']; |
|
| 1761 | + } |
|
| 1762 | + if (isset($line['comment'])) { |
|
| 1763 | + $data['comment'] = $line['comment']; |
|
| 1764 | + } |
|
| 1765 | + if (isset($line['symbol'])) { |
|
| 1766 | + $data['type'] = $line['symbol']; |
|
| 1767 | + } |
|
| 1768 | + if (isset($line['heading'])) { |
|
| 1769 | + $data['heading'] = $line['heading']; |
|
| 1770 | + } |
|
| 1254 | 1771 | //else $data['heading'] = 0; |
| 1255 | - if (isset($line['stealth'])) $data['aircraft_type'] = $line['stealth']; |
|
| 1256 | - if (!isset($globalAPRSarchive) || (isset($globalAPRSarchive) && $globalAPRSarchive === FALSE)) $data['noarchive'] = true; |
|
| 1257 | - if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1772 | + if (isset($line['stealth'])) { |
|
| 1773 | + $data['aircraft_type'] = $line['stealth']; |
|
| 1774 | + } |
|
| 1775 | + if (!isset($globalAPRSarchive) || (isset($globalAPRSarchive) && $globalAPRSarchive === FALSE)) { |
|
| 1776 | + $data['noarchive'] = true; |
|
| 1777 | + } |
|
| 1778 | + if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) { |
|
| 1779 | + $data['noarchive'] = true; |
|
| 1780 | + } |
|
| 1258 | 1781 | $data['id_source'] = $id_source; |
| 1259 | - if (isset($line['format_source'])) $data['format_source'] = $line['format_source']; |
|
| 1260 | - else $data['format_source'] = 'aprs'; |
|
| 1782 | + if (isset($line['format_source'])) { |
|
| 1783 | + $data['format_source'] = $line['format_source']; |
|
| 1784 | + } else { |
|
| 1785 | + $data['format_source'] = 'aprs'; |
|
| 1786 | + } |
|
| 1261 | 1787 | $data['source_name'] = $line['source']; |
| 1262 | - if (isset($line['source_type'])) $data['source_type'] = $line['source_type']; |
|
| 1263 | - else $data['source_type'] = 'flarm'; |
|
| 1264 | - if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1788 | + if (isset($line['source_type'])) { |
|
| 1789 | + $data['source_type'] = $line['source_type']; |
|
| 1790 | + } else { |
|
| 1791 | + $data['source_type'] = 'flarm'; |
|
| 1792 | + } |
|
| 1793 | + if (isset($globalSources[$nb]['sourcestats'])) { |
|
| 1794 | + $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1795 | + } |
|
| 1265 | 1796 | $currentdate = date('Y-m-d H:i:s'); |
| 1266 | 1797 | $aprsdate = strtotime($data['datetime']); |
| 1267 | 1798 | // Accept data if time <= system time + 20s |
@@ -1271,19 +1802,22 @@ discard block |
||
| 1271 | 1802 | echo 'add...'."\n"; |
| 1272 | 1803 | $send = $MI->add($data); |
| 1273 | 1804 | } elseif (isset($line['stealth'])) { |
| 1274 | - if ($line['stealth'] != 0) echo '-------- '.$data['ident'].' : APRS stealth ON => not adding'."\n"; |
|
| 1275 | - else echo '--------- '.$data['ident'].' : Date APRS : '.$data['datetime'].' - Current date : '.$currentdate.' => not adding future event'."\n"; |
|
| 1805 | + if ($line['stealth'] != 0) { |
|
| 1806 | + echo '-------- '.$data['ident'].' : APRS stealth ON => not adding'."\n"; |
|
| 1807 | + } else { |
|
| 1808 | + echo '--------- '.$data['ident'].' : Date APRS : '.$data['datetime'].' - Current date : '.$currentdate.' => not adding future event'."\n"; |
|
| 1809 | + } |
|
| 1276 | 1810 | //} elseif (isset($line['symbol']) && isset($line['latitude']) && isset($line['longitude']) && ($line['symbol'] == 'Car' || $line['symbol'] == 'Ambulance' || $line['symbol'] == 'Van' || $line['symbol'] == 'Truck' || $line['symbol'] == 'Truck (18 Wheeler)' || $line['symbol'] == 'Motorcycle' || $line['symbol'] == 'Police' || $line['symbol'] == 'Bike' || $line['symbol'] == 'Jogger' || $line['symbol'] == 'Bus' || $line['symbol'] == 'Jeep' || $line['symbol'] == 'Recreational Vehicle' || $line['symbol'] == 'Yacht (Sail)' || $line['symbol'] == 'Ship (Power Boat)' || $line['symbol'] == 'Firetruck' || $line['symbol'] == 'Balloon' || $line['symbol'] == 'Aircraft (small)' || $line['symbol'] == 'Helicopter')) { |
| 1277 | 1811 | } elseif (isset($line['symbol']) && isset($line['latitude']) && isset($line['longitude']) && isset($line['speed']) && $line['symbol'] != 'Weather Station' && $line['symbol'] != 'House QTH (VHF)' && $line['symbol'] != 'Dot' && $line['symbol'] != 'TCP-IP' && $line['symbol'] != 'xAPRS (UNIX)' && $line['symbol'] != 'Antenna' && $line['symbol'] != 'Cloudy' && $line['symbol'] != 'HF Gateway' && $line['symbol'] != 'Yagi At QTH' && $line['symbol'] != 'Digi' && $line['symbol'] != '8' && $line['symbol'] != 'MacAPRS') { |
| 1278 | 1812 | //echo '!!!!!!!!!!!!!!!! SEND !!!!!!!!!!!!!!!!!!!!'."\n"; |
| 1279 | - if (isset($globalTracker) && $globalTracker) $send = $TI->add($data); |
|
| 1813 | + if (isset($globalTracker) && $globalTracker) { |
|
| 1814 | + $send = $TI->add($data); |
|
| 1815 | + } |
|
| 1280 | 1816 | } |
| 1281 | 1817 | unset($data); |
| 1282 | - } |
|
| 1283 | - elseif (is_array($line) && $globalDebug && isset($line['symbol']) && $line['symbol'] == 'Weather Station') { |
|
| 1818 | + } elseif (is_array($line) && $globalDebug && isset($line['symbol']) && $line['symbol'] == 'Weather Station') { |
|
| 1284 | 1819 | echo '!! Weather Station not yet supported'."\n"; |
| 1285 | - } |
|
| 1286 | - elseif (is_array($line) && $globalDebug && isset($line['symbol']) && isset($line['latitude']) && isset($line['longitude']) && ($line['symbol'] == 'Car' || $line['symbol'] == 'Ambulance' || $line['symbol'] == 'Van' || $line['symbol'] == 'Truck' || $line['symbol'] == 'Truck (18 Wheeler)' || $line['symbol'] == 'Motorcycle')) { |
|
| 1820 | + } elseif (is_array($line) && $globalDebug && isset($line['symbol']) && isset($line['latitude']) && isset($line['longitude']) && ($line['symbol'] == 'Car' || $line['symbol'] == 'Ambulance' || $line['symbol'] == 'Van' || $line['symbol'] == 'Truck' || $line['symbol'] == 'Truck (18 Wheeler)' || $line['symbol'] == 'Motorcycle')) { |
|
| 1287 | 1821 | echo '!! Car & Trucks not yet supported'."\n"; |
| 1288 | 1822 | } |
| 1289 | 1823 | //elseif ($line == false && $globalDebug) echo 'Ignored ('.$buffer.")\n"; |
@@ -1316,26 +1850,45 @@ discard block |
||
| 1316 | 1850 | $data['ground'] = $line[21]; |
| 1317 | 1851 | $data['emergency'] = $line[19]; |
| 1318 | 1852 | $data['format_source'] = 'sbs'; |
| 1319 | - if (isset($globalSources[$nb]['name']) && $globalSources[$nb]['name'] != '') $data['source_name'] = $globalSources[$nb]['name']; |
|
| 1320 | - if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1321 | - if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
|
| 1853 | + if (isset($globalSources[$nb]['name']) && $globalSources[$nb]['name'] != '') { |
|
| 1854 | + $data['source_name'] = $globalSources[$nb]['name']; |
|
| 1855 | + } |
|
| 1856 | + if (isset($globalSources[$nb]['sourcestats'])) { |
|
| 1857 | + $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
|
| 1858 | + } |
|
| 1859 | + if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) { |
|
| 1860 | + $data['noarchive'] = true; |
|
| 1861 | + } |
|
| 1322 | 1862 | $data['id_source'] = $id_source; |
| 1323 | - if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $send = $SI->add($data); |
|
| 1324 | - else $error = true; |
|
| 1863 | + if (($data['latitude'] == '' && $data['longitude'] == '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) { |
|
| 1864 | + $send = $SI->add($data); |
|
| 1865 | + } else { |
|
| 1866 | + $error = true; |
|
| 1867 | + } |
|
| 1325 | 1868 | unset($data); |
| 1326 | - } else $error = true; |
|
| 1869 | + } else { |
|
| 1870 | + $error = true; |
|
| 1871 | + } |
|
| 1327 | 1872 | if ($error) { |
| 1328 | 1873 | if (count($line) > 1 && ($line[0] == 'STA' || $line[0] == 'AIR' || $line[0] == 'SEL' || $line[0] == 'ID' || $line[0] == 'CLK')) { |
| 1329 | - if ($globalDebug) echo "Not a message. Ignoring... \n"; |
|
| 1874 | + if ($globalDebug) { |
|
| 1875 | + echo "Not a message. Ignoring... \n"; |
|
| 1876 | + } |
|
| 1330 | 1877 | } else { |
| 1331 | - if ($globalDebug) echo "Wrong line format. Ignoring... \n"; |
|
| 1878 | + if ($globalDebug) { |
|
| 1879 | + echo "Wrong line format. Ignoring... \n"; |
|
| 1880 | + } |
|
| 1332 | 1881 | if ($globalDebug) { |
| 1333 | 1882 | echo $buffer; |
| 1334 | 1883 | //print_r($line); |
| 1335 | 1884 | } |
| 1336 | 1885 | //socket_close($r); |
| 1337 | - if ($globalDebug) echo "Reconnect after an error...\n"; |
|
| 1338 | - if ($format == 'aprs') $aprs_connect = 0; |
|
| 1886 | + if ($globalDebug) { |
|
| 1887 | + echo "Reconnect after an error...\n"; |
|
| 1888 | + } |
|
| 1889 | + if ($format == 'aprs') { |
|
| 1890 | + $aprs_connect = 0; |
|
| 1891 | + } |
|
| 1339 | 1892 | $sourceer[$nb] = $globalSources[$nb]; |
| 1340 | 1893 | connect_all($sourceer); |
| 1341 | 1894 | $sourceer = array(); |
@@ -1343,10 +1896,14 @@ discard block |
||
| 1343 | 1896 | } |
| 1344 | 1897 | } |
| 1345 | 1898 | // Sleep for xxx microseconds |
| 1346 | - if (isset($globalSBSSleep)) usleep($globalSBSSleep); |
|
| 1899 | + if (isset($globalSBSSleep)) { |
|
| 1900 | + usleep($globalSBSSleep); |
|
| 1901 | + } |
|
| 1347 | 1902 | } else { |
| 1348 | 1903 | if ($format == 'flightgearmp') { |
| 1349 | - if ($globalDebug) echo "Reconnect FlightGear MP..."; |
|
| 1904 | + if ($globalDebug) { |
|
| 1905 | + echo "Reconnect FlightGear MP..."; |
|
| 1906 | + } |
|
| 1350 | 1907 | //@socket_close($r); |
| 1351 | 1908 | sleep($globalMinFetch); |
| 1352 | 1909 | $sourcefg[$nb] = $globalSources[$nb]; |
@@ -1355,10 +1912,15 @@ discard block |
||
| 1355 | 1912 | break; |
| 1356 | 1913 | |
| 1357 | 1914 | } elseif ($format != 'acars' && $format != 'flightgearsp') { |
| 1358 | - if (isset($tt[$format])) $tt[$format]++; |
|
| 1359 | - else $tt[$format] = 0; |
|
| 1915 | + if (isset($tt[$format])) { |
|
| 1916 | + $tt[$format]++; |
|
| 1917 | + } else { |
|
| 1918 | + $tt[$format] = 0; |
|
| 1919 | + } |
|
| 1360 | 1920 | if ($tt[$format] > 30) { |
| 1361 | - if ($globalDebug) echo "ERROR : Reconnect ".$format."..."; |
|
| 1921 | + if ($globalDebug) { |
|
| 1922 | + echo "ERROR : Reconnect ".$format."..."; |
|
| 1923 | + } |
|
| 1362 | 1924 | //@socket_close($r); |
| 1363 | 1925 | sleep(2); |
| 1364 | 1926 | $aprs_connect = 0; |
@@ -1375,11 +1937,17 @@ discard block |
||
| 1375 | 1937 | } else { |
| 1376 | 1938 | $error = socket_strerror(socket_last_error()); |
| 1377 | 1939 | if (($error != SOCKET_EINPROGRESS && $error != SOCKET_EALREADY && $error != 'Success') || (time() - $time >= $timeout && $error != 'Success')) { |
| 1378 | - if ($globalDebug) echo "ERROR : socket_select give this error ".$error . "\n"; |
|
| 1379 | - if (isset($globalDebug)) echo "Restarting...\n"; |
|
| 1940 | + if ($globalDebug) { |
|
| 1941 | + echo "ERROR : socket_select give this error ".$error . "\n"; |
|
| 1942 | + } |
|
| 1943 | + if (isset($globalDebug)) { |
|
| 1944 | + echo "Restarting...\n"; |
|
| 1945 | + } |
|
| 1380 | 1946 | // Restart the script if possible |
| 1381 | 1947 | if (is_array($sockets)) { |
| 1382 | - if ($globalDebug) echo "Shutdown all sockets..."; |
|
| 1948 | + if ($globalDebug) { |
|
| 1949 | + echo "Shutdown all sockets..."; |
|
| 1950 | + } |
|
| 1383 | 1951 | |
| 1384 | 1952 | foreach ($sockets as $sock) { |
| 1385 | 1953 | @socket_shutdown($sock,2); |
@@ -1387,21 +1955,33 @@ discard block |
||
| 1387 | 1955 | } |
| 1388 | 1956 | |
| 1389 | 1957 | } |
| 1390 | - if ($globalDebug) echo "Restart all connections..."; |
|
| 1958 | + if ($globalDebug) { |
|
| 1959 | + echo "Restart all connections..."; |
|
| 1960 | + } |
|
| 1391 | 1961 | sleep(2); |
| 1392 | 1962 | $time = time(); |
| 1393 | 1963 | //connect_all($hosts); |
| 1394 | 1964 | $aprs_connect = 0; |
| 1395 | - if ($reset%5 == 0) sleep(20); |
|
| 1396 | - if ($reset%10 == 0) sleep(100); |
|
| 1397 | - if ($reset%20 == 0) sleep(200); |
|
| 1398 | - if ($reset > 100) exit('Too many attempts...'); |
|
| 1965 | + if ($reset%5 == 0) { |
|
| 1966 | + sleep(20); |
|
| 1967 | + } |
|
| 1968 | + if ($reset%10 == 0) { |
|
| 1969 | + sleep(100); |
|
| 1970 | + } |
|
| 1971 | + if ($reset%20 == 0) { |
|
| 1972 | + sleep(200); |
|
| 1973 | + } |
|
| 1974 | + if ($reset > 100) { |
|
| 1975 | + exit('Too many attempts...'); |
|
| 1976 | + } |
|
| 1399 | 1977 | connect_all($globalSources); |
| 1400 | 1978 | } |
| 1401 | 1979 | } |
| 1402 | 1980 | } |
| 1403 | 1981 | if ($globalDaemon === false) { |
| 1404 | - if ($globalDebug) echo 'Check all...'."\n"; |
|
| 1982 | + if ($globalDebug) { |
|
| 1983 | + echo 'Check all...'."\n"; |
|
| 1984 | + } |
|
| 1405 | 1985 | $SI->checkAll(); |
| 1406 | 1986 | } |
| 1407 | 1987 | } |
@@ -8,18 +8,18 @@ discard block |
||
| 8 | 8 | class update_schema { |
| 9 | 9 | |
| 10 | 10 | public static function update_schedule() { |
| 11 | - $Connection = new Connection(); |
|
| 12 | - $Schedule = new Schedule(); |
|
| 13 | - $query = "SELECT * FROM schedule"; |
|
| 14 | - try { |
|
| 15 | - $sth = $Connection->db->prepare($query); |
|
| 11 | + $Connection = new Connection(); |
|
| 12 | + $Schedule = new Schedule(); |
|
| 13 | + $query = "SELECT * FROM schedule"; |
|
| 14 | + try { |
|
| 15 | + $sth = $Connection->db->prepare($query); |
|
| 16 | 16 | $sth->execute(); |
| 17 | - } catch(PDOException $e) { |
|
| 17 | + } catch(PDOException $e) { |
|
| 18 | 18 | return "error : ".$e->getMessage()."\n"; |
| 19 | - } |
|
| 20 | - while ($row = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
| 21 | - $Schedule->addSchedule($row['ident'],$row['departure_airport_icao'],$row['departure_airport_time'],$row['arrival_airport_icao'],$row['arrival_airport_time']); |
|
| 22 | - } |
|
| 19 | + } |
|
| 20 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
| 21 | + $Schedule->addSchedule($row['ident'],$row['departure_airport_icao'],$row['departure_airport_time'],$row['arrival_airport_icao'],$row['arrival_airport_time']); |
|
| 22 | + } |
|
| 23 | 23 | |
| 24 | 24 | } |
| 25 | 25 | /* |
@@ -43,198 +43,198 @@ discard block |
||
| 43 | 43 | } |
| 44 | 44 | */ |
| 45 | 45 | private static function update_from_1() { |
| 46 | - $Connection = new Connection(); |
|
| 47 | - // Add new column to routes table |
|
| 48 | - //$query = "ALTER TABLE `routes` ADD `FromAirport_Time` VARCHAR(10),`ToAirport_Time` VARCHAR(10),`Source` VARCHAR(255),`date_added` DATETIME DEFAULT CURRENT TIMESTAMP,`date_modified` DATETIME,`date_lastseen` DATETIME"; |
|
| 46 | + $Connection = new Connection(); |
|
| 47 | + // Add new column to routes table |
|
| 48 | + //$query = "ALTER TABLE `routes` ADD `FromAirport_Time` VARCHAR(10),`ToAirport_Time` VARCHAR(10),`Source` VARCHAR(255),`date_added` DATETIME DEFAULT CURRENT TIMESTAMP,`date_modified` DATETIME,`date_lastseen` DATETIME"; |
|
| 49 | 49 | $query = "ALTER TABLE `routes` ADD `FromAirport_Time` VARCHAR(10) NULL , ADD `ToAirport_Time` VARCHAR(10) NULL , ADD `Source` VARCHAR(255) NULL, ADD `date_added` timestamp DEFAULT CURRENT_TIMESTAMP, ADD `date_modified` timestamp NULL, ADD `date_lastseen` timestamp NULL"; |
| 50 | - try { |
|
| 51 | - $sth = $Connection->db->prepare($query); |
|
| 52 | - $sth->execute(); |
|
| 53 | - } catch(PDOException $e) { |
|
| 54 | - return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
|
| 55 | - } |
|
| 56 | - // Copy schedules data to routes table |
|
| 57 | - self::update_schedule(); |
|
| 58 | - // Delete schedule table |
|
| 50 | + try { |
|
| 51 | + $sth = $Connection->db->prepare($query); |
|
| 52 | + $sth->execute(); |
|
| 53 | + } catch(PDOException $e) { |
|
| 54 | + return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
|
| 55 | + } |
|
| 56 | + // Copy schedules data to routes table |
|
| 57 | + self::update_schedule(); |
|
| 58 | + // Delete schedule table |
|
| 59 | 59 | $query = "DROP TABLE `schedule`"; |
| 60 | - try { |
|
| 61 | - $sth = $Connection->db->prepare($query); |
|
| 62 | - $sth->execute(); |
|
| 63 | - } catch(PDOException $e) { |
|
| 64 | - return "error (delete schedule table) : ".$e->getMessage()."\n"; |
|
| 65 | - } |
|
| 66 | - // Add source column |
|
| 67 | - $query = "ALTER TABLE `aircraft_modes` ADD `Source` VARCHAR(255) NULL"; |
|
| 68 | - try { |
|
| 69 | - $sth = $Connection->db->prepare($query); |
|
| 70 | - $sth->execute(); |
|
| 71 | - } catch(PDOException $e) { |
|
| 72 | - return "error (add source column to aircraft_modes) : ".$e->getMessage()."\n"; |
|
| 73 | - } |
|
| 60 | + try { |
|
| 61 | + $sth = $Connection->db->prepare($query); |
|
| 62 | + $sth->execute(); |
|
| 63 | + } catch(PDOException $e) { |
|
| 64 | + return "error (delete schedule table) : ".$e->getMessage()."\n"; |
|
| 65 | + } |
|
| 66 | + // Add source column |
|
| 67 | + $query = "ALTER TABLE `aircraft_modes` ADD `Source` VARCHAR(255) NULL"; |
|
| 68 | + try { |
|
| 69 | + $sth = $Connection->db->prepare($query); |
|
| 70 | + $sth->execute(); |
|
| 71 | + } catch(PDOException $e) { |
|
| 72 | + return "error (add source column to aircraft_modes) : ".$e->getMessage()."\n"; |
|
| 73 | + } |
|
| 74 | 74 | // Delete unused column |
| 75 | 75 | $query = "ALTER TABLE `aircraft_modes` DROP `SerialNo`, DROP `OperatorFlagCode`, DROP `Manufacturer`, DROP `Type`, DROP `FirstRegDate`, DROP `CurrentRegDate`, DROP `Country`, DROP `PreviousID`, DROP `DeRegDate`, DROP `Status`, DROP `PopularName`, DROP `GenericName`, DROP `AircraftClass`, DROP `Engines`, DROP `OwnershipStatus`, DROP `RegisteredOwners`, DROP `MTOW`, DROP `TotalHours`, DROP `YearBuilt`, DROP `CofACategory`, DROP `CofAExpiry`, DROP `UserNotes`, DROP `Interested`, DROP `UserTag`, DROP `InfoUrl`, DROP `PictureUrl1`, DROP `PictureUrl2`, DROP `PictureUrl3`, DROP `UserBool1`, DROP `UserBool2`, DROP `UserBool3`, DROP `UserBool4`, DROP `UserBool5`, DROP `UserString1`, DROP `UserString2`, DROP `UserString3`, DROP `UserString4`, DROP `UserString5`, DROP `UserInt1`, DROP `UserInt2`, DROP `UserInt3`, DROP `UserInt4`, DROP `UserInt5`"; |
| 76 | - try { |
|
| 77 | - $sth = $Connection->db->prepare($query); |
|
| 78 | - $sth->execute(); |
|
| 79 | - } catch(PDOException $e) { |
|
| 80 | - return "error (Delete unused column of aircraft_modes) : ".$e->getMessage()."\n"; |
|
| 81 | - } |
|
| 76 | + try { |
|
| 77 | + $sth = $Connection->db->prepare($query); |
|
| 78 | + $sth->execute(); |
|
| 79 | + } catch(PDOException $e) { |
|
| 80 | + return "error (Delete unused column of aircraft_modes) : ".$e->getMessage()."\n"; |
|
| 81 | + } |
|
| 82 | 82 | // Add ModeS column |
| 83 | 83 | $query = "ALTER TABLE `spotter_output` ADD `ModeS` VARCHAR(255) NULL"; |
| 84 | - try { |
|
| 85 | - $sth = $Connection->db->prepare($query); |
|
| 86 | - $sth->execute(); |
|
| 87 | - } catch(PDOException $e) { |
|
| 88 | - return "error (Add ModeS column in spotter_output) : ".$e->getMessage()."\n"; |
|
| 89 | - } |
|
| 84 | + try { |
|
| 85 | + $sth = $Connection->db->prepare($query); |
|
| 86 | + $sth->execute(); |
|
| 87 | + } catch(PDOException $e) { |
|
| 88 | + return "error (Add ModeS column in spotter_output) : ".$e->getMessage()."\n"; |
|
| 89 | + } |
|
| 90 | 90 | $query = "ALTER TABLE `spotter_live` ADD `ModeS` VARCHAR(255)"; |
| 91 | - try { |
|
| 92 | - $sth = $Connection->db->prepare($query); |
|
| 93 | - $sth->execute(); |
|
| 94 | - } catch(PDOException $e) { |
|
| 95 | - return "error (Add ModeS column in spotter_live) : ".$e->getMessage()."\n"; |
|
| 96 | - } |
|
| 97 | - // Add auto_increment for aircraft_modes |
|
| 98 | - $query = "ALTER TABLE `aircraft_modes` CHANGE `AircraftID` `AircraftID` INT(11) NOT NULL AUTO_INCREMENT"; |
|
| 99 | - try { |
|
| 100 | - $sth = $Connection->db->prepare($query); |
|
| 101 | - $sth->execute(); |
|
| 102 | - } catch(PDOException $e) { |
|
| 103 | - return "error (Add Auto increment in aircraft_modes) : ".$e->getMessage()."\n"; |
|
| 104 | - } |
|
| 105 | - $error = ''; |
|
| 91 | + try { |
|
| 92 | + $sth = $Connection->db->prepare($query); |
|
| 93 | + $sth->execute(); |
|
| 94 | + } catch(PDOException $e) { |
|
| 95 | + return "error (Add ModeS column in spotter_live) : ".$e->getMessage()."\n"; |
|
| 96 | + } |
|
| 97 | + // Add auto_increment for aircraft_modes |
|
| 98 | + $query = "ALTER TABLE `aircraft_modes` CHANGE `AircraftID` `AircraftID` INT(11) NOT NULL AUTO_INCREMENT"; |
|
| 99 | + try { |
|
| 100 | + $sth = $Connection->db->prepare($query); |
|
| 101 | + $sth->execute(); |
|
| 102 | + } catch(PDOException $e) { |
|
| 103 | + return "error (Add Auto increment in aircraft_modes) : ".$e->getMessage()."\n"; |
|
| 104 | + } |
|
| 105 | + $error = ''; |
|
| 106 | 106 | $error .= create_db::import_file('../db/acars_live.sql'); |
| 107 | 107 | $error .= create_db::import_file('../db/config.sql'); |
| 108 | 108 | // Update schema_version to 2 |
| 109 | 109 | $query = "UPDATE `config` SET `value` = '2' WHERE `name` = 'schema_version'"; |
| 110 | - try { |
|
| 111 | - $sth = $Connection->db->prepare($query); |
|
| 112 | - $sth->execute(); |
|
| 113 | - } catch(PDOException $e) { |
|
| 114 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 115 | - } |
|
| 110 | + try { |
|
| 111 | + $sth = $Connection->db->prepare($query); |
|
| 112 | + $sth->execute(); |
|
| 113 | + } catch(PDOException $e) { |
|
| 114 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 115 | + } |
|
| 116 | 116 | return $error; |
| 117 | - } |
|
| 117 | + } |
|
| 118 | 118 | |
| 119 | 119 | private static function update_from_2() { |
| 120 | - $Connection = new Connection(); |
|
| 121 | - // Add new column decode to acars_live table |
|
| 120 | + $Connection = new Connection(); |
|
| 121 | + // Add new column decode to acars_live table |
|
| 122 | 122 | $query = "ALTER TABLE `acars_live` ADD `decode` TEXT"; |
| 123 | - try { |
|
| 124 | - $sth = $Connection->db->prepare($query); |
|
| 125 | - $sth->execute(); |
|
| 126 | - } catch(PDOException $e) { |
|
| 127 | - return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
|
| 128 | - } |
|
| 129 | - $error = ''; |
|
| 130 | - // Create table acars_archive |
|
| 123 | + try { |
|
| 124 | + $sth = $Connection->db->prepare($query); |
|
| 125 | + $sth->execute(); |
|
| 126 | + } catch(PDOException $e) { |
|
| 127 | + return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
|
| 128 | + } |
|
| 129 | + $error = ''; |
|
| 130 | + // Create table acars_archive |
|
| 131 | 131 | $error .= create_db::import_file('../db/acars_archive.sql'); |
| 132 | 132 | // Update schema_version to 3 |
| 133 | 133 | $query = "UPDATE `config` SET `value` = '3' WHERE `name` = 'schema_version'"; |
| 134 | - try { |
|
| 135 | - $sth = $Connection->db->prepare($query); |
|
| 136 | - $sth->execute(); |
|
| 137 | - } catch(PDOException $e) { |
|
| 138 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 139 | - } |
|
| 134 | + try { |
|
| 135 | + $sth = $Connection->db->prepare($query); |
|
| 136 | + $sth->execute(); |
|
| 137 | + } catch(PDOException $e) { |
|
| 138 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 139 | + } |
|
| 140 | 140 | return $error; |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | private static function update_from_3() { |
| 144 | - $Connection = new Connection(); |
|
| 145 | - // Add default CURRENT_TIMESTAMP to aircraft_modes column FirstCreated |
|
| 144 | + $Connection = new Connection(); |
|
| 145 | + // Add default CURRENT_TIMESTAMP to aircraft_modes column FirstCreated |
|
| 146 | 146 | $query = "ALTER TABLE `aircraft_modes` CHANGE `FirstCreated` `FirstCreated` timestamp DEFAULT CURRENT_TIMESTAMP"; |
| 147 | - try { |
|
| 148 | - $sth = $Connection->db->prepare($query); |
|
| 149 | - $sth->execute(); |
|
| 150 | - } catch(PDOException $e) { |
|
| 151 | - return "error (add new columns to aircraft_modes) : ".$e->getMessage()."\n"; |
|
| 152 | - } |
|
| 153 | - // Add image_source_website column to spotter_image |
|
| 147 | + try { |
|
| 148 | + $sth = $Connection->db->prepare($query); |
|
| 149 | + $sth->execute(); |
|
| 150 | + } catch(PDOException $e) { |
|
| 151 | + return "error (add new columns to aircraft_modes) : ".$e->getMessage()."\n"; |
|
| 152 | + } |
|
| 153 | + // Add image_source_website column to spotter_image |
|
| 154 | 154 | $query = "ALTER TABLE `spotter_image` ADD `image_source_website` VARCHAR(999) NULL"; |
| 155 | - try { |
|
| 156 | - $sth = $Connection->db->prepare($query); |
|
| 157 | - $sth->execute(); |
|
| 158 | - } catch(PDOException $e) { |
|
| 159 | - return "error (add new columns to spotter_image) : ".$e->getMessage()."\n"; |
|
| 160 | - } |
|
| 161 | - $error = ''; |
|
| 155 | + try { |
|
| 156 | + $sth = $Connection->db->prepare($query); |
|
| 157 | + $sth->execute(); |
|
| 158 | + } catch(PDOException $e) { |
|
| 159 | + return "error (add new columns to spotter_image) : ".$e->getMessage()."\n"; |
|
| 160 | + } |
|
| 161 | + $error = ''; |
|
| 162 | 162 | // Update schema_version to 4 |
| 163 | 163 | $query = "UPDATE `config` SET `value` = '4' WHERE `name` = 'schema_version'"; |
| 164 | - try { |
|
| 165 | - $sth = $Connection->db->prepare($query); |
|
| 166 | - $sth->execute(); |
|
| 167 | - } catch(PDOException $e) { |
|
| 168 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 169 | - } |
|
| 164 | + try { |
|
| 165 | + $sth = $Connection->db->prepare($query); |
|
| 166 | + $sth->execute(); |
|
| 167 | + } catch(PDOException $e) { |
|
| 168 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 169 | + } |
|
| 170 | 170 | return $error; |
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | private static function update_from_4() { |
| 174 | - $Connection = new Connection(); |
|
| 174 | + $Connection = new Connection(); |
|
| 175 | 175 | |
| 176 | - $error = ''; |
|
| 177 | - // Create table acars_label |
|
| 176 | + $error = ''; |
|
| 177 | + // Create table acars_label |
|
| 178 | 178 | $error .= create_db::import_file('../db/acars_label.sql'); |
| 179 | 179 | if ($error == '') { |
| 180 | - // Update schema_version to 5 |
|
| 181 | - $query = "UPDATE `config` SET `value` = '5' WHERE `name` = 'schema_version'"; |
|
| 182 | - try { |
|
| 183 | - $sth = $Connection->db->prepare($query); |
|
| 180 | + // Update schema_version to 5 |
|
| 181 | + $query = "UPDATE `config` SET `value` = '5' WHERE `name` = 'schema_version'"; |
|
| 182 | + try { |
|
| 183 | + $sth = $Connection->db->prepare($query); |
|
| 184 | 184 | $sth->execute(); |
| 185 | - } catch(PDOException $e) { |
|
| 185 | + } catch(PDOException $e) { |
|
| 186 | 186 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 187 | - } |
|
| 188 | - } |
|
| 187 | + } |
|
| 188 | + } |
|
| 189 | 189 | return $error; |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | private static function update_from_5() { |
| 193 | - $Connection = new Connection(); |
|
| 194 | - // Add columns to translation |
|
| 193 | + $Connection = new Connection(); |
|
| 194 | + // Add columns to translation |
|
| 195 | 195 | $query = "ALTER TABLE `translation` ADD `Source` VARCHAR(255) NULL, ADD `date_added` timestamp DEFAULT CURRENT_TIMESTAMP , ADD `date_modified` timestamp DEFAULT CURRENT_TIMESTAMP ;"; |
| 196 | - try { |
|
| 197 | - $sth = $Connection->db->prepare($query); |
|
| 198 | - $sth->execute(); |
|
| 199 | - } catch(PDOException $e) { |
|
| 200 | - return "error (add new columns to translation) : ".$e->getMessage()."\n"; |
|
| 201 | - } |
|
| 202 | - // Add aircraft_shadow column to aircraft |
|
| 203 | - $query = "ALTER TABLE `aircraft` ADD `aircraft_shadow` VARCHAR(255) NULL"; |
|
| 204 | - try { |
|
| 205 | - $sth = $Connection->db->prepare($query); |
|
| 206 | - $sth->execute(); |
|
| 207 | - } catch(PDOException $e) { |
|
| 208 | - return "error (add new column to aircraft) : ".$e->getMessage()."\n"; |
|
| 209 | - } |
|
| 210 | - // Add aircraft_shadow column to spotter_live |
|
| 211 | - $query = "ALTER TABLE `spotter_live` ADD `aircraft_shadow` VARCHAR(255) NULL"; |
|
| 212 | - try { |
|
| 213 | - $sth = $Connection->db->prepare($query); |
|
| 214 | - $sth->execute(); |
|
| 215 | - } catch(PDOException $e) { |
|
| 216 | - return "error (add new column to spotter_live) : ".$e->getMessage()."\n"; |
|
| 217 | - } |
|
| 218 | - $error = ''; |
|
| 219 | - // Update table aircraft |
|
| 196 | + try { |
|
| 197 | + $sth = $Connection->db->prepare($query); |
|
| 198 | + $sth->execute(); |
|
| 199 | + } catch(PDOException $e) { |
|
| 200 | + return "error (add new columns to translation) : ".$e->getMessage()."\n"; |
|
| 201 | + } |
|
| 202 | + // Add aircraft_shadow column to aircraft |
|
| 203 | + $query = "ALTER TABLE `aircraft` ADD `aircraft_shadow` VARCHAR(255) NULL"; |
|
| 204 | + try { |
|
| 205 | + $sth = $Connection->db->prepare($query); |
|
| 206 | + $sth->execute(); |
|
| 207 | + } catch(PDOException $e) { |
|
| 208 | + return "error (add new column to aircraft) : ".$e->getMessage()."\n"; |
|
| 209 | + } |
|
| 210 | + // Add aircraft_shadow column to spotter_live |
|
| 211 | + $query = "ALTER TABLE `spotter_live` ADD `aircraft_shadow` VARCHAR(255) NULL"; |
|
| 212 | + try { |
|
| 213 | + $sth = $Connection->db->prepare($query); |
|
| 214 | + $sth->execute(); |
|
| 215 | + } catch(PDOException $e) { |
|
| 216 | + return "error (add new column to spotter_live) : ".$e->getMessage()."\n"; |
|
| 217 | + } |
|
| 218 | + $error = ''; |
|
| 219 | + // Update table aircraft |
|
| 220 | 220 | $error .= create_db::import_file('../db/aircraft.sql'); |
| 221 | 221 | $error .= create_db::import_file('../db/spotter_archive.sql'); |
| 222 | 222 | |
| 223 | 223 | // Update schema_version to 6 |
| 224 | 224 | $query = "UPDATE `config` SET `value` = '6' WHERE `name` = 'schema_version'"; |
| 225 | - try { |
|
| 226 | - $sth = $Connection->db->prepare($query); |
|
| 227 | - $sth->execute(); |
|
| 228 | - } catch(PDOException $e) { |
|
| 229 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 230 | - } |
|
| 225 | + try { |
|
| 226 | + $sth = $Connection->db->prepare($query); |
|
| 227 | + $sth->execute(); |
|
| 228 | + } catch(PDOException $e) { |
|
| 229 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 230 | + } |
|
| 231 | 231 | return $error; |
| 232 | 232 | } |
| 233 | 233 | |
| 234 | 234 | private static function update_from_6() { |
| 235 | - $Connection = new Connection(); |
|
| 236 | - if (!$Connection->indexExists('spotter_output','flightaware_id')) { |
|
| 237 | - $query = "ALTER TABLE spotter_output ADD INDEX(flightaware_id); |
|
| 235 | + $Connection = new Connection(); |
|
| 236 | + if (!$Connection->indexExists('spotter_output','flightaware_id')) { |
|
| 237 | + $query = "ALTER TABLE spotter_output ADD INDEX(flightaware_id); |
|
| 238 | 238 | ALTER TABLE spotter_output ADD INDEX(date); |
| 239 | 239 | ALTER TABLE spotter_output ADD INDEX(ident); |
| 240 | 240 | ALTER TABLE spotter_live ADD INDEX(flightaware_id); |
@@ -247,147 +247,147 @@ discard block |
||
| 247 | 247 | ALTER TABLE aircraft ADD INDEX(icao); |
| 248 | 248 | ALTER TABLE airport ADD INDEX(icao); |
| 249 | 249 | ALTER TABLE translation ADD INDEX(Operator);"; |
| 250 | - try { |
|
| 251 | - $sth = $Connection->db->prepare($query); |
|
| 250 | + try { |
|
| 251 | + $sth = $Connection->db->prepare($query); |
|
| 252 | 252 | $sth->execute(); |
| 253 | - } catch(PDOException $e) { |
|
| 253 | + } catch(PDOException $e) { |
|
| 254 | 254 | return "error (add some indexes) : ".$e->getMessage()."\n"; |
| 255 | - } |
|
| 256 | - } |
|
| 257 | - $error = ''; |
|
| 258 | - // Update table countries |
|
| 259 | - if ($Connection->tableExists('airspace')) { |
|
| 260 | - $error .= update_db::update_countries(); |
|
| 261 | - if ($error != '') return $error; |
|
| 255 | + } |
|
| 256 | + } |
|
| 257 | + $error = ''; |
|
| 258 | + // Update table countries |
|
| 259 | + if ($Connection->tableExists('airspace')) { |
|
| 260 | + $error .= update_db::update_countries(); |
|
| 261 | + if ($error != '') return $error; |
|
| 262 | 262 | } |
| 263 | 263 | // Update schema_version to 7 |
| 264 | 264 | $query = "UPDATE `config` SET `value` = '7' WHERE `name` = 'schema_version'"; |
| 265 | - try { |
|
| 266 | - $sth = $Connection->db->prepare($query); |
|
| 267 | - $sth->execute(); |
|
| 268 | - } catch(PDOException $e) { |
|
| 269 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 270 | - } |
|
| 265 | + try { |
|
| 266 | + $sth = $Connection->db->prepare($query); |
|
| 267 | + $sth->execute(); |
|
| 268 | + } catch(PDOException $e) { |
|
| 269 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 270 | + } |
|
| 271 | 271 | return $error; |
| 272 | - } |
|
| 272 | + } |
|
| 273 | 273 | |
| 274 | 274 | private static function update_from_7() { |
| 275 | 275 | global $globalDBname, $globalDBdriver; |
| 276 | - $Connection = new Connection(); |
|
| 277 | - $query="ALTER TABLE spotter_live ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL; |
|
| 276 | + $Connection = new Connection(); |
|
| 277 | + $query="ALTER TABLE spotter_live ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL; |
|
| 278 | 278 | ALTER TABLE spotter_output ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL;"; |
| 279 | - try { |
|
| 280 | - $sth = $Connection->db->prepare($query); |
|
| 281 | - $sth->execute(); |
|
| 282 | - } catch(PDOException $e) { |
|
| 283 | - return "error (add pilot column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
|
| 284 | - } |
|
| 285 | - if ($globalDBdriver == 'mysql') { |
|
| 286 | - $query = "SELECT ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = '".$globalDBname."' AND TABLE_NAME = 'spotter_archive'"; |
|
| 287 | - try { |
|
| 288 | - $sth = $Connection->db->prepare($query); |
|
| 289 | - $sth->execute(); |
|
| 290 | - } catch(PDOException $e) { |
|
| 279 | + try { |
|
| 280 | + $sth = $Connection->db->prepare($query); |
|
| 281 | + $sth->execute(); |
|
| 282 | + } catch(PDOException $e) { |
|
| 283 | + return "error (add pilot column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
|
| 284 | + } |
|
| 285 | + if ($globalDBdriver == 'mysql') { |
|
| 286 | + $query = "SELECT ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = '".$globalDBname."' AND TABLE_NAME = 'spotter_archive'"; |
|
| 287 | + try { |
|
| 288 | + $sth = $Connection->db->prepare($query); |
|
| 289 | + $sth->execute(); |
|
| 290 | + } catch(PDOException $e) { |
|
| 291 | 291 | return "error (problem when select engine for spotter_engine) : ".$e->getMessage()."\n"; |
| 292 | - } |
|
| 293 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 294 | - if ($row['engine'] == 'ARCHIVE') { |
|
| 292 | + } |
|
| 293 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 294 | + if ($row['engine'] == 'ARCHIVE') { |
|
| 295 | 295 | $query = "CREATE TABLE copy LIKE spotter_archive; |
| 296 | 296 | ALTER TABLE copy ENGINE=ARCHIVE; |
| 297 | 297 | ALTER TABLE copy ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL; |
| 298 | 298 | INSERT INTO copy SELECT *, '' as pilot_name, '' as pilot_id FROM spotter_archive ORDER BY `spotter_archive_id`; |
| 299 | 299 | DROP TABLE spotter_archive; |
| 300 | 300 | RENAME TABLE copy TO spotter_archive;"; |
| 301 | - } else { |
|
| 302 | - $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
| 303 | - } |
|
| 304 | - } else { |
|
| 305 | - $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
| 306 | - } |
|
| 307 | - try { |
|
| 308 | - $sth = $Connection->db->prepare($query); |
|
| 309 | - $sth->execute(); |
|
| 310 | - } catch(PDOException $e) { |
|
| 311 | - return "error (add pilot column to spotter_archive) : ".$e->getMessage()."\n"; |
|
| 312 | - } |
|
| 301 | + } else { |
|
| 302 | + $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
| 303 | + } |
|
| 304 | + } else { |
|
| 305 | + $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
| 306 | + } |
|
| 307 | + try { |
|
| 308 | + $sth = $Connection->db->prepare($query); |
|
| 309 | + $sth->execute(); |
|
| 310 | + } catch(PDOException $e) { |
|
| 311 | + return "error (add pilot column to spotter_archive) : ".$e->getMessage()."\n"; |
|
| 312 | + } |
|
| 313 | 313 | |
| 314 | - $error = ''; |
|
| 315 | - // Update table aircraft |
|
| 314 | + $error = ''; |
|
| 315 | + // Update table aircraft |
|
| 316 | 316 | $error .= create_db::import_file('../db/source_location.sql'); |
| 317 | 317 | if ($error != '') return $error; |
| 318 | 318 | // Update schema_version to 6 |
| 319 | 319 | $query = "UPDATE `config` SET `value` = '8' WHERE `name` = 'schema_version'"; |
| 320 | - try { |
|
| 321 | - $sth = $Connection->db->prepare($query); |
|
| 322 | - $sth->execute(); |
|
| 323 | - } catch(PDOException $e) { |
|
| 324 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 325 | - } |
|
| 320 | + try { |
|
| 321 | + $sth = $Connection->db->prepare($query); |
|
| 322 | + $sth->execute(); |
|
| 323 | + } catch(PDOException $e) { |
|
| 324 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 325 | + } |
|
| 326 | 326 | return $error; |
| 327 | 327 | } |
| 328 | 328 | |
| 329 | 329 | private static function update_from_8() { |
| 330 | - $Connection = new Connection(); |
|
| 331 | - $error = ''; |
|
| 332 | - // Update table aircraft |
|
| 330 | + $Connection = new Connection(); |
|
| 331 | + $error = ''; |
|
| 332 | + // Update table aircraft |
|
| 333 | 333 | $error .= create_db::import_file('../db/notam.sql'); |
| 334 | 334 | if ($error != '') return $error; |
| 335 | 335 | $query = "DELETE FROM config WHERE name = 'last_update_db'; |
| 336 | 336 | INSERT INTO config (name,value) VALUES ('last_update_db',NOW()); |
| 337 | 337 | DELETE FROM config WHERE name = 'last_update_notam_db'; |
| 338 | 338 | INSERT INTO config (name,value) VALUES ('last_update_notam_db',NOW());"; |
| 339 | - try { |
|
| 340 | - $sth = $Connection->db->prepare($query); |
|
| 341 | - $sth->execute(); |
|
| 342 | - } catch(PDOException $e) { |
|
| 343 | - return "error (insert last_update values) : ".$e->getMessage()."\n"; |
|
| 344 | - } |
|
| 339 | + try { |
|
| 340 | + $sth = $Connection->db->prepare($query); |
|
| 341 | + $sth->execute(); |
|
| 342 | + } catch(PDOException $e) { |
|
| 343 | + return "error (insert last_update values) : ".$e->getMessage()."\n"; |
|
| 344 | + } |
|
| 345 | 345 | $query = "UPDATE `config` SET `value` = '9' WHERE `name` = 'schema_version'"; |
| 346 | - try { |
|
| 347 | - $sth = $Connection->db->prepare($query); |
|
| 348 | - $sth->execute(); |
|
| 349 | - } catch(PDOException $e) { |
|
| 350 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 351 | - } |
|
| 346 | + try { |
|
| 347 | + $sth = $Connection->db->prepare($query); |
|
| 348 | + $sth->execute(); |
|
| 349 | + } catch(PDOException $e) { |
|
| 350 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 351 | + } |
|
| 352 | 352 | return $error; |
| 353 | 353 | } |
| 354 | 354 | |
| 355 | 355 | private static function update_from_9() { |
| 356 | - $Connection = new Connection(); |
|
| 357 | - $query="ALTER TABLE spotter_live ADD verticalrate INT(11) NULL; |
|
| 356 | + $Connection = new Connection(); |
|
| 357 | + $query="ALTER TABLE spotter_live ADD verticalrate INT(11) NULL; |
|
| 358 | 358 | ALTER TABLE spotter_output ADD verticalrate INT(11) NULL;"; |
| 359 | - try { |
|
| 360 | - $sth = $Connection->db->prepare($query); |
|
| 361 | - $sth->execute(); |
|
| 362 | - } catch(PDOException $e) { |
|
| 363 | - return "error (add verticalrate column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
|
| 364 | - } |
|
| 359 | + try { |
|
| 360 | + $sth = $Connection->db->prepare($query); |
|
| 361 | + $sth->execute(); |
|
| 362 | + } catch(PDOException $e) { |
|
| 363 | + return "error (add verticalrate column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
|
| 364 | + } |
|
| 365 | 365 | $error = ''; |
| 366 | - // Update table atc |
|
| 366 | + // Update table atc |
|
| 367 | 367 | $error .= create_db::import_file('../db/atc.sql'); |
| 368 | 368 | if ($error != '') return $error; |
| 369 | 369 | |
| 370 | 370 | $query = "UPDATE `config` SET `value` = '10' WHERE `name` = 'schema_version'"; |
| 371 | - try { |
|
| 372 | - $sth = $Connection->db->prepare($query); |
|
| 373 | - $sth->execute(); |
|
| 374 | - } catch(PDOException $e) { |
|
| 375 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 376 | - } |
|
| 371 | + try { |
|
| 372 | + $sth = $Connection->db->prepare($query); |
|
| 373 | + $sth->execute(); |
|
| 374 | + } catch(PDOException $e) { |
|
| 375 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 376 | + } |
|
| 377 | 377 | return $error; |
| 378 | 378 | } |
| 379 | 379 | |
| 380 | 380 | private static function update_from_10() { |
| 381 | - $Connection = new Connection(); |
|
| 382 | - $query="ALTER TABLE atc CHANGE `type` `type` ENUM('Observer','Flight Information','Delivery','Tower','Approach','ACC','Departure','Ground','Flight Service Station','Control Radar or Centre') CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL"; |
|
| 383 | - try { |
|
| 384 | - $sth = $Connection->db->prepare($query); |
|
| 385 | - $sth->execute(); |
|
| 386 | - } catch(PDOException $e) { |
|
| 387 | - return "error (add new enum to ATC table) : ".$e->getMessage()."\n"; |
|
| 388 | - } |
|
| 381 | + $Connection = new Connection(); |
|
| 382 | + $query="ALTER TABLE atc CHANGE `type` `type` ENUM('Observer','Flight Information','Delivery','Tower','Approach','ACC','Departure','Ground','Flight Service Station','Control Radar or Centre') CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL"; |
|
| 383 | + try { |
|
| 384 | + $sth = $Connection->db->prepare($query); |
|
| 385 | + $sth->execute(); |
|
| 386 | + } catch(PDOException $e) { |
|
| 387 | + return "error (add new enum to ATC table) : ".$e->getMessage()."\n"; |
|
| 388 | + } |
|
| 389 | 389 | $error = ''; |
| 390 | - // Add tables |
|
| 390 | + // Add tables |
|
| 391 | 391 | $error .= create_db::import_file('../db/aircraft_owner.sql'); |
| 392 | 392 | if ($error != '') return $error; |
| 393 | 393 | $error .= create_db::import_file('../db/metar.sql'); |
@@ -398,76 +398,76 @@ discard block |
||
| 398 | 398 | if ($error != '') return $error; |
| 399 | 399 | |
| 400 | 400 | $query = "UPDATE `config` SET `value` = '11' WHERE `name` = 'schema_version'"; |
| 401 | - try { |
|
| 402 | - $sth = $Connection->db->prepare($query); |
|
| 403 | - $sth->execute(); |
|
| 404 | - } catch(PDOException $e) { |
|
| 405 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 406 | - } |
|
| 401 | + try { |
|
| 402 | + $sth = $Connection->db->prepare($query); |
|
| 403 | + $sth->execute(); |
|
| 404 | + } catch(PDOException $e) { |
|
| 405 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 406 | + } |
|
| 407 | 407 | return $error; |
| 408 | 408 | } |
| 409 | 409 | |
| 410 | 410 | private static function update_from_11() { |
| 411 | 411 | global $globalDBdriver, $globalDBname; |
| 412 | - $Connection = new Connection(); |
|
| 413 | - $query="ALTER TABLE spotter_output ADD owner_name VARCHAR(255) NULL DEFAULT NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_seen DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, ADD last_latitude FLOAT NULL, ADD last_longitude FLOAT NULL, ADD last_altitude INT(11) NULL, ADD last_ground_speed INT(11), ADD real_arrival_airport_icao VARCHAR(999), ADD real_arrival_airport_time VARCHAR(20),ADD real_departure_airport_icao VARCHAR(999), ADD real_departure_airport_time VARCHAR(20)"; |
|
| 414 | - try { |
|
| 415 | - $sth = $Connection->db->prepare($query); |
|
| 416 | - $sth->execute(); |
|
| 417 | - } catch(PDOException $e) { |
|
| 418 | - return "error (add owner_name & format_source column to spotter_output) : ".$e->getMessage()."\n"; |
|
| 419 | - } |
|
| 420 | - $query="ALTER TABLE spotter_live ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 421 | - try { |
|
| 422 | - $sth = $Connection->db->prepare($query); |
|
| 423 | - $sth->execute(); |
|
| 424 | - } catch(PDOException $e) { |
|
| 425 | - return "error (format_source column to spotter_live) : ".$e->getMessage()."\n"; |
|
| 426 | - } |
|
| 427 | - if ($globalDBdriver == 'mysql') { |
|
| 428 | - $query = "SELECT ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = '".$globalDBname."' AND TABLE_NAME = 'spotter_archive'"; |
|
| 429 | - try { |
|
| 430 | - $sth = $Connection->db->prepare($query); |
|
| 431 | - $sth->execute(); |
|
| 432 | - } catch(PDOException $e) { |
|
| 412 | + $Connection = new Connection(); |
|
| 413 | + $query="ALTER TABLE spotter_output ADD owner_name VARCHAR(255) NULL DEFAULT NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_seen DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, ADD last_latitude FLOAT NULL, ADD last_longitude FLOAT NULL, ADD last_altitude INT(11) NULL, ADD last_ground_speed INT(11), ADD real_arrival_airport_icao VARCHAR(999), ADD real_arrival_airport_time VARCHAR(20),ADD real_departure_airport_icao VARCHAR(999), ADD real_departure_airport_time VARCHAR(20)"; |
|
| 414 | + try { |
|
| 415 | + $sth = $Connection->db->prepare($query); |
|
| 416 | + $sth->execute(); |
|
| 417 | + } catch(PDOException $e) { |
|
| 418 | + return "error (add owner_name & format_source column to spotter_output) : ".$e->getMessage()."\n"; |
|
| 419 | + } |
|
| 420 | + $query="ALTER TABLE spotter_live ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 421 | + try { |
|
| 422 | + $sth = $Connection->db->prepare($query); |
|
| 423 | + $sth->execute(); |
|
| 424 | + } catch(PDOException $e) { |
|
| 425 | + return "error (format_source column to spotter_live) : ".$e->getMessage()."\n"; |
|
| 426 | + } |
|
| 427 | + if ($globalDBdriver == 'mysql') { |
|
| 428 | + $query = "SELECT ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = '".$globalDBname."' AND TABLE_NAME = 'spotter_archive'"; |
|
| 429 | + try { |
|
| 430 | + $sth = $Connection->db->prepare($query); |
|
| 431 | + $sth->execute(); |
|
| 432 | + } catch(PDOException $e) { |
|
| 433 | 433 | return "error (problem when select engine for spotter_engine) : ".$e->getMessage()."\n"; |
| 434 | - } |
|
| 435 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 436 | - if ($row['engine'] == 'ARCHIVE') { |
|
| 434 | + } |
|
| 435 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 436 | + if ($row['engine'] == 'ARCHIVE') { |
|
| 437 | 437 | $query = "CREATE TABLE copy LIKE spotter_archive; |
| 438 | 438 | ALTER TABLE copy ENGINE=ARCHIVE; |
| 439 | 439 | ALTER TABLE copy ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE; |
| 440 | 440 | INSERT INTO copy SELECT *, '' as verticalrate, '' as format_source, '0' as ground FROM spotter_archive ORDER BY `spotter_archive_id`; |
| 441 | 441 | DROP TABLE spotter_archive; |
| 442 | 442 | RENAME TABLE copy TO spotter_archive;"; |
| 443 | - } else { |
|
| 444 | - $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 445 | - } |
|
| 446 | - } else { |
|
| 447 | - $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 448 | - } |
|
| 449 | - try { |
|
| 450 | - $sth = $Connection->db->prepare($query); |
|
| 451 | - $sth->execute(); |
|
| 452 | - } catch(PDOException $e) { |
|
| 453 | - return "error (add columns to spotter_archive) : ".$e->getMessage()."\n"; |
|
| 454 | - } |
|
| 443 | + } else { |
|
| 444 | + $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 445 | + } |
|
| 446 | + } else { |
|
| 447 | + $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 448 | + } |
|
| 449 | + try { |
|
| 450 | + $sth = $Connection->db->prepare($query); |
|
| 451 | + $sth->execute(); |
|
| 452 | + } catch(PDOException $e) { |
|
| 453 | + return "error (add columns to spotter_archive) : ".$e->getMessage()."\n"; |
|
| 454 | + } |
|
| 455 | 455 | |
| 456 | 456 | $error = ''; |
| 457 | 457 | |
| 458 | 458 | $query = "UPDATE `config` SET `value` = '12' WHERE `name` = 'schema_version'"; |
| 459 | - try { |
|
| 460 | - $sth = $Connection->db->prepare($query); |
|
| 461 | - $sth->execute(); |
|
| 462 | - } catch(PDOException $e) { |
|
| 463 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 464 | - } |
|
| 459 | + try { |
|
| 460 | + $sth = $Connection->db->prepare($query); |
|
| 461 | + $sth->execute(); |
|
| 462 | + } catch(PDOException $e) { |
|
| 463 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 464 | + } |
|
| 465 | 465 | return $error; |
| 466 | 466 | } |
| 467 | 467 | private static function update_from_12() { |
| 468 | - $Connection = new Connection(); |
|
| 468 | + $Connection = new Connection(); |
|
| 469 | 469 | $error = ''; |
| 470 | - // Add tables |
|
| 470 | + // Add tables |
|
| 471 | 471 | $error .= create_db::import_file('../db/stats.sql'); |
| 472 | 472 | if ($error != '') return $error; |
| 473 | 473 | $error .= create_db::import_file('../db/stats_aircraft.sql'); |
@@ -484,166 +484,166 @@ discard block |
||
| 484 | 484 | if ($error != '') return $error; |
| 485 | 485 | |
| 486 | 486 | $query = "UPDATE `config` SET `value` = '13' WHERE `name` = 'schema_version'"; |
| 487 | - try { |
|
| 488 | - $sth = $Connection->db->prepare($query); |
|
| 489 | - $sth->execute(); |
|
| 490 | - } catch(PDOException $e) { |
|
| 491 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 492 | - } |
|
| 487 | + try { |
|
| 488 | + $sth = $Connection->db->prepare($query); |
|
| 489 | + $sth->execute(); |
|
| 490 | + } catch(PDOException $e) { |
|
| 491 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 492 | + } |
|
| 493 | 493 | return $error; |
| 494 | 494 | } |
| 495 | 495 | |
| 496 | 496 | private static function update_from_13() { |
| 497 | - $Connection = new Connection(); |
|
| 498 | - if (!$Connection->checkColumnName('spotter_archive_output','real_departure_airport_icao')) { |
|
| 499 | - $query="ALTER TABLE spotter_archive_output ADD real_departure_airport_icao VARCHAR(20), ADD real_departure_airport_time VARCHAR(20)"; |
|
| 497 | + $Connection = new Connection(); |
|
| 498 | + if (!$Connection->checkColumnName('spotter_archive_output','real_departure_airport_icao')) { |
|
| 499 | + $query="ALTER TABLE spotter_archive_output ADD real_departure_airport_icao VARCHAR(20), ADD real_departure_airport_time VARCHAR(20)"; |
|
| 500 | 500 | try { |
| 501 | 501 | $sth = $Connection->db->prepare($query); |
| 502 | 502 | $sth->execute(); |
| 503 | - } catch(PDOException $e) { |
|
| 503 | + } catch(PDOException $e) { |
|
| 504 | 504 | return "error (update spotter_archive_output) : ".$e->getMessage()."\n"; |
| 505 | - } |
|
| 505 | + } |
|
| 506 | 506 | } |
| 507 | - $error = ''; |
|
| 507 | + $error = ''; |
|
| 508 | 508 | $query = "UPDATE `config` SET `value` = '14' WHERE `name` = 'schema_version'"; |
| 509 | - try { |
|
| 510 | - $sth = $Connection->db->prepare($query); |
|
| 511 | - $sth->execute(); |
|
| 512 | - } catch(PDOException $e) { |
|
| 513 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 514 | - } |
|
| 509 | + try { |
|
| 510 | + $sth = $Connection->db->prepare($query); |
|
| 511 | + $sth->execute(); |
|
| 512 | + } catch(PDOException $e) { |
|
| 513 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 514 | + } |
|
| 515 | 515 | return $error; |
| 516 | 516 | } |
| 517 | 517 | |
| 518 | 518 | private static function update_from_14() { |
| 519 | - $Connection = new Connection(); |
|
| 519 | + $Connection = new Connection(); |
|
| 520 | 520 | $error = ''; |
| 521 | - // Add tables |
|
| 522 | - if (!$Connection->tableExists('stats_flight')) { |
|
| 521 | + // Add tables |
|
| 522 | + if (!$Connection->tableExists('stats_flight')) { |
|
| 523 | 523 | $error .= create_db::import_file('../db/stats_flight.sql'); |
| 524 | 524 | if ($error != '') return $error; |
| 525 | 525 | } |
| 526 | 526 | $query = "UPDATE `config` SET `value` = '15' WHERE `name` = 'schema_version'"; |
| 527 | - try { |
|
| 528 | - $sth = $Connection->db->prepare($query); |
|
| 529 | - $sth->execute(); |
|
| 530 | - } catch(PDOException $e) { |
|
| 531 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 532 | - } |
|
| 527 | + try { |
|
| 528 | + $sth = $Connection->db->prepare($query); |
|
| 529 | + $sth->execute(); |
|
| 530 | + } catch(PDOException $e) { |
|
| 531 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 532 | + } |
|
| 533 | 533 | return $error; |
| 534 | 534 | } |
| 535 | 535 | |
| 536 | 536 | |
| 537 | 537 | private static function update_from_15() { |
| 538 | - $Connection = new Connection(); |
|
| 538 | + $Connection = new Connection(); |
|
| 539 | 539 | $error = ''; |
| 540 | - // Add tables |
|
| 541 | - $query="ALTER TABLE `stats` CHANGE `stats_date` `stats_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP"; |
|
| 542 | - try { |
|
| 543 | - $sth = $Connection->db->prepare($query); |
|
| 544 | - $sth->execute(); |
|
| 545 | - } catch(PDOException $e) { |
|
| 546 | - return "error (update stats) : ".$e->getMessage()."\n"; |
|
| 547 | - } |
|
| 540 | + // Add tables |
|
| 541 | + $query="ALTER TABLE `stats` CHANGE `stats_date` `stats_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP"; |
|
| 542 | + try { |
|
| 543 | + $sth = $Connection->db->prepare($query); |
|
| 544 | + $sth->execute(); |
|
| 545 | + } catch(PDOException $e) { |
|
| 546 | + return "error (update stats) : ".$e->getMessage()."\n"; |
|
| 547 | + } |
|
| 548 | 548 | if ($error != '') return $error; |
| 549 | 549 | $query = "UPDATE `config` SET `value` = '16' WHERE `name` = 'schema_version'"; |
| 550 | - try { |
|
| 551 | - $sth = $Connection->db->prepare($query); |
|
| 552 | - $sth->execute(); |
|
| 553 | - } catch(PDOException $e) { |
|
| 554 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 555 | - } |
|
| 550 | + try { |
|
| 551 | + $sth = $Connection->db->prepare($query); |
|
| 552 | + $sth->execute(); |
|
| 553 | + } catch(PDOException $e) { |
|
| 554 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 555 | + } |
|
| 556 | 556 | return $error; |
| 557 | 557 | } |
| 558 | 558 | |
| 559 | 559 | private static function update_from_16() { |
| 560 | - $Connection = new Connection(); |
|
| 560 | + $Connection = new Connection(); |
|
| 561 | 561 | $error = ''; |
| 562 | - // Add tables |
|
| 563 | - if (!$Connection->tableExists('stats_registration')) { |
|
| 562 | + // Add tables |
|
| 563 | + if (!$Connection->tableExists('stats_registration')) { |
|
| 564 | 564 | $error .= create_db::import_file('../db/stats_registration.sql'); |
| 565 | 565 | } |
| 566 | - if (!$Connection->tableExists('stats_callsign')) { |
|
| 566 | + if (!$Connection->tableExists('stats_callsign')) { |
|
| 567 | 567 | $error .= create_db::import_file('../db/stats_callsign.sql'); |
| 568 | 568 | } |
| 569 | 569 | if ($error != '') return $error; |
| 570 | 570 | $query = "UPDATE `config` SET `value` = '17' WHERE `name` = 'schema_version'"; |
| 571 | - try { |
|
| 572 | - $sth = $Connection->db->prepare($query); |
|
| 573 | - $sth->execute(); |
|
| 574 | - } catch(PDOException $e) { |
|
| 575 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 576 | - } |
|
| 571 | + try { |
|
| 572 | + $sth = $Connection->db->prepare($query); |
|
| 573 | + $sth->execute(); |
|
| 574 | + } catch(PDOException $e) { |
|
| 575 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 576 | + } |
|
| 577 | 577 | return $error; |
| 578 | 578 | } |
| 579 | 579 | |
| 580 | 580 | private static function update_from_17() { |
| 581 | - $Connection = new Connection(); |
|
| 581 | + $Connection = new Connection(); |
|
| 582 | 582 | $error = ''; |
| 583 | - // Add tables |
|
| 584 | - if (!$Connection->tableExists('stats_country')) { |
|
| 583 | + // Add tables |
|
| 584 | + if (!$Connection->tableExists('stats_country')) { |
|
| 585 | 585 | $error .= create_db::import_file('../db/stats_country.sql'); |
| 586 | 586 | } |
| 587 | 587 | if ($error != '') return $error; |
| 588 | 588 | $query = "UPDATE `config` SET `value` = '18' WHERE `name` = 'schema_version'"; |
| 589 | - try { |
|
| 590 | - $sth = $Connection->db->prepare($query); |
|
| 591 | - $sth->execute(); |
|
| 592 | - } catch(PDOException $e) { |
|
| 593 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 594 | - } |
|
| 589 | + try { |
|
| 590 | + $sth = $Connection->db->prepare($query); |
|
| 591 | + $sth->execute(); |
|
| 592 | + } catch(PDOException $e) { |
|
| 593 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 594 | + } |
|
| 595 | 595 | return $error; |
| 596 | 596 | } |
| 597 | 597 | private static function update_from_18() { |
| 598 | - $Connection = new Connection(); |
|
| 598 | + $Connection = new Connection(); |
|
| 599 | 599 | $error = ''; |
| 600 | - // Modify stats_airport table |
|
| 601 | - if (!$Connection->checkColumnName('stats_airport','airport_name')) { |
|
| 602 | - $query = "ALTER TABLE `stats_airport` ADD `stats_type` VARCHAR(50) NOT NULL DEFAULT 'yearly', ADD `airport_name` VARCHAR(255) NOT NULL, ADD `date` DATE NULL DEFAULT NULL, DROP INDEX `airport_icao`, ADD UNIQUE `airport_icao` (`airport_icao`, `type`, `date`)"; |
|
| 603 | - try { |
|
| 604 | - $sth = $Connection->db->prepare($query); |
|
| 605 | - $sth->execute(); |
|
| 606 | - } catch(PDOException $e) { |
|
| 607 | - return "error (update stats) : ".$e->getMessage()."\n"; |
|
| 608 | - } |
|
| 609 | - } |
|
| 600 | + // Modify stats_airport table |
|
| 601 | + if (!$Connection->checkColumnName('stats_airport','airport_name')) { |
|
| 602 | + $query = "ALTER TABLE `stats_airport` ADD `stats_type` VARCHAR(50) NOT NULL DEFAULT 'yearly', ADD `airport_name` VARCHAR(255) NOT NULL, ADD `date` DATE NULL DEFAULT NULL, DROP INDEX `airport_icao`, ADD UNIQUE `airport_icao` (`airport_icao`, `type`, `date`)"; |
|
| 603 | + try { |
|
| 604 | + $sth = $Connection->db->prepare($query); |
|
| 605 | + $sth->execute(); |
|
| 606 | + } catch(PDOException $e) { |
|
| 607 | + return "error (update stats) : ".$e->getMessage()."\n"; |
|
| 608 | + } |
|
| 609 | + } |
|
| 610 | 610 | if ($error != '') return $error; |
| 611 | 611 | $query = "UPDATE `config` SET `value` = '19' WHERE `name` = 'schema_version'"; |
| 612 | - try { |
|
| 613 | - $sth = $Connection->db->prepare($query); |
|
| 614 | - $sth->execute(); |
|
| 615 | - } catch(PDOException $e) { |
|
| 616 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 617 | - } |
|
| 612 | + try { |
|
| 613 | + $sth = $Connection->db->prepare($query); |
|
| 614 | + $sth->execute(); |
|
| 615 | + } catch(PDOException $e) { |
|
| 616 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 617 | + } |
|
| 618 | 618 | return $error; |
| 619 | 619 | } |
| 620 | 620 | |
| 621 | 621 | private static function update_from_19() { |
| 622 | - $Connection = new Connection(); |
|
| 622 | + $Connection = new Connection(); |
|
| 623 | 623 | $error = ''; |
| 624 | - // Update airport table |
|
| 624 | + // Update airport table |
|
| 625 | 625 | $error .= create_db::import_file('../db/airport.sql'); |
| 626 | 626 | if ($error != '') return 'Import airport.sql : '.$error; |
| 627 | 627 | // Remove primary key on Spotter_Archive |
| 628 | 628 | $query = "alter table spotter_archive drop spotter_archive_id"; |
| 629 | - try { |
|
| 630 | - $sth = $Connection->db->prepare($query); |
|
| 631 | - $sth->execute(); |
|
| 632 | - } catch(PDOException $e) { |
|
| 633 | - return "error (remove primary key on spotter_archive) : ".$e->getMessage()."\n"; |
|
| 634 | - } |
|
| 629 | + try { |
|
| 630 | + $sth = $Connection->db->prepare($query); |
|
| 631 | + $sth->execute(); |
|
| 632 | + } catch(PDOException $e) { |
|
| 633 | + return "error (remove primary key on spotter_archive) : ".$e->getMessage()."\n"; |
|
| 634 | + } |
|
| 635 | 635 | $query = "alter table spotter_archive add spotter_archive_id INT(11)"; |
| 636 | - try { |
|
| 637 | - $sth = $Connection->db->prepare($query); |
|
| 638 | - $sth->execute(); |
|
| 639 | - } catch(PDOException $e) { |
|
| 640 | - return "error (add id again on spotter_archive) : ".$e->getMessage()."\n"; |
|
| 641 | - } |
|
| 636 | + try { |
|
| 637 | + $sth = $Connection->db->prepare($query); |
|
| 638 | + $sth->execute(); |
|
| 639 | + } catch(PDOException $e) { |
|
| 640 | + return "error (add id again on spotter_archive) : ".$e->getMessage()."\n"; |
|
| 641 | + } |
|
| 642 | 642 | if (!$Connection->checkColumnName('spotter_archive','over_country')) { |
| 643 | 643 | // Add column over_country |
| 644 | - $query = "ALTER TABLE `spotter_archive` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
|
| 644 | + $query = "ALTER TABLE `spotter_archive` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
|
| 645 | 645 | try { |
| 646 | - $sth = $Connection->db->prepare($query); |
|
| 646 | + $sth = $Connection->db->prepare($query); |
|
| 647 | 647 | $sth->execute(); |
| 648 | 648 | } catch(PDOException $e) { |
| 649 | 649 | return "error (add over_country) : ".$e->getMessage()."\n"; |
@@ -651,9 +651,9 @@ discard block |
||
| 651 | 651 | } |
| 652 | 652 | if (!$Connection->checkColumnName('spotter_live','over_country')) { |
| 653 | 653 | // Add column over_country |
| 654 | - $query = "ALTER TABLE `spotter_live` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
|
| 654 | + $query = "ALTER TABLE `spotter_live` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
|
| 655 | 655 | try { |
| 656 | - $sth = $Connection->db->prepare($query); |
|
| 656 | + $sth = $Connection->db->prepare($query); |
|
| 657 | 657 | $sth->execute(); |
| 658 | 658 | } catch(PDOException $e) { |
| 659 | 659 | return "error (add over_country) : ".$e->getMessage()."\n"; |
@@ -661,74 +661,74 @@ discard block |
||
| 661 | 661 | } |
| 662 | 662 | if (!$Connection->checkColumnName('spotter_output','source_name')) { |
| 663 | 663 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
| 664 | - $query = "ALTER TABLE `spotter_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
| 664 | + $query = "ALTER TABLE `spotter_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
| 665 | 665 | try { |
| 666 | 666 | $sth = $Connection->db->prepare($query); |
| 667 | 667 | $sth->execute(); |
| 668 | 668 | } catch(PDOException $e) { |
| 669 | 669 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
| 670 | - } |
|
| 671 | - } |
|
| 670 | + } |
|
| 671 | + } |
|
| 672 | 672 | if (!$Connection->checkColumnName('spotter_live','source_name')) { |
| 673 | 673 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
| 674 | - $query = "ALTER TABLE `spotter_live` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
| 674 | + $query = "ALTER TABLE `spotter_live` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
| 675 | 675 | try { |
| 676 | 676 | $sth = $Connection->db->prepare($query); |
| 677 | 677 | $sth->execute(); |
| 678 | 678 | } catch(PDOException $e) { |
| 679 | 679 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
| 680 | - } |
|
| 681 | - } |
|
| 680 | + } |
|
| 681 | + } |
|
| 682 | 682 | if (!$Connection->checkColumnName('spotter_archive_output','source_name')) { |
| 683 | 683 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
| 684 | - $query = "ALTER TABLE `spotter_archive_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
| 684 | + $query = "ALTER TABLE `spotter_archive_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
|
| 685 | 685 | try { |
| 686 | 686 | $sth = $Connection->db->prepare($query); |
| 687 | 687 | $sth->execute(); |
| 688 | 688 | } catch(PDOException $e) { |
| 689 | 689 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
| 690 | - } |
|
| 691 | - } |
|
| 690 | + } |
|
| 691 | + } |
|
| 692 | 692 | if (!$Connection->checkColumnName('spotter_archive','source_name')) { |
| 693 | 693 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
| 694 | - $query = "ALTER TABLE `spotter_archive` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`;"; |
|
| 694 | + $query = "ALTER TABLE `spotter_archive` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`;"; |
|
| 695 | 695 | try { |
| 696 | 696 | $sth = $Connection->db->prepare($query); |
| 697 | 697 | $sth->execute(); |
| 698 | 698 | } catch(PDOException $e) { |
| 699 | 699 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
| 700 | - } |
|
| 701 | - } |
|
| 700 | + } |
|
| 701 | + } |
|
| 702 | 702 | if ($error != '') return $error; |
| 703 | 703 | $query = "UPDATE `config` SET `value` = '20' WHERE `name` = 'schema_version'"; |
| 704 | - try { |
|
| 705 | - $sth = $Connection->db->prepare($query); |
|
| 706 | - $sth->execute(); |
|
| 707 | - } catch(PDOException $e) { |
|
| 708 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 709 | - } |
|
| 704 | + try { |
|
| 705 | + $sth = $Connection->db->prepare($query); |
|
| 706 | + $sth->execute(); |
|
| 707 | + } catch(PDOException $e) { |
|
| 708 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 709 | + } |
|
| 710 | 710 | return $error; |
| 711 | 711 | } |
| 712 | 712 | |
| 713 | 713 | private static function update_from_20() { |
| 714 | 714 | global $globalIVAO, $globalVATSIM, $globalphpVMS; |
| 715 | - $Connection = new Connection(); |
|
| 715 | + $Connection = new Connection(); |
|
| 716 | 716 | $error = ''; |
| 717 | - // Update airline table |
|
| 718 | - if (!$globalIVAO && !$globalVATSIM && !$globalphpVMS) { |
|
| 717 | + // Update airline table |
|
| 718 | + if (!$globalIVAO && !$globalVATSIM && !$globalphpVMS) { |
|
| 719 | 719 | $error .= create_db::import_file('../db/airlines.sql'); |
| 720 | 720 | if ($error != '') return 'Import airlines.sql : '.$error; |
| 721 | 721 | } |
| 722 | 722 | if (!$Connection->checkColumnName('aircraft_modes','type_flight')) { |
| 723 | 723 | // Add column over_country |
| 724 | - $query = "ALTER TABLE `aircraft_modes` ADD `type_flight` VARCHAR(50) NULL DEFAULT NULL;"; |
|
| 725 | - try { |
|
| 724 | + $query = "ALTER TABLE `aircraft_modes` ADD `type_flight` VARCHAR(50) NULL DEFAULT NULL;"; |
|
| 725 | + try { |
|
| 726 | 726 | $sth = $Connection->db->prepare($query); |
| 727 | 727 | $sth->execute(); |
| 728 | 728 | } catch(PDOException $e) { |
| 729 | 729 | return "error (add over_country) : ".$e->getMessage()."\n"; |
| 730 | - } |
|
| 731 | - } |
|
| 730 | + } |
|
| 731 | + } |
|
| 732 | 732 | if ($error != '') return $error; |
| 733 | 733 | /* |
| 734 | 734 | if (!$globalIVAO && !$globalVATSIM && !$globalphpVMS) { |
@@ -738,12 +738,12 @@ discard block |
||
| 738 | 738 | } |
| 739 | 739 | */ |
| 740 | 740 | $query = "UPDATE `config` SET `value` = '21' WHERE `name` = 'schema_version'"; |
| 741 | - try { |
|
| 742 | - $sth = $Connection->db->prepare($query); |
|
| 743 | - $sth->execute(); |
|
| 744 | - } catch(PDOException $e) { |
|
| 745 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 746 | - } |
|
| 741 | + try { |
|
| 742 | + $sth = $Connection->db->prepare($query); |
|
| 743 | + $sth->execute(); |
|
| 744 | + } catch(PDOException $e) { |
|
| 745 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 746 | + } |
|
| 747 | 747 | return $error; |
| 748 | 748 | } |
| 749 | 749 | |
@@ -762,35 +762,35 @@ discard block |
||
| 762 | 762 | if ($error != '') return $error; |
| 763 | 763 | } |
| 764 | 764 | $query = "UPDATE `config` SET `value` = '22' WHERE `name` = 'schema_version'"; |
| 765 | - try { |
|
| 766 | - $sth = $Connection->db->prepare($query); |
|
| 767 | - $sth->execute(); |
|
| 768 | - } catch(PDOException $e) { |
|
| 769 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 770 | - } |
|
| 765 | + try { |
|
| 766 | + $sth = $Connection->db->prepare($query); |
|
| 767 | + $sth->execute(); |
|
| 768 | + } catch(PDOException $e) { |
|
| 769 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 770 | + } |
|
| 771 | 771 | return $error; |
| 772 | 772 | } |
| 773 | 773 | |
| 774 | 774 | private static function update_from_22() { |
| 775 | 775 | global $globalDBdriver; |
| 776 | - $Connection = new Connection(); |
|
| 776 | + $Connection = new Connection(); |
|
| 777 | 777 | $error = ''; |
| 778 | 778 | // Add table stats polar |
| 779 | - if (!$Connection->tableExists('stats_source')) { |
|
| 779 | + if (!$Connection->tableExists('stats_source')) { |
|
| 780 | 780 | if ($globalDBdriver == 'mysql') { |
| 781 | - $error .= create_db::import_file('../db/stats_source.sql'); |
|
| 781 | + $error .= create_db::import_file('../db/stats_source.sql'); |
|
| 782 | 782 | } else { |
| 783 | 783 | $error .= create_db::import_file('../db/pgsql/stats_source.sql'); |
| 784 | 784 | } |
| 785 | 785 | if ($error != '') return $error; |
| 786 | 786 | } |
| 787 | 787 | $query = "UPDATE config SET value = '23' WHERE name = 'schema_version'"; |
| 788 | - try { |
|
| 789 | - $sth = $Connection->db->prepare($query); |
|
| 790 | - $sth->execute(); |
|
| 791 | - } catch(PDOException $e) { |
|
| 792 | - return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 793 | - } |
|
| 788 | + try { |
|
| 789 | + $sth = $Connection->db->prepare($query); |
|
| 790 | + $sth->execute(); |
|
| 791 | + } catch(PDOException $e) { |
|
| 792 | + return "error (update schema_version) : ".$e->getMessage()."\n"; |
|
| 793 | + } |
|
| 794 | 794 | return $error; |
| 795 | 795 | } |
| 796 | 796 | |
@@ -821,14 +821,14 @@ discard block |
||
| 821 | 821 | } |
| 822 | 822 | if (!$Connection->checkColumnName('stats_aircraft','aircraft_manufacturer')) { |
| 823 | 823 | // Add aircraft_manufacturer to stats_aircraft |
| 824 | - $query = "ALTER TABLE stats_aircraft ADD aircraft_manufacturer VARCHAR(255) NULL"; |
|
| 824 | + $query = "ALTER TABLE stats_aircraft ADD aircraft_manufacturer VARCHAR(255) NULL"; |
|
| 825 | 825 | try { |
| 826 | 826 | $sth = $Connection->db->prepare($query); |
| 827 | 827 | $sth->execute(); |
| 828 | 828 | } catch(PDOException $e) { |
| 829 | 829 | return "error (add aircraft_manufacturer column) : ".$e->getMessage()."\n"; |
| 830 | - } |
|
| 831 | - } |
|
| 830 | + } |
|
| 831 | + } |
|
| 832 | 832 | |
| 833 | 833 | $query = "UPDATE config SET value = '24' WHERE name = 'schema_version'"; |
| 834 | 834 | try { |
@@ -1176,7 +1176,7 @@ discard block |
||
| 1176 | 1176 | } catch(PDOException $e) { |
| 1177 | 1177 | return "error (add index latitude,longitude on spotter_live) : ".$e->getMessage()."\n"; |
| 1178 | 1178 | } |
| 1179 | - } |
|
| 1179 | + } |
|
| 1180 | 1180 | if (!$Connection->checkColumnName('aircraft','mfr')) { |
| 1181 | 1181 | // Add mfr to aircraft |
| 1182 | 1182 | $query = "ALTER TABLE aircraft ADD mfr VARCHAR(255) NULL"; |
@@ -1250,7 +1250,7 @@ discard block |
||
| 1250 | 1250 | } catch(PDOException $e) { |
| 1251 | 1251 | return "error (add index ref on notam) : ".$e->getMessage()."\n"; |
| 1252 | 1252 | } |
| 1253 | - } |
|
| 1253 | + } |
|
| 1254 | 1254 | if (!$Connection->indexExists('accidents','registration_idx')) { |
| 1255 | 1255 | // Add index key |
| 1256 | 1256 | $query = "create index registration_idx on accidents (registration)"; |
@@ -1260,7 +1260,7 @@ discard block |
||
| 1260 | 1260 | } catch(PDOException $e) { |
| 1261 | 1261 | return "error (add index registration on accidents) : ".$e->getMessage()."\n"; |
| 1262 | 1262 | } |
| 1263 | - } |
|
| 1263 | + } |
|
| 1264 | 1264 | if (!$Connection->indexExists('accidents','rdts')) { |
| 1265 | 1265 | // Add index key |
| 1266 | 1266 | $query = "create index rdts on accidents (registration,date,type,source)"; |
@@ -1270,7 +1270,7 @@ discard block |
||
| 1270 | 1270 | } catch(PDOException $e) { |
| 1271 | 1271 | return "error (add index registration, date, type & source on accidents) : ".$e->getMessage()."\n"; |
| 1272 | 1272 | } |
| 1273 | - } |
|
| 1273 | + } |
|
| 1274 | 1274 | |
| 1275 | 1275 | $query = "UPDATE config SET value = '31' WHERE name = 'schema_version'"; |
| 1276 | 1276 | try { |
@@ -1562,7 +1562,7 @@ discard block |
||
| 1562 | 1562 | } catch(PDOException $e) { |
| 1563 | 1563 | return "error (add index type on accidents) : ".$e->getMessage()."\n"; |
| 1564 | 1564 | } |
| 1565 | - } |
|
| 1565 | + } |
|
| 1566 | 1566 | $query = "UPDATE config SET value = '36' WHERE name = 'schema_version'"; |
| 1567 | 1567 | try { |
| 1568 | 1568 | $sth = $Connection->db->prepare($query); |
@@ -1700,7 +1700,7 @@ discard block |
||
| 1700 | 1700 | } catch(PDOException $e) { |
| 1701 | 1701 | return "error (add index flightaware_id, datee on spotter_archive) : ".$e->getMessage()."\n"; |
| 1702 | 1702 | } |
| 1703 | - } |
|
| 1703 | + } |
|
| 1704 | 1704 | $query = "UPDATE config SET value = '38' WHERE name = 'schema_version'"; |
| 1705 | 1705 | try { |
| 1706 | 1706 | $sth = $Connection->db->prepare($query); |
@@ -1712,177 +1712,177 @@ discard block |
||
| 1712 | 1712 | } |
| 1713 | 1713 | |
| 1714 | 1714 | |
| 1715 | - public static function check_version($update = false) { |
|
| 1716 | - global $globalDBname; |
|
| 1717 | - $version = 0; |
|
| 1718 | - $Connection = new Connection(); |
|
| 1719 | - if ($Connection->tableExists('aircraft')) { |
|
| 1720 | - if (!$Connection->tableExists('config')) { |
|
| 1721 | - $version = '1'; |
|
| 1722 | - if ($update) return self::update_from_1(); |
|
| 1723 | - else return $version; |
|
| 1715 | + public static function check_version($update = false) { |
|
| 1716 | + global $globalDBname; |
|
| 1717 | + $version = 0; |
|
| 1718 | + $Connection = new Connection(); |
|
| 1719 | + if ($Connection->tableExists('aircraft')) { |
|
| 1720 | + if (!$Connection->tableExists('config')) { |
|
| 1721 | + $version = '1'; |
|
| 1722 | + if ($update) return self::update_from_1(); |
|
| 1723 | + else return $version; |
|
| 1724 | 1724 | } else { |
| 1725 | - $Connection = new Connection(); |
|
| 1726 | - $query = "SELECT value FROM config WHERE name = 'schema_version' LIMIT 1"; |
|
| 1727 | - try { |
|
| 1728 | - $sth = $Connection->db->prepare($query); |
|
| 1729 | - $sth->execute(); |
|
| 1730 | - } catch(PDOException $e) { |
|
| 1725 | + $Connection = new Connection(); |
|
| 1726 | + $query = "SELECT value FROM config WHERE name = 'schema_version' LIMIT 1"; |
|
| 1727 | + try { |
|
| 1728 | + $sth = $Connection->db->prepare($query); |
|
| 1729 | + $sth->execute(); |
|
| 1730 | + } catch(PDOException $e) { |
|
| 1731 | 1731 | return "error : ".$e->getMessage()."\n"; |
| 1732 | - } |
|
| 1733 | - $result = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 1734 | - if ($update) { |
|
| 1735 | - if ($result['value'] == '2') { |
|
| 1736 | - $error = self::update_from_2(); |
|
| 1737 | - if ($error != '') return $error; |
|
| 1738 | - else return self::check_version(true); |
|
| 1739 | - } elseif ($result['value'] == '3') { |
|
| 1740 | - $error = self::update_from_3(); |
|
| 1741 | - if ($error != '') return $error; |
|
| 1742 | - else return self::check_version(true); |
|
| 1743 | - } elseif ($result['value'] == '4') { |
|
| 1744 | - $error = self::update_from_4(); |
|
| 1745 | - if ($error != '') return $error; |
|
| 1746 | - else return self::check_version(true); |
|
| 1747 | - } elseif ($result['value'] == '5') { |
|
| 1748 | - $error = self::update_from_5(); |
|
| 1749 | - if ($error != '') return $error; |
|
| 1750 | - else return self::check_version(true); |
|
| 1751 | - } elseif ($result['value'] == '6') { |
|
| 1752 | - $error = self::update_from_6(); |
|
| 1753 | - if ($error != '') return $error; |
|
| 1754 | - else return self::check_version(true); |
|
| 1755 | - } elseif ($result['value'] == '7') { |
|
| 1756 | - $error = self::update_from_7(); |
|
| 1757 | - if ($error != '') return $error; |
|
| 1758 | - else return self::check_version(true); |
|
| 1759 | - } elseif ($result['value'] == '8') { |
|
| 1760 | - $error = self::update_from_8(); |
|
| 1761 | - if ($error != '') return $error; |
|
| 1762 | - else return self::check_version(true); |
|
| 1763 | - } elseif ($result['value'] == '9') { |
|
| 1764 | - $error = self::update_from_9(); |
|
| 1765 | - if ($error != '') return $error; |
|
| 1766 | - else return self::check_version(true); |
|
| 1767 | - } elseif ($result['value'] == '10') { |
|
| 1768 | - $error = self::update_from_10(); |
|
| 1769 | - if ($error != '') return $error; |
|
| 1770 | - else return self::check_version(true); |
|
| 1771 | - } elseif ($result['value'] == '11') { |
|
| 1772 | - $error = self::update_from_11(); |
|
| 1773 | - if ($error != '') return $error; |
|
| 1774 | - else return self::check_version(true); |
|
| 1775 | - } elseif ($result['value'] == '12') { |
|
| 1776 | - $error = self::update_from_12(); |
|
| 1777 | - if ($error != '') return $error; |
|
| 1778 | - else return self::check_version(true); |
|
| 1779 | - } elseif ($result['value'] == '13') { |
|
| 1780 | - $error = self::update_from_13(); |
|
| 1781 | - if ($error != '') return $error; |
|
| 1782 | - else return self::check_version(true); |
|
| 1783 | - } elseif ($result['value'] == '14') { |
|
| 1784 | - $error = self::update_from_14(); |
|
| 1785 | - if ($error != '') return $error; |
|
| 1786 | - else return self::check_version(true); |
|
| 1787 | - } elseif ($result['value'] == '15') { |
|
| 1788 | - $error = self::update_from_15(); |
|
| 1789 | - if ($error != '') return $error; |
|
| 1790 | - else return self::check_version(true); |
|
| 1791 | - } elseif ($result['value'] == '16') { |
|
| 1792 | - $error = self::update_from_16(); |
|
| 1793 | - if ($error != '') return $error; |
|
| 1794 | - else return self::check_version(true); |
|
| 1795 | - } elseif ($result['value'] == '17') { |
|
| 1796 | - $error = self::update_from_17(); |
|
| 1797 | - if ($error != '') return $error; |
|
| 1798 | - else return self::check_version(true); |
|
| 1799 | - } elseif ($result['value'] == '18') { |
|
| 1800 | - $error = self::update_from_18(); |
|
| 1801 | - if ($error != '') return $error; |
|
| 1802 | - else return self::check_version(true); |
|
| 1803 | - } elseif ($result['value'] == '19') { |
|
| 1804 | - $error = self::update_from_19(); |
|
| 1805 | - if ($error != '') return $error; |
|
| 1806 | - else return self::check_version(true); |
|
| 1807 | - } elseif ($result['value'] == '20') { |
|
| 1808 | - $error = self::update_from_20(); |
|
| 1809 | - if ($error != '') return $error; |
|
| 1810 | - else return self::check_version(true); |
|
| 1811 | - } elseif ($result['value'] == '21') { |
|
| 1812 | - $error = self::update_from_21(); |
|
| 1813 | - if ($error != '') return $error; |
|
| 1814 | - else return self::check_version(true); |
|
| 1815 | - } elseif ($result['value'] == '22') { |
|
| 1816 | - $error = self::update_from_22(); |
|
| 1817 | - if ($error != '') return $error; |
|
| 1818 | - else return self::check_version(true); |
|
| 1819 | - } elseif ($result['value'] == '23') { |
|
| 1820 | - $error = self::update_from_23(); |
|
| 1821 | - if ($error != '') return $error; |
|
| 1822 | - else return self::check_version(true); |
|
| 1823 | - } elseif ($result['value'] == '24') { |
|
| 1824 | - $error = self::update_from_24(); |
|
| 1825 | - if ($error != '') return $error; |
|
| 1826 | - else return self::check_version(true); |
|
| 1827 | - } elseif ($result['value'] == '25') { |
|
| 1828 | - $error = self::update_from_25(); |
|
| 1829 | - if ($error != '') return $error; |
|
| 1830 | - else return self::check_version(true); |
|
| 1831 | - } elseif ($result['value'] == '26') { |
|
| 1832 | - $error = self::update_from_26(); |
|
| 1833 | - if ($error != '') return $error; |
|
| 1834 | - else return self::check_version(true); |
|
| 1835 | - } elseif ($result['value'] == '27') { |
|
| 1836 | - $error = self::update_from_27(); |
|
| 1837 | - if ($error != '') return $error; |
|
| 1838 | - else return self::check_version(true); |
|
| 1839 | - } elseif ($result['value'] == '28') { |
|
| 1840 | - $error = self::update_from_28(); |
|
| 1841 | - if ($error != '') return $error; |
|
| 1842 | - else return self::check_version(true); |
|
| 1843 | - } elseif ($result['value'] == '29') { |
|
| 1844 | - $error = self::update_from_29(); |
|
| 1845 | - if ($error != '') return $error; |
|
| 1846 | - else return self::check_version(true); |
|
| 1847 | - } elseif ($result['value'] == '30') { |
|
| 1848 | - $error = self::update_from_30(); |
|
| 1849 | - if ($error != '') return $error; |
|
| 1850 | - else return self::check_version(true); |
|
| 1851 | - } elseif ($result['value'] == '31') { |
|
| 1852 | - $error = self::update_from_31(); |
|
| 1853 | - if ($error != '') return $error; |
|
| 1854 | - else return self::check_version(true); |
|
| 1855 | - } elseif ($result['value'] == '32') { |
|
| 1856 | - $error = self::update_from_32(); |
|
| 1857 | - if ($error != '') return $error; |
|
| 1858 | - else return self::check_version(true); |
|
| 1859 | - } elseif ($result['value'] == '33') { |
|
| 1860 | - $error = self::update_from_33(); |
|
| 1861 | - if ($error != '') return $error; |
|
| 1862 | - else return self::check_version(true); |
|
| 1863 | - } elseif ($result['value'] == '34') { |
|
| 1864 | - $error = self::update_from_34(); |
|
| 1865 | - if ($error != '') return $error; |
|
| 1866 | - else return self::check_version(true); |
|
| 1867 | - } elseif ($result['value'] == '35') { |
|
| 1868 | - $error = self::update_from_35(); |
|
| 1869 | - if ($error != '') return $error; |
|
| 1870 | - else return self::check_version(true); |
|
| 1871 | - } elseif ($result['value'] == '36') { |
|
| 1872 | - $error = self::update_from_36(); |
|
| 1873 | - if ($error != '') return $error; |
|
| 1874 | - else return self::check_version(true); |
|
| 1875 | - } elseif ($result['value'] == '37') { |
|
| 1876 | - $error = self::update_from_37(); |
|
| 1877 | - if ($error != '') return $error; |
|
| 1878 | - else return self::check_version(true); |
|
| 1879 | - } else return ''; |
|
| 1880 | - } |
|
| 1881 | - else return $result['value']; |
|
| 1732 | + } |
|
| 1733 | + $result = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 1734 | + if ($update) { |
|
| 1735 | + if ($result['value'] == '2') { |
|
| 1736 | + $error = self::update_from_2(); |
|
| 1737 | + if ($error != '') return $error; |
|
| 1738 | + else return self::check_version(true); |
|
| 1739 | + } elseif ($result['value'] == '3') { |
|
| 1740 | + $error = self::update_from_3(); |
|
| 1741 | + if ($error != '') return $error; |
|
| 1742 | + else return self::check_version(true); |
|
| 1743 | + } elseif ($result['value'] == '4') { |
|
| 1744 | + $error = self::update_from_4(); |
|
| 1745 | + if ($error != '') return $error; |
|
| 1746 | + else return self::check_version(true); |
|
| 1747 | + } elseif ($result['value'] == '5') { |
|
| 1748 | + $error = self::update_from_5(); |
|
| 1749 | + if ($error != '') return $error; |
|
| 1750 | + else return self::check_version(true); |
|
| 1751 | + } elseif ($result['value'] == '6') { |
|
| 1752 | + $error = self::update_from_6(); |
|
| 1753 | + if ($error != '') return $error; |
|
| 1754 | + else return self::check_version(true); |
|
| 1755 | + } elseif ($result['value'] == '7') { |
|
| 1756 | + $error = self::update_from_7(); |
|
| 1757 | + if ($error != '') return $error; |
|
| 1758 | + else return self::check_version(true); |
|
| 1759 | + } elseif ($result['value'] == '8') { |
|
| 1760 | + $error = self::update_from_8(); |
|
| 1761 | + if ($error != '') return $error; |
|
| 1762 | + else return self::check_version(true); |
|
| 1763 | + } elseif ($result['value'] == '9') { |
|
| 1764 | + $error = self::update_from_9(); |
|
| 1765 | + if ($error != '') return $error; |
|
| 1766 | + else return self::check_version(true); |
|
| 1767 | + } elseif ($result['value'] == '10') { |
|
| 1768 | + $error = self::update_from_10(); |
|
| 1769 | + if ($error != '') return $error; |
|
| 1770 | + else return self::check_version(true); |
|
| 1771 | + } elseif ($result['value'] == '11') { |
|
| 1772 | + $error = self::update_from_11(); |
|
| 1773 | + if ($error != '') return $error; |
|
| 1774 | + else return self::check_version(true); |
|
| 1775 | + } elseif ($result['value'] == '12') { |
|
| 1776 | + $error = self::update_from_12(); |
|
| 1777 | + if ($error != '') return $error; |
|
| 1778 | + else return self::check_version(true); |
|
| 1779 | + } elseif ($result['value'] == '13') { |
|
| 1780 | + $error = self::update_from_13(); |
|
| 1781 | + if ($error != '') return $error; |
|
| 1782 | + else return self::check_version(true); |
|
| 1783 | + } elseif ($result['value'] == '14') { |
|
| 1784 | + $error = self::update_from_14(); |
|
| 1785 | + if ($error != '') return $error; |
|
| 1786 | + else return self::check_version(true); |
|
| 1787 | + } elseif ($result['value'] == '15') { |
|
| 1788 | + $error = self::update_from_15(); |
|
| 1789 | + if ($error != '') return $error; |
|
| 1790 | + else return self::check_version(true); |
|
| 1791 | + } elseif ($result['value'] == '16') { |
|
| 1792 | + $error = self::update_from_16(); |
|
| 1793 | + if ($error != '') return $error; |
|
| 1794 | + else return self::check_version(true); |
|
| 1795 | + } elseif ($result['value'] == '17') { |
|
| 1796 | + $error = self::update_from_17(); |
|
| 1797 | + if ($error != '') return $error; |
|
| 1798 | + else return self::check_version(true); |
|
| 1799 | + } elseif ($result['value'] == '18') { |
|
| 1800 | + $error = self::update_from_18(); |
|
| 1801 | + if ($error != '') return $error; |
|
| 1802 | + else return self::check_version(true); |
|
| 1803 | + } elseif ($result['value'] == '19') { |
|
| 1804 | + $error = self::update_from_19(); |
|
| 1805 | + if ($error != '') return $error; |
|
| 1806 | + else return self::check_version(true); |
|
| 1807 | + } elseif ($result['value'] == '20') { |
|
| 1808 | + $error = self::update_from_20(); |
|
| 1809 | + if ($error != '') return $error; |
|
| 1810 | + else return self::check_version(true); |
|
| 1811 | + } elseif ($result['value'] == '21') { |
|
| 1812 | + $error = self::update_from_21(); |
|
| 1813 | + if ($error != '') return $error; |
|
| 1814 | + else return self::check_version(true); |
|
| 1815 | + } elseif ($result['value'] == '22') { |
|
| 1816 | + $error = self::update_from_22(); |
|
| 1817 | + if ($error != '') return $error; |
|
| 1818 | + else return self::check_version(true); |
|
| 1819 | + } elseif ($result['value'] == '23') { |
|
| 1820 | + $error = self::update_from_23(); |
|
| 1821 | + if ($error != '') return $error; |
|
| 1822 | + else return self::check_version(true); |
|
| 1823 | + } elseif ($result['value'] == '24') { |
|
| 1824 | + $error = self::update_from_24(); |
|
| 1825 | + if ($error != '') return $error; |
|
| 1826 | + else return self::check_version(true); |
|
| 1827 | + } elseif ($result['value'] == '25') { |
|
| 1828 | + $error = self::update_from_25(); |
|
| 1829 | + if ($error != '') return $error; |
|
| 1830 | + else return self::check_version(true); |
|
| 1831 | + } elseif ($result['value'] == '26') { |
|
| 1832 | + $error = self::update_from_26(); |
|
| 1833 | + if ($error != '') return $error; |
|
| 1834 | + else return self::check_version(true); |
|
| 1835 | + } elseif ($result['value'] == '27') { |
|
| 1836 | + $error = self::update_from_27(); |
|
| 1837 | + if ($error != '') return $error; |
|
| 1838 | + else return self::check_version(true); |
|
| 1839 | + } elseif ($result['value'] == '28') { |
|
| 1840 | + $error = self::update_from_28(); |
|
| 1841 | + if ($error != '') return $error; |
|
| 1842 | + else return self::check_version(true); |
|
| 1843 | + } elseif ($result['value'] == '29') { |
|
| 1844 | + $error = self::update_from_29(); |
|
| 1845 | + if ($error != '') return $error; |
|
| 1846 | + else return self::check_version(true); |
|
| 1847 | + } elseif ($result['value'] == '30') { |
|
| 1848 | + $error = self::update_from_30(); |
|
| 1849 | + if ($error != '') return $error; |
|
| 1850 | + else return self::check_version(true); |
|
| 1851 | + } elseif ($result['value'] == '31') { |
|
| 1852 | + $error = self::update_from_31(); |
|
| 1853 | + if ($error != '') return $error; |
|
| 1854 | + else return self::check_version(true); |
|
| 1855 | + } elseif ($result['value'] == '32') { |
|
| 1856 | + $error = self::update_from_32(); |
|
| 1857 | + if ($error != '') return $error; |
|
| 1858 | + else return self::check_version(true); |
|
| 1859 | + } elseif ($result['value'] == '33') { |
|
| 1860 | + $error = self::update_from_33(); |
|
| 1861 | + if ($error != '') return $error; |
|
| 1862 | + else return self::check_version(true); |
|
| 1863 | + } elseif ($result['value'] == '34') { |
|
| 1864 | + $error = self::update_from_34(); |
|
| 1865 | + if ($error != '') return $error; |
|
| 1866 | + else return self::check_version(true); |
|
| 1867 | + } elseif ($result['value'] == '35') { |
|
| 1868 | + $error = self::update_from_35(); |
|
| 1869 | + if ($error != '') return $error; |
|
| 1870 | + else return self::check_version(true); |
|
| 1871 | + } elseif ($result['value'] == '36') { |
|
| 1872 | + $error = self::update_from_36(); |
|
| 1873 | + if ($error != '') return $error; |
|
| 1874 | + else return self::check_version(true); |
|
| 1875 | + } elseif ($result['value'] == '37') { |
|
| 1876 | + $error = self::update_from_37(); |
|
| 1877 | + if ($error != '') return $error; |
|
| 1878 | + else return self::check_version(true); |
|
| 1879 | + } else return ''; |
|
| 1880 | + } |
|
| 1881 | + else return $result['value']; |
|
| 1882 | 1882 | } |
| 1883 | 1883 | |
| 1884 | - } else return $version; |
|
| 1885 | - } |
|
| 1884 | + } else return $version; |
|
| 1885 | + } |
|
| 1886 | 1886 | |
| 1887 | 1887 | } |
| 1888 | 1888 | //echo update_schema::check_version(); |
@@ -14,11 +14,11 @@ discard block |
||
| 14 | 14 | try { |
| 15 | 15 | $sth = $Connection->db->prepare($query); |
| 16 | 16 | $sth->execute(); |
| 17 | - } catch(PDOException $e) { |
|
| 17 | + } catch (PDOException $e) { |
|
| 18 | 18 | return "error : ".$e->getMessage()."\n"; |
| 19 | 19 | } |
| 20 | 20 | while ($row = $sth->fetch(PDO::FETCH_ASSOC)) { |
| 21 | - $Schedule->addSchedule($row['ident'],$row['departure_airport_icao'],$row['departure_airport_time'],$row['arrival_airport_icao'],$row['arrival_airport_time']); |
|
| 21 | + $Schedule->addSchedule($row['ident'], $row['departure_airport_icao'], $row['departure_airport_time'], $row['arrival_airport_icao'], $row['arrival_airport_time']); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | } |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | try { |
| 51 | 51 | $sth = $Connection->db->prepare($query); |
| 52 | 52 | $sth->execute(); |
| 53 | - } catch(PDOException $e) { |
|
| 53 | + } catch (PDOException $e) { |
|
| 54 | 54 | return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
| 55 | 55 | } |
| 56 | 56 | // Copy schedules data to routes table |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | try { |
| 61 | 61 | $sth = $Connection->db->prepare($query); |
| 62 | 62 | $sth->execute(); |
| 63 | - } catch(PDOException $e) { |
|
| 63 | + } catch (PDOException $e) { |
|
| 64 | 64 | return "error (delete schedule table) : ".$e->getMessage()."\n"; |
| 65 | 65 | } |
| 66 | 66 | // Add source column |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | try { |
| 69 | 69 | $sth = $Connection->db->prepare($query); |
| 70 | 70 | $sth->execute(); |
| 71 | - } catch(PDOException $e) { |
|
| 71 | + } catch (PDOException $e) { |
|
| 72 | 72 | return "error (add source column to aircraft_modes) : ".$e->getMessage()."\n"; |
| 73 | 73 | } |
| 74 | 74 | // Delete unused column |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | try { |
| 77 | 77 | $sth = $Connection->db->prepare($query); |
| 78 | 78 | $sth->execute(); |
| 79 | - } catch(PDOException $e) { |
|
| 79 | + } catch (PDOException $e) { |
|
| 80 | 80 | return "error (Delete unused column of aircraft_modes) : ".$e->getMessage()."\n"; |
| 81 | 81 | } |
| 82 | 82 | // Add ModeS column |
@@ -84,14 +84,14 @@ discard block |
||
| 84 | 84 | try { |
| 85 | 85 | $sth = $Connection->db->prepare($query); |
| 86 | 86 | $sth->execute(); |
| 87 | - } catch(PDOException $e) { |
|
| 87 | + } catch (PDOException $e) { |
|
| 88 | 88 | return "error (Add ModeS column in spotter_output) : ".$e->getMessage()."\n"; |
| 89 | 89 | } |
| 90 | 90 | $query = "ALTER TABLE `spotter_live` ADD `ModeS` VARCHAR(255)"; |
| 91 | 91 | try { |
| 92 | 92 | $sth = $Connection->db->prepare($query); |
| 93 | 93 | $sth->execute(); |
| 94 | - } catch(PDOException $e) { |
|
| 94 | + } catch (PDOException $e) { |
|
| 95 | 95 | return "error (Add ModeS column in spotter_live) : ".$e->getMessage()."\n"; |
| 96 | 96 | } |
| 97 | 97 | // Add auto_increment for aircraft_modes |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | try { |
| 100 | 100 | $sth = $Connection->db->prepare($query); |
| 101 | 101 | $sth->execute(); |
| 102 | - } catch(PDOException $e) { |
|
| 102 | + } catch (PDOException $e) { |
|
| 103 | 103 | return "error (Add Auto increment in aircraft_modes) : ".$e->getMessage()."\n"; |
| 104 | 104 | } |
| 105 | 105 | $error = ''; |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | try { |
| 111 | 111 | $sth = $Connection->db->prepare($query); |
| 112 | 112 | $sth->execute(); |
| 113 | - } catch(PDOException $e) { |
|
| 113 | + } catch (PDOException $e) { |
|
| 114 | 114 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 115 | 115 | } |
| 116 | 116 | return $error; |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | try { |
| 124 | 124 | $sth = $Connection->db->prepare($query); |
| 125 | 125 | $sth->execute(); |
| 126 | - } catch(PDOException $e) { |
|
| 126 | + } catch (PDOException $e) { |
|
| 127 | 127 | return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
| 128 | 128 | } |
| 129 | 129 | $error = ''; |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | try { |
| 135 | 135 | $sth = $Connection->db->prepare($query); |
| 136 | 136 | $sth->execute(); |
| 137 | - } catch(PDOException $e) { |
|
| 137 | + } catch (PDOException $e) { |
|
| 138 | 138 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 139 | 139 | } |
| 140 | 140 | return $error; |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | try { |
| 148 | 148 | $sth = $Connection->db->prepare($query); |
| 149 | 149 | $sth->execute(); |
| 150 | - } catch(PDOException $e) { |
|
| 150 | + } catch (PDOException $e) { |
|
| 151 | 151 | return "error (add new columns to aircraft_modes) : ".$e->getMessage()."\n"; |
| 152 | 152 | } |
| 153 | 153 | // Add image_source_website column to spotter_image |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | try { |
| 156 | 156 | $sth = $Connection->db->prepare($query); |
| 157 | 157 | $sth->execute(); |
| 158 | - } catch(PDOException $e) { |
|
| 158 | + } catch (PDOException $e) { |
|
| 159 | 159 | return "error (add new columns to spotter_image) : ".$e->getMessage()."\n"; |
| 160 | 160 | } |
| 161 | 161 | $error = ''; |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | try { |
| 165 | 165 | $sth = $Connection->db->prepare($query); |
| 166 | 166 | $sth->execute(); |
| 167 | - } catch(PDOException $e) { |
|
| 167 | + } catch (PDOException $e) { |
|
| 168 | 168 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 169 | 169 | } |
| 170 | 170 | return $error; |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | try { |
| 183 | 183 | $sth = $Connection->db->prepare($query); |
| 184 | 184 | $sth->execute(); |
| 185 | - } catch(PDOException $e) { |
|
| 185 | + } catch (PDOException $e) { |
|
| 186 | 186 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 187 | 187 | } |
| 188 | 188 | } |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | try { |
| 197 | 197 | $sth = $Connection->db->prepare($query); |
| 198 | 198 | $sth->execute(); |
| 199 | - } catch(PDOException $e) { |
|
| 199 | + } catch (PDOException $e) { |
|
| 200 | 200 | return "error (add new columns to translation) : ".$e->getMessage()."\n"; |
| 201 | 201 | } |
| 202 | 202 | // Add aircraft_shadow column to aircraft |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | try { |
| 205 | 205 | $sth = $Connection->db->prepare($query); |
| 206 | 206 | $sth->execute(); |
| 207 | - } catch(PDOException $e) { |
|
| 207 | + } catch (PDOException $e) { |
|
| 208 | 208 | return "error (add new column to aircraft) : ".$e->getMessage()."\n"; |
| 209 | 209 | } |
| 210 | 210 | // Add aircraft_shadow column to spotter_live |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | try { |
| 213 | 213 | $sth = $Connection->db->prepare($query); |
| 214 | 214 | $sth->execute(); |
| 215 | - } catch(PDOException $e) { |
|
| 215 | + } catch (PDOException $e) { |
|
| 216 | 216 | return "error (add new column to spotter_live) : ".$e->getMessage()."\n"; |
| 217 | 217 | } |
| 218 | 218 | $error = ''; |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | try { |
| 226 | 226 | $sth = $Connection->db->prepare($query); |
| 227 | 227 | $sth->execute(); |
| 228 | - } catch(PDOException $e) { |
|
| 228 | + } catch (PDOException $e) { |
|
| 229 | 229 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 230 | 230 | } |
| 231 | 231 | return $error; |
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | |
| 234 | 234 | private static function update_from_6() { |
| 235 | 235 | $Connection = new Connection(); |
| 236 | - if (!$Connection->indexExists('spotter_output','flightaware_id')) { |
|
| 236 | + if (!$Connection->indexExists('spotter_output', 'flightaware_id')) { |
|
| 237 | 237 | $query = "ALTER TABLE spotter_output ADD INDEX(flightaware_id); |
| 238 | 238 | ALTER TABLE spotter_output ADD INDEX(date); |
| 239 | 239 | ALTER TABLE spotter_output ADD INDEX(ident); |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | try { |
| 251 | 251 | $sth = $Connection->db->prepare($query); |
| 252 | 252 | $sth->execute(); |
| 253 | - } catch(PDOException $e) { |
|
| 253 | + } catch (PDOException $e) { |
|
| 254 | 254 | return "error (add some indexes) : ".$e->getMessage()."\n"; |
| 255 | 255 | } |
| 256 | 256 | } |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | try { |
| 266 | 266 | $sth = $Connection->db->prepare($query); |
| 267 | 267 | $sth->execute(); |
| 268 | - } catch(PDOException $e) { |
|
| 268 | + } catch (PDOException $e) { |
|
| 269 | 269 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 270 | 270 | } |
| 271 | 271 | return $error; |
@@ -274,12 +274,12 @@ discard block |
||
| 274 | 274 | private static function update_from_7() { |
| 275 | 275 | global $globalDBname, $globalDBdriver; |
| 276 | 276 | $Connection = new Connection(); |
| 277 | - $query="ALTER TABLE spotter_live ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL; |
|
| 277 | + $query = "ALTER TABLE spotter_live ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL; |
|
| 278 | 278 | ALTER TABLE spotter_output ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL;"; |
| 279 | 279 | try { |
| 280 | 280 | $sth = $Connection->db->prepare($query); |
| 281 | 281 | $sth->execute(); |
| 282 | - } catch(PDOException $e) { |
|
| 282 | + } catch (PDOException $e) { |
|
| 283 | 283 | return "error (add pilot column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
| 284 | 284 | } |
| 285 | 285 | if ($globalDBdriver == 'mysql') { |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | try { |
| 288 | 288 | $sth = $Connection->db->prepare($query); |
| 289 | 289 | $sth->execute(); |
| 290 | - } catch(PDOException $e) { |
|
| 290 | + } catch (PDOException $e) { |
|
| 291 | 291 | return "error (problem when select engine for spotter_engine) : ".$e->getMessage()."\n"; |
| 292 | 292 | } |
| 293 | 293 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -299,15 +299,15 @@ discard block |
||
| 299 | 299 | DROP TABLE spotter_archive; |
| 300 | 300 | RENAME TABLE copy TO spotter_archive;"; |
| 301 | 301 | } else { |
| 302 | - $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
| 302 | + $query = "ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
| 303 | 303 | } |
| 304 | 304 | } else { |
| 305 | - $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
| 305 | + $query = "ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
| 306 | 306 | } |
| 307 | 307 | try { |
| 308 | 308 | $sth = $Connection->db->prepare($query); |
| 309 | 309 | $sth->execute(); |
| 310 | - } catch(PDOException $e) { |
|
| 310 | + } catch (PDOException $e) { |
|
| 311 | 311 | return "error (add pilot column to spotter_archive) : ".$e->getMessage()."\n"; |
| 312 | 312 | } |
| 313 | 313 | |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | try { |
| 321 | 321 | $sth = $Connection->db->prepare($query); |
| 322 | 322 | $sth->execute(); |
| 323 | - } catch(PDOException $e) { |
|
| 323 | + } catch (PDOException $e) { |
|
| 324 | 324 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 325 | 325 | } |
| 326 | 326 | return $error; |
@@ -339,14 +339,14 @@ discard block |
||
| 339 | 339 | try { |
| 340 | 340 | $sth = $Connection->db->prepare($query); |
| 341 | 341 | $sth->execute(); |
| 342 | - } catch(PDOException $e) { |
|
| 342 | + } catch (PDOException $e) { |
|
| 343 | 343 | return "error (insert last_update values) : ".$e->getMessage()."\n"; |
| 344 | 344 | } |
| 345 | 345 | $query = "UPDATE `config` SET `value` = '9' WHERE `name` = 'schema_version'"; |
| 346 | 346 | try { |
| 347 | 347 | $sth = $Connection->db->prepare($query); |
| 348 | 348 | $sth->execute(); |
| 349 | - } catch(PDOException $e) { |
|
| 349 | + } catch (PDOException $e) { |
|
| 350 | 350 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 351 | 351 | } |
| 352 | 352 | return $error; |
@@ -354,12 +354,12 @@ discard block |
||
| 354 | 354 | |
| 355 | 355 | private static function update_from_9() { |
| 356 | 356 | $Connection = new Connection(); |
| 357 | - $query="ALTER TABLE spotter_live ADD verticalrate INT(11) NULL; |
|
| 357 | + $query = "ALTER TABLE spotter_live ADD verticalrate INT(11) NULL; |
|
| 358 | 358 | ALTER TABLE spotter_output ADD verticalrate INT(11) NULL;"; |
| 359 | 359 | try { |
| 360 | 360 | $sth = $Connection->db->prepare($query); |
| 361 | 361 | $sth->execute(); |
| 362 | - } catch(PDOException $e) { |
|
| 362 | + } catch (PDOException $e) { |
|
| 363 | 363 | return "error (add verticalrate column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
| 364 | 364 | } |
| 365 | 365 | $error = ''; |
@@ -371,7 +371,7 @@ discard block |
||
| 371 | 371 | try { |
| 372 | 372 | $sth = $Connection->db->prepare($query); |
| 373 | 373 | $sth->execute(); |
| 374 | - } catch(PDOException $e) { |
|
| 374 | + } catch (PDOException $e) { |
|
| 375 | 375 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 376 | 376 | } |
| 377 | 377 | return $error; |
@@ -379,11 +379,11 @@ discard block |
||
| 379 | 379 | |
| 380 | 380 | private static function update_from_10() { |
| 381 | 381 | $Connection = new Connection(); |
| 382 | - $query="ALTER TABLE atc CHANGE `type` `type` ENUM('Observer','Flight Information','Delivery','Tower','Approach','ACC','Departure','Ground','Flight Service Station','Control Radar or Centre') CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL"; |
|
| 382 | + $query = "ALTER TABLE atc CHANGE `type` `type` ENUM('Observer','Flight Information','Delivery','Tower','Approach','ACC','Departure','Ground','Flight Service Station','Control Radar or Centre') CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL"; |
|
| 383 | 383 | try { |
| 384 | 384 | $sth = $Connection->db->prepare($query); |
| 385 | 385 | $sth->execute(); |
| 386 | - } catch(PDOException $e) { |
|
| 386 | + } catch (PDOException $e) { |
|
| 387 | 387 | return "error (add new enum to ATC table) : ".$e->getMessage()."\n"; |
| 388 | 388 | } |
| 389 | 389 | $error = ''; |
@@ -401,7 +401,7 @@ discard block |
||
| 401 | 401 | try { |
| 402 | 402 | $sth = $Connection->db->prepare($query); |
| 403 | 403 | $sth->execute(); |
| 404 | - } catch(PDOException $e) { |
|
| 404 | + } catch (PDOException $e) { |
|
| 405 | 405 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 406 | 406 | } |
| 407 | 407 | return $error; |
@@ -410,18 +410,18 @@ discard block |
||
| 410 | 410 | private static function update_from_11() { |
| 411 | 411 | global $globalDBdriver, $globalDBname; |
| 412 | 412 | $Connection = new Connection(); |
| 413 | - $query="ALTER TABLE spotter_output ADD owner_name VARCHAR(255) NULL DEFAULT NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_seen DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, ADD last_latitude FLOAT NULL, ADD last_longitude FLOAT NULL, ADD last_altitude INT(11) NULL, ADD last_ground_speed INT(11), ADD real_arrival_airport_icao VARCHAR(999), ADD real_arrival_airport_time VARCHAR(20),ADD real_departure_airport_icao VARCHAR(999), ADD real_departure_airport_time VARCHAR(20)"; |
|
| 413 | + $query = "ALTER TABLE spotter_output ADD owner_name VARCHAR(255) NULL DEFAULT NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_seen DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, ADD last_latitude FLOAT NULL, ADD last_longitude FLOAT NULL, ADD last_altitude INT(11) NULL, ADD last_ground_speed INT(11), ADD real_arrival_airport_icao VARCHAR(999), ADD real_arrival_airport_time VARCHAR(20),ADD real_departure_airport_icao VARCHAR(999), ADD real_departure_airport_time VARCHAR(20)"; |
|
| 414 | 414 | try { |
| 415 | 415 | $sth = $Connection->db->prepare($query); |
| 416 | 416 | $sth->execute(); |
| 417 | - } catch(PDOException $e) { |
|
| 417 | + } catch (PDOException $e) { |
|
| 418 | 418 | return "error (add owner_name & format_source column to spotter_output) : ".$e->getMessage()."\n"; |
| 419 | 419 | } |
| 420 | - $query="ALTER TABLE spotter_live ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 420 | + $query = "ALTER TABLE spotter_live ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 421 | 421 | try { |
| 422 | 422 | $sth = $Connection->db->prepare($query); |
| 423 | 423 | $sth->execute(); |
| 424 | - } catch(PDOException $e) { |
|
| 424 | + } catch (PDOException $e) { |
|
| 425 | 425 | return "error (format_source column to spotter_live) : ".$e->getMessage()."\n"; |
| 426 | 426 | } |
| 427 | 427 | if ($globalDBdriver == 'mysql') { |
@@ -429,7 +429,7 @@ discard block |
||
| 429 | 429 | try { |
| 430 | 430 | $sth = $Connection->db->prepare($query); |
| 431 | 431 | $sth->execute(); |
| 432 | - } catch(PDOException $e) { |
|
| 432 | + } catch (PDOException $e) { |
|
| 433 | 433 | return "error (problem when select engine for spotter_engine) : ".$e->getMessage()."\n"; |
| 434 | 434 | } |
| 435 | 435 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -441,15 +441,15 @@ discard block |
||
| 441 | 441 | DROP TABLE spotter_archive; |
| 442 | 442 | RENAME TABLE copy TO spotter_archive;"; |
| 443 | 443 | } else { |
| 444 | - $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 444 | + $query = "ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 445 | 445 | } |
| 446 | 446 | } else { |
| 447 | - $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 447 | + $query = "ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
| 448 | 448 | } |
| 449 | 449 | try { |
| 450 | 450 | $sth = $Connection->db->prepare($query); |
| 451 | 451 | $sth->execute(); |
| 452 | - } catch(PDOException $e) { |
|
| 452 | + } catch (PDOException $e) { |
|
| 453 | 453 | return "error (add columns to spotter_archive) : ".$e->getMessage()."\n"; |
| 454 | 454 | } |
| 455 | 455 | |
@@ -459,7 +459,7 @@ discard block |
||
| 459 | 459 | try { |
| 460 | 460 | $sth = $Connection->db->prepare($query); |
| 461 | 461 | $sth->execute(); |
| 462 | - } catch(PDOException $e) { |
|
| 462 | + } catch (PDOException $e) { |
|
| 463 | 463 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 464 | 464 | } |
| 465 | 465 | return $error; |
@@ -487,7 +487,7 @@ discard block |
||
| 487 | 487 | try { |
| 488 | 488 | $sth = $Connection->db->prepare($query); |
| 489 | 489 | $sth->execute(); |
| 490 | - } catch(PDOException $e) { |
|
| 490 | + } catch (PDOException $e) { |
|
| 491 | 491 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 492 | 492 | } |
| 493 | 493 | return $error; |
@@ -495,12 +495,12 @@ discard block |
||
| 495 | 495 | |
| 496 | 496 | private static function update_from_13() { |
| 497 | 497 | $Connection = new Connection(); |
| 498 | - if (!$Connection->checkColumnName('spotter_archive_output','real_departure_airport_icao')) { |
|
| 499 | - $query="ALTER TABLE spotter_archive_output ADD real_departure_airport_icao VARCHAR(20), ADD real_departure_airport_time VARCHAR(20)"; |
|
| 498 | + if (!$Connection->checkColumnName('spotter_archive_output', 'real_departure_airport_icao')) { |
|
| 499 | + $query = "ALTER TABLE spotter_archive_output ADD real_departure_airport_icao VARCHAR(20), ADD real_departure_airport_time VARCHAR(20)"; |
|
| 500 | 500 | try { |
| 501 | 501 | $sth = $Connection->db->prepare($query); |
| 502 | 502 | $sth->execute(); |
| 503 | - } catch(PDOException $e) { |
|
| 503 | + } catch (PDOException $e) { |
|
| 504 | 504 | return "error (update spotter_archive_output) : ".$e->getMessage()."\n"; |
| 505 | 505 | } |
| 506 | 506 | } |
@@ -509,7 +509,7 @@ discard block |
||
| 509 | 509 | try { |
| 510 | 510 | $sth = $Connection->db->prepare($query); |
| 511 | 511 | $sth->execute(); |
| 512 | - } catch(PDOException $e) { |
|
| 512 | + } catch (PDOException $e) { |
|
| 513 | 513 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 514 | 514 | } |
| 515 | 515 | return $error; |
@@ -527,7 +527,7 @@ discard block |
||
| 527 | 527 | try { |
| 528 | 528 | $sth = $Connection->db->prepare($query); |
| 529 | 529 | $sth->execute(); |
| 530 | - } catch(PDOException $e) { |
|
| 530 | + } catch (PDOException $e) { |
|
| 531 | 531 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 532 | 532 | } |
| 533 | 533 | return $error; |
@@ -538,11 +538,11 @@ discard block |
||
| 538 | 538 | $Connection = new Connection(); |
| 539 | 539 | $error = ''; |
| 540 | 540 | // Add tables |
| 541 | - $query="ALTER TABLE `stats` CHANGE `stats_date` `stats_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP"; |
|
| 541 | + $query = "ALTER TABLE `stats` CHANGE `stats_date` `stats_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP"; |
|
| 542 | 542 | try { |
| 543 | 543 | $sth = $Connection->db->prepare($query); |
| 544 | 544 | $sth->execute(); |
| 545 | - } catch(PDOException $e) { |
|
| 545 | + } catch (PDOException $e) { |
|
| 546 | 546 | return "error (update stats) : ".$e->getMessage()."\n"; |
| 547 | 547 | } |
| 548 | 548 | if ($error != '') return $error; |
@@ -550,7 +550,7 @@ discard block |
||
| 550 | 550 | try { |
| 551 | 551 | $sth = $Connection->db->prepare($query); |
| 552 | 552 | $sth->execute(); |
| 553 | - } catch(PDOException $e) { |
|
| 553 | + } catch (PDOException $e) { |
|
| 554 | 554 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 555 | 555 | } |
| 556 | 556 | return $error; |
@@ -571,7 +571,7 @@ discard block |
||
| 571 | 571 | try { |
| 572 | 572 | $sth = $Connection->db->prepare($query); |
| 573 | 573 | $sth->execute(); |
| 574 | - } catch(PDOException $e) { |
|
| 574 | + } catch (PDOException $e) { |
|
| 575 | 575 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 576 | 576 | } |
| 577 | 577 | return $error; |
@@ -589,7 +589,7 @@ discard block |
||
| 589 | 589 | try { |
| 590 | 590 | $sth = $Connection->db->prepare($query); |
| 591 | 591 | $sth->execute(); |
| 592 | - } catch(PDOException $e) { |
|
| 592 | + } catch (PDOException $e) { |
|
| 593 | 593 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 594 | 594 | } |
| 595 | 595 | return $error; |
@@ -598,12 +598,12 @@ discard block |
||
| 598 | 598 | $Connection = new Connection(); |
| 599 | 599 | $error = ''; |
| 600 | 600 | // Modify stats_airport table |
| 601 | - if (!$Connection->checkColumnName('stats_airport','airport_name')) { |
|
| 601 | + if (!$Connection->checkColumnName('stats_airport', 'airport_name')) { |
|
| 602 | 602 | $query = "ALTER TABLE `stats_airport` ADD `stats_type` VARCHAR(50) NOT NULL DEFAULT 'yearly', ADD `airport_name` VARCHAR(255) NOT NULL, ADD `date` DATE NULL DEFAULT NULL, DROP INDEX `airport_icao`, ADD UNIQUE `airport_icao` (`airport_icao`, `type`, `date`)"; |
| 603 | 603 | try { |
| 604 | 604 | $sth = $Connection->db->prepare($query); |
| 605 | 605 | $sth->execute(); |
| 606 | - } catch(PDOException $e) { |
|
| 606 | + } catch (PDOException $e) { |
|
| 607 | 607 | return "error (update stats) : ".$e->getMessage()."\n"; |
| 608 | 608 | } |
| 609 | 609 | } |
@@ -612,7 +612,7 @@ discard block |
||
| 612 | 612 | try { |
| 613 | 613 | $sth = $Connection->db->prepare($query); |
| 614 | 614 | $sth->execute(); |
| 615 | - } catch(PDOException $e) { |
|
| 615 | + } catch (PDOException $e) { |
|
| 616 | 616 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 617 | 617 | } |
| 618 | 618 | return $error; |
@@ -629,73 +629,73 @@ discard block |
||
| 629 | 629 | try { |
| 630 | 630 | $sth = $Connection->db->prepare($query); |
| 631 | 631 | $sth->execute(); |
| 632 | - } catch(PDOException $e) { |
|
| 632 | + } catch (PDOException $e) { |
|
| 633 | 633 | return "error (remove primary key on spotter_archive) : ".$e->getMessage()."\n"; |
| 634 | 634 | } |
| 635 | 635 | $query = "alter table spotter_archive add spotter_archive_id INT(11)"; |
| 636 | 636 | try { |
| 637 | 637 | $sth = $Connection->db->prepare($query); |
| 638 | 638 | $sth->execute(); |
| 639 | - } catch(PDOException $e) { |
|
| 639 | + } catch (PDOException $e) { |
|
| 640 | 640 | return "error (add id again on spotter_archive) : ".$e->getMessage()."\n"; |
| 641 | 641 | } |
| 642 | - if (!$Connection->checkColumnName('spotter_archive','over_country')) { |
|
| 642 | + if (!$Connection->checkColumnName('spotter_archive', 'over_country')) { |
|
| 643 | 643 | // Add column over_country |
| 644 | 644 | $query = "ALTER TABLE `spotter_archive` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
| 645 | 645 | try { |
| 646 | 646 | $sth = $Connection->db->prepare($query); |
| 647 | 647 | $sth->execute(); |
| 648 | - } catch(PDOException $e) { |
|
| 648 | + } catch (PDOException $e) { |
|
| 649 | 649 | return "error (add over_country) : ".$e->getMessage()."\n"; |
| 650 | 650 | } |
| 651 | 651 | } |
| 652 | - if (!$Connection->checkColumnName('spotter_live','over_country')) { |
|
| 652 | + if (!$Connection->checkColumnName('spotter_live', 'over_country')) { |
|
| 653 | 653 | // Add column over_country |
| 654 | 654 | $query = "ALTER TABLE `spotter_live` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
| 655 | 655 | try { |
| 656 | 656 | $sth = $Connection->db->prepare($query); |
| 657 | 657 | $sth->execute(); |
| 658 | - } catch(PDOException $e) { |
|
| 658 | + } catch (PDOException $e) { |
|
| 659 | 659 | return "error (add over_country) : ".$e->getMessage()."\n"; |
| 660 | 660 | } |
| 661 | 661 | } |
| 662 | - if (!$Connection->checkColumnName('spotter_output','source_name')) { |
|
| 662 | + if (!$Connection->checkColumnName('spotter_output', 'source_name')) { |
|
| 663 | 663 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
| 664 | 664 | $query = "ALTER TABLE `spotter_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
| 665 | 665 | try { |
| 666 | 666 | $sth = $Connection->db->prepare($query); |
| 667 | 667 | $sth->execute(); |
| 668 | - } catch(PDOException $e) { |
|
| 668 | + } catch (PDOException $e) { |
|
| 669 | 669 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
| 670 | 670 | } |
| 671 | 671 | } |
| 672 | - if (!$Connection->checkColumnName('spotter_live','source_name')) { |
|
| 672 | + if (!$Connection->checkColumnName('spotter_live', 'source_name')) { |
|
| 673 | 673 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
| 674 | 674 | $query = "ALTER TABLE `spotter_live` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
| 675 | 675 | try { |
| 676 | 676 | $sth = $Connection->db->prepare($query); |
| 677 | 677 | $sth->execute(); |
| 678 | - } catch(PDOException $e) { |
|
| 678 | + } catch (PDOException $e) { |
|
| 679 | 679 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
| 680 | 680 | } |
| 681 | 681 | } |
| 682 | - if (!$Connection->checkColumnName('spotter_archive_output','source_name')) { |
|
| 682 | + if (!$Connection->checkColumnName('spotter_archive_output', 'source_name')) { |
|
| 683 | 683 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
| 684 | 684 | $query = "ALTER TABLE `spotter_archive_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
| 685 | 685 | try { |
| 686 | 686 | $sth = $Connection->db->prepare($query); |
| 687 | 687 | $sth->execute(); |
| 688 | - } catch(PDOException $e) { |
|
| 688 | + } catch (PDOException $e) { |
|
| 689 | 689 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
| 690 | 690 | } |
| 691 | 691 | } |
| 692 | - if (!$Connection->checkColumnName('spotter_archive','source_name')) { |
|
| 692 | + if (!$Connection->checkColumnName('spotter_archive', 'source_name')) { |
|
| 693 | 693 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
| 694 | 694 | $query = "ALTER TABLE `spotter_archive` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`;"; |
| 695 | 695 | try { |
| 696 | 696 | $sth = $Connection->db->prepare($query); |
| 697 | 697 | $sth->execute(); |
| 698 | - } catch(PDOException $e) { |
|
| 698 | + } catch (PDOException $e) { |
|
| 699 | 699 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
| 700 | 700 | } |
| 701 | 701 | } |
@@ -704,7 +704,7 @@ discard block |
||
| 704 | 704 | try { |
| 705 | 705 | $sth = $Connection->db->prepare($query); |
| 706 | 706 | $sth->execute(); |
| 707 | - } catch(PDOException $e) { |
|
| 707 | + } catch (PDOException $e) { |
|
| 708 | 708 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 709 | 709 | } |
| 710 | 710 | return $error; |
@@ -719,13 +719,13 @@ discard block |
||
| 719 | 719 | $error .= create_db::import_file('../db/airlines.sql'); |
| 720 | 720 | if ($error != '') return 'Import airlines.sql : '.$error; |
| 721 | 721 | } |
| 722 | - if (!$Connection->checkColumnName('aircraft_modes','type_flight')) { |
|
| 722 | + if (!$Connection->checkColumnName('aircraft_modes', 'type_flight')) { |
|
| 723 | 723 | // Add column over_country |
| 724 | 724 | $query = "ALTER TABLE `aircraft_modes` ADD `type_flight` VARCHAR(50) NULL DEFAULT NULL;"; |
| 725 | 725 | try { |
| 726 | 726 | $sth = $Connection->db->prepare($query); |
| 727 | 727 | $sth->execute(); |
| 728 | - } catch(PDOException $e) { |
|
| 728 | + } catch (PDOException $e) { |
|
| 729 | 729 | return "error (add over_country) : ".$e->getMessage()."\n"; |
| 730 | 730 | } |
| 731 | 731 | } |
@@ -741,7 +741,7 @@ discard block |
||
| 741 | 741 | try { |
| 742 | 742 | $sth = $Connection->db->prepare($query); |
| 743 | 743 | $sth->execute(); |
| 744 | - } catch(PDOException $e) { |
|
| 744 | + } catch (PDOException $e) { |
|
| 745 | 745 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 746 | 746 | } |
| 747 | 747 | return $error; |
@@ -750,13 +750,13 @@ discard block |
||
| 750 | 750 | private static function update_from_21() { |
| 751 | 751 | $Connection = new Connection(); |
| 752 | 752 | $error = ''; |
| 753 | - if (!$Connection->checkColumnName('stats_airport','stats_type')) { |
|
| 753 | + if (!$Connection->checkColumnName('stats_airport', 'stats_type')) { |
|
| 754 | 754 | // Rename type to stats_type |
| 755 | 755 | $query = "ALTER TABLE `stats_airport` CHANGE `type` `stats_type` VARCHAR(50);ALTER TABLE `stats` CHANGE `type` `stats_type` VARCHAR(50);ALTER TABLE `stats_flight` CHANGE `type` `stats_type` VARCHAR(50);"; |
| 756 | 756 | try { |
| 757 | 757 | $sth = $Connection->db->prepare($query); |
| 758 | 758 | $sth->execute(); |
| 759 | - } catch(PDOException $e) { |
|
| 759 | + } catch (PDOException $e) { |
|
| 760 | 760 | return "error (rename type to stats_type on stats*) : ".$e->getMessage()."\n"; |
| 761 | 761 | } |
| 762 | 762 | if ($error != '') return $error; |
@@ -765,7 +765,7 @@ discard block |
||
| 765 | 765 | try { |
| 766 | 766 | $sth = $Connection->db->prepare($query); |
| 767 | 767 | $sth->execute(); |
| 768 | - } catch(PDOException $e) { |
|
| 768 | + } catch (PDOException $e) { |
|
| 769 | 769 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 770 | 770 | } |
| 771 | 771 | return $error; |
@@ -788,7 +788,7 @@ discard block |
||
| 788 | 788 | try { |
| 789 | 789 | $sth = $Connection->db->prepare($query); |
| 790 | 790 | $sth->execute(); |
| 791 | - } catch(PDOException $e) { |
|
| 791 | + } catch (PDOException $e) { |
|
| 792 | 792 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 793 | 793 | } |
| 794 | 794 | return $error; |
@@ -815,17 +815,17 @@ discard block |
||
| 815 | 815 | try { |
| 816 | 816 | $sth = $Connection->db->prepare($query); |
| 817 | 817 | $sth->execute(); |
| 818 | - } catch(PDOException $e) { |
|
| 818 | + } catch (PDOException $e) { |
|
| 819 | 819 | return "error (create index on spotter_archive) : ".$e->getMessage()."\n"; |
| 820 | 820 | } |
| 821 | 821 | } |
| 822 | - if (!$Connection->checkColumnName('stats_aircraft','aircraft_manufacturer')) { |
|
| 822 | + if (!$Connection->checkColumnName('stats_aircraft', 'aircraft_manufacturer')) { |
|
| 823 | 823 | // Add aircraft_manufacturer to stats_aircraft |
| 824 | 824 | $query = "ALTER TABLE stats_aircraft ADD aircraft_manufacturer VARCHAR(255) NULL"; |
| 825 | 825 | try { |
| 826 | 826 | $sth = $Connection->db->prepare($query); |
| 827 | 827 | $sth->execute(); |
| 828 | - } catch(PDOException $e) { |
|
| 828 | + } catch (PDOException $e) { |
|
| 829 | 829 | return "error (add aircraft_manufacturer column) : ".$e->getMessage()."\n"; |
| 830 | 830 | } |
| 831 | 831 | } |
@@ -834,7 +834,7 @@ discard block |
||
| 834 | 834 | try { |
| 835 | 835 | $sth = $Connection->db->prepare($query); |
| 836 | 836 | $sth->execute(); |
| 837 | - } catch(PDOException $e) { |
|
| 837 | + } catch (PDOException $e) { |
|
| 838 | 838 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 839 | 839 | } |
| 840 | 840 | return $error; |
@@ -850,23 +850,23 @@ discard block |
||
| 850 | 850 | $error .= create_db::import_file('../db/pgsql/airlines.sql'); |
| 851 | 851 | } |
| 852 | 852 | if ($error != '') return 'Import airlines.sql : '.$error; |
| 853 | - if (!$Connection->checkColumnName('airlines','forsource')) { |
|
| 853 | + if (!$Connection->checkColumnName('airlines', 'forsource')) { |
|
| 854 | 854 | // Add forsource to airlines |
| 855 | 855 | $query = "ALTER TABLE airlines ADD forsource VARCHAR(255) NULL DEFAULT NULL"; |
| 856 | 856 | try { |
| 857 | 857 | $sth = $Connection->db->prepare($query); |
| 858 | 858 | $sth->execute(); |
| 859 | - } catch(PDOException $e) { |
|
| 859 | + } catch (PDOException $e) { |
|
| 860 | 860 | return "error (add forsource column) : ".$e->getMessage()."\n"; |
| 861 | 861 | } |
| 862 | 862 | } |
| 863 | - if (!$Connection->checkColumnName('stats_aircraft','stats_airline')) { |
|
| 863 | + if (!$Connection->checkColumnName('stats_aircraft', 'stats_airline')) { |
|
| 864 | 864 | // Add forsource to airlines |
| 865 | 865 | $query = "ALTER TABLE stats_aircraft ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
| 866 | 866 | try { |
| 867 | 867 | $sth = $Connection->db->prepare($query); |
| 868 | 868 | $sth->execute(); |
| 869 | - } catch(PDOException $e) { |
|
| 869 | + } catch (PDOException $e) { |
|
| 870 | 870 | return "error (add stats_airline & filter_name column in stats_aircraft) : ".$e->getMessage()."\n"; |
| 871 | 871 | } |
| 872 | 872 | // Add unique key |
@@ -878,17 +878,17 @@ discard block |
||
| 878 | 878 | try { |
| 879 | 879 | $sth = $Connection->db->prepare($query); |
| 880 | 880 | $sth->execute(); |
| 881 | - } catch(PDOException $e) { |
|
| 881 | + } catch (PDOException $e) { |
|
| 882 | 882 | return "error (add unique key in stats_aircraft) : ".$e->getMessage()."\n"; |
| 883 | 883 | } |
| 884 | 884 | } |
| 885 | - if (!$Connection->checkColumnName('stats_airport','stats_airline')) { |
|
| 885 | + if (!$Connection->checkColumnName('stats_airport', 'stats_airline')) { |
|
| 886 | 886 | // Add forsource to airlines |
| 887 | 887 | $query = "ALTER TABLE stats_airport ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
| 888 | 888 | try { |
| 889 | 889 | $sth = $Connection->db->prepare($query); |
| 890 | 890 | $sth->execute(); |
| 891 | - } catch(PDOException $e) { |
|
| 891 | + } catch (PDOException $e) { |
|
| 892 | 892 | return "error (add filter_name column in stats_airport) : ".$e->getMessage()."\n"; |
| 893 | 893 | } |
| 894 | 894 | // Add unique key |
@@ -900,17 +900,17 @@ discard block |
||
| 900 | 900 | try { |
| 901 | 901 | $sth = $Connection->db->prepare($query); |
| 902 | 902 | $sth->execute(); |
| 903 | - } catch(PDOException $e) { |
|
| 903 | + } catch (PDOException $e) { |
|
| 904 | 904 | return "error (add unique key in stats_airport) : ".$e->getMessage()."\n"; |
| 905 | 905 | } |
| 906 | 906 | } |
| 907 | - if (!$Connection->checkColumnName('stats_country','stats_airline')) { |
|
| 907 | + if (!$Connection->checkColumnName('stats_country', 'stats_airline')) { |
|
| 908 | 908 | // Add forsource to airlines |
| 909 | 909 | $query = "ALTER TABLE stats_country ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
| 910 | 910 | try { |
| 911 | 911 | $sth = $Connection->db->prepare($query); |
| 912 | 912 | $sth->execute(); |
| 913 | - } catch(PDOException $e) { |
|
| 913 | + } catch (PDOException $e) { |
|
| 914 | 914 | return "error (add stats_airline & filter_name column in stats_country) : ".$e->getMessage()."\n"; |
| 915 | 915 | } |
| 916 | 916 | // Add unique key |
@@ -922,36 +922,36 @@ discard block |
||
| 922 | 922 | try { |
| 923 | 923 | $sth = $Connection->db->prepare($query); |
| 924 | 924 | $sth->execute(); |
| 925 | - } catch(PDOException $e) { |
|
| 925 | + } catch (PDOException $e) { |
|
| 926 | 926 | return "error (add unique key in stats_airline) : ".$e->getMessage()."\n"; |
| 927 | 927 | } |
| 928 | 928 | } |
| 929 | - if (!$Connection->checkColumnName('stats_flight','stats_airline')) { |
|
| 929 | + if (!$Connection->checkColumnName('stats_flight', 'stats_airline')) { |
|
| 930 | 930 | // Add forsource to airlines |
| 931 | 931 | $query = "ALTER TABLE stats_flight ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
| 932 | 932 | try { |
| 933 | 933 | $sth = $Connection->db->prepare($query); |
| 934 | 934 | $sth->execute(); |
| 935 | - } catch(PDOException $e) { |
|
| 935 | + } catch (PDOException $e) { |
|
| 936 | 936 | return "error (add stats_airline & filter_name column in stats_flight) : ".$e->getMessage()."\n"; |
| 937 | 937 | } |
| 938 | 938 | } |
| 939 | - if (!$Connection->checkColumnName('stats','stats_airline')) { |
|
| 939 | + if (!$Connection->checkColumnName('stats', 'stats_airline')) { |
|
| 940 | 940 | // Add forsource to airlines |
| 941 | 941 | $query = "ALTER TABLE stats ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
| 942 | 942 | try { |
| 943 | 943 | $sth = $Connection->db->prepare($query); |
| 944 | 944 | $sth->execute(); |
| 945 | - } catch(PDOException $e) { |
|
| 945 | + } catch (PDOException $e) { |
|
| 946 | 946 | return "error (add stats_airline & filter_name column in stats) : ".$e->getMessage()."\n"; |
| 947 | 947 | } |
| 948 | - if ($globalDBdriver == 'mysql' && $Connection->indexExists('stats','type')) { |
|
| 948 | + if ($globalDBdriver == 'mysql' && $Connection->indexExists('stats', 'type')) { |
|
| 949 | 949 | // Add unique key |
| 950 | 950 | $query = "drop index type on stats;ALTER TABLE stats ADD UNIQUE stats_type (stats_type,stats_date,stats_airline,filter_name);"; |
| 951 | 951 | try { |
| 952 | 952 | $sth = $Connection->db->prepare($query); |
| 953 | 953 | $sth->execute(); |
| 954 | - } catch(PDOException $e) { |
|
| 954 | + } catch (PDOException $e) { |
|
| 955 | 955 | return "error (add unique key in stats) : ".$e->getMessage()."\n"; |
| 956 | 956 | } |
| 957 | 957 | } else { |
@@ -964,18 +964,18 @@ discard block |
||
| 964 | 964 | try { |
| 965 | 965 | $sth = $Connection->db->prepare($query); |
| 966 | 966 | $sth->execute(); |
| 967 | - } catch(PDOException $e) { |
|
| 967 | + } catch (PDOException $e) { |
|
| 968 | 968 | return "error (add unique key in stats) : ".$e->getMessage()."\n"; |
| 969 | 969 | } |
| 970 | 970 | } |
| 971 | 971 | } |
| 972 | - if (!$Connection->checkColumnName('stats_registration','stats_airline')) { |
|
| 972 | + if (!$Connection->checkColumnName('stats_registration', 'stats_airline')) { |
|
| 973 | 973 | // Add forsource to airlines |
| 974 | 974 | $query = "ALTER TABLE stats_registration ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
| 975 | 975 | try { |
| 976 | 976 | $sth = $Connection->db->prepare($query); |
| 977 | 977 | $sth->execute(); |
| 978 | - } catch(PDOException $e) { |
|
| 978 | + } catch (PDOException $e) { |
|
| 979 | 979 | return "error (add stats_airline & filter_name column in stats_registration) : ".$e->getMessage()."\n"; |
| 980 | 980 | } |
| 981 | 981 | // Add unique key |
@@ -987,17 +987,17 @@ discard block |
||
| 987 | 987 | try { |
| 988 | 988 | $sth = $Connection->db->prepare($query); |
| 989 | 989 | $sth->execute(); |
| 990 | - } catch(PDOException $e) { |
|
| 990 | + } catch (PDOException $e) { |
|
| 991 | 991 | return "error (add unique key in stats_registration) : ".$e->getMessage()."\n"; |
| 992 | 992 | } |
| 993 | 993 | } |
| 994 | - if (!$Connection->checkColumnName('stats_callsign','filter_name')) { |
|
| 994 | + if (!$Connection->checkColumnName('stats_callsign', 'filter_name')) { |
|
| 995 | 995 | // Add forsource to airlines |
| 996 | 996 | $query = "ALTER TABLE stats_callsign ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
| 997 | 997 | try { |
| 998 | 998 | $sth = $Connection->db->prepare($query); |
| 999 | 999 | $sth->execute(); |
| 1000 | - } catch(PDOException $e) { |
|
| 1000 | + } catch (PDOException $e) { |
|
| 1001 | 1001 | return "error (add filter_name column in stats_callsign) : ".$e->getMessage()."\n"; |
| 1002 | 1002 | } |
| 1003 | 1003 | // Add unique key |
@@ -1009,17 +1009,17 @@ discard block |
||
| 1009 | 1009 | try { |
| 1010 | 1010 | $sth = $Connection->db->prepare($query); |
| 1011 | 1011 | $sth->execute(); |
| 1012 | - } catch(PDOException $e) { |
|
| 1012 | + } catch (PDOException $e) { |
|
| 1013 | 1013 | return "error (add unique key in stats_callsign) : ".$e->getMessage()."\n"; |
| 1014 | 1014 | } |
| 1015 | 1015 | } |
| 1016 | - if (!$Connection->checkColumnName('stats_airline','filter_name')) { |
|
| 1016 | + if (!$Connection->checkColumnName('stats_airline', 'filter_name')) { |
|
| 1017 | 1017 | // Add forsource to airlines |
| 1018 | 1018 | $query = "ALTER TABLE stats_airline ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
| 1019 | 1019 | try { |
| 1020 | 1020 | $sth = $Connection->db->prepare($query); |
| 1021 | 1021 | $sth->execute(); |
| 1022 | - } catch(PDOException $e) { |
|
| 1022 | + } catch (PDOException $e) { |
|
| 1023 | 1023 | return "error (add filter_name column in stats_airline) : ".$e->getMessage()."\n"; |
| 1024 | 1024 | } |
| 1025 | 1025 | // Add unique key |
@@ -1031,7 +1031,7 @@ discard block |
||
| 1031 | 1031 | try { |
| 1032 | 1032 | $sth = $Connection->db->prepare($query); |
| 1033 | 1033 | $sth->execute(); |
| 1034 | - } catch(PDOException $e) { |
|
| 1034 | + } catch (PDOException $e) { |
|
| 1035 | 1035 | return "error (add unique key in stats_callsign) : ".$e->getMessage()."\n"; |
| 1036 | 1036 | } |
| 1037 | 1037 | } |
@@ -1040,7 +1040,7 @@ discard block |
||
| 1040 | 1040 | try { |
| 1041 | 1041 | $sth = $Connection->db->prepare($query); |
| 1042 | 1042 | $sth->execute(); |
| 1043 | - } catch(PDOException $e) { |
|
| 1043 | + } catch (PDOException $e) { |
|
| 1044 | 1044 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1045 | 1045 | } |
| 1046 | 1046 | return $error; |
@@ -1050,13 +1050,13 @@ discard block |
||
| 1050 | 1050 | global $globalDBdriver; |
| 1051 | 1051 | $Connection = new Connection(); |
| 1052 | 1052 | $error = ''; |
| 1053 | - if (!$Connection->checkColumnName('stats_owner','stats_airline')) { |
|
| 1053 | + if (!$Connection->checkColumnName('stats_owner', 'stats_airline')) { |
|
| 1054 | 1054 | // Add forsource to airlines |
| 1055 | 1055 | $query = "ALTER TABLE stats_owner ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
| 1056 | 1056 | try { |
| 1057 | 1057 | $sth = $Connection->db->prepare($query); |
| 1058 | 1058 | $sth->execute(); |
| 1059 | - } catch(PDOException $e) { |
|
| 1059 | + } catch (PDOException $e) { |
|
| 1060 | 1060 | return "error (add stats_airline & filter_name column in stats_owner) : ".$e->getMessage()."\n"; |
| 1061 | 1061 | } |
| 1062 | 1062 | // Add unique key |
@@ -1068,17 +1068,17 @@ discard block |
||
| 1068 | 1068 | try { |
| 1069 | 1069 | $sth = $Connection->db->prepare($query); |
| 1070 | 1070 | $sth->execute(); |
| 1071 | - } catch(PDOException $e) { |
|
| 1071 | + } catch (PDOException $e) { |
|
| 1072 | 1072 | return "error (add unique key in stats_owner) : ".$e->getMessage()."\n"; |
| 1073 | 1073 | } |
| 1074 | 1074 | } |
| 1075 | - if (!$Connection->checkColumnName('stats_pilot','stats_airline')) { |
|
| 1075 | + if (!$Connection->checkColumnName('stats_pilot', 'stats_airline')) { |
|
| 1076 | 1076 | // Add forsource to airlines |
| 1077 | 1077 | $query = "ALTER TABLE stats_pilot ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
| 1078 | 1078 | try { |
| 1079 | 1079 | $sth = $Connection->db->prepare($query); |
| 1080 | 1080 | $sth->execute(); |
| 1081 | - } catch(PDOException $e) { |
|
| 1081 | + } catch (PDOException $e) { |
|
| 1082 | 1082 | return "error (add stats_airline & filter_name column in stats_pilot) : ".$e->getMessage()."\n"; |
| 1083 | 1083 | } |
| 1084 | 1084 | // Add unique key |
@@ -1090,7 +1090,7 @@ discard block |
||
| 1090 | 1090 | try { |
| 1091 | 1091 | $sth = $Connection->db->prepare($query); |
| 1092 | 1092 | $sth->execute(); |
| 1093 | - } catch(PDOException $e) { |
|
| 1093 | + } catch (PDOException $e) { |
|
| 1094 | 1094 | return "error (add unique key in stats_pilot) : ".$e->getMessage()."\n"; |
| 1095 | 1095 | } |
| 1096 | 1096 | } |
@@ -1098,7 +1098,7 @@ discard block |
||
| 1098 | 1098 | try { |
| 1099 | 1099 | $sth = $Connection->db->prepare($query); |
| 1100 | 1100 | $sth->execute(); |
| 1101 | - } catch(PDOException $e) { |
|
| 1101 | + } catch (PDOException $e) { |
|
| 1102 | 1102 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1103 | 1103 | } |
| 1104 | 1104 | return $error; |
@@ -1108,12 +1108,12 @@ discard block |
||
| 1108 | 1108 | global $globalDBdriver; |
| 1109 | 1109 | $Connection = new Connection(); |
| 1110 | 1110 | $error = ''; |
| 1111 | - if (!$Connection->checkColumnName('atc','format_source')) { |
|
| 1111 | + if (!$Connection->checkColumnName('atc', 'format_source')) { |
|
| 1112 | 1112 | $query = "ALTER TABLE atc ADD format_source VARCHAR(255) DEFAULT NULL, ADD source_name VARCHAR(255) DEFAULT NULL"; |
| 1113 | 1113 | try { |
| 1114 | 1114 | $sth = $Connection->db->prepare($query); |
| 1115 | 1115 | $sth->execute(); |
| 1116 | - } catch(PDOException $e) { |
|
| 1116 | + } catch (PDOException $e) { |
|
| 1117 | 1117 | return "error (add format_source & source_name column in atc) : ".$e->getMessage()."\n"; |
| 1118 | 1118 | } |
| 1119 | 1119 | } |
@@ -1121,7 +1121,7 @@ discard block |
||
| 1121 | 1121 | try { |
| 1122 | 1122 | $sth = $Connection->db->prepare($query); |
| 1123 | 1123 | $sth->execute(); |
| 1124 | - } catch(PDOException $e) { |
|
| 1124 | + } catch (PDOException $e) { |
|
| 1125 | 1125 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1126 | 1126 | } |
| 1127 | 1127 | return $error; |
@@ -1131,13 +1131,13 @@ discard block |
||
| 1131 | 1131 | global $globalDBdriver; |
| 1132 | 1132 | $Connection = new Connection(); |
| 1133 | 1133 | $error = ''; |
| 1134 | - if (!$Connection->checkColumnName('stats_pilot','format_source')) { |
|
| 1134 | + if (!$Connection->checkColumnName('stats_pilot', 'format_source')) { |
|
| 1135 | 1135 | // Add forsource to airlines |
| 1136 | 1136 | $query = "ALTER TABLE stats_pilot ADD format_source VARCHAR(255) NULL DEFAULT ''"; |
| 1137 | 1137 | try { |
| 1138 | 1138 | $sth = $Connection->db->prepare($query); |
| 1139 | 1139 | $sth->execute(); |
| 1140 | - } catch(PDOException $e) { |
|
| 1140 | + } catch (PDOException $e) { |
|
| 1141 | 1141 | return "error (add format_source column in stats_pilot) : ".$e->getMessage()."\n"; |
| 1142 | 1142 | } |
| 1143 | 1143 | // Add unique key |
@@ -1149,7 +1149,7 @@ discard block |
||
| 1149 | 1149 | try { |
| 1150 | 1150 | $sth = $Connection->db->prepare($query); |
| 1151 | 1151 | $sth->execute(); |
| 1152 | - } catch(PDOException $e) { |
|
| 1152 | + } catch (PDOException $e) { |
|
| 1153 | 1153 | return "error (modify unique key in stats_pilot) : ".$e->getMessage()."\n"; |
| 1154 | 1154 | } |
| 1155 | 1155 | } |
@@ -1157,7 +1157,7 @@ discard block |
||
| 1157 | 1157 | try { |
| 1158 | 1158 | $sth = $Connection->db->prepare($query); |
| 1159 | 1159 | $sth->execute(); |
| 1160 | - } catch(PDOException $e) { |
|
| 1160 | + } catch (PDOException $e) { |
|
| 1161 | 1161 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1162 | 1162 | } |
| 1163 | 1163 | return $error; |
@@ -1167,23 +1167,23 @@ discard block |
||
| 1167 | 1167 | global $globalDBdriver; |
| 1168 | 1168 | $Connection = new Connection(); |
| 1169 | 1169 | $error = ''; |
| 1170 | - if ($globalDBdriver == 'mysql' && !$Connection->indexExists('spotter_live','latitude')) { |
|
| 1170 | + if ($globalDBdriver == 'mysql' && !$Connection->indexExists('spotter_live', 'latitude')) { |
|
| 1171 | 1171 | // Add unique key |
| 1172 | 1172 | $query = "alter table spotter_live add index(latitude,longitude)"; |
| 1173 | 1173 | try { |
| 1174 | 1174 | $sth = $Connection->db->prepare($query); |
| 1175 | 1175 | $sth->execute(); |
| 1176 | - } catch(PDOException $e) { |
|
| 1176 | + } catch (PDOException $e) { |
|
| 1177 | 1177 | return "error (add index latitude,longitude on spotter_live) : ".$e->getMessage()."\n"; |
| 1178 | 1178 | } |
| 1179 | 1179 | } |
| 1180 | - if (!$Connection->checkColumnName('aircraft','mfr')) { |
|
| 1180 | + if (!$Connection->checkColumnName('aircraft', 'mfr')) { |
|
| 1181 | 1181 | // Add mfr to aircraft |
| 1182 | 1182 | $query = "ALTER TABLE aircraft ADD mfr VARCHAR(255) NULL"; |
| 1183 | 1183 | try { |
| 1184 | 1184 | $sth = $Connection->db->prepare($query); |
| 1185 | 1185 | $sth->execute(); |
| 1186 | - } catch(PDOException $e) { |
|
| 1186 | + } catch (PDOException $e) { |
|
| 1187 | 1187 | return "error (add mfr column in aircraft) : ".$e->getMessage()."\n"; |
| 1188 | 1188 | } |
| 1189 | 1189 | } |
@@ -1199,7 +1199,7 @@ discard block |
||
| 1199 | 1199 | try { |
| 1200 | 1200 | $sth = $Connection->db->prepare($query); |
| 1201 | 1201 | $sth->execute(); |
| 1202 | - } catch(PDOException $e) { |
|
| 1202 | + } catch (PDOException $e) { |
|
| 1203 | 1203 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1204 | 1204 | } |
| 1205 | 1205 | return $error; |
@@ -1209,13 +1209,13 @@ discard block |
||
| 1209 | 1209 | global $globalDBdriver; |
| 1210 | 1210 | $Connection = new Connection(); |
| 1211 | 1211 | $error = ''; |
| 1212 | - if ($Connection->checkColumnName('aircraft','mfr')) { |
|
| 1212 | + if ($Connection->checkColumnName('aircraft', 'mfr')) { |
|
| 1213 | 1213 | // drop mfr to aircraft |
| 1214 | 1214 | $query = "ALTER TABLE aircraft DROP COLUMN mfr"; |
| 1215 | 1215 | try { |
| 1216 | 1216 | $sth = $Connection->db->prepare($query); |
| 1217 | 1217 | $sth->execute(); |
| 1218 | - } catch(PDOException $e) { |
|
| 1218 | + } catch (PDOException $e) { |
|
| 1219 | 1219 | return "error (drop mfr column in aircraft) : ".$e->getMessage()."\n"; |
| 1220 | 1220 | } |
| 1221 | 1221 | } |
@@ -1231,7 +1231,7 @@ discard block |
||
| 1231 | 1231 | try { |
| 1232 | 1232 | $sth = $Connection->db->prepare($query); |
| 1233 | 1233 | $sth->execute(); |
| 1234 | - } catch(PDOException $e) { |
|
| 1234 | + } catch (PDOException $e) { |
|
| 1235 | 1235 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1236 | 1236 | } |
| 1237 | 1237 | return $error; |
@@ -1241,33 +1241,33 @@ discard block |
||
| 1241 | 1241 | global $globalDBdriver; |
| 1242 | 1242 | $Connection = new Connection(); |
| 1243 | 1243 | $error = ''; |
| 1244 | - if (!$Connection->indexExists('notam','ref_idx')) { |
|
| 1244 | + if (!$Connection->indexExists('notam', 'ref_idx')) { |
|
| 1245 | 1245 | // Add index key |
| 1246 | 1246 | $query = "create index ref_idx on notam (ref)"; |
| 1247 | 1247 | try { |
| 1248 | 1248 | $sth = $Connection->db->prepare($query); |
| 1249 | 1249 | $sth->execute(); |
| 1250 | - } catch(PDOException $e) { |
|
| 1250 | + } catch (PDOException $e) { |
|
| 1251 | 1251 | return "error (add index ref on notam) : ".$e->getMessage()."\n"; |
| 1252 | 1252 | } |
| 1253 | 1253 | } |
| 1254 | - if (!$Connection->indexExists('accidents','registration_idx')) { |
|
| 1254 | + if (!$Connection->indexExists('accidents', 'registration_idx')) { |
|
| 1255 | 1255 | // Add index key |
| 1256 | 1256 | $query = "create index registration_idx on accidents (registration)"; |
| 1257 | 1257 | try { |
| 1258 | 1258 | $sth = $Connection->db->prepare($query); |
| 1259 | 1259 | $sth->execute(); |
| 1260 | - } catch(PDOException $e) { |
|
| 1260 | + } catch (PDOException $e) { |
|
| 1261 | 1261 | return "error (add index registration on accidents) : ".$e->getMessage()."\n"; |
| 1262 | 1262 | } |
| 1263 | 1263 | } |
| 1264 | - if (!$Connection->indexExists('accidents','rdts')) { |
|
| 1264 | + if (!$Connection->indexExists('accidents', 'rdts')) { |
|
| 1265 | 1265 | // Add index key |
| 1266 | 1266 | $query = "create index rdts on accidents (registration,date,type,source)"; |
| 1267 | 1267 | try { |
| 1268 | 1268 | $sth = $Connection->db->prepare($query); |
| 1269 | 1269 | $sth->execute(); |
| 1270 | - } catch(PDOException $e) { |
|
| 1270 | + } catch (PDOException $e) { |
|
| 1271 | 1271 | return "error (add index registration, date, type & source on accidents) : ".$e->getMessage()."\n"; |
| 1272 | 1272 | } |
| 1273 | 1273 | } |
@@ -1276,7 +1276,7 @@ discard block |
||
| 1276 | 1276 | try { |
| 1277 | 1277 | $sth = $Connection->db->prepare($query); |
| 1278 | 1278 | $sth->execute(); |
| 1279 | - } catch(PDOException $e) { |
|
| 1279 | + } catch (PDOException $e) { |
|
| 1280 | 1280 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1281 | 1281 | } |
| 1282 | 1282 | return $error; |
@@ -1286,23 +1286,23 @@ discard block |
||
| 1286 | 1286 | global $globalDBdriver; |
| 1287 | 1287 | $Connection = new Connection(); |
| 1288 | 1288 | $error = ''; |
| 1289 | - if (!$Connection->checkColumnName('accidents','airline_name')) { |
|
| 1289 | + if (!$Connection->checkColumnName('accidents', 'airline_name')) { |
|
| 1290 | 1290 | // Add airline_name to accidents |
| 1291 | 1291 | $query = "ALTER TABLE accidents ADD airline_name VARCHAR(255) NULL"; |
| 1292 | 1292 | try { |
| 1293 | 1293 | $sth = $Connection->db->prepare($query); |
| 1294 | 1294 | $sth->execute(); |
| 1295 | - } catch(PDOException $e) { |
|
| 1295 | + } catch (PDOException $e) { |
|
| 1296 | 1296 | return "error (add airline_name column in accidents) : ".$e->getMessage()."\n"; |
| 1297 | 1297 | } |
| 1298 | 1298 | } |
| 1299 | - if (!$Connection->checkColumnName('accidents','airline_icao')) { |
|
| 1299 | + if (!$Connection->checkColumnName('accidents', 'airline_icao')) { |
|
| 1300 | 1300 | // Add airline_icao to accidents |
| 1301 | 1301 | $query = "ALTER TABLE accidents ADD airline_icao VARCHAR(10) NULL"; |
| 1302 | 1302 | try { |
| 1303 | 1303 | $sth = $Connection->db->prepare($query); |
| 1304 | 1304 | $sth->execute(); |
| 1305 | - } catch(PDOException $e) { |
|
| 1305 | + } catch (PDOException $e) { |
|
| 1306 | 1306 | return "error (add airline_icao column in accidents) : ".$e->getMessage()."\n"; |
| 1307 | 1307 | } |
| 1308 | 1308 | } |
@@ -1310,7 +1310,7 @@ discard block |
||
| 1310 | 1310 | try { |
| 1311 | 1311 | $sth = $Connection->db->prepare($query); |
| 1312 | 1312 | $sth->execute(); |
| 1313 | - } catch(PDOException $e) { |
|
| 1313 | + } catch (PDOException $e) { |
|
| 1314 | 1314 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1315 | 1315 | } |
| 1316 | 1316 | return $error; |
@@ -1320,13 +1320,13 @@ discard block |
||
| 1320 | 1320 | global $globalDBdriver, $globalVATSIM, $globalIVAO; |
| 1321 | 1321 | $Connection = new Connection(); |
| 1322 | 1322 | $error = ''; |
| 1323 | - if (!$Connection->checkColumnName('airlines','alliance')) { |
|
| 1323 | + if (!$Connection->checkColumnName('airlines', 'alliance')) { |
|
| 1324 | 1324 | // Add alliance to airlines |
| 1325 | 1325 | $query = "ALTER TABLE airlines ADD alliance VARCHAR(255) NULL"; |
| 1326 | 1326 | try { |
| 1327 | 1327 | $sth = $Connection->db->prepare($query); |
| 1328 | 1328 | $sth->execute(); |
| 1329 | - } catch(PDOException $e) { |
|
| 1329 | + } catch (PDOException $e) { |
|
| 1330 | 1330 | return "error (add alliance column in airlines) : ".$e->getMessage()."\n"; |
| 1331 | 1331 | } |
| 1332 | 1332 | } |
@@ -1353,7 +1353,7 @@ discard block |
||
| 1353 | 1353 | try { |
| 1354 | 1354 | $sth = $Connection->db->prepare($query); |
| 1355 | 1355 | $sth->execute(); |
| 1356 | - } catch(PDOException $e) { |
|
| 1356 | + } catch (PDOException $e) { |
|
| 1357 | 1357 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1358 | 1358 | } |
| 1359 | 1359 | return $error; |
@@ -1363,13 +1363,13 @@ discard block |
||
| 1363 | 1363 | global $globalDBdriver, $globalVATSIM, $globalIVAO; |
| 1364 | 1364 | $Connection = new Connection(); |
| 1365 | 1365 | $error = ''; |
| 1366 | - if (!$Connection->checkColumnName('airlines','ban_eu')) { |
|
| 1366 | + if (!$Connection->checkColumnName('airlines', 'ban_eu')) { |
|
| 1367 | 1367 | // Add ban_eu to airlines |
| 1368 | 1368 | $query = "ALTER TABLE airlines ADD ban_eu INTEGER NOT NULL DEFAULT '0'"; |
| 1369 | 1369 | try { |
| 1370 | 1370 | $sth = $Connection->db->prepare($query); |
| 1371 | 1371 | $sth->execute(); |
| 1372 | - } catch(PDOException $e) { |
|
| 1372 | + } catch (PDOException $e) { |
|
| 1373 | 1373 | return "error (add ban_eu column in airlines) : ".$e->getMessage()."\n"; |
| 1374 | 1374 | } |
| 1375 | 1375 | } |
@@ -1377,7 +1377,7 @@ discard block |
||
| 1377 | 1377 | try { |
| 1378 | 1378 | $sth = $Connection->db->prepare($query); |
| 1379 | 1379 | $sth->execute(); |
| 1380 | - } catch(PDOException $e) { |
|
| 1380 | + } catch (PDOException $e) { |
|
| 1381 | 1381 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1382 | 1382 | } |
| 1383 | 1383 | return $error; |
@@ -1388,19 +1388,19 @@ discard block |
||
| 1388 | 1388 | $Connection = new Connection(); |
| 1389 | 1389 | $error = ''; |
| 1390 | 1390 | if ($globalDBdriver == 'mysql') { |
| 1391 | - if ($Connection->getColumnType('spotter_output','date') == 'TIMESTAMP' && $Connection->getColumnType('spotter_output','last_seen') != 'TIMESTAMP') { |
|
| 1391 | + if ($Connection->getColumnType('spotter_output', 'date') == 'TIMESTAMP' && $Connection->getColumnType('spotter_output', 'last_seen') != 'TIMESTAMP') { |
|
| 1392 | 1392 | $query = "ALTER TABLE spotter_output CHANGE date date TIMESTAMP NULL DEFAULT NULL"; |
| 1393 | 1393 | try { |
| 1394 | 1394 | $sth = $Connection->db->prepare($query); |
| 1395 | 1395 | $sth->execute(); |
| 1396 | - } catch(PDOException $e) { |
|
| 1396 | + } catch (PDOException $e) { |
|
| 1397 | 1397 | return "error (delete default timestamp spotter_output) : ".$e->getMessage()."\n"; |
| 1398 | 1398 | } |
| 1399 | 1399 | $query = "ALTER TABLE spotter_output MODIFY COLUMN last_seen timestamp not null default current_timestamp()"; |
| 1400 | 1400 | try { |
| 1401 | 1401 | $sth = $Connection->db->prepare($query); |
| 1402 | 1402 | $sth->execute(); |
| 1403 | - } catch(PDOException $e) { |
|
| 1403 | + } catch (PDOException $e) { |
|
| 1404 | 1404 | return "error (convert spotter_output last_seen to timestamp) : ".$e->getMessage()."\n"; |
| 1405 | 1405 | } |
| 1406 | 1406 | |
@@ -1408,7 +1408,7 @@ discard block |
||
| 1408 | 1408 | try { |
| 1409 | 1409 | $sth = $Connection->db->prepare($query); |
| 1410 | 1410 | $sth->execute(); |
| 1411 | - } catch(PDOException $e) { |
|
| 1411 | + } catch (PDOException $e) { |
|
| 1412 | 1412 | return "error (delete default timestamp spotter_output) : ".$e->getMessage()."\n"; |
| 1413 | 1413 | } |
| 1414 | 1414 | /*$query = "SELECT date,last_seen FROM spotter_output WHERE last_seen < date ORDER BY date DESC LIMIT 150"; |
@@ -1459,7 +1459,7 @@ discard block |
||
| 1459 | 1459 | try { |
| 1460 | 1460 | $sth = $Connection->db->prepare($query); |
| 1461 | 1461 | $sth->execute(); |
| 1462 | - } catch(PDOException $e) { |
|
| 1462 | + } catch (PDOException $e) { |
|
| 1463 | 1463 | return "error (fix date) : ".$e->getMessage()."\n"; |
| 1464 | 1464 | } |
| 1465 | 1465 | } |
@@ -1544,7 +1544,7 @@ discard block |
||
| 1544 | 1544 | try { |
| 1545 | 1545 | $sth = $Connection->db->prepare($query); |
| 1546 | 1546 | $sth->execute(); |
| 1547 | - } catch(PDOException $e) { |
|
| 1547 | + } catch (PDOException $e) { |
|
| 1548 | 1548 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1549 | 1549 | } |
| 1550 | 1550 | return $error; |
@@ -1553,13 +1553,13 @@ discard block |
||
| 1553 | 1553 | global $globalDBdriver; |
| 1554 | 1554 | $Connection = new Connection(); |
| 1555 | 1555 | $error = ''; |
| 1556 | - if (!$Connection->indexExists('accidents','type')) { |
|
| 1556 | + if (!$Connection->indexExists('accidents', 'type')) { |
|
| 1557 | 1557 | // Add index key |
| 1558 | 1558 | $query = "create index type on accidents (type,date)"; |
| 1559 | 1559 | try { |
| 1560 | 1560 | $sth = $Connection->db->prepare($query); |
| 1561 | 1561 | $sth->execute(); |
| 1562 | - } catch(PDOException $e) { |
|
| 1562 | + } catch (PDOException $e) { |
|
| 1563 | 1563 | return "error (add index type on accidents) : ".$e->getMessage()."\n"; |
| 1564 | 1564 | } |
| 1565 | 1565 | } |
@@ -1567,7 +1567,7 @@ discard block |
||
| 1567 | 1567 | try { |
| 1568 | 1568 | $sth = $Connection->db->prepare($query); |
| 1569 | 1569 | $sth->execute(); |
| 1570 | - } catch(PDOException $e) { |
|
| 1570 | + } catch (PDOException $e) { |
|
| 1571 | 1571 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1572 | 1572 | } |
| 1573 | 1573 | return $error; |
@@ -1577,12 +1577,12 @@ discard block |
||
| 1577 | 1577 | global $globalDBdriver; |
| 1578 | 1578 | $Connection = new Connection(); |
| 1579 | 1579 | $error = ''; |
| 1580 | - if (!$Connection->checkColumnName('aircraft_modes','source_type')) { |
|
| 1580 | + if (!$Connection->checkColumnName('aircraft_modes', 'source_type')) { |
|
| 1581 | 1581 | $query = "ALTER TABLE aircraft_modes ADD source_type VARCHAR(255) DEFAULT 'modes'"; |
| 1582 | 1582 | try { |
| 1583 | 1583 | $sth = $Connection->db->prepare($query); |
| 1584 | 1584 | $sth->execute(); |
| 1585 | - } catch(PDOException $e) { |
|
| 1585 | + } catch (PDOException $e) { |
|
| 1586 | 1586 | return "error (add source_type column in aircraft_modes) : ".$e->getMessage()."\n"; |
| 1587 | 1587 | } |
| 1588 | 1588 | } |
@@ -1648,7 +1648,7 @@ discard block |
||
| 1648 | 1648 | try { |
| 1649 | 1649 | $sth = $Connection->db->prepare($query); |
| 1650 | 1650 | $sth->execute(); |
| 1651 | - } catch(PDOException $e) { |
|
| 1651 | + } catch (PDOException $e) { |
|
| 1652 | 1652 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1653 | 1653 | } |
| 1654 | 1654 | return $error; |
@@ -1691,13 +1691,13 @@ discard block |
||
| 1691 | 1691 | $error .= create_db::import_file('../db/pgsql/tracker_archive_output.sql'); |
| 1692 | 1692 | if ($error != '') return $error; |
| 1693 | 1693 | } |
| 1694 | - if (!$Connection->indexExists('spotter_archive','flightaware_id_date_idx')) { |
|
| 1694 | + if (!$Connection->indexExists('spotter_archive', 'flightaware_id_date_idx')) { |
|
| 1695 | 1695 | // Add index key |
| 1696 | 1696 | $query = "create index flightaware_id_date_idx on spotter_archive (flightaware_id,date)"; |
| 1697 | 1697 | try { |
| 1698 | 1698 | $sth = $Connection->db->prepare($query); |
| 1699 | 1699 | $sth->execute(); |
| 1700 | - } catch(PDOException $e) { |
|
| 1700 | + } catch (PDOException $e) { |
|
| 1701 | 1701 | return "error (add index flightaware_id, datee on spotter_archive) : ".$e->getMessage()."\n"; |
| 1702 | 1702 | } |
| 1703 | 1703 | } |
@@ -1705,7 +1705,7 @@ discard block |
||
| 1705 | 1705 | try { |
| 1706 | 1706 | $sth = $Connection->db->prepare($query); |
| 1707 | 1707 | $sth->execute(); |
| 1708 | - } catch(PDOException $e) { |
|
| 1708 | + } catch (PDOException $e) { |
|
| 1709 | 1709 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
| 1710 | 1710 | } |
| 1711 | 1711 | return $error; |
@@ -1727,7 +1727,7 @@ discard block |
||
| 1727 | 1727 | try { |
| 1728 | 1728 | $sth = $Connection->db->prepare($query); |
| 1729 | 1729 | $sth->execute(); |
| 1730 | - } catch(PDOException $e) { |
|
| 1730 | + } catch (PDOException $e) { |
|
| 1731 | 1731 | return "error : ".$e->getMessage()."\n"; |
| 1732 | 1732 | } |
| 1733 | 1733 | $result = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -258,7 +258,9 @@ discard block |
||
| 258 | 258 | // Update table countries |
| 259 | 259 | if ($Connection->tableExists('airspace')) { |
| 260 | 260 | $error .= update_db::update_countries(); |
| 261 | - if ($error != '') return $error; |
|
| 261 | + if ($error != '') { |
|
| 262 | + return $error; |
|
| 263 | + } |
|
| 262 | 264 | } |
| 263 | 265 | // Update schema_version to 7 |
| 264 | 266 | $query = "UPDATE `config` SET `value` = '7' WHERE `name` = 'schema_version'"; |
@@ -314,7 +316,9 @@ discard block |
||
| 314 | 316 | $error = ''; |
| 315 | 317 | // Update table aircraft |
| 316 | 318 | $error .= create_db::import_file('../db/source_location.sql'); |
| 317 | - if ($error != '') return $error; |
|
| 319 | + if ($error != '') { |
|
| 320 | + return $error; |
|
| 321 | + } |
|
| 318 | 322 | // Update schema_version to 6 |
| 319 | 323 | $query = "UPDATE `config` SET `value` = '8' WHERE `name` = 'schema_version'"; |
| 320 | 324 | try { |
@@ -331,7 +335,9 @@ discard block |
||
| 331 | 335 | $error = ''; |
| 332 | 336 | // Update table aircraft |
| 333 | 337 | $error .= create_db::import_file('../db/notam.sql'); |
| 334 | - if ($error != '') return $error; |
|
| 338 | + if ($error != '') { |
|
| 339 | + return $error; |
|
| 340 | + } |
|
| 335 | 341 | $query = "DELETE FROM config WHERE name = 'last_update_db'; |
| 336 | 342 | INSERT INTO config (name,value) VALUES ('last_update_db',NOW()); |
| 337 | 343 | DELETE FROM config WHERE name = 'last_update_notam_db'; |
@@ -365,7 +371,9 @@ discard block |
||
| 365 | 371 | $error = ''; |
| 366 | 372 | // Update table atc |
| 367 | 373 | $error .= create_db::import_file('../db/atc.sql'); |
| 368 | - if ($error != '') return $error; |
|
| 374 | + if ($error != '') { |
|
| 375 | + return $error; |
|
| 376 | + } |
|
| 369 | 377 | |
| 370 | 378 | $query = "UPDATE `config` SET `value` = '10' WHERE `name` = 'schema_version'"; |
| 371 | 379 | try { |
@@ -389,13 +397,21 @@ discard block |
||
| 389 | 397 | $error = ''; |
| 390 | 398 | // Add tables |
| 391 | 399 | $error .= create_db::import_file('../db/aircraft_owner.sql'); |
| 392 | - if ($error != '') return $error; |
|
| 400 | + if ($error != '') { |
|
| 401 | + return $error; |
|
| 402 | + } |
|
| 393 | 403 | $error .= create_db::import_file('../db/metar.sql'); |
| 394 | - if ($error != '') return $error; |
|
| 404 | + if ($error != '') { |
|
| 405 | + return $error; |
|
| 406 | + } |
|
| 395 | 407 | $error .= create_db::import_file('../db/taf.sql'); |
| 396 | - if ($error != '') return $error; |
|
| 408 | + if ($error != '') { |
|
| 409 | + return $error; |
|
| 410 | + } |
|
| 397 | 411 | $error .= create_db::import_file('../db/airport.sql'); |
| 398 | - if ($error != '') return $error; |
|
| 412 | + if ($error != '') { |
|
| 413 | + return $error; |
|
| 414 | + } |
|
| 399 | 415 | |
| 400 | 416 | $query = "UPDATE `config` SET `value` = '11' WHERE `name` = 'schema_version'"; |
| 401 | 417 | try { |
@@ -469,19 +485,33 @@ discard block |
||
| 469 | 485 | $error = ''; |
| 470 | 486 | // Add tables |
| 471 | 487 | $error .= create_db::import_file('../db/stats.sql'); |
| 472 | - if ($error != '') return $error; |
|
| 488 | + if ($error != '') { |
|
| 489 | + return $error; |
|
| 490 | + } |
|
| 473 | 491 | $error .= create_db::import_file('../db/stats_aircraft.sql'); |
| 474 | - if ($error != '') return $error; |
|
| 492 | + if ($error != '') { |
|
| 493 | + return $error; |
|
| 494 | + } |
|
| 475 | 495 | $error .= create_db::import_file('../db/stats_airline.sql'); |
| 476 | - if ($error != '') return $error; |
|
| 496 | + if ($error != '') { |
|
| 497 | + return $error; |
|
| 498 | + } |
|
| 477 | 499 | $error .= create_db::import_file('../db/stats_airport.sql'); |
| 478 | - if ($error != '') return $error; |
|
| 500 | + if ($error != '') { |
|
| 501 | + return $error; |
|
| 502 | + } |
|
| 479 | 503 | $error .= create_db::import_file('../db/stats_owner.sql'); |
| 480 | - if ($error != '') return $error; |
|
| 504 | + if ($error != '') { |
|
| 505 | + return $error; |
|
| 506 | + } |
|
| 481 | 507 | $error .= create_db::import_file('../db/stats_pilot.sql'); |
| 482 | - if ($error != '') return $error; |
|
| 508 | + if ($error != '') { |
|
| 509 | + return $error; |
|
| 510 | + } |
|
| 483 | 511 | $error .= create_db::import_file('../db/spotter_archive_output.sql'); |
| 484 | - if ($error != '') return $error; |
|
| 512 | + if ($error != '') { |
|
| 513 | + return $error; |
|
| 514 | + } |
|
| 485 | 515 | |
| 486 | 516 | $query = "UPDATE `config` SET `value` = '13' WHERE `name` = 'schema_version'"; |
| 487 | 517 | try { |
@@ -521,7 +551,9 @@ discard block |
||
| 521 | 551 | // Add tables |
| 522 | 552 | if (!$Connection->tableExists('stats_flight')) { |
| 523 | 553 | $error .= create_db::import_file('../db/stats_flight.sql'); |
| 524 | - if ($error != '') return $error; |
|
| 554 | + if ($error != '') { |
|
| 555 | + return $error; |
|
| 556 | + } |
|
| 525 | 557 | } |
| 526 | 558 | $query = "UPDATE `config` SET `value` = '15' WHERE `name` = 'schema_version'"; |
| 527 | 559 | try { |
@@ -545,7 +577,9 @@ discard block |
||
| 545 | 577 | } catch(PDOException $e) { |
| 546 | 578 | return "error (update stats) : ".$e->getMessage()."\n"; |
| 547 | 579 | } |
| 548 | - if ($error != '') return $error; |
|
| 580 | + if ($error != '') { |
|
| 581 | + return $error; |
|
| 582 | + } |
|
| 549 | 583 | $query = "UPDATE `config` SET `value` = '16' WHERE `name` = 'schema_version'"; |
| 550 | 584 | try { |
| 551 | 585 | $sth = $Connection->db->prepare($query); |
@@ -566,7 +600,9 @@ discard block |
||
| 566 | 600 | if (!$Connection->tableExists('stats_callsign')) { |
| 567 | 601 | $error .= create_db::import_file('../db/stats_callsign.sql'); |
| 568 | 602 | } |
| 569 | - if ($error != '') return $error; |
|
| 603 | + if ($error != '') { |
|
| 604 | + return $error; |
|
| 605 | + } |
|
| 570 | 606 | $query = "UPDATE `config` SET `value` = '17' WHERE `name` = 'schema_version'"; |
| 571 | 607 | try { |
| 572 | 608 | $sth = $Connection->db->prepare($query); |
@@ -584,7 +620,9 @@ discard block |
||
| 584 | 620 | if (!$Connection->tableExists('stats_country')) { |
| 585 | 621 | $error .= create_db::import_file('../db/stats_country.sql'); |
| 586 | 622 | } |
| 587 | - if ($error != '') return $error; |
|
| 623 | + if ($error != '') { |
|
| 624 | + return $error; |
|
| 625 | + } |
|
| 588 | 626 | $query = "UPDATE `config` SET `value` = '18' WHERE `name` = 'schema_version'"; |
| 589 | 627 | try { |
| 590 | 628 | $sth = $Connection->db->prepare($query); |
@@ -607,7 +645,9 @@ discard block |
||
| 607 | 645 | return "error (update stats) : ".$e->getMessage()."\n"; |
| 608 | 646 | } |
| 609 | 647 | } |
| 610 | - if ($error != '') return $error; |
|
| 648 | + if ($error != '') { |
|
| 649 | + return $error; |
|
| 650 | + } |
|
| 611 | 651 | $query = "UPDATE `config` SET `value` = '19' WHERE `name` = 'schema_version'"; |
| 612 | 652 | try { |
| 613 | 653 | $sth = $Connection->db->prepare($query); |
@@ -623,7 +663,9 @@ discard block |
||
| 623 | 663 | $error = ''; |
| 624 | 664 | // Update airport table |
| 625 | 665 | $error .= create_db::import_file('../db/airport.sql'); |
| 626 | - if ($error != '') return 'Import airport.sql : '.$error; |
|
| 666 | + if ($error != '') { |
|
| 667 | + return 'Import airport.sql : '.$error; |
|
| 668 | + } |
|
| 627 | 669 | // Remove primary key on Spotter_Archive |
| 628 | 670 | $query = "alter table spotter_archive drop spotter_archive_id"; |
| 629 | 671 | try { |
@@ -699,7 +741,9 @@ discard block |
||
| 699 | 741 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
| 700 | 742 | } |
| 701 | 743 | } |
| 702 | - if ($error != '') return $error; |
|
| 744 | + if ($error != '') { |
|
| 745 | + return $error; |
|
| 746 | + } |
|
| 703 | 747 | $query = "UPDATE `config` SET `value` = '20' WHERE `name` = 'schema_version'"; |
| 704 | 748 | try { |
| 705 | 749 | $sth = $Connection->db->prepare($query); |
@@ -717,7 +761,9 @@ discard block |
||
| 717 | 761 | // Update airline table |
| 718 | 762 | if (!$globalIVAO && !$globalVATSIM && !$globalphpVMS) { |
| 719 | 763 | $error .= create_db::import_file('../db/airlines.sql'); |
| 720 | - if ($error != '') return 'Import airlines.sql : '.$error; |
|
| 764 | + if ($error != '') { |
|
| 765 | + return 'Import airlines.sql : '.$error; |
|
| 766 | + } |
|
| 721 | 767 | } |
| 722 | 768 | if (!$Connection->checkColumnName('aircraft_modes','type_flight')) { |
| 723 | 769 | // Add column over_country |
@@ -729,7 +775,9 @@ discard block |
||
| 729 | 775 | return "error (add over_country) : ".$e->getMessage()."\n"; |
| 730 | 776 | } |
| 731 | 777 | } |
| 732 | - if ($error != '') return $error; |
|
| 778 | + if ($error != '') { |
|
| 779 | + return $error; |
|
| 780 | + } |
|
| 733 | 781 | /* |
| 734 | 782 | if (!$globalIVAO && !$globalVATSIM && !$globalphpVMS) { |
| 735 | 783 | // Force update ModeS (this will put type_flight data |
@@ -759,7 +807,9 @@ discard block |
||
| 759 | 807 | } catch(PDOException $e) { |
| 760 | 808 | return "error (rename type to stats_type on stats*) : ".$e->getMessage()."\n"; |
| 761 | 809 | } |
| 762 | - if ($error != '') return $error; |
|
| 810 | + if ($error != '') { |
|
| 811 | + return $error; |
|
| 812 | + } |
|
| 763 | 813 | } |
| 764 | 814 | $query = "UPDATE `config` SET `value` = '22' WHERE `name` = 'schema_version'"; |
| 765 | 815 | try { |
@@ -782,7 +832,9 @@ discard block |
||
| 782 | 832 | } else { |
| 783 | 833 | $error .= create_db::import_file('../db/pgsql/stats_source.sql'); |
| 784 | 834 | } |
| 785 | - if ($error != '') return $error; |
|
| 835 | + if ($error != '') { |
|
| 836 | + return $error; |
|
| 837 | + } |
|
| 786 | 838 | } |
| 787 | 839 | $query = "UPDATE config SET value = '23' WHERE name = 'schema_version'"; |
| 788 | 840 | try { |
@@ -804,12 +856,16 @@ discard block |
||
| 804 | 856 | if ($globalDBdriver == 'mysql') { |
| 805 | 857 | if (!$Connection->tableExists('tle')) { |
| 806 | 858 | $error .= create_db::import_file('../db/tle.sql'); |
| 807 | - if ($error != '') return $error; |
|
| 859 | + if ($error != '') { |
|
| 860 | + return $error; |
|
| 861 | + } |
|
| 808 | 862 | } |
| 809 | 863 | } else { |
| 810 | 864 | if (!$Connection->tableExists('tle')) { |
| 811 | 865 | $error .= create_db::import_file('../db/pgsql/tle.sql'); |
| 812 | - if ($error != '') return $error; |
|
| 866 | + if ($error != '') { |
|
| 867 | + return $error; |
|
| 868 | + } |
|
| 813 | 869 | } |
| 814 | 870 | $query = "create index flightaware_id_idx ON spotter_archive USING btree(flightaware_id)"; |
| 815 | 871 | try { |
@@ -849,7 +905,9 @@ discard block |
||
| 849 | 905 | } else { |
| 850 | 906 | $error .= create_db::import_file('../db/pgsql/airlines.sql'); |
| 851 | 907 | } |
| 852 | - if ($error != '') return 'Import airlines.sql : '.$error; |
|
| 908 | + if ($error != '') { |
|
| 909 | + return 'Import airlines.sql : '.$error; |
|
| 910 | + } |
|
| 853 | 911 | if (!$Connection->checkColumnName('airlines','forsource')) { |
| 854 | 912 | // Add forsource to airlines |
| 855 | 913 | $query = "ALTER TABLE airlines ADD forsource VARCHAR(255) NULL DEFAULT NULL"; |
@@ -1332,20 +1390,28 @@ discard block |
||
| 1332 | 1390 | } |
| 1333 | 1391 | if ($globalDBdriver == 'mysql') { |
| 1334 | 1392 | $error .= create_db::import_file('../db/airlines.sql'); |
| 1335 | - if ($error != '') return $error; |
|
| 1393 | + if ($error != '') { |
|
| 1394 | + return $error; |
|
| 1395 | + } |
|
| 1336 | 1396 | } else { |
| 1337 | 1397 | $error .= create_db::import_file('../db/pgsql/airlines.sql'); |
| 1338 | - if ($error != '') return $error; |
|
| 1398 | + if ($error != '') { |
|
| 1399 | + return $error; |
|
| 1400 | + } |
|
| 1339 | 1401 | } |
| 1340 | 1402 | if ((isset($globalVATSIM) && $globalVATSIM) || (isset($globalIVAO) && $globalIVAO)) { |
| 1341 | 1403 | include_once(dirname(__FILE__).'/class.update_db.php'); |
| 1342 | 1404 | if (isset($globalVATSIM) && $globalVATSIM) { |
| 1343 | 1405 | $error .= update_db::update_vatsim(); |
| 1344 | - if ($error != '') return $error; |
|
| 1406 | + if ($error != '') { |
|
| 1407 | + return $error; |
|
| 1408 | + } |
|
| 1345 | 1409 | } |
| 1346 | 1410 | if (isset($globalIVAO) && $globalIVAO && file_exists('tmp/ivae_feb2013.zip')) { |
| 1347 | 1411 | $error .= update_db::update_IVAO(); |
| 1348 | - if ($error != '') return $error; |
|
| 1412 | + if ($error != '') { |
|
| 1413 | + return $error; |
|
| 1414 | + } |
|
| 1349 | 1415 | } |
| 1350 | 1416 | } |
| 1351 | 1417 | |
@@ -1608,41 +1674,65 @@ discard block |
||
| 1608 | 1674 | if ($globalDBdriver == 'mysql') { |
| 1609 | 1675 | if (!$Connection->tableExists('tracker_output')) { |
| 1610 | 1676 | $error .= create_db::import_file('../db/tracker_output.sql'); |
| 1611 | - if ($error != '') return $error; |
|
| 1677 | + if ($error != '') { |
|
| 1678 | + return $error; |
|
| 1679 | + } |
|
| 1612 | 1680 | } |
| 1613 | 1681 | if (!$Connection->tableExists('tracker_live')) { |
| 1614 | 1682 | $error .= create_db::import_file('../db/tracker_live.sql'); |
| 1615 | - if ($error != '') return $error; |
|
| 1683 | + if ($error != '') { |
|
| 1684 | + return $error; |
|
| 1685 | + } |
|
| 1616 | 1686 | } |
| 1617 | 1687 | if (!$Connection->tableExists('marine_output')) { |
| 1618 | 1688 | $error .= create_db::import_file('../db/marine_output.sql'); |
| 1619 | - if ($error != '') return $error; |
|
| 1689 | + if ($error != '') { |
|
| 1690 | + return $error; |
|
| 1691 | + } |
|
| 1620 | 1692 | } |
| 1621 | 1693 | if (!$Connection->tableExists('marine_live')) { |
| 1622 | 1694 | $error .= create_db::import_file('../db/marine_live.sql'); |
| 1623 | - if ($error != '') return $error; |
|
| 1695 | + if ($error != '') { |
|
| 1696 | + return $error; |
|
| 1697 | + } |
|
| 1624 | 1698 | } |
| 1625 | 1699 | if (!$Connection->tableExists('marine_identity')) { |
| 1626 | 1700 | $error .= create_db::import_file('../db/marine_identity.sql'); |
| 1627 | - if ($error != '') return $error; |
|
| 1701 | + if ($error != '') { |
|
| 1702 | + return $error; |
|
| 1703 | + } |
|
| 1628 | 1704 | } |
| 1629 | 1705 | if (!$Connection->tableExists('marine_mid')) { |
| 1630 | 1706 | $error .= create_db::import_file('../db/marine_mid.sql'); |
| 1631 | - if ($error != '') return $error; |
|
| 1707 | + if ($error != '') { |
|
| 1708 | + return $error; |
|
| 1709 | + } |
|
| 1632 | 1710 | } |
| 1633 | 1711 | } else { |
| 1634 | 1712 | $error .= create_db::import_file('../db/pgsql/tracker_output.sql'); |
| 1635 | - if ($error != '') return $error; |
|
| 1713 | + if ($error != '') { |
|
| 1714 | + return $error; |
|
| 1715 | + } |
|
| 1636 | 1716 | $error .= create_db::import_file('../db/pgsql/tracker_live.sql'); |
| 1637 | - if ($error != '') return $error; |
|
| 1717 | + if ($error != '') { |
|
| 1718 | + return $error; |
|
| 1719 | + } |
|
| 1638 | 1720 | $error .= create_db::import_file('../db/pgsql/marine_output.sql'); |
| 1639 | - if ($error != '') return $error; |
|
| 1721 | + if ($error != '') { |
|
| 1722 | + return $error; |
|
| 1723 | + } |
|
| 1640 | 1724 | $error .= create_db::import_file('../db/pgsql/marine_live.sql'); |
| 1641 | - if ($error != '') return $error; |
|
| 1725 | + if ($error != '') { |
|
| 1726 | + return $error; |
|
| 1727 | + } |
|
| 1642 | 1728 | $error .= create_db::import_file('../db/pgsql/marine_identity.sql'); |
| 1643 | - if ($error != '') return $error; |
|
| 1729 | + if ($error != '') { |
|
| 1730 | + return $error; |
|
| 1731 | + } |
|
| 1644 | 1732 | $error .= create_db::import_file('../db/pgsql/marine_mid.sql'); |
| 1645 | - if ($error != '') return $error; |
|
| 1733 | + if ($error != '') { |
|
| 1734 | + return $error; |
|
| 1735 | + } |
|
| 1646 | 1736 | } |
| 1647 | 1737 | $query = "UPDATE config SET value = '37' WHERE name = 'schema_version'"; |
| 1648 | 1738 | try { |
@@ -1661,35 +1751,55 @@ discard block |
||
| 1661 | 1751 | if ($globalDBdriver == 'mysql') { |
| 1662 | 1752 | if (!$Connection->tableExists('marine_image')) { |
| 1663 | 1753 | $error .= create_db::import_file('../db/marine_image.sql'); |
| 1664 | - if ($error != '') return $error; |
|
| 1754 | + if ($error != '') { |
|
| 1755 | + return $error; |
|
| 1756 | + } |
|
| 1665 | 1757 | } |
| 1666 | 1758 | if (!$Connection->tableExists('marine_archive')) { |
| 1667 | 1759 | $error .= create_db::import_file('../db/marine_archive.sql'); |
| 1668 | - if ($error != '') return $error; |
|
| 1760 | + if ($error != '') { |
|
| 1761 | + return $error; |
|
| 1762 | + } |
|
| 1669 | 1763 | } |
| 1670 | 1764 | if (!$Connection->tableExists('marine_archive_output')) { |
| 1671 | 1765 | $error .= create_db::import_file('../db/marine_archive_output.sql'); |
| 1672 | - if ($error != '') return $error; |
|
| 1766 | + if ($error != '') { |
|
| 1767 | + return $error; |
|
| 1768 | + } |
|
| 1673 | 1769 | } |
| 1674 | 1770 | if (!$Connection->tableExists('tracker_archive')) { |
| 1675 | 1771 | $error .= create_db::import_file('../db/tracker_archive.sql'); |
| 1676 | - if ($error != '') return $error; |
|
| 1772 | + if ($error != '') { |
|
| 1773 | + return $error; |
|
| 1774 | + } |
|
| 1677 | 1775 | } |
| 1678 | 1776 | if (!$Connection->tableExists('marine_archive_output')) { |
| 1679 | 1777 | $error .= create_db::import_file('../db/tracker_archive_output.sql'); |
| 1680 | - if ($error != '') return $error; |
|
| 1778 | + if ($error != '') { |
|
| 1779 | + return $error; |
|
| 1780 | + } |
|
| 1681 | 1781 | } |
| 1682 | 1782 | } else { |
| 1683 | 1783 | $error .= create_db::import_file('../db/pgsql/marine_image.sql'); |
| 1684 | - if ($error != '') return $error; |
|
| 1784 | + if ($error != '') { |
|
| 1785 | + return $error; |
|
| 1786 | + } |
|
| 1685 | 1787 | $error .= create_db::import_file('../db/pgsql/marine_archive.sql'); |
| 1686 | - if ($error != '') return $error; |
|
| 1788 | + if ($error != '') { |
|
| 1789 | + return $error; |
|
| 1790 | + } |
|
| 1687 | 1791 | $error .= create_db::import_file('../db/pgsql/marine_archive_output.sql'); |
| 1688 | - if ($error != '') return $error; |
|
| 1792 | + if ($error != '') { |
|
| 1793 | + return $error; |
|
| 1794 | + } |
|
| 1689 | 1795 | $error .= create_db::import_file('../db/pgsql/tracker_archive.sql'); |
| 1690 | - if ($error != '') return $error; |
|
| 1796 | + if ($error != '') { |
|
| 1797 | + return $error; |
|
| 1798 | + } |
|
| 1691 | 1799 | $error .= create_db::import_file('../db/pgsql/tracker_archive_output.sql'); |
| 1692 | - if ($error != '') return $error; |
|
| 1800 | + if ($error != '') { |
|
| 1801 | + return $error; |
|
| 1802 | + } |
|
| 1693 | 1803 | } |
| 1694 | 1804 | if (!$Connection->indexExists('spotter_archive','flightaware_id_date_idx')) { |
| 1695 | 1805 | // Add index key |
@@ -1719,8 +1829,11 @@ discard block |
||
| 1719 | 1829 | if ($Connection->tableExists('aircraft')) { |
| 1720 | 1830 | if (!$Connection->tableExists('config')) { |
| 1721 | 1831 | $version = '1'; |
| 1722 | - if ($update) return self::update_from_1(); |
|
| 1723 | - else return $version; |
|
| 1832 | + if ($update) { |
|
| 1833 | + return self::update_from_1(); |
|
| 1834 | + } else { |
|
| 1835 | + return $version; |
|
| 1836 | + } |
|
| 1724 | 1837 | } else { |
| 1725 | 1838 | $Connection = new Connection(); |
| 1726 | 1839 | $query = "SELECT value FROM config WHERE name = 'schema_version' LIMIT 1"; |
@@ -1734,154 +1847,267 @@ discard block |
||
| 1734 | 1847 | if ($update) { |
| 1735 | 1848 | if ($result['value'] == '2') { |
| 1736 | 1849 | $error = self::update_from_2(); |
| 1737 | - if ($error != '') return $error; |
|
| 1738 | - else return self::check_version(true); |
|
| 1850 | + if ($error != '') { |
|
| 1851 | + return $error; |
|
| 1852 | + } else { |
|
| 1853 | + return self::check_version(true); |
|
| 1854 | + } |
|
| 1739 | 1855 | } elseif ($result['value'] == '3') { |
| 1740 | 1856 | $error = self::update_from_3(); |
| 1741 | - if ($error != '') return $error; |
|
| 1742 | - else return self::check_version(true); |
|
| 1857 | + if ($error != '') { |
|
| 1858 | + return $error; |
|
| 1859 | + } else { |
|
| 1860 | + return self::check_version(true); |
|
| 1861 | + } |
|
| 1743 | 1862 | } elseif ($result['value'] == '4') { |
| 1744 | 1863 | $error = self::update_from_4(); |
| 1745 | - if ($error != '') return $error; |
|
| 1746 | - else return self::check_version(true); |
|
| 1864 | + if ($error != '') { |
|
| 1865 | + return $error; |
|
| 1866 | + } else { |
|
| 1867 | + return self::check_version(true); |
|
| 1868 | + } |
|
| 1747 | 1869 | } elseif ($result['value'] == '5') { |
| 1748 | 1870 | $error = self::update_from_5(); |
| 1749 | - if ($error != '') return $error; |
|
| 1750 | - else return self::check_version(true); |
|
| 1871 | + if ($error != '') { |
|
| 1872 | + return $error; |
|
| 1873 | + } else { |
|
| 1874 | + return self::check_version(true); |
|
| 1875 | + } |
|
| 1751 | 1876 | } elseif ($result['value'] == '6') { |
| 1752 | 1877 | $error = self::update_from_6(); |
| 1753 | - if ($error != '') return $error; |
|
| 1754 | - else return self::check_version(true); |
|
| 1878 | + if ($error != '') { |
|
| 1879 | + return $error; |
|
| 1880 | + } else { |
|
| 1881 | + return self::check_version(true); |
|
| 1882 | + } |
|
| 1755 | 1883 | } elseif ($result['value'] == '7') { |
| 1756 | 1884 | $error = self::update_from_7(); |
| 1757 | - if ($error != '') return $error; |
|
| 1758 | - else return self::check_version(true); |
|
| 1885 | + if ($error != '') { |
|
| 1886 | + return $error; |
|
| 1887 | + } else { |
|
| 1888 | + return self::check_version(true); |
|
| 1889 | + } |
|
| 1759 | 1890 | } elseif ($result['value'] == '8') { |
| 1760 | 1891 | $error = self::update_from_8(); |
| 1761 | - if ($error != '') return $error; |
|
| 1762 | - else return self::check_version(true); |
|
| 1892 | + if ($error != '') { |
|
| 1893 | + return $error; |
|
| 1894 | + } else { |
|
| 1895 | + return self::check_version(true); |
|
| 1896 | + } |
|
| 1763 | 1897 | } elseif ($result['value'] == '9') { |
| 1764 | 1898 | $error = self::update_from_9(); |
| 1765 | - if ($error != '') return $error; |
|
| 1766 | - else return self::check_version(true); |
|
| 1899 | + if ($error != '') { |
|
| 1900 | + return $error; |
|
| 1901 | + } else { |
|
| 1902 | + return self::check_version(true); |
|
| 1903 | + } |
|
| 1767 | 1904 | } elseif ($result['value'] == '10') { |
| 1768 | 1905 | $error = self::update_from_10(); |
| 1769 | - if ($error != '') return $error; |
|
| 1770 | - else return self::check_version(true); |
|
| 1906 | + if ($error != '') { |
|
| 1907 | + return $error; |
|
| 1908 | + } else { |
|
| 1909 | + return self::check_version(true); |
|
| 1910 | + } |
|
| 1771 | 1911 | } elseif ($result['value'] == '11') { |
| 1772 | 1912 | $error = self::update_from_11(); |
| 1773 | - if ($error != '') return $error; |
|
| 1774 | - else return self::check_version(true); |
|
| 1913 | + if ($error != '') { |
|
| 1914 | + return $error; |
|
| 1915 | + } else { |
|
| 1916 | + return self::check_version(true); |
|
| 1917 | + } |
|
| 1775 | 1918 | } elseif ($result['value'] == '12') { |
| 1776 | 1919 | $error = self::update_from_12(); |
| 1777 | - if ($error != '') return $error; |
|
| 1778 | - else return self::check_version(true); |
|
| 1920 | + if ($error != '') { |
|
| 1921 | + return $error; |
|
| 1922 | + } else { |
|
| 1923 | + return self::check_version(true); |
|
| 1924 | + } |
|
| 1779 | 1925 | } elseif ($result['value'] == '13') { |
| 1780 | 1926 | $error = self::update_from_13(); |
| 1781 | - if ($error != '') return $error; |
|
| 1782 | - else return self::check_version(true); |
|
| 1927 | + if ($error != '') { |
|
| 1928 | + return $error; |
|
| 1929 | + } else { |
|
| 1930 | + return self::check_version(true); |
|
| 1931 | + } |
|
| 1783 | 1932 | } elseif ($result['value'] == '14') { |
| 1784 | 1933 | $error = self::update_from_14(); |
| 1785 | - if ($error != '') return $error; |
|
| 1786 | - else return self::check_version(true); |
|
| 1934 | + if ($error != '') { |
|
| 1935 | + return $error; |
|
| 1936 | + } else { |
|
| 1937 | + return self::check_version(true); |
|
| 1938 | + } |
|
| 1787 | 1939 | } elseif ($result['value'] == '15') { |
| 1788 | 1940 | $error = self::update_from_15(); |
| 1789 | - if ($error != '') return $error; |
|
| 1790 | - else return self::check_version(true); |
|
| 1941 | + if ($error != '') { |
|
| 1942 | + return $error; |
|
| 1943 | + } else { |
|
| 1944 | + return self::check_version(true); |
|
| 1945 | + } |
|
| 1791 | 1946 | } elseif ($result['value'] == '16') { |
| 1792 | 1947 | $error = self::update_from_16(); |
| 1793 | - if ($error != '') return $error; |
|
| 1794 | - else return self::check_version(true); |
|
| 1948 | + if ($error != '') { |
|
| 1949 | + return $error; |
|
| 1950 | + } else { |
|
| 1951 | + return self::check_version(true); |
|
| 1952 | + } |
|
| 1795 | 1953 | } elseif ($result['value'] == '17') { |
| 1796 | 1954 | $error = self::update_from_17(); |
| 1797 | - if ($error != '') return $error; |
|
| 1798 | - else return self::check_version(true); |
|
| 1955 | + if ($error != '') { |
|
| 1956 | + return $error; |
|
| 1957 | + } else { |
|
| 1958 | + return self::check_version(true); |
|
| 1959 | + } |
|
| 1799 | 1960 | } elseif ($result['value'] == '18') { |
| 1800 | 1961 | $error = self::update_from_18(); |
| 1801 | - if ($error != '') return $error; |
|
| 1802 | - else return self::check_version(true); |
|
| 1962 | + if ($error != '') { |
|
| 1963 | + return $error; |
|
| 1964 | + } else { |
|
| 1965 | + return self::check_version(true); |
|
| 1966 | + } |
|
| 1803 | 1967 | } elseif ($result['value'] == '19') { |
| 1804 | 1968 | $error = self::update_from_19(); |
| 1805 | - if ($error != '') return $error; |
|
| 1806 | - else return self::check_version(true); |
|
| 1969 | + if ($error != '') { |
|
| 1970 | + return $error; |
|
| 1971 | + } else { |
|
| 1972 | + return self::check_version(true); |
|
| 1973 | + } |
|
| 1807 | 1974 | } elseif ($result['value'] == '20') { |
| 1808 | 1975 | $error = self::update_from_20(); |
| 1809 | - if ($error != '') return $error; |
|
| 1810 | - else return self::check_version(true); |
|
| 1976 | + if ($error != '') { |
|
| 1977 | + return $error; |
|
| 1978 | + } else { |
|
| 1979 | + return self::check_version(true); |
|
| 1980 | + } |
|
| 1811 | 1981 | } elseif ($result['value'] == '21') { |
| 1812 | 1982 | $error = self::update_from_21(); |
| 1813 | - if ($error != '') return $error; |
|
| 1814 | - else return self::check_version(true); |
|
| 1983 | + if ($error != '') { |
|
| 1984 | + return $error; |
|
| 1985 | + } else { |
|
| 1986 | + return self::check_version(true); |
|
| 1987 | + } |
|
| 1815 | 1988 | } elseif ($result['value'] == '22') { |
| 1816 | 1989 | $error = self::update_from_22(); |
| 1817 | - if ($error != '') return $error; |
|
| 1818 | - else return self::check_version(true); |
|
| 1990 | + if ($error != '') { |
|
| 1991 | + return $error; |
|
| 1992 | + } else { |
|
| 1993 | + return self::check_version(true); |
|
| 1994 | + } |
|
| 1819 | 1995 | } elseif ($result['value'] == '23') { |
| 1820 | 1996 | $error = self::update_from_23(); |
| 1821 | - if ($error != '') return $error; |
|
| 1822 | - else return self::check_version(true); |
|
| 1997 | + if ($error != '') { |
|
| 1998 | + return $error; |
|
| 1999 | + } else { |
|
| 2000 | + return self::check_version(true); |
|
| 2001 | + } |
|
| 1823 | 2002 | } elseif ($result['value'] == '24') { |
| 1824 | 2003 | $error = self::update_from_24(); |
| 1825 | - if ($error != '') return $error; |
|
| 1826 | - else return self::check_version(true); |
|
| 2004 | + if ($error != '') { |
|
| 2005 | + return $error; |
|
| 2006 | + } else { |
|
| 2007 | + return self::check_version(true); |
|
| 2008 | + } |
|
| 1827 | 2009 | } elseif ($result['value'] == '25') { |
| 1828 | 2010 | $error = self::update_from_25(); |
| 1829 | - if ($error != '') return $error; |
|
| 1830 | - else return self::check_version(true); |
|
| 2011 | + if ($error != '') { |
|
| 2012 | + return $error; |
|
| 2013 | + } else { |
|
| 2014 | + return self::check_version(true); |
|
| 2015 | + } |
|
| 1831 | 2016 | } elseif ($result['value'] == '26') { |
| 1832 | 2017 | $error = self::update_from_26(); |
| 1833 | - if ($error != '') return $error; |
|
| 1834 | - else return self::check_version(true); |
|
| 2018 | + if ($error != '') { |
|
| 2019 | + return $error; |
|
| 2020 | + } else { |
|
| 2021 | + return self::check_version(true); |
|
| 2022 | + } |
|
| 1835 | 2023 | } elseif ($result['value'] == '27') { |
| 1836 | 2024 | $error = self::update_from_27(); |
| 1837 | - if ($error != '') return $error; |
|
| 1838 | - else return self::check_version(true); |
|
| 2025 | + if ($error != '') { |
|
| 2026 | + return $error; |
|
| 2027 | + } else { |
|
| 2028 | + return self::check_version(true); |
|
| 2029 | + } |
|
| 1839 | 2030 | } elseif ($result['value'] == '28') { |
| 1840 | 2031 | $error = self::update_from_28(); |
| 1841 | - if ($error != '') return $error; |
|
| 1842 | - else return self::check_version(true); |
|
| 2032 | + if ($error != '') { |
|
| 2033 | + return $error; |
|
| 2034 | + } else { |
|
| 2035 | + return self::check_version(true); |
|
| 2036 | + } |
|
| 1843 | 2037 | } elseif ($result['value'] == '29') { |
| 1844 | 2038 | $error = self::update_from_29(); |
| 1845 | - if ($error != '') return $error; |
|
| 1846 | - else return self::check_version(true); |
|
| 2039 | + if ($error != '') { |
|
| 2040 | + return $error; |
|
| 2041 | + } else { |
|
| 2042 | + return self::check_version(true); |
|
| 2043 | + } |
|
| 1847 | 2044 | } elseif ($result['value'] == '30') { |
| 1848 | 2045 | $error = self::update_from_30(); |
| 1849 | - if ($error != '') return $error; |
|
| 1850 | - else return self::check_version(true); |
|
| 2046 | + if ($error != '') { |
|
| 2047 | + return $error; |
|
| 2048 | + } else { |
|
| 2049 | + return self::check_version(true); |
|
| 2050 | + } |
|
| 1851 | 2051 | } elseif ($result['value'] == '31') { |
| 1852 | 2052 | $error = self::update_from_31(); |
| 1853 | - if ($error != '') return $error; |
|
| 1854 | - else return self::check_version(true); |
|
| 2053 | + if ($error != '') { |
|
| 2054 | + return $error; |
|
| 2055 | + } else { |
|
| 2056 | + return self::check_version(true); |
|
| 2057 | + } |
|
| 1855 | 2058 | } elseif ($result['value'] == '32') { |
| 1856 | 2059 | $error = self::update_from_32(); |
| 1857 | - if ($error != '') return $error; |
|
| 1858 | - else return self::check_version(true); |
|
| 2060 | + if ($error != '') { |
|
| 2061 | + return $error; |
|
| 2062 | + } else { |
|
| 2063 | + return self::check_version(true); |
|
| 2064 | + } |
|
| 1859 | 2065 | } elseif ($result['value'] == '33') { |
| 1860 | 2066 | $error = self::update_from_33(); |
| 1861 | - if ($error != '') return $error; |
|
| 1862 | - else return self::check_version(true); |
|
| 2067 | + if ($error != '') { |
|
| 2068 | + return $error; |
|
| 2069 | + } else { |
|
| 2070 | + return self::check_version(true); |
|
| 2071 | + } |
|
| 1863 | 2072 | } elseif ($result['value'] == '34') { |
| 1864 | 2073 | $error = self::update_from_34(); |
| 1865 | - if ($error != '') return $error; |
|
| 1866 | - else return self::check_version(true); |
|
| 2074 | + if ($error != '') { |
|
| 2075 | + return $error; |
|
| 2076 | + } else { |
|
| 2077 | + return self::check_version(true); |
|
| 2078 | + } |
|
| 1867 | 2079 | } elseif ($result['value'] == '35') { |
| 1868 | 2080 | $error = self::update_from_35(); |
| 1869 | - if ($error != '') return $error; |
|
| 1870 | - else return self::check_version(true); |
|
| 2081 | + if ($error != '') { |
|
| 2082 | + return $error; |
|
| 2083 | + } else { |
|
| 2084 | + return self::check_version(true); |
|
| 2085 | + } |
|
| 1871 | 2086 | } elseif ($result['value'] == '36') { |
| 1872 | 2087 | $error = self::update_from_36(); |
| 1873 | - if ($error != '') return $error; |
|
| 1874 | - else return self::check_version(true); |
|
| 2088 | + if ($error != '') { |
|
| 2089 | + return $error; |
|
| 2090 | + } else { |
|
| 2091 | + return self::check_version(true); |
|
| 2092 | + } |
|
| 1875 | 2093 | } elseif ($result['value'] == '37') { |
| 1876 | 2094 | $error = self::update_from_37(); |
| 1877 | - if ($error != '') return $error; |
|
| 1878 | - else return self::check_version(true); |
|
| 1879 | - } else return ''; |
|
| 2095 | + if ($error != '') { |
|
| 2096 | + return $error; |
|
| 2097 | + } else { |
|
| 2098 | + return self::check_version(true); |
|
| 2099 | + } |
|
| 2100 | + } else { |
|
| 2101 | + return ''; |
|
| 2102 | + } |
|
| 2103 | + } else { |
|
| 2104 | + return $result['value']; |
|
| 1880 | 2105 | } |
| 1881 | - else return $result['value']; |
|
| 1882 | 2106 | } |
| 1883 | 2107 | |
| 1884 | - } else return $version; |
|
| 2108 | + } else { |
|
| 2109 | + return $version; |
|
| 2110 | + } |
|
| 1885 | 2111 | } |
| 1886 | 2112 | |
| 1887 | 2113 | } |
@@ -75,38 +75,38 @@ discard block |
||
| 75 | 75 | try { |
| 76 | 76 | //$Connection = new Connection(); |
| 77 | 77 | $sth = $Connection->db->prepare($query); |
| 78 | - $sth->execute(array(':source' => $database_file)); |
|
| 79 | - } catch(PDOException $e) { |
|
| 80 | - return "error : ".$e->getMessage(); |
|
| 81 | - } |
|
| 78 | + $sth->execute(array(':source' => $database_file)); |
|
| 79 | + } catch(PDOException $e) { |
|
| 80 | + return "error : ".$e->getMessage(); |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
| 84 | - update_db::connect_sqlite($database_file); |
|
| 83 | + if ($globalDebug) echo " - Add routes to DB -"; |
|
| 84 | + update_db::connect_sqlite($database_file); |
|
| 85 | 85 | //$query = 'select Route.RouteID, Route.callsign, operator.Icao AS operator_icao, FromAir.Icao AS FromAirportIcao, ToAir.Icao AS ToAirportIcao from Route inner join operator ON Route.operatorId = operator.operatorId LEFT JOIN Airport AS FromAir ON route.FromAirportId = FromAir.AirportId LEFT JOIN Airport AS ToAir ON ToAir.AirportID = route.ToAirportID'; |
| 86 | 86 | $query = "select Route.RouteID, Route.callsign, operator.Icao AS operator_icao, FromAir.Icao AS FromAirportIcao, ToAir.Icao AS ToAirportIcao, rstp.allstop AS AllStop from Route inner join operator ON Route.operatorId = operator.operatorId LEFT JOIN Airport AS FromAir ON route.FromAirportId = FromAir.AirportId LEFT JOIN Airport AS ToAir ON ToAir.AirportID = route.ToAirportID LEFT JOIN (select RouteId,GROUP_CONCAT(icao,' ') as allstop from routestop left join Airport as air ON routestop.AirportId = air.AirportID group by RouteID) AS rstp ON Route.RouteID = rstp.RouteID"; |
| 87 | 87 | try { |
| 88 | - $sth = update_db::$db_sqlite->prepare($query); |
|
| 89 | - $sth->execute(); |
|
| 90 | - } catch(PDOException $e) { |
|
| 91 | - return "error : ".$e->getMessage(); |
|
| 92 | - } |
|
| 88 | + $sth = update_db::$db_sqlite->prepare($query); |
|
| 89 | + $sth->execute(); |
|
| 90 | + } catch(PDOException $e) { |
|
| 91 | + return "error : ".$e->getMessage(); |
|
| 92 | + } |
|
| 93 | 93 | //$query_dest = 'INSERT INTO routes (`RouteID`,`CallSign`,`Operator_ICAO`,`FromAirport_ICAO`,`ToAirport_ICAO`,`RouteStop`,`Source`) VALUES (:RouteID, :CallSign, :Operator_ICAO, :FromAirport_ICAO, :ToAirport_ICAO, :routestop, :source)'; |
| 94 | 94 | $query_dest = 'INSERT INTO routes (CallSign,Operator_ICAO,FromAirport_ICAO,ToAirport_ICAO,RouteStop,Source) VALUES (:CallSign, :Operator_ICAO, :FromAirport_ICAO, :ToAirport_ICAO, :routestop, :source)'; |
| 95 | 95 | $Connection = new Connection(); |
| 96 | 96 | $sth_dest = $Connection->db->prepare($query_dest); |
| 97 | 97 | try { |
| 98 | 98 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 99 | - while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
| 99 | + while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
| 100 | 100 | //$query_dest_values = array(':RouteID' => $values['RouteId'],':CallSign' => $values['Callsign'],':Operator_ICAO' => $values['operator_icao'],':FromAirport_ICAO' => $values['FromAirportIcao'],':ToAirport_ICAO' => $values['ToAirportIcao'],':routestop' => $values['AllStop'],':source' => $database_file); |
| 101 | 101 | $query_dest_values = array(':CallSign' => $values['Callsign'],':Operator_ICAO' => $values['operator_icao'],':FromAirport_ICAO' => $values['FromAirportIcao'],':ToAirport_ICAO' => $values['ToAirportIcao'],':routestop' => $values['AllStop'],':source' => $database_file); |
| 102 | 102 | $sth_dest->execute($query_dest_values); |
| 103 | - } |
|
| 103 | + } |
|
| 104 | 104 | if ($globalTransaction) $Connection->db->commit(); |
| 105 | 105 | } catch(PDOException $e) { |
| 106 | 106 | if ($globalTransaction) $Connection->db->rollBack(); |
| 107 | 107 | return "error : ".$e->getMessage(); |
| 108 | 108 | } |
| 109 | - return ''; |
|
| 109 | + return ''; |
|
| 110 | 110 | } |
| 111 | 111 | public static function retrieve_route_oneworld($database_file) { |
| 112 | 112 | global $globalDebug, $globalTransaction; |
@@ -117,12 +117,12 @@ discard block |
||
| 117 | 117 | try { |
| 118 | 118 | //$Connection = new Connection(); |
| 119 | 119 | $sth = $Connection->db->prepare($query); |
| 120 | - $sth->execute(array(':source' => 'oneworld')); |
|
| 121 | - } catch(PDOException $e) { |
|
| 122 | - return "error : ".$e->getMessage(); |
|
| 123 | - } |
|
| 120 | + $sth->execute(array(':source' => 'oneworld')); |
|
| 121 | + } catch(PDOException $e) { |
|
| 122 | + return "error : ".$e->getMessage(); |
|
| 123 | + } |
|
| 124 | 124 | |
| 125 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
| 125 | + if ($globalDebug) echo " - Add routes to DB -"; |
|
| 126 | 126 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 127 | 127 | $Spotter = new Spotter(); |
| 128 | 128 | if ($fh = fopen($database_file,"r")) { |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | } |
| 147 | 147 | if ($globalTransaction) $Connection->db->commit(); |
| 148 | 148 | } |
| 149 | - return ''; |
|
| 149 | + return ''; |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | public static function retrieve_route_skyteam($database_file) { |
@@ -158,12 +158,12 @@ discard block |
||
| 158 | 158 | try { |
| 159 | 159 | //$Connection = new Connection(); |
| 160 | 160 | $sth = $Connection->db->prepare($query); |
| 161 | - $sth->execute(array(':source' => 'skyteam')); |
|
| 162 | - } catch(PDOException $e) { |
|
| 163 | - return "error : ".$e->getMessage(); |
|
| 164 | - } |
|
| 161 | + $sth->execute(array(':source' => 'skyteam')); |
|
| 162 | + } catch(PDOException $e) { |
|
| 163 | + return "error : ".$e->getMessage(); |
|
| 164 | + } |
|
| 165 | 165 | |
| 166 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
| 166 | + if ($globalDebug) echo " - Add routes to DB -"; |
|
| 167 | 167 | |
| 168 | 168 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 169 | 169 | $Spotter = new Spotter(); |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | return "error : ".$e->getMessage(); |
| 190 | 190 | } |
| 191 | 191 | } |
| 192 | - return ''; |
|
| 192 | + return ''; |
|
| 193 | 193 | } |
| 194 | 194 | public static function retrieve_modes_sqlite_to_dest($database_file) { |
| 195 | 195 | global $globalTransaction; |
@@ -198,27 +198,27 @@ discard block |
||
| 198 | 198 | try { |
| 199 | 199 | $Connection = new Connection(); |
| 200 | 200 | $sth = $Connection->db->prepare($query); |
| 201 | - $sth->execute(array(':source' => $database_file)); |
|
| 202 | - } catch(PDOException $e) { |
|
| 203 | - return "error : ".$e->getMessage(); |
|
| 204 | - } |
|
| 201 | + $sth->execute(array(':source' => $database_file)); |
|
| 202 | + } catch(PDOException $e) { |
|
| 203 | + return "error : ".$e->getMessage(); |
|
| 204 | + } |
|
| 205 | 205 | $query = "DELETE FROM aircraft_owner WHERE Source = '' OR Source IS NULL OR Source = :source"; |
| 206 | 206 | try { |
| 207 | 207 | $Connection = new Connection(); |
| 208 | 208 | $sth = $Connection->db->prepare($query); |
| 209 | - $sth->execute(array(':source' => $database_file)); |
|
| 210 | - } catch(PDOException $e) { |
|
| 211 | - return "error : ".$e->getMessage(); |
|
| 212 | - } |
|
| 209 | + $sth->execute(array(':source' => $database_file)); |
|
| 210 | + } catch(PDOException $e) { |
|
| 211 | + return "error : ".$e->getMessage(); |
|
| 212 | + } |
|
| 213 | 213 | |
| 214 | - update_db::connect_sqlite($database_file); |
|
| 214 | + update_db::connect_sqlite($database_file); |
|
| 215 | 215 | $query = 'select * from Aircraft'; |
| 216 | 216 | try { |
| 217 | - $sth = update_db::$db_sqlite->prepare($query); |
|
| 218 | - $sth->execute(); |
|
| 219 | - } catch(PDOException $e) { |
|
| 220 | - return "error : ".$e->getMessage(); |
|
| 221 | - } |
|
| 217 | + $sth = update_db::$db_sqlite->prepare($query); |
|
| 218 | + $sth->execute(); |
|
| 219 | + } catch(PDOException $e) { |
|
| 220 | + return "error : ".$e->getMessage(); |
|
| 221 | + } |
|
| 222 | 222 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
| 223 | 223 | $query_dest = 'INSERT INTO aircraft_modes (LastModified, ModeS,ModeSCountry,Registration,ICAOTypeCode,type_flight,Source) VALUES (:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:type,:source)'; |
| 224 | 224 | |
@@ -229,17 +229,17 @@ discard block |
||
| 229 | 229 | $sth_dest_owner = $Connection->db->prepare($query_dest_owner); |
| 230 | 230 | try { |
| 231 | 231 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 232 | - while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
| 232 | + while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
|
| 233 | 233 | //$query_dest_values = array(':AircraftID' => $values['AircraftID'],':FirstCreated' => $values['FirstCreated'],':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':SerialNo' => $values['SerialNo'], ':OperatorFlagCode' => $values['OperatorFlagCode'], ':Manufacturer' => $values['Manufacturer'], ':Type' => $values['Type'], ':FirstRegDate' => $values['FirstRegDate'], ':CurrentRegDate' => $values['CurrentRegDate'], ':Country' => $values['Country'], ':PreviousID' => $values['PreviousID'], ':DeRegDate' => $values['DeRegDate'], ':Status' => $values['Status'], ':PopularName' => $values['PopularName'],':GenericName' => $values['GenericName'],':AircraftClass' => $values['AircraftClass'], ':Engines' => $values['Engines'], ':OwnershipStatus' => $values['OwnershipStatus'],':RegisteredOwners' => $values['RegisteredOwners'],':MTOW' => $values['MTOW'], ':TotalHours' => $values['TotalHours'],':YearBuilt' => $values['YearBuilt'], ':CofACategory' => $values['CofACategory'], ':CofAExpiry' => $values['CofAExpiry'], ':UserNotes' => $values['UserNotes'], ':Interested' => $values['Interested'], ':UserTag' => $values['UserTag'], ':InfoUrl' => $values['InfoURL'], ':PictureUrl1' => $values['PictureURL1'], ':PictureUrl2' => $values['PictureURL2'], ':PictureUrl3' => $values['PictureURL3'], ':UserBool1' => $values['UserBool1'], ':UserBool2' => $values['UserBool2'], ':UserBool3' => $values['UserBool3'], ':UserBool4' => $values['UserBool4'], ':UserBool5' => $values['UserBool5'], ':UserString1' => $values['UserString1'], ':UserString2' => $values['UserString2'], ':UserString3' => $values['UserString3'], ':UserString4' => $values['UserString4'], ':UserString5' => $values['UserString5'], ':UserInt1' => $values['UserInt1'], ':UserInt2' => $values['UserInt2'], ':UserInt3' => $values['UserInt3'], ':UserInt4' => $values['UserInt4'], ':UserInt5' => $values['UserInt5']); |
| 234 | 234 | if ($values['UserString4'] == 'M') $type = 'military'; |
| 235 | 235 | else $type = null; |
| 236 | 236 | $query_dest_values = array(':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':source' => $database_file,':type' => $type); |
| 237 | 237 | $sth_dest->execute($query_dest_values); |
| 238 | 238 | if ($values['RegisteredOwners'] != '' && $values['RegisteredOwners'] != NULL && $values['RegisteredOwners'] != 'Private') { |
| 239 | - $query_dest_owner_values = array(':registration' => $values['Registration'],':source' => $database_file,':owner' => $values['RegisteredOwners']); |
|
| 240 | - $sth_dest_owner->execute($query_dest_owner_values); |
|
| 239 | + $query_dest_owner_values = array(':registration' => $values['Registration'],':source' => $database_file,':owner' => $values['RegisteredOwners']); |
|
| 240 | + $sth_dest_owner->execute($query_dest_owner_values); |
|
| 241 | 241 | } |
| 242 | - } |
|
| 242 | + } |
|
| 243 | 243 | if ($globalTransaction) $Connection->db->commit(); |
| 244 | 244 | } catch(PDOException $e) { |
| 245 | 245 | return "error : ".$e->getMessage(); |
@@ -250,10 +250,10 @@ discard block |
||
| 250 | 250 | try { |
| 251 | 251 | $Connection = new Connection(); |
| 252 | 252 | $sth = $Connection->db->prepare($query); |
| 253 | - $sth->execute(array(':source' => $database_file)); |
|
| 254 | - } catch(PDOException $e) { |
|
| 255 | - return "error : ".$e->getMessage(); |
|
| 256 | - } |
|
| 253 | + $sth->execute(array(':source' => $database_file)); |
|
| 254 | + } catch(PDOException $e) { |
|
| 255 | + return "error : ".$e->getMessage(); |
|
| 256 | + } |
|
| 257 | 257 | return ''; |
| 258 | 258 | } |
| 259 | 259 | |
@@ -265,10 +265,10 @@ discard block |
||
| 265 | 265 | try { |
| 266 | 266 | $Connection = new Connection(); |
| 267 | 267 | $sth = $Connection->db->prepare($query); |
| 268 | - $sth->execute(array(':source' => $database_file)); |
|
| 269 | - } catch(PDOException $e) { |
|
| 270 | - return "error : ".$e->getMessage(); |
|
| 271 | - } |
|
| 268 | + $sth->execute(array(':source' => $database_file)); |
|
| 269 | + } catch(PDOException $e) { |
|
| 270 | + return "error : ".$e->getMessage(); |
|
| 271 | + } |
|
| 272 | 272 | |
| 273 | 273 | if ($fh = fopen($database_file,"r")) { |
| 274 | 274 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
@@ -278,26 +278,26 @@ discard block |
||
| 278 | 278 | $sth_dest = $Connection->db->prepare($query_dest); |
| 279 | 279 | try { |
| 280 | 280 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 281 | - while (!feof($fh)) { |
|
| 282 | - $values = array(); |
|
| 283 | - $line = $Common->hex2str(fgets($fh,9999)); |
|
| 281 | + while (!feof($fh)) { |
|
| 282 | + $values = array(); |
|
| 283 | + $line = $Common->hex2str(fgets($fh,9999)); |
|
| 284 | 284 | //FFFFFF RIDEAU VALLEY SOARINGASW-20 C-FBKN MZ 123.400 |
| 285 | - $values['ModeS'] = substr($line,0,6); |
|
| 286 | - $values['Registration'] = trim(substr($line,69,6)); |
|
| 287 | - $aircraft_name = trim(substr($line,48,6)); |
|
| 288 | - // Check if we can find ICAO, else set it to GLID |
|
| 289 | - $aircraft_name_split = explode(' ',$aircraft_name); |
|
| 290 | - $search_more = ''; |
|
| 291 | - if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
| 292 | - $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
|
| 293 | - $sth_search = $Connection->db->prepare($query_search); |
|
| 285 | + $values['ModeS'] = substr($line,0,6); |
|
| 286 | + $values['Registration'] = trim(substr($line,69,6)); |
|
| 287 | + $aircraft_name = trim(substr($line,48,6)); |
|
| 288 | + // Check if we can find ICAO, else set it to GLID |
|
| 289 | + $aircraft_name_split = explode(' ',$aircraft_name); |
|
| 290 | + $search_more = ''; |
|
| 291 | + if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
| 292 | + $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
|
| 293 | + $sth_search = $Connection->db->prepare($query_search); |
|
| 294 | 294 | try { |
| 295 | - $sth_search->execute(); |
|
| 296 | - $result = $sth_search->fetch(PDO::FETCH_ASSOC); |
|
| 297 | - //if (count($result) > 0) { |
|
| 298 | - if (isset($result['icao']) && $result['icao'] != '') { |
|
| 299 | - $values['ICAOTypeCode'] = $result['icao']; |
|
| 300 | - } |
|
| 295 | + $sth_search->execute(); |
|
| 296 | + $result = $sth_search->fetch(PDO::FETCH_ASSOC); |
|
| 297 | + //if (count($result) > 0) { |
|
| 298 | + if (isset($result['icao']) && $result['icao'] != '') { |
|
| 299 | + $values['ICAOTypeCode'] = $result['icao']; |
|
| 300 | + } |
|
| 301 | 301 | } catch(PDOException $e) { |
| 302 | 302 | return "error : ".$e->getMessage(); |
| 303 | 303 | } |
@@ -320,10 +320,10 @@ discard block |
||
| 320 | 320 | try { |
| 321 | 321 | $Connection = new Connection(); |
| 322 | 322 | $sth = $Connection->db->prepare($query); |
| 323 | - $sth->execute(array(':source' => $database_file)); |
|
| 324 | - } catch(PDOException $e) { |
|
| 325 | - return "error : ".$e->getMessage(); |
|
| 326 | - } |
|
| 323 | + $sth->execute(array(':source' => $database_file)); |
|
| 324 | + } catch(PDOException $e) { |
|
| 325 | + return "error : ".$e->getMessage(); |
|
| 326 | + } |
|
| 327 | 327 | return ''; |
| 328 | 328 | } |
| 329 | 329 | |
@@ -334,10 +334,10 @@ discard block |
||
| 334 | 334 | try { |
| 335 | 335 | $Connection = new Connection(); |
| 336 | 336 | $sth = $Connection->db->prepare($query); |
| 337 | - $sth->execute(array(':source' => $database_file)); |
|
| 338 | - } catch(PDOException $e) { |
|
| 339 | - return "error : ".$e->getMessage(); |
|
| 340 | - } |
|
| 337 | + $sth->execute(array(':source' => $database_file)); |
|
| 338 | + } catch(PDOException $e) { |
|
| 339 | + return "error : ".$e->getMessage(); |
|
| 340 | + } |
|
| 341 | 341 | |
| 342 | 342 | if ($fh = fopen($database_file,"r")) { |
| 343 | 343 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
@@ -348,24 +348,24 @@ discard block |
||
| 348 | 348 | try { |
| 349 | 349 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 350 | 350 | $tmp = fgetcsv($fh,9999,',',"'"); |
| 351 | - while (!feof($fh)) { |
|
| 352 | - $line = fgetcsv($fh,9999,',',"'"); |
|
| 351 | + while (!feof($fh)) { |
|
| 352 | + $line = fgetcsv($fh,9999,',',"'"); |
|
| 353 | 353 | |
| 354 | 354 | //FFFFFF RIDEAU VALLEY SOARINGASW-20 C-FBKN MZ 123.400 |
| 355 | 355 | //print_r($line); |
| 356 | - $values['ModeS'] = $line[1]; |
|
| 357 | - $values['Registration'] = $line[3]; |
|
| 358 | - $aircraft_name = $line[2]; |
|
| 359 | - // Check if we can find ICAO, else set it to GLID |
|
| 360 | - $aircraft_name_split = explode(' ',$aircraft_name); |
|
| 361 | - $search_more = ''; |
|
| 362 | - if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
| 363 | - $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
|
| 364 | - $sth_search = $Connection->db->prepare($query_search); |
|
| 356 | + $values['ModeS'] = $line[1]; |
|
| 357 | + $values['Registration'] = $line[3]; |
|
| 358 | + $aircraft_name = $line[2]; |
|
| 359 | + // Check if we can find ICAO, else set it to GLID |
|
| 360 | + $aircraft_name_split = explode(' ',$aircraft_name); |
|
| 361 | + $search_more = ''; |
|
| 362 | + if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
| 363 | + $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
|
| 364 | + $sth_search = $Connection->db->prepare($query_search); |
|
| 365 | 365 | try { |
| 366 | - $sth_search->execute(); |
|
| 367 | - $result = $sth_search->fetch(PDO::FETCH_ASSOC); |
|
| 368 | - if (isset($result['icao']) && $result['icao'] != '') $values['ICAOTypeCode'] = $result['icao']; |
|
| 366 | + $sth_search->execute(); |
|
| 367 | + $result = $sth_search->fetch(PDO::FETCH_ASSOC); |
|
| 368 | + if (isset($result['icao']) && $result['icao'] != '') $values['ICAOTypeCode'] = $result['icao']; |
|
| 369 | 369 | } catch(PDOException $e) { |
| 370 | 370 | return "error : ".$e->getMessage(); |
| 371 | 371 | } |
@@ -388,10 +388,10 @@ discard block |
||
| 388 | 388 | try { |
| 389 | 389 | $Connection = new Connection(); |
| 390 | 390 | $sth = $Connection->db->prepare($query); |
| 391 | - $sth->execute(array(':source' => $database_file)); |
|
| 392 | - } catch(PDOException $e) { |
|
| 393 | - return "error : ".$e->getMessage(); |
|
| 394 | - } |
|
| 391 | + $sth->execute(array(':source' => $database_file)); |
|
| 392 | + } catch(PDOException $e) { |
|
| 393 | + return "error : ".$e->getMessage(); |
|
| 394 | + } |
|
| 395 | 395 | return ''; |
| 396 | 396 | } |
| 397 | 397 | |
@@ -402,16 +402,16 @@ discard block |
||
| 402 | 402 | try { |
| 403 | 403 | $Connection = new Connection(); |
| 404 | 404 | $sth = $Connection->db->prepare($query); |
| 405 | - $sth->execute(array(':source' => $database_file)); |
|
| 406 | - } catch(PDOException $e) { |
|
| 407 | - return "error : ".$e->getMessage(); |
|
| 408 | - } |
|
| 405 | + $sth->execute(array(':source' => $database_file)); |
|
| 406 | + } catch(PDOException $e) { |
|
| 407 | + return "error : ".$e->getMessage(); |
|
| 408 | + } |
|
| 409 | 409 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 410 | 410 | $Spotter = new Spotter(); |
| 411 | 411 | if ($fh = fopen($database_file,"r")) { |
| 412 | 412 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
| 413 | 413 | $query_dest = 'INSERT INTO aircraft_owner (registration,base,owner,date_first_reg,Source) VALUES (:registration,:base,:owner,:date_first_reg,:source)'; |
| 414 | - $query_modes = 'INSERT INTO aircraft_modes (ModeS,ModeSCountry,Registration,ICAOTypeCode,Source) VALUES (:modes,:modescountry,:registration,:icaotypecode,:source)'; |
|
| 414 | + $query_modes = 'INSERT INTO aircraft_modes (ModeS,ModeSCountry,Registration,ICAOTypeCode,Source) VALUES (:modes,:modescountry,:registration,:icaotypecode,:source)'; |
|
| 415 | 415 | |
| 416 | 416 | $Connection = new Connection(); |
| 417 | 417 | $sth_dest = $Connection->db->prepare($query_dest); |
@@ -419,126 +419,126 @@ discard block |
||
| 419 | 419 | try { |
| 420 | 420 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 421 | 421 | $tmp = fgetcsv($fh,9999,',','"'); |
| 422 | - while (!feof($fh)) { |
|
| 423 | - $line = fgetcsv($fh,9999,',','"'); |
|
| 424 | - $values = array(); |
|
| 425 | - //print_r($line); |
|
| 426 | - if ($country == 'F') { |
|
| 427 | - $values['registration'] = $line[0]; |
|
| 428 | - $values['base'] = $line[4]; |
|
| 429 | - $values['owner'] = $line[5]; |
|
| 430 | - if ($line[6] == '') $values['date_first_reg'] = null; |
|
| 431 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
| 432 | - $values['cancel'] = $line[7]; |
|
| 422 | + while (!feof($fh)) { |
|
| 423 | + $line = fgetcsv($fh,9999,',','"'); |
|
| 424 | + $values = array(); |
|
| 425 | + //print_r($line); |
|
| 426 | + if ($country == 'F') { |
|
| 427 | + $values['registration'] = $line[0]; |
|
| 428 | + $values['base'] = $line[4]; |
|
| 429 | + $values['owner'] = $line[5]; |
|
| 430 | + if ($line[6] == '') $values['date_first_reg'] = null; |
|
| 431 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
| 432 | + $values['cancel'] = $line[7]; |
|
| 433 | 433 | } elseif ($country == 'EI') { |
| 434 | - // TODO : add modeS & reg to aircraft_modes |
|
| 435 | - $values['registration'] = $line[0]; |
|
| 436 | - $values['base'] = $line[3]; |
|
| 437 | - $values['owner'] = $line[2]; |
|
| 438 | - if ($line[1] == '') $values['date_first_reg'] = null; |
|
| 439 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[1])); |
|
| 440 | - $values['cancel'] = ''; |
|
| 441 | - $values['modes'] = $line[7]; |
|
| 442 | - $values['icao'] = $line[8]; |
|
| 434 | + // TODO : add modeS & reg to aircraft_modes |
|
| 435 | + $values['registration'] = $line[0]; |
|
| 436 | + $values['base'] = $line[3]; |
|
| 437 | + $values['owner'] = $line[2]; |
|
| 438 | + if ($line[1] == '') $values['date_first_reg'] = null; |
|
| 439 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[1])); |
|
| 440 | + $values['cancel'] = ''; |
|
| 441 | + $values['modes'] = $line[7]; |
|
| 442 | + $values['icao'] = $line[8]; |
|
| 443 | 443 | |
| 444 | 444 | } elseif ($country == 'HB') { |
| 445 | - // TODO : add modeS & reg to aircraft_modes |
|
| 446 | - $values['registration'] = $line[0]; |
|
| 447 | - $values['base'] = null; |
|
| 448 | - $values['owner'] = $line[5]; |
|
| 449 | - $values['date_first_reg'] = null; |
|
| 450 | - $values['cancel'] = ''; |
|
| 451 | - $values['modes'] = $line[4]; |
|
| 452 | - $values['icao'] = $line[7]; |
|
| 445 | + // TODO : add modeS & reg to aircraft_modes |
|
| 446 | + $values['registration'] = $line[0]; |
|
| 447 | + $values['base'] = null; |
|
| 448 | + $values['owner'] = $line[5]; |
|
| 449 | + $values['date_first_reg'] = null; |
|
| 450 | + $values['cancel'] = ''; |
|
| 451 | + $values['modes'] = $line[4]; |
|
| 452 | + $values['icao'] = $line[7]; |
|
| 453 | 453 | } elseif ($country == 'OK') { |
| 454 | - // TODO : add modeS & reg to aircraft_modes |
|
| 455 | - $values['registration'] = $line[3]; |
|
| 456 | - $values['base'] = null; |
|
| 457 | - $values['owner'] = $line[5]; |
|
| 458 | - if ($line[18] == '') $values['date_first_reg'] = null; |
|
| 459 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[18])); |
|
| 460 | - $values['cancel'] = ''; |
|
| 454 | + // TODO : add modeS & reg to aircraft_modes |
|
| 455 | + $values['registration'] = $line[3]; |
|
| 456 | + $values['base'] = null; |
|
| 457 | + $values['owner'] = $line[5]; |
|
| 458 | + if ($line[18] == '') $values['date_first_reg'] = null; |
|
| 459 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[18])); |
|
| 460 | + $values['cancel'] = ''; |
|
| 461 | 461 | } elseif ($country == 'VH') { |
| 462 | - // TODO : add modeS & reg to aircraft_modes |
|
| 463 | - $values['registration'] = $line[0]; |
|
| 464 | - $values['base'] = null; |
|
| 465 | - $values['owner'] = $line[12]; |
|
| 466 | - if ($line[28] == '') $values['date_first_reg'] = null; |
|
| 467 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[28])); |
|
| 468 | - |
|
| 469 | - $values['cancel'] = $line[39]; |
|
| 462 | + // TODO : add modeS & reg to aircraft_modes |
|
| 463 | + $values['registration'] = $line[0]; |
|
| 464 | + $values['base'] = null; |
|
| 465 | + $values['owner'] = $line[12]; |
|
| 466 | + if ($line[28] == '') $values['date_first_reg'] = null; |
|
| 467 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[28])); |
|
| 468 | + |
|
| 469 | + $values['cancel'] = $line[39]; |
|
| 470 | 470 | } elseif ($country == 'OE' || $country == '9A' || $country == 'VP' || $country == 'LX' || $country == 'P2' || $country == 'HC') { |
| 471 | - $values['registration'] = $line[0]; |
|
| 472 | - $values['base'] = null; |
|
| 473 | - $values['owner'] = $line[4]; |
|
| 474 | - $values['date_first_reg'] = null; |
|
| 475 | - $values['cancel'] = ''; |
|
| 471 | + $values['registration'] = $line[0]; |
|
| 472 | + $values['base'] = null; |
|
| 473 | + $values['owner'] = $line[4]; |
|
| 474 | + $values['date_first_reg'] = null; |
|
| 475 | + $values['cancel'] = ''; |
|
| 476 | 476 | } elseif ($country == 'CC') { |
| 477 | - $values['registration'] = $line[0]; |
|
| 478 | - $values['base'] = null; |
|
| 479 | - $values['owner'] = $line[6]; |
|
| 480 | - $values['date_first_reg'] = null; |
|
| 481 | - $values['cancel'] = ''; |
|
| 477 | + $values['registration'] = $line[0]; |
|
| 478 | + $values['base'] = null; |
|
| 479 | + $values['owner'] = $line[6]; |
|
| 480 | + $values['date_first_reg'] = null; |
|
| 481 | + $values['cancel'] = ''; |
|
| 482 | 482 | } elseif ($country == 'HJ') { |
| 483 | - $values['registration'] = $line[0]; |
|
| 484 | - $values['base'] = null; |
|
| 485 | - $values['owner'] = $line[8]; |
|
| 486 | - if ($line[7] == '') $values['date_first_reg'] = null; |
|
| 487 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
| 488 | - $values['cancel'] = ''; |
|
| 483 | + $values['registration'] = $line[0]; |
|
| 484 | + $values['base'] = null; |
|
| 485 | + $values['owner'] = $line[8]; |
|
| 486 | + if ($line[7] == '') $values['date_first_reg'] = null; |
|
| 487 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
| 488 | + $values['cancel'] = ''; |
|
| 489 | 489 | } elseif ($country == 'PP') { |
| 490 | - $values['registration'] = $line[0]; |
|
| 491 | - $values['base'] = null; |
|
| 492 | - $values['owner'] = $line[4]; |
|
| 493 | - if ($line[6] == '') $values['date_first_reg'] = null; |
|
| 494 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
| 495 | - $values['cancel'] = $line[7]; |
|
| 490 | + $values['registration'] = $line[0]; |
|
| 491 | + $values['base'] = null; |
|
| 492 | + $values['owner'] = $line[4]; |
|
| 493 | + if ($line[6] == '') $values['date_first_reg'] = null; |
|
| 494 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
| 495 | + $values['cancel'] = $line[7]; |
|
| 496 | 496 | } elseif ($country == 'E7') { |
| 497 | - $values['registration'] = $line[0]; |
|
| 498 | - $values['base'] = null; |
|
| 499 | - $values['owner'] = $line[4]; |
|
| 500 | - if ($line[5] == '') $values['date_first_reg'] = null; |
|
| 501 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
| 502 | - $values['cancel'] = ''; |
|
| 497 | + $values['registration'] = $line[0]; |
|
| 498 | + $values['base'] = null; |
|
| 499 | + $values['owner'] = $line[4]; |
|
| 500 | + if ($line[5] == '') $values['date_first_reg'] = null; |
|
| 501 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
| 502 | + $values['cancel'] = ''; |
|
| 503 | 503 | } elseif ($country == '8Q') { |
| 504 | - $values['registration'] = $line[0]; |
|
| 505 | - $values['base'] = null; |
|
| 506 | - $values['owner'] = $line[3]; |
|
| 507 | - if ($line[7] == '') $values['date_first_reg'] = null; |
|
| 508 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
| 509 | - $values['cancel'] = ''; |
|
| 504 | + $values['registration'] = $line[0]; |
|
| 505 | + $values['base'] = null; |
|
| 506 | + $values['owner'] = $line[3]; |
|
| 507 | + if ($line[7] == '') $values['date_first_reg'] = null; |
|
| 508 | + else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
| 509 | + $values['cancel'] = ''; |
|
| 510 | 510 | } elseif ($country == 'ZK') { |
| 511 | - $values['registration'] = $line[0]; |
|
| 512 | - $values['base'] = null; |
|
| 513 | - $values['owner'] = $line[3]; |
|
| 514 | - $values['date_first_reg'] = null; |
|
| 515 | - $values['cancel'] = ''; |
|
| 516 | - $values['modes'] = $line[5]; |
|
| 517 | - $values['icao'] = $line[9]; |
|
| 511 | + $values['registration'] = $line[0]; |
|
| 512 | + $values['base'] = null; |
|
| 513 | + $values['owner'] = $line[3]; |
|
| 514 | + $values['date_first_reg'] = null; |
|
| 515 | + $values['cancel'] = ''; |
|
| 516 | + $values['modes'] = $line[5]; |
|
| 517 | + $values['icao'] = $line[9]; |
|
| 518 | 518 | } elseif ($country == 'M') { |
| 519 | - $values['registration'] = $line[0]; |
|
| 520 | - $values['base'] = null; |
|
| 521 | - $values['owner'] = $line[6]; |
|
| 522 | - $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
| 523 | - $values['cancel'] = date("Y-m-d",strtotime($line[8])); |
|
| 524 | - $values['modes'] = $line[4]; |
|
| 525 | - $values['icao'] = $line[10]; |
|
| 519 | + $values['registration'] = $line[0]; |
|
| 520 | + $values['base'] = null; |
|
| 521 | + $values['owner'] = $line[6]; |
|
| 522 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
| 523 | + $values['cancel'] = date("Y-m-d",strtotime($line[8])); |
|
| 524 | + $values['modes'] = $line[4]; |
|
| 525 | + $values['icao'] = $line[10]; |
|
| 526 | 526 | } elseif ($country == 'OY') { |
| 527 | - $values['registration'] = $line[0]; |
|
| 528 | - $values['date_first_reg'] = date("Y-m-d",strtotime($line[4])); |
|
| 529 | - $values['modes'] = $line[5]; |
|
| 530 | - $values['icao'] = $line[6]; |
|
| 527 | + $values['registration'] = $line[0]; |
|
| 528 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[4])); |
|
| 529 | + $values['modes'] = $line[5]; |
|
| 530 | + $values['icao'] = $line[6]; |
|
| 531 | 531 | } elseif ($country == 'PH') { |
| 532 | - $values['registration'] = $line[0]; |
|
| 533 | - $values['date_first_reg'] = date("Y-m-d",strtotime($line[3])); |
|
| 534 | - $values['modes'] = $line[4]; |
|
| 535 | - $values['icao'] = $line[5]; |
|
| 532 | + $values['registration'] = $line[0]; |
|
| 533 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[3])); |
|
| 534 | + $values['modes'] = $line[4]; |
|
| 535 | + $values['icao'] = $line[5]; |
|
| 536 | 536 | } elseif ($country == 'OM' || $country == 'TF') { |
| 537 | - $values['registration'] = $line[0]; |
|
| 538 | - $values['base'] = null; |
|
| 539 | - $values['owner'] = $line[3]; |
|
| 540 | - $values['date_first_reg'] = null; |
|
| 541 | - $values['cancel'] = ''; |
|
| 537 | + $values['registration'] = $line[0]; |
|
| 538 | + $values['base'] = null; |
|
| 539 | + $values['owner'] = $line[3]; |
|
| 540 | + $values['date_first_reg'] = null; |
|
| 541 | + $values['cancel'] = ''; |
|
| 542 | 542 | } |
| 543 | 543 | if (isset($values['cancel']) && $values['cancel'] == '' && $values['registration'] != null && isset($values['owner'])) { |
| 544 | 544 | $query_dest_values = array(':registration' => $values['registration'],':base' => $values['base'],':date_first_reg' => $values['date_first_reg'],':owner' => $values['owner'],':source' => $database_file); |
@@ -665,20 +665,20 @@ discard block |
||
| 665 | 665 | try { |
| 666 | 666 | $Connection = new Connection(); |
| 667 | 667 | $sth = $Connection->db->prepare($query); |
| 668 | - $sth->execute(); |
|
| 669 | - } catch(PDOException $e) { |
|
| 670 | - return "error : ".$e->getMessage(); |
|
| 671 | - } |
|
| 668 | + $sth->execute(); |
|
| 669 | + } catch(PDOException $e) { |
|
| 670 | + return "error : ".$e->getMessage(); |
|
| 671 | + } |
|
| 672 | 672 | |
| 673 | 673 | |
| 674 | 674 | $query = 'ALTER TABLE airport DROP INDEX icaoidx'; |
| 675 | 675 | try { |
| 676 | 676 | $Connection = new Connection(); |
| 677 | 677 | $sth = $Connection->db->prepare($query); |
| 678 | - $sth->execute(); |
|
| 679 | - } catch(PDOException $e) { |
|
| 680 | - return "error : ".$e->getMessage(); |
|
| 681 | - } |
|
| 678 | + $sth->execute(); |
|
| 679 | + } catch(PDOException $e) { |
|
| 680 | + return "error : ".$e->getMessage(); |
|
| 681 | + } |
|
| 682 | 682 | |
| 683 | 683 | $query_dest = "INSERT INTO airport (`airport_id`,`name`,`city`,`country`,`iata`,`icao`,`latitude`,`longitude`,`altitude`,`type`,`home_link`,`wikipedia_link`,`image_thumb`,`image`) |
| 684 | 684 | VALUES (:airport_id, :name, :city, :country, :iata, :icao, :latitude, :longitude, :altitude, :type, :home_link, :wikipedia_link, :image_thumb, :image)"; |
@@ -744,10 +744,10 @@ discard block |
||
| 744 | 744 | try { |
| 745 | 745 | $Connection = new Connection(); |
| 746 | 746 | $sth = $Connection->db->prepare($query); |
| 747 | - $sth->execute(); |
|
| 748 | - } catch(PDOException $e) { |
|
| 749 | - return "error : ".$e->getMessage(); |
|
| 750 | - } |
|
| 747 | + $sth->execute(); |
|
| 748 | + } catch(PDOException $e) { |
|
| 749 | + return "error : ".$e->getMessage(); |
|
| 750 | + } |
|
| 751 | 751 | |
| 752 | 752 | |
| 753 | 753 | if ($globalDebug) echo "Insert Not available Airport...\n"; |
@@ -757,10 +757,10 @@ discard block |
||
| 757 | 757 | try { |
| 758 | 758 | $Connection = new Connection(); |
| 759 | 759 | $sth = $Connection->db->prepare($query); |
| 760 | - $sth->execute($query_values); |
|
| 761 | - } catch(PDOException $e) { |
|
| 762 | - return "error : ".$e->getMessage(); |
|
| 763 | - } |
|
| 760 | + $sth->execute($query_values); |
|
| 761 | + } catch(PDOException $e) { |
|
| 762 | + return "error : ".$e->getMessage(); |
|
| 763 | + } |
|
| 764 | 764 | $i++; |
| 765 | 765 | /* |
| 766 | 766 | $query = 'DELETE FROM airport WHERE airport_id IN (SELECT * FROM (SELECT min(a.airport_id) FROM airport a GROUP BY a.icao) x)'; |
@@ -874,7 +874,7 @@ discard block |
||
| 874 | 874 | |
| 875 | 875 | |
| 876 | 876 | |
| 877 | - return "success"; |
|
| 877 | + return "success"; |
|
| 878 | 878 | } |
| 879 | 879 | |
| 880 | 880 | public static function translation() { |
@@ -890,10 +890,10 @@ discard block |
||
| 890 | 890 | try { |
| 891 | 891 | $Connection = new Connection(); |
| 892 | 892 | $sth = $Connection->db->prepare($query); |
| 893 | - $sth->execute(array(':source' => 'translation.csv')); |
|
| 894 | - } catch(PDOException $e) { |
|
| 895 | - return "error : ".$e->getMessage(); |
|
| 896 | - } |
|
| 893 | + $sth->execute(array(':source' => 'translation.csv')); |
|
| 894 | + } catch(PDOException $e) { |
|
| 895 | + return "error : ".$e->getMessage(); |
|
| 896 | + } |
|
| 897 | 897 | |
| 898 | 898 | |
| 899 | 899 | //update_db::unzip($out_file); |
@@ -912,21 +912,21 @@ discard block |
||
| 912 | 912 | $data = $row; |
| 913 | 913 | $operator = $data[2]; |
| 914 | 914 | if ($operator != '' && is_numeric(substr(substr($operator, 0, 3), -1, 1))) { |
| 915 | - $airline_array = $Spotter->getAllAirlineInfo(substr($operator, 0, 2)); |
|
| 916 | - //echo substr($operator, 0, 2)."\n";; |
|
| 917 | - if (count($airline_array) > 0) { |
|
| 915 | + $airline_array = $Spotter->getAllAirlineInfo(substr($operator, 0, 2)); |
|
| 916 | + //echo substr($operator, 0, 2)."\n";; |
|
| 917 | + if (count($airline_array) > 0) { |
|
| 918 | 918 | //print_r($airline_array); |
| 919 | 919 | $operator = $airline_array[0]['icao'].substr($operator,2); |
| 920 | - } |
|
| 921 | - } |
|
| 920 | + } |
|
| 921 | + } |
|
| 922 | 922 | |
| 923 | 923 | $operator_correct = $data[3]; |
| 924 | 924 | if ($operator_correct != '' && is_numeric(substr(substr($operator_correct, 0, 3), -1, 1))) { |
| 925 | - $airline_array = $Spotter->getAllAirlineInfo(substr($operator_correct, 0, 2)); |
|
| 926 | - if (count($airline_array) > 0) { |
|
| 927 | - $operator_correct = $airline_array[0]['icao'].substr($operator_correct,2); |
|
| 928 | - } |
|
| 929 | - } |
|
| 925 | + $airline_array = $Spotter->getAllAirlineInfo(substr($operator_correct, 0, 2)); |
|
| 926 | + if (count($airline_array) > 0) { |
|
| 927 | + $operator_correct = $airline_array[0]['icao'].substr($operator_correct,2); |
|
| 928 | + } |
|
| 929 | + } |
|
| 930 | 930 | $query = 'INSERT INTO translation (Reg,Reg_correct,Operator,Operator_correct,Source) VALUES (:Reg, :Reg_correct, :Operator, :Operator_correct, :source)'; |
| 931 | 931 | try { |
| 932 | 932 | $sth = $Connection->db->prepare($query); |
@@ -940,7 +940,7 @@ discard block |
||
| 940 | 940 | //$Connection->db->commit(); |
| 941 | 941 | } |
| 942 | 942 | return ''; |
| 943 | - } |
|
| 943 | + } |
|
| 944 | 944 | |
| 945 | 945 | public static function translation_fam() { |
| 946 | 946 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
@@ -950,10 +950,10 @@ discard block |
||
| 950 | 950 | try { |
| 951 | 951 | $Connection = new Connection(); |
| 952 | 952 | $sth = $Connection->db->prepare($query); |
| 953 | - $sth->execute(array(':source' => 'website_fam')); |
|
| 954 | - } catch(PDOException $e) { |
|
| 955 | - return "error : ".$e->getMessage(); |
|
| 956 | - } |
|
| 953 | + $sth->execute(array(':source' => 'website_fam')); |
|
| 954 | + } catch(PDOException $e) { |
|
| 955 | + return "error : ".$e->getMessage(); |
|
| 956 | + } |
|
| 957 | 957 | |
| 958 | 958 | |
| 959 | 959 | //update_db::unzip($out_file); |
@@ -982,7 +982,7 @@ discard block |
||
| 982 | 982 | //$Connection->db->commit(); |
| 983 | 983 | } |
| 984 | 984 | return ''; |
| 985 | - } |
|
| 985 | + } |
|
| 986 | 986 | |
| 987 | 987 | /* |
| 988 | 988 | * This function use FAA public data. |
@@ -994,19 +994,19 @@ discard block |
||
| 994 | 994 | try { |
| 995 | 995 | $Connection = new Connection(); |
| 996 | 996 | $sth = $Connection->db->prepare($query); |
| 997 | - $sth->execute(array(':source' => 'website_faa')); |
|
| 998 | - } catch(PDOException $e) { |
|
| 999 | - return "error : ".$e->getMessage(); |
|
| 1000 | - } |
|
| 997 | + $sth->execute(array(':source' => 'website_faa')); |
|
| 998 | + } catch(PDOException $e) { |
|
| 999 | + return "error : ".$e->getMessage(); |
|
| 1000 | + } |
|
| 1001 | 1001 | |
| 1002 | 1002 | $query = "DELETE FROM aircraft_owner WHERE Source = '' OR Source = :source"; |
| 1003 | 1003 | try { |
| 1004 | 1004 | $Connection = new Connection(); |
| 1005 | 1005 | $sth = $Connection->db->prepare($query); |
| 1006 | - $sth->execute(array(':source' => 'website_faa')); |
|
| 1007 | - } catch(PDOException $e) { |
|
| 1008 | - return "error : ".$e->getMessage(); |
|
| 1009 | - } |
|
| 1006 | + $sth->execute(array(':source' => 'website_faa')); |
|
| 1007 | + } catch(PDOException $e) { |
|
| 1008 | + return "error : ".$e->getMessage(); |
|
| 1009 | + } |
|
| 1010 | 1010 | |
| 1011 | 1011 | $delimiter = ","; |
| 1012 | 1012 | $mfr = array(); |
@@ -1082,17 +1082,17 @@ discard block |
||
| 1082 | 1082 | } |
| 1083 | 1083 | print_r($mfr); |
| 1084 | 1084 | return ''; |
| 1085 | - } |
|
| 1085 | + } |
|
| 1086 | 1086 | public static function modes_fam() { |
| 1087 | 1087 | global $tmp_dir, $globalTransaction; |
| 1088 | 1088 | $query = "DELETE FROM aircraft_modes WHERE Source = '' OR Source = :source"; |
| 1089 | 1089 | try { |
| 1090 | 1090 | $Connection = new Connection(); |
| 1091 | 1091 | $sth = $Connection->db->prepare($query); |
| 1092 | - $sth->execute(array(':source' => 'website_fam')); |
|
| 1093 | - } catch(PDOException $e) { |
|
| 1094 | - return "error : ".$e->getMessage(); |
|
| 1095 | - } |
|
| 1092 | + $sth->execute(array(':source' => 'website_fam')); |
|
| 1093 | + } catch(PDOException $e) { |
|
| 1094 | + return "error : ".$e->getMessage(); |
|
| 1095 | + } |
|
| 1096 | 1096 | |
| 1097 | 1097 | |
| 1098 | 1098 | //update_db::unzip($out_file); |
@@ -1122,7 +1122,7 @@ discard block |
||
| 1122 | 1122 | if ($globalTransaction) $Connection->db->commit(); |
| 1123 | 1123 | } |
| 1124 | 1124 | return ''; |
| 1125 | - } |
|
| 1125 | + } |
|
| 1126 | 1126 | |
| 1127 | 1127 | public static function owner_fam() { |
| 1128 | 1128 | global $tmp_dir, $globalTransaction; |
@@ -1130,10 +1130,10 @@ discard block |
||
| 1130 | 1130 | try { |
| 1131 | 1131 | $Connection = new Connection(); |
| 1132 | 1132 | $sth = $Connection->db->prepare($query); |
| 1133 | - $sth->execute(array(':source' => 'website_fam')); |
|
| 1134 | - } catch(PDOException $e) { |
|
| 1135 | - return "error : ".$e->getMessage(); |
|
| 1136 | - } |
|
| 1133 | + $sth->execute(array(':source' => 'website_fam')); |
|
| 1134 | + } catch(PDOException $e) { |
|
| 1135 | + return "error : ".$e->getMessage(); |
|
| 1136 | + } |
|
| 1137 | 1137 | |
| 1138 | 1138 | $delimiter = "\t"; |
| 1139 | 1139 | $Connection = new Connection(); |
@@ -1159,7 +1159,7 @@ discard block |
||
| 1159 | 1159 | if ($globalTransaction) $Connection->db->commit(); |
| 1160 | 1160 | } |
| 1161 | 1161 | return ''; |
| 1162 | - } |
|
| 1162 | + } |
|
| 1163 | 1163 | |
| 1164 | 1164 | public static function routes_fam() { |
| 1165 | 1165 | global $tmp_dir, $globalTransaction; |
@@ -1167,10 +1167,10 @@ discard block |
||
| 1167 | 1167 | try { |
| 1168 | 1168 | $Connection = new Connection(); |
| 1169 | 1169 | $sth = $Connection->db->prepare($query); |
| 1170 | - $sth->execute(array(':source' => 'website_fam')); |
|
| 1171 | - } catch(PDOException $e) { |
|
| 1172 | - return "error : ".$e->getMessage(); |
|
| 1173 | - } |
|
| 1170 | + $sth->execute(array(':source' => 'website_fam')); |
|
| 1171 | + } catch(PDOException $e) { |
|
| 1172 | + return "error : ".$e->getMessage(); |
|
| 1173 | + } |
|
| 1174 | 1174 | |
| 1175 | 1175 | |
| 1176 | 1176 | //update_db::unzip($out_file); |
@@ -1199,7 +1199,7 @@ discard block |
||
| 1199 | 1199 | if ($globalTransaction) $Connection->db->commit(); |
| 1200 | 1200 | } |
| 1201 | 1201 | return ''; |
| 1202 | - } |
|
| 1202 | + } |
|
| 1203 | 1203 | |
| 1204 | 1204 | public static function marine_identity_fam() { |
| 1205 | 1205 | global $tmp_dir, $globalTransaction; |
@@ -1207,10 +1207,10 @@ discard block |
||
| 1207 | 1207 | try { |
| 1208 | 1208 | $Connection = new Connection(); |
| 1209 | 1209 | $sth = $Connection->db->prepare($query); |
| 1210 | - $sth->execute(); |
|
| 1211 | - } catch(PDOException $e) { |
|
| 1212 | - return "error : ".$e->getMessage(); |
|
| 1213 | - } |
|
| 1210 | + $sth->execute(); |
|
| 1211 | + } catch(PDOException $e) { |
|
| 1212 | + return "error : ".$e->getMessage(); |
|
| 1213 | + } |
|
| 1214 | 1214 | |
| 1215 | 1215 | |
| 1216 | 1216 | //update_db::unzip($out_file); |
@@ -1239,7 +1239,7 @@ discard block |
||
| 1239 | 1239 | if ($globalTransaction) $Connection->db->commit(); |
| 1240 | 1240 | } |
| 1241 | 1241 | return ''; |
| 1242 | - } |
|
| 1242 | + } |
|
| 1243 | 1243 | |
| 1244 | 1244 | public static function banned_fam() { |
| 1245 | 1245 | global $tmp_dir, $globalTransaction; |
@@ -1273,7 +1273,7 @@ discard block |
||
| 1273 | 1273 | if ($globalTransaction) $Connection->db->commit(); |
| 1274 | 1274 | } |
| 1275 | 1275 | return ''; |
| 1276 | - } |
|
| 1276 | + } |
|
| 1277 | 1277 | |
| 1278 | 1278 | public static function tle($filename,$tletype) { |
| 1279 | 1279 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
@@ -1284,10 +1284,10 @@ discard block |
||
| 1284 | 1284 | try { |
| 1285 | 1285 | $Connection = new Connection(); |
| 1286 | 1286 | $sth = $Connection->db->prepare($query); |
| 1287 | - $sth->execute(array(':source' => $filename)); |
|
| 1288 | - } catch(PDOException $e) { |
|
| 1289 | - return "error : ".$e->getMessage(); |
|
| 1290 | - } |
|
| 1287 | + $sth->execute(array(':source' => $filename)); |
|
| 1288 | + } catch(PDOException $e) { |
|
| 1289 | + return "error : ".$e->getMessage(); |
|
| 1290 | + } |
|
| 1291 | 1291 | |
| 1292 | 1292 | $Connection = new Connection(); |
| 1293 | 1293 | if (($handle = fopen($filename, 'r')) !== FALSE) |
@@ -1322,54 +1322,54 @@ discard block |
||
| 1322 | 1322 | //$Connection->db->commit(); |
| 1323 | 1323 | } |
| 1324 | 1324 | return ''; |
| 1325 | - } |
|
| 1325 | + } |
|
| 1326 | 1326 | |
| 1327 | 1327 | /** |
| 1328 | - * Convert a HTML table to an array |
|
| 1329 | - * @param String $data HTML page |
|
| 1330 | - * @return Array array of the tables in HTML page |
|
| 1331 | - */ |
|
| 1332 | - private static function table2array($data) { |
|
| 1333 | - $html = str_get_html($data); |
|
| 1334 | - $tabledata=array(); |
|
| 1335 | - foreach($html->find('tr') as $element) |
|
| 1336 | - { |
|
| 1337 | - $td = array(); |
|
| 1338 | - foreach( $element->find('th') as $row) |
|
| 1339 | - { |
|
| 1340 | - $td [] = trim($row->plaintext); |
|
| 1341 | - } |
|
| 1342 | - $td=array_filter($td); |
|
| 1343 | - $tabledata[] = $td; |
|
| 1344 | - |
|
| 1345 | - $td = array(); |
|
| 1346 | - $tdi = array(); |
|
| 1347 | - foreach( $element->find('td') as $row) |
|
| 1348 | - { |
|
| 1349 | - $td [] = trim($row->plaintext); |
|
| 1350 | - $tdi [] = trim($row->innertext); |
|
| 1351 | - } |
|
| 1352 | - $td=array_filter($td); |
|
| 1353 | - $tdi=array_filter($tdi); |
|
| 1354 | - // $tabledata[]=array_merge($td,$tdi); |
|
| 1355 | - $tabledata[]=$td; |
|
| 1356 | - } |
|
| 1357 | - return(array_filter($tabledata)); |
|
| 1358 | - } |
|
| 1359 | - |
|
| 1360 | - /** |
|
| 1361 | - * Get data from form result |
|
| 1362 | - * @param String $url form URL |
|
| 1363 | - * @return String the result |
|
| 1364 | - */ |
|
| 1365 | - private static function getData($url) { |
|
| 1366 | - $ch = curl_init(); |
|
| 1367 | - curl_setopt($ch, CURLOPT_URL, $url); |
|
| 1368 | - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
|
| 1369 | - curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); |
|
| 1370 | - 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'); |
|
| 1371 | - return curl_exec($ch); |
|
| 1372 | - } |
|
| 1328 | + * Convert a HTML table to an array |
|
| 1329 | + * @param String $data HTML page |
|
| 1330 | + * @return Array array of the tables in HTML page |
|
| 1331 | + */ |
|
| 1332 | + private static function table2array($data) { |
|
| 1333 | + $html = str_get_html($data); |
|
| 1334 | + $tabledata=array(); |
|
| 1335 | + foreach($html->find('tr') as $element) |
|
| 1336 | + { |
|
| 1337 | + $td = array(); |
|
| 1338 | + foreach( $element->find('th') as $row) |
|
| 1339 | + { |
|
| 1340 | + $td [] = trim($row->plaintext); |
|
| 1341 | + } |
|
| 1342 | + $td=array_filter($td); |
|
| 1343 | + $tabledata[] = $td; |
|
| 1344 | + |
|
| 1345 | + $td = array(); |
|
| 1346 | + $tdi = array(); |
|
| 1347 | + foreach( $element->find('td') as $row) |
|
| 1348 | + { |
|
| 1349 | + $td [] = trim($row->plaintext); |
|
| 1350 | + $tdi [] = trim($row->innertext); |
|
| 1351 | + } |
|
| 1352 | + $td=array_filter($td); |
|
| 1353 | + $tdi=array_filter($tdi); |
|
| 1354 | + // $tabledata[]=array_merge($td,$tdi); |
|
| 1355 | + $tabledata[]=$td; |
|
| 1356 | + } |
|
| 1357 | + return(array_filter($tabledata)); |
|
| 1358 | + } |
|
| 1359 | + |
|
| 1360 | + /** |
|
| 1361 | + * Get data from form result |
|
| 1362 | + * @param String $url form URL |
|
| 1363 | + * @return String the result |
|
| 1364 | + */ |
|
| 1365 | + private static function getData($url) { |
|
| 1366 | + $ch = curl_init(); |
|
| 1367 | + curl_setopt($ch, CURLOPT_URL, $url); |
|
| 1368 | + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
|
| 1369 | + curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); |
|
| 1370 | + 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'); |
|
| 1371 | + return curl_exec($ch); |
|
| 1372 | + } |
|
| 1373 | 1373 | /* |
| 1374 | 1374 | public static function waypoints() { |
| 1375 | 1375 | $data = update_db::getData('http://www.fallingrain.com/world/FR/waypoints.html'); |
@@ -1452,7 +1452,7 @@ discard block |
||
| 1452 | 1452 | if ($globalTransaction) $Connection->db->commit(); |
| 1453 | 1453 | } |
| 1454 | 1454 | return ''; |
| 1455 | - } |
|
| 1455 | + } |
|
| 1456 | 1456 | |
| 1457 | 1457 | public static function ivao_airlines($filename) { |
| 1458 | 1458 | //require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
@@ -1462,10 +1462,10 @@ discard block |
||
| 1462 | 1462 | try { |
| 1463 | 1463 | $Connection = new Connection(); |
| 1464 | 1464 | $sth = $Connection->db->prepare($query); |
| 1465 | - $sth->execute(); |
|
| 1466 | - } catch(PDOException $e) { |
|
| 1467 | - return "error : ".$e->getMessage(); |
|
| 1468 | - } |
|
| 1465 | + $sth->execute(); |
|
| 1466 | + } catch(PDOException $e) { |
|
| 1467 | + return "error : ".$e->getMessage(); |
|
| 1468 | + } |
|
| 1469 | 1469 | |
| 1470 | 1470 | $header = NULL; |
| 1471 | 1471 | $delimiter = ':'; |
@@ -1489,7 +1489,7 @@ discard block |
||
| 1489 | 1489 | if ($globalTransaction) $Connection->db->commit(); |
| 1490 | 1490 | } |
| 1491 | 1491 | return ''; |
| 1492 | - } |
|
| 1492 | + } |
|
| 1493 | 1493 | |
| 1494 | 1494 | public static function update_airspace() { |
| 1495 | 1495 | global $tmp_dir, $globalDBdriver; |
@@ -1499,11 +1499,11 @@ discard block |
||
| 1499 | 1499 | $query = 'DROP TABLE airspace'; |
| 1500 | 1500 | try { |
| 1501 | 1501 | $sth = $Connection->db->prepare($query); |
| 1502 | - $sth->execute(); |
|
| 1503 | - } catch(PDOException $e) { |
|
| 1502 | + $sth->execute(); |
|
| 1503 | + } catch(PDOException $e) { |
|
| 1504 | 1504 | return "error : ".$e->getMessage(); |
| 1505 | - } |
|
| 1506 | - } |
|
| 1505 | + } |
|
| 1506 | + } |
|
| 1507 | 1507 | |
| 1508 | 1508 | |
| 1509 | 1509 | if ($globalDBdriver == 'mysql') update_db::gunzip('../db/airspace.sql.gz',$tmp_dir.'airspace.sql'); |
@@ -1558,10 +1558,10 @@ discard block |
||
| 1558 | 1558 | $query = 'DROP TABLE countries'; |
| 1559 | 1559 | try { |
| 1560 | 1560 | $sth = $Connection->db->prepare($query); |
| 1561 | - $sth->execute(); |
|
| 1562 | - } catch(PDOException $e) { |
|
| 1563 | - echo "error : ".$e->getMessage(); |
|
| 1564 | - } |
|
| 1561 | + $sth->execute(); |
|
| 1562 | + } catch(PDOException $e) { |
|
| 1563 | + echo "error : ".$e->getMessage(); |
|
| 1564 | + } |
|
| 1565 | 1565 | } |
| 1566 | 1566 | if ($globalDBdriver == 'mysql') { |
| 1567 | 1567 | update_db::gunzip('../db/countries.sql.gz',$tmp_dir.'countries.sql'); |
@@ -2090,11 +2090,11 @@ discard block |
||
| 2090 | 2090 | $query = 'DROP TABLE airspace'; |
| 2091 | 2091 | try { |
| 2092 | 2092 | $sth = $Connection->db->prepare($query); |
| 2093 | - $sth->execute(); |
|
| 2094 | - } catch(PDOException $e) { |
|
| 2093 | + $sth->execute(); |
|
| 2094 | + } catch(PDOException $e) { |
|
| 2095 | 2095 | return "error : ".$e->getMessage(); |
| 2096 | - } |
|
| 2097 | - } |
|
| 2096 | + } |
|
| 2097 | + } |
|
| 2098 | 2098 | $error = create_db::import_file($tmp_dir.'airspace.sql'); |
| 2099 | 2099 | update_db::insert_airspace_version($airspace_md5); |
| 2100 | 2100 | } else $error = "File ".$tmp_dir.'airpsace.sql.gz'." doesn't exist. Download failed."; |
@@ -2251,12 +2251,12 @@ discard block |
||
| 2251 | 2251 | echo $data; |
| 2252 | 2252 | */ |
| 2253 | 2253 | if (file_exists($tmp_dir.'aircrafts.html')) { |
| 2254 | - //var_dump(file_get_html($tmp_dir.'aircrafts.html')); |
|
| 2255 | - $fh = fopen($tmp_dir.'aircrafts.html',"r"); |
|
| 2256 | - $result = fread($fh,100000000); |
|
| 2257 | - //echo $result; |
|
| 2258 | - //var_dump(str_get_html($result)); |
|
| 2259 | - //print_r(self::table2array($result)); |
|
| 2254 | + //var_dump(file_get_html($tmp_dir.'aircrafts.html')); |
|
| 2255 | + $fh = fopen($tmp_dir.'aircrafts.html',"r"); |
|
| 2256 | + $result = fread($fh,100000000); |
|
| 2257 | + //echo $result; |
|
| 2258 | + //var_dump(str_get_html($result)); |
|
| 2259 | + //print_r(self::table2array($result)); |
|
| 2260 | 2260 | } |
| 2261 | 2261 | |
| 2262 | 2262 | } |
@@ -2270,10 +2270,10 @@ discard block |
||
| 2270 | 2270 | try { |
| 2271 | 2271 | $Connection = new Connection(); |
| 2272 | 2272 | $sth = $Connection->db->prepare($query); |
| 2273 | - $sth->execute(); |
|
| 2274 | - } catch(PDOException $e) { |
|
| 2275 | - return "error : ".$e->getMessage(); |
|
| 2276 | - } |
|
| 2273 | + $sth->execute(); |
|
| 2274 | + } catch(PDOException $e) { |
|
| 2275 | + return "error : ".$e->getMessage(); |
|
| 2276 | + } |
|
| 2277 | 2277 | |
| 2278 | 2278 | $error = ''; |
| 2279 | 2279 | if ($globalDebug) echo "Notam : Download..."; |
@@ -2329,8 +2329,8 @@ discard block |
||
| 2329 | 2329 | $data['date_end'] = date("Y-m-d H:i:s",strtotime($to)); |
| 2330 | 2330 | $data['permanent'] = 0; |
| 2331 | 2331 | } else { |
| 2332 | - $data['date_end'] = NULL; |
|
| 2333 | - $data['permanent'] = 1; |
|
| 2332 | + $data['date_end'] = NULL; |
|
| 2333 | + $data['permanent'] = 1; |
|
| 2334 | 2334 | } |
| 2335 | 2335 | $data['full_notam'] = $notam['title'].'<br>'.$notam['description']; |
| 2336 | 2336 | $NOTAM = new NOTAM(); |
@@ -2404,13 +2404,13 @@ discard block |
||
| 2404 | 2404 | try { |
| 2405 | 2405 | $Connection = new Connection(); |
| 2406 | 2406 | $sth = $Connection->db->prepare($query); |
| 2407 | - $sth->execute(); |
|
| 2408 | - } catch(PDOException $e) { |
|
| 2409 | - return "error : ".$e->getMessage(); |
|
| 2410 | - } |
|
| 2411 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2412 | - if ($row['nb'] > 0) return false; |
|
| 2413 | - else return true; |
|
| 2407 | + $sth->execute(); |
|
| 2408 | + } catch(PDOException $e) { |
|
| 2409 | + return "error : ".$e->getMessage(); |
|
| 2410 | + } |
|
| 2411 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2412 | + if ($row['nb'] > 0) return false; |
|
| 2413 | + else return true; |
|
| 2414 | 2414 | } |
| 2415 | 2415 | |
| 2416 | 2416 | public static function insert_last_update() { |
@@ -2419,10 +2419,10 @@ discard block |
||
| 2419 | 2419 | try { |
| 2420 | 2420 | $Connection = new Connection(); |
| 2421 | 2421 | $sth = $Connection->db->prepare($query); |
| 2422 | - $sth->execute(); |
|
| 2423 | - } catch(PDOException $e) { |
|
| 2424 | - return "error : ".$e->getMessage(); |
|
| 2425 | - } |
|
| 2422 | + $sth->execute(); |
|
| 2423 | + } catch(PDOException $e) { |
|
| 2424 | + return "error : ".$e->getMessage(); |
|
| 2425 | + } |
|
| 2426 | 2426 | } |
| 2427 | 2427 | |
| 2428 | 2428 | public static function check_airspace_version($version) { |
@@ -2430,13 +2430,13 @@ discard block |
||
| 2430 | 2430 | try { |
| 2431 | 2431 | $Connection = new Connection(); |
| 2432 | 2432 | $sth = $Connection->db->prepare($query); |
| 2433 | - $sth->execute(array(':version' => $version)); |
|
| 2434 | - } catch(PDOException $e) { |
|
| 2435 | - return "error : ".$e->getMessage(); |
|
| 2436 | - } |
|
| 2437 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2438 | - if ($row['nb'] > 0) return true; |
|
| 2439 | - else return false; |
|
| 2433 | + $sth->execute(array(':version' => $version)); |
|
| 2434 | + } catch(PDOException $e) { |
|
| 2435 | + return "error : ".$e->getMessage(); |
|
| 2436 | + } |
|
| 2437 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2438 | + if ($row['nb'] > 0) return true; |
|
| 2439 | + else return false; |
|
| 2440 | 2440 | } |
| 2441 | 2441 | |
| 2442 | 2442 | public static function check_marine_identity_version($version) { |
@@ -2444,13 +2444,13 @@ discard block |
||
| 2444 | 2444 | try { |
| 2445 | 2445 | $Connection = new Connection(); |
| 2446 | 2446 | $sth = $Connection->db->prepare($query); |
| 2447 | - $sth->execute(array(':version' => $version)); |
|
| 2448 | - } catch(PDOException $e) { |
|
| 2449 | - return "error : ".$e->getMessage(); |
|
| 2450 | - } |
|
| 2451 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2452 | - if ($row['nb'] > 0) return true; |
|
| 2453 | - else return false; |
|
| 2447 | + $sth->execute(array(':version' => $version)); |
|
| 2448 | + } catch(PDOException $e) { |
|
| 2449 | + return "error : ".$e->getMessage(); |
|
| 2450 | + } |
|
| 2451 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2452 | + if ($row['nb'] > 0) return true; |
|
| 2453 | + else return false; |
|
| 2454 | 2454 | } |
| 2455 | 2455 | |
| 2456 | 2456 | |
@@ -2460,10 +2460,10 @@ discard block |
||
| 2460 | 2460 | try { |
| 2461 | 2461 | $Connection = new Connection(); |
| 2462 | 2462 | $sth = $Connection->db->prepare($query); |
| 2463 | - $sth->execute(array(':version' => $version)); |
|
| 2464 | - } catch(PDOException $e) { |
|
| 2465 | - return "error : ".$e->getMessage(); |
|
| 2466 | - } |
|
| 2463 | + $sth->execute(array(':version' => $version)); |
|
| 2464 | + } catch(PDOException $e) { |
|
| 2465 | + return "error : ".$e->getMessage(); |
|
| 2466 | + } |
|
| 2467 | 2467 | } |
| 2468 | 2468 | |
| 2469 | 2469 | public static function insert_marine_identity_version($version) { |
@@ -2472,10 +2472,10 @@ discard block |
||
| 2472 | 2472 | try { |
| 2473 | 2473 | $Connection = new Connection(); |
| 2474 | 2474 | $sth = $Connection->db->prepare($query); |
| 2475 | - $sth->execute(array(':version' => $version)); |
|
| 2476 | - } catch(PDOException $e) { |
|
| 2477 | - return "error : ".$e->getMessage(); |
|
| 2478 | - } |
|
| 2475 | + $sth->execute(array(':version' => $version)); |
|
| 2476 | + } catch(PDOException $e) { |
|
| 2477 | + return "error : ".$e->getMessage(); |
|
| 2478 | + } |
|
| 2479 | 2479 | } |
| 2480 | 2480 | |
| 2481 | 2481 | public static function check_last_notam_update() { |
@@ -2488,13 +2488,13 @@ discard block |
||
| 2488 | 2488 | try { |
| 2489 | 2489 | $Connection = new Connection(); |
| 2490 | 2490 | $sth = $Connection->db->prepare($query); |
| 2491 | - $sth->execute(); |
|
| 2492 | - } catch(PDOException $e) { |
|
| 2493 | - return "error : ".$e->getMessage(); |
|
| 2494 | - } |
|
| 2495 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2496 | - if ($row['nb'] > 0) return false; |
|
| 2497 | - else return true; |
|
| 2491 | + $sth->execute(); |
|
| 2492 | + } catch(PDOException $e) { |
|
| 2493 | + return "error : ".$e->getMessage(); |
|
| 2494 | + } |
|
| 2495 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2496 | + if ($row['nb'] > 0) return false; |
|
| 2497 | + else return true; |
|
| 2498 | 2498 | } |
| 2499 | 2499 | |
| 2500 | 2500 | public static function insert_last_notam_update() { |
@@ -2503,10 +2503,10 @@ discard block |
||
| 2503 | 2503 | try { |
| 2504 | 2504 | $Connection = new Connection(); |
| 2505 | 2505 | $sth = $Connection->db->prepare($query); |
| 2506 | - $sth->execute(); |
|
| 2507 | - } catch(PDOException $e) { |
|
| 2508 | - return "error : ".$e->getMessage(); |
|
| 2509 | - } |
|
| 2506 | + $sth->execute(); |
|
| 2507 | + } catch(PDOException $e) { |
|
| 2508 | + return "error : ".$e->getMessage(); |
|
| 2509 | + } |
|
| 2510 | 2510 | } |
| 2511 | 2511 | public static function check_last_airspace_update() { |
| 2512 | 2512 | global $globalDBdriver; |
@@ -2518,13 +2518,13 @@ discard block |
||
| 2518 | 2518 | try { |
| 2519 | 2519 | $Connection = new Connection(); |
| 2520 | 2520 | $sth = $Connection->db->prepare($query); |
| 2521 | - $sth->execute(); |
|
| 2522 | - } catch(PDOException $e) { |
|
| 2523 | - return "error : ".$e->getMessage(); |
|
| 2524 | - } |
|
| 2525 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2526 | - if ($row['nb'] > 0) return false; |
|
| 2527 | - else return true; |
|
| 2521 | + $sth->execute(); |
|
| 2522 | + } catch(PDOException $e) { |
|
| 2523 | + return "error : ".$e->getMessage(); |
|
| 2524 | + } |
|
| 2525 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2526 | + if ($row['nb'] > 0) return false; |
|
| 2527 | + else return true; |
|
| 2528 | 2528 | } |
| 2529 | 2529 | |
| 2530 | 2530 | public static function insert_last_airspace_update() { |
@@ -2533,10 +2533,10 @@ discard block |
||
| 2533 | 2533 | try { |
| 2534 | 2534 | $Connection = new Connection(); |
| 2535 | 2535 | $sth = $Connection->db->prepare($query); |
| 2536 | - $sth->execute(); |
|
| 2537 | - } catch(PDOException $e) { |
|
| 2538 | - return "error : ".$e->getMessage(); |
|
| 2539 | - } |
|
| 2536 | + $sth->execute(); |
|
| 2537 | + } catch(PDOException $e) { |
|
| 2538 | + return "error : ".$e->getMessage(); |
|
| 2539 | + } |
|
| 2540 | 2540 | } |
| 2541 | 2541 | |
| 2542 | 2542 | public static function check_last_owner_update() { |
@@ -2549,13 +2549,13 @@ discard block |
||
| 2549 | 2549 | try { |
| 2550 | 2550 | $Connection = new Connection(); |
| 2551 | 2551 | $sth = $Connection->db->prepare($query); |
| 2552 | - $sth->execute(); |
|
| 2553 | - } catch(PDOException $e) { |
|
| 2554 | - return "error : ".$e->getMessage(); |
|
| 2555 | - } |
|
| 2556 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2557 | - if ($row['nb'] > 0) return false; |
|
| 2558 | - else return true; |
|
| 2552 | + $sth->execute(); |
|
| 2553 | + } catch(PDOException $e) { |
|
| 2554 | + return "error : ".$e->getMessage(); |
|
| 2555 | + } |
|
| 2556 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2557 | + if ($row['nb'] > 0) return false; |
|
| 2558 | + else return true; |
|
| 2559 | 2559 | } |
| 2560 | 2560 | |
| 2561 | 2561 | public static function insert_last_owner_update() { |
@@ -2564,10 +2564,10 @@ discard block |
||
| 2564 | 2564 | try { |
| 2565 | 2565 | $Connection = new Connection(); |
| 2566 | 2566 | $sth = $Connection->db->prepare($query); |
| 2567 | - $sth->execute(); |
|
| 2568 | - } catch(PDOException $e) { |
|
| 2569 | - return "error : ".$e->getMessage(); |
|
| 2570 | - } |
|
| 2567 | + $sth->execute(); |
|
| 2568 | + } catch(PDOException $e) { |
|
| 2569 | + return "error : ".$e->getMessage(); |
|
| 2570 | + } |
|
| 2571 | 2571 | } |
| 2572 | 2572 | public static function check_last_schedules_update() { |
| 2573 | 2573 | global $globalDBdriver; |
@@ -2579,13 +2579,13 @@ discard block |
||
| 2579 | 2579 | try { |
| 2580 | 2580 | $Connection = new Connection(); |
| 2581 | 2581 | $sth = $Connection->db->prepare($query); |
| 2582 | - $sth->execute(); |
|
| 2583 | - } catch(PDOException $e) { |
|
| 2584 | - return "error : ".$e->getMessage(); |
|
| 2585 | - } |
|
| 2586 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2587 | - if ($row['nb'] > 0) return false; |
|
| 2588 | - else return true; |
|
| 2582 | + $sth->execute(); |
|
| 2583 | + } catch(PDOException $e) { |
|
| 2584 | + return "error : ".$e->getMessage(); |
|
| 2585 | + } |
|
| 2586 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2587 | + if ($row['nb'] > 0) return false; |
|
| 2588 | + else return true; |
|
| 2589 | 2589 | } |
| 2590 | 2590 | |
| 2591 | 2591 | public static function insert_last_schedules_update() { |
@@ -2594,10 +2594,10 @@ discard block |
||
| 2594 | 2594 | try { |
| 2595 | 2595 | $Connection = new Connection(); |
| 2596 | 2596 | $sth = $Connection->db->prepare($query); |
| 2597 | - $sth->execute(); |
|
| 2598 | - } catch(PDOException $e) { |
|
| 2599 | - return "error : ".$e->getMessage(); |
|
| 2600 | - } |
|
| 2597 | + $sth->execute(); |
|
| 2598 | + } catch(PDOException $e) { |
|
| 2599 | + return "error : ".$e->getMessage(); |
|
| 2600 | + } |
|
| 2601 | 2601 | } |
| 2602 | 2602 | public static function check_last_tle_update() { |
| 2603 | 2603 | global $globalDBdriver; |
@@ -2609,13 +2609,13 @@ discard block |
||
| 2609 | 2609 | try { |
| 2610 | 2610 | $Connection = new Connection(); |
| 2611 | 2611 | $sth = $Connection->db->prepare($query); |
| 2612 | - $sth->execute(); |
|
| 2613 | - } catch(PDOException $e) { |
|
| 2614 | - return "error : ".$e->getMessage(); |
|
| 2615 | - } |
|
| 2616 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2617 | - if ($row['nb'] > 0) return false; |
|
| 2618 | - else return true; |
|
| 2612 | + $sth->execute(); |
|
| 2613 | + } catch(PDOException $e) { |
|
| 2614 | + return "error : ".$e->getMessage(); |
|
| 2615 | + } |
|
| 2616 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2617 | + if ($row['nb'] > 0) return false; |
|
| 2618 | + else return true; |
|
| 2619 | 2619 | } |
| 2620 | 2620 | |
| 2621 | 2621 | public static function insert_last_tle_update() { |
@@ -2624,10 +2624,10 @@ discard block |
||
| 2624 | 2624 | try { |
| 2625 | 2625 | $Connection = new Connection(); |
| 2626 | 2626 | $sth = $Connection->db->prepare($query); |
| 2627 | - $sth->execute(); |
|
| 2628 | - } catch(PDOException $e) { |
|
| 2629 | - return "error : ".$e->getMessage(); |
|
| 2630 | - } |
|
| 2627 | + $sth->execute(); |
|
| 2628 | + } catch(PDOException $e) { |
|
| 2629 | + return "error : ".$e->getMessage(); |
|
| 2630 | + } |
|
| 2631 | 2631 | } |
| 2632 | 2632 | public static function check_last_marine_identity_update() { |
| 2633 | 2633 | global $globalDBdriver; |
@@ -2639,13 +2639,13 @@ discard block |
||
| 2639 | 2639 | try { |
| 2640 | 2640 | $Connection = new Connection(); |
| 2641 | 2641 | $sth = $Connection->db->prepare($query); |
| 2642 | - $sth->execute(); |
|
| 2643 | - } catch(PDOException $e) { |
|
| 2644 | - return "error : ".$e->getMessage(); |
|
| 2645 | - } |
|
| 2646 | - $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2647 | - if ($row['nb'] > 0) return false; |
|
| 2648 | - else return true; |
|
| 2642 | + $sth->execute(); |
|
| 2643 | + } catch(PDOException $e) { |
|
| 2644 | + return "error : ".$e->getMessage(); |
|
| 2645 | + } |
|
| 2646 | + $row = $sth->fetch(PDO::FETCH_ASSOC); |
|
| 2647 | + if ($row['nb'] > 0) return false; |
|
| 2648 | + else return true; |
|
| 2649 | 2649 | } |
| 2650 | 2650 | |
| 2651 | 2651 | public static function insert_last_marine_identity_update() { |
@@ -2654,10 +2654,10 @@ discard block |
||
| 2654 | 2654 | try { |
| 2655 | 2655 | $Connection = new Connection(); |
| 2656 | 2656 | $sth = $Connection->db->prepare($query); |
| 2657 | - $sth->execute(); |
|
| 2658 | - } catch(PDOException $e) { |
|
| 2659 | - return "error : ".$e->getMessage(); |
|
| 2660 | - } |
|
| 2657 | + $sth->execute(); |
|
| 2658 | + } catch(PDOException $e) { |
|
| 2659 | + return "error : ".$e->getMessage(); |
|
| 2660 | + } |
|
| 2661 | 2661 | } |
| 2662 | 2662 | public static function delete_duplicatemodes() { |
| 2663 | 2663 | global $globalDBdriver; |
@@ -2669,10 +2669,10 @@ discard block |
||
| 2669 | 2669 | try { |
| 2670 | 2670 | $Connection = new Connection(); |
| 2671 | 2671 | $sth = $Connection->db->prepare($query); |
| 2672 | - $sth->execute(); |
|
| 2673 | - } catch(PDOException $e) { |
|
| 2674 | - return "error : ".$e->getMessage(); |
|
| 2675 | - } |
|
| 2672 | + $sth->execute(); |
|
| 2673 | + } catch(PDOException $e) { |
|
| 2674 | + return "error : ".$e->getMessage(); |
|
| 2675 | + } |
|
| 2676 | 2676 | } |
| 2677 | 2677 | public static function delete_duplicateowner() { |
| 2678 | 2678 | global $globalDBdriver; |
@@ -2684,10 +2684,10 @@ discard block |
||
| 2684 | 2684 | try { |
| 2685 | 2685 | $Connection = new Connection(); |
| 2686 | 2686 | $sth = $Connection->db->prepare($query); |
| 2687 | - $sth->execute(); |
|
| 2688 | - } catch(PDOException $e) { |
|
| 2689 | - return "error : ".$e->getMessage(); |
|
| 2690 | - } |
|
| 2687 | + $sth->execute(); |
|
| 2688 | + } catch(PDOException $e) { |
|
| 2689 | + return "error : ".$e->getMessage(); |
|
| 2690 | + } |
|
| 2691 | 2691 | } |
| 2692 | 2692 | |
| 2693 | 2693 | public static function update_all() { |
@@ -24,20 +24,20 @@ discard block |
||
| 24 | 24 | fclose($fp); |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | - public static function gunzip($in_file,$out_file_name = '') { |
|
| 27 | + public static function gunzip($in_file, $out_file_name = '') { |
|
| 28 | 28 | //echo $in_file.' -> '.$out_file_name."\n"; |
| 29 | 29 | $buffer_size = 4096; // read 4kb at a time |
| 30 | 30 | if ($out_file_name == '') $out_file_name = str_replace('.gz', '', $in_file); |
| 31 | 31 | if ($in_file != '' && file_exists($in_file)) { |
| 32 | 32 | // PHP version of Ubuntu use gzopen64 instead of gzopen |
| 33 | - if (function_exists('gzopen')) $file = gzopen($in_file,'rb'); |
|
| 34 | - elseif (function_exists('gzopen64')) $file = gzopen64($in_file,'rb'); |
|
| 33 | + if (function_exists('gzopen')) $file = gzopen($in_file, 'rb'); |
|
| 34 | + elseif (function_exists('gzopen64')) $file = gzopen64($in_file, 'rb'); |
|
| 35 | 35 | else { |
| 36 | 36 | echo 'gzopen not available'; |
| 37 | 37 | die; |
| 38 | 38 | } |
| 39 | 39 | $out_file = fopen($out_file_name, 'wb'); |
| 40 | - while(!gzeof($file)) { |
|
| 40 | + while (!gzeof($file)) { |
|
| 41 | 41 | fwrite($out_file, gzread($file, $buffer_size)); |
| 42 | 42 | } |
| 43 | 43 | fclose($out_file); |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | try { |
| 62 | 62 | self::$db_sqlite = new PDO('sqlite:'.$database); |
| 63 | 63 | self::$db_sqlite->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); |
| 64 | - } catch(PDOException $e) { |
|
| 64 | + } catch (PDOException $e) { |
|
| 65 | 65 | return "error : ".$e->getMessage(); |
| 66 | 66 | } |
| 67 | 67 | } |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | //$Connection = new Connection(); |
| 77 | 77 | $sth = $Connection->db->prepare($query); |
| 78 | 78 | $sth->execute(array(':source' => $database_file)); |
| 79 | - } catch(PDOException $e) { |
|
| 79 | + } catch (PDOException $e) { |
|
| 80 | 80 | return "error : ".$e->getMessage(); |
| 81 | 81 | } |
| 82 | 82 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | try { |
| 88 | 88 | $sth = update_db::$db_sqlite->prepare($query); |
| 89 | 89 | $sth->execute(); |
| 90 | - } catch(PDOException $e) { |
|
| 90 | + } catch (PDOException $e) { |
|
| 91 | 91 | return "error : ".$e->getMessage(); |
| 92 | 92 | } |
| 93 | 93 | //$query_dest = 'INSERT INTO routes (`RouteID`,`CallSign`,`Operator_ICAO`,`FromAirport_ICAO`,`ToAirport_ICAO`,`RouteStop`,`Source`) VALUES (:RouteID, :CallSign, :Operator_ICAO, :FromAirport_ICAO, :ToAirport_ICAO, :routestop, :source)'; |
@@ -98,11 +98,11 @@ discard block |
||
| 98 | 98 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 99 | 99 | while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
| 100 | 100 | //$query_dest_values = array(':RouteID' => $values['RouteId'],':CallSign' => $values['Callsign'],':Operator_ICAO' => $values['operator_icao'],':FromAirport_ICAO' => $values['FromAirportIcao'],':ToAirport_ICAO' => $values['ToAirportIcao'],':routestop' => $values['AllStop'],':source' => $database_file); |
| 101 | - $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); |
|
| 101 | + $query_dest_values = array(':CallSign' => $values['Callsign'], ':Operator_ICAO' => $values['operator_icao'], ':FromAirport_ICAO' => $values['FromAirportIcao'], ':ToAirport_ICAO' => $values['ToAirportIcao'], ':routestop' => $values['AllStop'], ':source' => $database_file); |
|
| 102 | 102 | $sth_dest->execute($query_dest_values); |
| 103 | 103 | } |
| 104 | 104 | if ($globalTransaction) $Connection->db->commit(); |
| 105 | - } catch(PDOException $e) { |
|
| 105 | + } catch (PDOException $e) { |
|
| 106 | 106 | if ($globalTransaction) $Connection->db->rollBack(); |
| 107 | 107 | return "error : ".$e->getMessage(); |
| 108 | 108 | } |
@@ -118,26 +118,26 @@ discard block |
||
| 118 | 118 | //$Connection = new Connection(); |
| 119 | 119 | $sth = $Connection->db->prepare($query); |
| 120 | 120 | $sth->execute(array(':source' => 'oneworld')); |
| 121 | - } catch(PDOException $e) { |
|
| 121 | + } catch (PDOException $e) { |
|
| 122 | 122 | return "error : ".$e->getMessage(); |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | if ($globalDebug) echo " - Add routes to DB -"; |
| 126 | 126 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 127 | 127 | $Spotter = new Spotter(); |
| 128 | - if ($fh = fopen($database_file,"r")) { |
|
| 128 | + if ($fh = fopen($database_file, "r")) { |
|
| 129 | 129 | $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)'; |
| 130 | 130 | $Connection = new Connection(); |
| 131 | 131 | $sth_dest = $Connection->db->prepare($query_dest); |
| 132 | 132 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 133 | 133 | while (!feof($fh)) { |
| 134 | - $line = fgetcsv($fh,9999,','); |
|
| 134 | + $line = fgetcsv($fh, 9999, ','); |
|
| 135 | 135 | if ($line[0] != '') { |
| 136 | 136 | if (($line[2] == '-' || ($line[2] != '-' && (strtotime($line[2]) > time()))) && ($line[3] == '-' || ($line[3] != '-' && (strtotime($line[3]) < time())))) { |
| 137 | 137 | try { |
| 138 | - $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'); |
|
| 138 | + $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'); |
|
| 139 | 139 | $sth_dest->execute($query_dest_values); |
| 140 | - } catch(PDOException $e) { |
|
| 140 | + } catch (PDOException $e) { |
|
| 141 | 141 | if ($globalTransaction) $Connection->db->rollBack(); |
| 142 | 142 | return "error : ".$e->getMessage(); |
| 143 | 143 | } |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | //$Connection = new Connection(); |
| 160 | 160 | $sth = $Connection->db->prepare($query); |
| 161 | 161 | $sth->execute(array(':source' => 'skyteam')); |
| 162 | - } catch(PDOException $e) { |
|
| 162 | + } catch (PDOException $e) { |
|
| 163 | 163 | return "error : ".$e->getMessage(); |
| 164 | 164 | } |
| 165 | 165 | |
@@ -167,24 +167,24 @@ discard block |
||
| 167 | 167 | |
| 168 | 168 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 169 | 169 | $Spotter = new Spotter(); |
| 170 | - if ($fh = fopen($database_file,"r")) { |
|
| 170 | + if ($fh = fopen($database_file, "r")) { |
|
| 171 | 171 | $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)'; |
| 172 | 172 | $Connection = new Connection(); |
| 173 | 173 | $sth_dest = $Connection->db->prepare($query_dest); |
| 174 | 174 | try { |
| 175 | 175 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 176 | 176 | while (!feof($fh)) { |
| 177 | - $line = fgetcsv($fh,9999,','); |
|
| 177 | + $line = fgetcsv($fh, 9999, ','); |
|
| 178 | 178 | if ($line[0] != '') { |
| 179 | - $datebe = explode(' - ',$line[2]); |
|
| 179 | + $datebe = explode(' - ', $line[2]); |
|
| 180 | 180 | if (strtotime($datebe[0]) > time() && strtotime($datebe[1]) < time()) { |
| 181 | - $query_dest_values = array(':CallSign' => str_replace('*','',$line[6]),':Operator_ICAO' => '',':FromAirport_ICAO' => $Spotter->getAirportICAO($line[0]),':FromAirport_Time' => $line[4],':ToAirport_ICAO' => $Spotter->getAirportICAO($line[1]),':ToAirport_Time' => $line[5],':routestop' => '',':source' => 'skyteam'); |
|
| 181 | + $query_dest_values = array(':CallSign' => str_replace('*', '', $line[6]), ':Operator_ICAO' => '', ':FromAirport_ICAO' => $Spotter->getAirportICAO($line[0]), ':FromAirport_Time' => $line[4], ':ToAirport_ICAO' => $Spotter->getAirportICAO($line[1]), ':ToAirport_Time' => $line[5], ':routestop' => '', ':source' => 'skyteam'); |
|
| 182 | 182 | $sth_dest->execute($query_dest_values); |
| 183 | 183 | } |
| 184 | 184 | } |
| 185 | 185 | } |
| 186 | 186 | if ($globalTransaction) $Connection->db->commit(); |
| 187 | - } catch(PDOException $e) { |
|
| 187 | + } catch (PDOException $e) { |
|
| 188 | 188 | if ($globalTransaction) $Connection->db->rollBack(); |
| 189 | 189 | return "error : ".$e->getMessage(); |
| 190 | 190 | } |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | $Connection = new Connection(); |
| 200 | 200 | $sth = $Connection->db->prepare($query); |
| 201 | 201 | $sth->execute(array(':source' => $database_file)); |
| 202 | - } catch(PDOException $e) { |
|
| 202 | + } catch (PDOException $e) { |
|
| 203 | 203 | return "error : ".$e->getMessage(); |
| 204 | 204 | } |
| 205 | 205 | $query = "DELETE FROM aircraft_owner WHERE Source = '' OR Source IS NULL OR Source = :source"; |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | $Connection = new Connection(); |
| 208 | 208 | $sth = $Connection->db->prepare($query); |
| 209 | 209 | $sth->execute(array(':source' => $database_file)); |
| 210 | - } catch(PDOException $e) { |
|
| 210 | + } catch (PDOException $e) { |
|
| 211 | 211 | return "error : ".$e->getMessage(); |
| 212 | 212 | } |
| 213 | 213 | |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | try { |
| 217 | 217 | $sth = update_db::$db_sqlite->prepare($query); |
| 218 | 218 | $sth->execute(); |
| 219 | - } catch(PDOException $e) { |
|
| 219 | + } catch (PDOException $e) { |
|
| 220 | 220 | return "error : ".$e->getMessage(); |
| 221 | 221 | } |
| 222 | 222 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
@@ -233,15 +233,15 @@ discard block |
||
| 233 | 233 | //$query_dest_values = array(':AircraftID' => $values['AircraftID'],':FirstCreated' => $values['FirstCreated'],':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':SerialNo' => $values['SerialNo'], ':OperatorFlagCode' => $values['OperatorFlagCode'], ':Manufacturer' => $values['Manufacturer'], ':Type' => $values['Type'], ':FirstRegDate' => $values['FirstRegDate'], ':CurrentRegDate' => $values['CurrentRegDate'], ':Country' => $values['Country'], ':PreviousID' => $values['PreviousID'], ':DeRegDate' => $values['DeRegDate'], ':Status' => $values['Status'], ':PopularName' => $values['PopularName'],':GenericName' => $values['GenericName'],':AircraftClass' => $values['AircraftClass'], ':Engines' => $values['Engines'], ':OwnershipStatus' => $values['OwnershipStatus'],':RegisteredOwners' => $values['RegisteredOwners'],':MTOW' => $values['MTOW'], ':TotalHours' => $values['TotalHours'],':YearBuilt' => $values['YearBuilt'], ':CofACategory' => $values['CofACategory'], ':CofAExpiry' => $values['CofAExpiry'], ':UserNotes' => $values['UserNotes'], ':Interested' => $values['Interested'], ':UserTag' => $values['UserTag'], ':InfoUrl' => $values['InfoURL'], ':PictureUrl1' => $values['PictureURL1'], ':PictureUrl2' => $values['PictureURL2'], ':PictureUrl3' => $values['PictureURL3'], ':UserBool1' => $values['UserBool1'], ':UserBool2' => $values['UserBool2'], ':UserBool3' => $values['UserBool3'], ':UserBool4' => $values['UserBool4'], ':UserBool5' => $values['UserBool5'], ':UserString1' => $values['UserString1'], ':UserString2' => $values['UserString2'], ':UserString3' => $values['UserString3'], ':UserString4' => $values['UserString4'], ':UserString5' => $values['UserString5'], ':UserInt1' => $values['UserInt1'], ':UserInt2' => $values['UserInt2'], ':UserInt3' => $values['UserInt3'], ':UserInt4' => $values['UserInt4'], ':UserInt5' => $values['UserInt5']); |
| 234 | 234 | if ($values['UserString4'] == 'M') $type = 'military'; |
| 235 | 235 | else $type = null; |
| 236 | - $query_dest_values = array(':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':source' => $database_file,':type' => $type); |
|
| 236 | + $query_dest_values = array(':LastModified' => $values['LastModified'], ':ModeS' => $values['ModeS'], ':ModeSCountry' => $values['ModeSCountry'], ':Registration' => $values['Registration'], ':ICAOTypeCode' => $values['ICAOTypeCode'], ':source' => $database_file, ':type' => $type); |
|
| 237 | 237 | $sth_dest->execute($query_dest_values); |
| 238 | 238 | if ($values['RegisteredOwners'] != '' && $values['RegisteredOwners'] != NULL && $values['RegisteredOwners'] != 'Private') { |
| 239 | - $query_dest_owner_values = array(':registration' => $values['Registration'],':source' => $database_file,':owner' => $values['RegisteredOwners']); |
|
| 239 | + $query_dest_owner_values = array(':registration' => $values['Registration'], ':source' => $database_file, ':owner' => $values['RegisteredOwners']); |
|
| 240 | 240 | $sth_dest_owner->execute($query_dest_owner_values); |
| 241 | 241 | } |
| 242 | 242 | } |
| 243 | 243 | if ($globalTransaction) $Connection->db->commit(); |
| 244 | - } catch(PDOException $e) { |
|
| 244 | + } catch (PDOException $e) { |
|
| 245 | 245 | return "error : ".$e->getMessage(); |
| 246 | 246 | } |
| 247 | 247 | |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | $Connection = new Connection(); |
| 252 | 252 | $sth = $Connection->db->prepare($query); |
| 253 | 253 | $sth->execute(array(':source' => $database_file)); |
| 254 | - } catch(PDOException $e) { |
|
| 254 | + } catch (PDOException $e) { |
|
| 255 | 255 | return "error : ".$e->getMessage(); |
| 256 | 256 | } |
| 257 | 257 | return ''; |
@@ -266,11 +266,11 @@ discard block |
||
| 266 | 266 | $Connection = new Connection(); |
| 267 | 267 | $sth = $Connection->db->prepare($query); |
| 268 | 268 | $sth->execute(array(':source' => $database_file)); |
| 269 | - } catch(PDOException $e) { |
|
| 269 | + } catch (PDOException $e) { |
|
| 270 | 270 | return "error : ".$e->getMessage(); |
| 271 | 271 | } |
| 272 | 272 | |
| 273 | - if ($fh = fopen($database_file,"r")) { |
|
| 273 | + if ($fh = fopen($database_file, "r")) { |
|
| 274 | 274 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
| 275 | 275 | $query_dest = 'INSERT INTO aircraft_modes (ModeS,Registration,ICAOTypeCode,Source,source_type) VALUES (:ModeS,:Registration,:ICAOTypeCode,:source,:source_type)'; |
| 276 | 276 | |
@@ -280,13 +280,13 @@ discard block |
||
| 280 | 280 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 281 | 281 | while (!feof($fh)) { |
| 282 | 282 | $values = array(); |
| 283 | - $line = $Common->hex2str(fgets($fh,9999)); |
|
| 283 | + $line = $Common->hex2str(fgets($fh, 9999)); |
|
| 284 | 284 | //FFFFFF RIDEAU VALLEY SOARINGASW-20 C-FBKN MZ 123.400 |
| 285 | - $values['ModeS'] = substr($line,0,6); |
|
| 286 | - $values['Registration'] = trim(substr($line,69,6)); |
|
| 287 | - $aircraft_name = trim(substr($line,48,6)); |
|
| 285 | + $values['ModeS'] = substr($line, 0, 6); |
|
| 286 | + $values['Registration'] = trim(substr($line, 69, 6)); |
|
| 287 | + $aircraft_name = trim(substr($line, 48, 6)); |
|
| 288 | 288 | // Check if we can find ICAO, else set it to GLID |
| 289 | - $aircraft_name_split = explode(' ',$aircraft_name); |
|
| 289 | + $aircraft_name_split = explode(' ', $aircraft_name); |
|
| 290 | 290 | $search_more = ''; |
| 291 | 291 | if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
| 292 | 292 | $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
@@ -298,20 +298,20 @@ discard block |
||
| 298 | 298 | if (isset($result['icao']) && $result['icao'] != '') { |
| 299 | 299 | $values['ICAOTypeCode'] = $result['icao']; |
| 300 | 300 | } |
| 301 | - } catch(PDOException $e) { |
|
| 301 | + } catch (PDOException $e) { |
|
| 302 | 302 | return "error : ".$e->getMessage(); |
| 303 | 303 | } |
| 304 | 304 | if (!isset($values['ICAOTypeCode'])) $values['ICAOTypeCode'] = 'GLID'; |
| 305 | 305 | // Add data to db |
| 306 | 306 | if ($values['Registration'] != '' && $values['Registration'] != '0000') { |
| 307 | 307 | //$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']); |
| 308 | - $query_dest_values = array(':ModeS' => $values['ModeS'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':source' => $database_file,':source_type' => 'flarm'); |
|
| 308 | + $query_dest_values = array(':ModeS' => $values['ModeS'], ':Registration' => $values['Registration'], ':ICAOTypeCode' => $values['ICAOTypeCode'], ':source' => $database_file, ':source_type' => 'flarm'); |
|
| 309 | 309 | //print_r($query_dest_values); |
| 310 | 310 | $sth_dest->execute($query_dest_values); |
| 311 | 311 | } |
| 312 | 312 | } |
| 313 | 313 | if ($globalTransaction) $Connection->db->commit(); |
| 314 | - } catch(PDOException $e) { |
|
| 314 | + } catch (PDOException $e) { |
|
| 315 | 315 | return "error : ".$e->getMessage(); |
| 316 | 316 | } |
| 317 | 317 | } |
@@ -321,7 +321,7 @@ discard block |
||
| 321 | 321 | $Connection = new Connection(); |
| 322 | 322 | $sth = $Connection->db->prepare($query); |
| 323 | 323 | $sth->execute(array(':source' => $database_file)); |
| 324 | - } catch(PDOException $e) { |
|
| 324 | + } catch (PDOException $e) { |
|
| 325 | 325 | return "error : ".$e->getMessage(); |
| 326 | 326 | } |
| 327 | 327 | return ''; |
@@ -335,11 +335,11 @@ discard block |
||
| 335 | 335 | $Connection = new Connection(); |
| 336 | 336 | $sth = $Connection->db->prepare($query); |
| 337 | 337 | $sth->execute(array(':source' => $database_file)); |
| 338 | - } catch(PDOException $e) { |
|
| 338 | + } catch (PDOException $e) { |
|
| 339 | 339 | return "error : ".$e->getMessage(); |
| 340 | 340 | } |
| 341 | 341 | |
| 342 | - if ($fh = fopen($database_file,"r")) { |
|
| 342 | + if ($fh = fopen($database_file, "r")) { |
|
| 343 | 343 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
| 344 | 344 | $query_dest = 'INSERT INTO aircraft_modes (LastModified,ModeS,Registration,ICAOTypeCode,Source,source_type) VALUES (:lastmodified,:ModeS,:Registration,:ICAOTypeCode,:source,:source_type)'; |
| 345 | 345 | |
@@ -347,9 +347,9 @@ discard block |
||
| 347 | 347 | $sth_dest = $Connection->db->prepare($query_dest); |
| 348 | 348 | try { |
| 349 | 349 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 350 | - $tmp = fgetcsv($fh,9999,',',"'"); |
|
| 350 | + $tmp = fgetcsv($fh, 9999, ',', "'"); |
|
| 351 | 351 | while (!feof($fh)) { |
| 352 | - $line = fgetcsv($fh,9999,',',"'"); |
|
| 352 | + $line = fgetcsv($fh, 9999, ',', "'"); |
|
| 353 | 353 | |
| 354 | 354 | //FFFFFF RIDEAU VALLEY SOARINGASW-20 C-FBKN MZ 123.400 |
| 355 | 355 | //print_r($line); |
@@ -357,7 +357,7 @@ discard block |
||
| 357 | 357 | $values['Registration'] = $line[3]; |
| 358 | 358 | $aircraft_name = $line[2]; |
| 359 | 359 | // Check if we can find ICAO, else set it to GLID |
| 360 | - $aircraft_name_split = explode(' ',$aircraft_name); |
|
| 360 | + $aircraft_name_split = explode(' ', $aircraft_name); |
|
| 361 | 361 | $search_more = ''; |
| 362 | 362 | if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
| 363 | 363 | $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
@@ -366,20 +366,20 @@ discard block |
||
| 366 | 366 | $sth_search->execute(); |
| 367 | 367 | $result = $sth_search->fetch(PDO::FETCH_ASSOC); |
| 368 | 368 | if (isset($result['icao']) && $result['icao'] != '') $values['ICAOTypeCode'] = $result['icao']; |
| 369 | - } catch(PDOException $e) { |
|
| 369 | + } catch (PDOException $e) { |
|
| 370 | 370 | return "error : ".$e->getMessage(); |
| 371 | 371 | } |
| 372 | 372 | //if (!isset($values['ICAOTypeCode'])) $values['ICAOTypeCode'] = 'GLID'; |
| 373 | 373 | // Add data to db |
| 374 | 374 | if ($values['Registration'] != '' && $values['Registration'] != '0000' && $values['ICAOTypeCode'] != '') { |
| 375 | 375 | //$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']); |
| 376 | - $query_dest_values = array(':lastmodified' => date('Y-m-d H:m:s'),':ModeS' => $values['ModeS'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':source' => $database_file,':source_type' => 'flarm'); |
|
| 376 | + $query_dest_values = array(':lastmodified' => date('Y-m-d H:m:s'), ':ModeS' => $values['ModeS'], ':Registration' => $values['Registration'], ':ICAOTypeCode' => $values['ICAOTypeCode'], ':source' => $database_file, ':source_type' => 'flarm'); |
|
| 377 | 377 | //print_r($query_dest_values); |
| 378 | 378 | $sth_dest->execute($query_dest_values); |
| 379 | 379 | } |
| 380 | 380 | } |
| 381 | 381 | if ($globalTransaction) $Connection->db->commit(); |
| 382 | - } catch(PDOException $e) { |
|
| 382 | + } catch (PDOException $e) { |
|
| 383 | 383 | return "error : ".$e->getMessage(); |
| 384 | 384 | } |
| 385 | 385 | } |
@@ -389,13 +389,13 @@ discard block |
||
| 389 | 389 | $Connection = new Connection(); |
| 390 | 390 | $sth = $Connection->db->prepare($query); |
| 391 | 391 | $sth->execute(array(':source' => $database_file)); |
| 392 | - } catch(PDOException $e) { |
|
| 392 | + } catch (PDOException $e) { |
|
| 393 | 393 | return "error : ".$e->getMessage(); |
| 394 | 394 | } |
| 395 | 395 | return ''; |
| 396 | 396 | } |
| 397 | 397 | |
| 398 | - public static function retrieve_owner($database_file,$country = 'F') { |
|
| 398 | + public static function retrieve_owner($database_file, $country = 'F') { |
|
| 399 | 399 | global $globalTransaction, $globalMasterSource; |
| 400 | 400 | //$query = 'TRUNCATE TABLE aircraft_modes'; |
| 401 | 401 | $query = "DELETE FROM aircraft_owner WHERE Source = '' OR Source IS NULL OR Source = :source; DELETE FROM aircraft_modes WHERE Source = :source;"; |
@@ -403,12 +403,12 @@ discard block |
||
| 403 | 403 | $Connection = new Connection(); |
| 404 | 404 | $sth = $Connection->db->prepare($query); |
| 405 | 405 | $sth->execute(array(':source' => $database_file)); |
| 406 | - } catch(PDOException $e) { |
|
| 406 | + } catch (PDOException $e) { |
|
| 407 | 407 | return "error : ".$e->getMessage(); |
| 408 | 408 | } |
| 409 | 409 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 410 | 410 | $Spotter = new Spotter(); |
| 411 | - if ($fh = fopen($database_file,"r")) { |
|
| 411 | + if ($fh = fopen($database_file, "r")) { |
|
| 412 | 412 | //$query_dest = 'INSERT INTO aircraft_modes (`AircraftID`,`FirstCreated`,`LastModified`, `ModeS`,`ModeSCountry`,`Registration`,`ICAOTypeCode`,`SerialNo`, `OperatorFlagCode`, `Manufacturer`, `Type`, `FirstRegDate`, `CurrentRegDate`, `Country`, `PreviousID`, `DeRegDate`, `Status`, `PopularName`,`GenericName`,`AircraftClass`, `Engines`, `OwnershipStatus`,`RegisteredOwners`,`MTOW`, `TotalHours`, `YearBuilt`, `CofACategory`, `CofAExpiry`, `UserNotes`, `Interested`, `UserTag`, `InfoUrl`, `PictureUrl1`, `PictureUrl2`, `PictureUrl3`, `UserBool1`, `UserBool2`, `UserBool3`, `UserBool4`, `UserBool5`, `UserString1`, `UserString2`, `UserString3`, `UserString4`, `UserString5`, `UserInt1`, `UserInt2`, `UserInt3`, `UserInt4`, `UserInt5`) VALUES (:AircraftID,:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:SerialNo, :OperatorFlagCode, :Manufacturer, :Type, :FirstRegDate, :CurrentRegDate, :Country, :PreviousID, :DeRegDate, :Status, :PopularName,:GenericName,:AircraftClass, :Engines, :OwnershipStatus,:RegisteredOwners,:MTOW, :TotalHours,:YearBuilt, :CofACategory, :CofAExpiry, :UserNotes, :Interested, :UserTag, :InfoUrl, :PictureUrl1, :PictureUrl2, :PictureUrl3, :UserBool1, :UserBool2, :UserBool3, :UserBool4, :UserBool5, :UserString1, :UserString2, :UserString3, :UserString4, :UserString5, :UserInt1, :UserInt2, :UserInt3, :UserInt4, :UserInt5)'; |
| 413 | 413 | $query_dest = 'INSERT INTO aircraft_owner (registration,base,owner,date_first_reg,Source) VALUES (:registration,:base,:owner,:date_first_reg,:source)'; |
| 414 | 414 | $query_modes = 'INSERT INTO aircraft_modes (ModeS,ModeSCountry,Registration,ICAOTypeCode,Source) VALUES (:modes,:modescountry,:registration,:icaotypecode,:source)'; |
@@ -418,9 +418,9 @@ discard block |
||
| 418 | 418 | $sth_modes = $Connection->db->prepare($query_modes); |
| 419 | 419 | try { |
| 420 | 420 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 421 | - $tmp = fgetcsv($fh,9999,',','"'); |
|
| 421 | + $tmp = fgetcsv($fh, 9999, ',', '"'); |
|
| 422 | 422 | while (!feof($fh)) { |
| 423 | - $line = fgetcsv($fh,9999,',','"'); |
|
| 423 | + $line = fgetcsv($fh, 9999, ',', '"'); |
|
| 424 | 424 | $values = array(); |
| 425 | 425 | //print_r($line); |
| 426 | 426 | if ($country == 'F') { |
@@ -428,7 +428,7 @@ discard block |
||
| 428 | 428 | $values['base'] = $line[4]; |
| 429 | 429 | $values['owner'] = $line[5]; |
| 430 | 430 | if ($line[6] == '') $values['date_first_reg'] = null; |
| 431 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
| 431 | + else $values['date_first_reg'] = date("Y-m-d", strtotime($line[6])); |
|
| 432 | 432 | $values['cancel'] = $line[7]; |
| 433 | 433 | } elseif ($country == 'EI') { |
| 434 | 434 | // TODO : add modeS & reg to aircraft_modes |
@@ -436,7 +436,7 @@ discard block |
||
| 436 | 436 | $values['base'] = $line[3]; |
| 437 | 437 | $values['owner'] = $line[2]; |
| 438 | 438 | if ($line[1] == '') $values['date_first_reg'] = null; |
| 439 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[1])); |
|
| 439 | + else $values['date_first_reg'] = date("Y-m-d", strtotime($line[1])); |
|
| 440 | 440 | $values['cancel'] = ''; |
| 441 | 441 | $values['modes'] = $line[7]; |
| 442 | 442 | $values['icao'] = $line[8]; |
@@ -456,7 +456,7 @@ discard block |
||
| 456 | 456 | $values['base'] = null; |
| 457 | 457 | $values['owner'] = $line[5]; |
| 458 | 458 | if ($line[18] == '') $values['date_first_reg'] = null; |
| 459 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[18])); |
|
| 459 | + else $values['date_first_reg'] = date("Y-m-d", strtotime($line[18])); |
|
| 460 | 460 | $values['cancel'] = ''; |
| 461 | 461 | } elseif ($country == 'VH') { |
| 462 | 462 | // TODO : add modeS & reg to aircraft_modes |
@@ -464,7 +464,7 @@ discard block |
||
| 464 | 464 | $values['base'] = null; |
| 465 | 465 | $values['owner'] = $line[12]; |
| 466 | 466 | if ($line[28] == '') $values['date_first_reg'] = null; |
| 467 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[28])); |
|
| 467 | + else $values['date_first_reg'] = date("Y-m-d", strtotime($line[28])); |
|
| 468 | 468 | |
| 469 | 469 | $values['cancel'] = $line[39]; |
| 470 | 470 | } elseif ($country == 'OE' || $country == '9A' || $country == 'VP' || $country == 'LX' || $country == 'P2' || $country == 'HC') { |
@@ -484,28 +484,28 @@ discard block |
||
| 484 | 484 | $values['base'] = null; |
| 485 | 485 | $values['owner'] = $line[8]; |
| 486 | 486 | if ($line[7] == '') $values['date_first_reg'] = null; |
| 487 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
| 487 | + else $values['date_first_reg'] = date("Y-m-d", strtotime($line[7])); |
|
| 488 | 488 | $values['cancel'] = ''; |
| 489 | 489 | } elseif ($country == 'PP') { |
| 490 | 490 | $values['registration'] = $line[0]; |
| 491 | 491 | $values['base'] = null; |
| 492 | 492 | $values['owner'] = $line[4]; |
| 493 | 493 | if ($line[6] == '') $values['date_first_reg'] = null; |
| 494 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
| 494 | + else $values['date_first_reg'] = date("Y-m-d", strtotime($line[6])); |
|
| 495 | 495 | $values['cancel'] = $line[7]; |
| 496 | 496 | } elseif ($country == 'E7') { |
| 497 | 497 | $values['registration'] = $line[0]; |
| 498 | 498 | $values['base'] = null; |
| 499 | 499 | $values['owner'] = $line[4]; |
| 500 | 500 | if ($line[5] == '') $values['date_first_reg'] = null; |
| 501 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
| 501 | + else $values['date_first_reg'] = date("Y-m-d", strtotime($line[5])); |
|
| 502 | 502 | $values['cancel'] = ''; |
| 503 | 503 | } elseif ($country == '8Q') { |
| 504 | 504 | $values['registration'] = $line[0]; |
| 505 | 505 | $values['base'] = null; |
| 506 | 506 | $values['owner'] = $line[3]; |
| 507 | 507 | if ($line[7] == '') $values['date_first_reg'] = null; |
| 508 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
| 508 | + else $values['date_first_reg'] = date("Y-m-d", strtotime($line[7])); |
|
| 509 | 509 | $values['cancel'] = ''; |
| 510 | 510 | } elseif ($country == 'ZK') { |
| 511 | 511 | $values['registration'] = $line[0]; |
@@ -519,18 +519,18 @@ discard block |
||
| 519 | 519 | $values['registration'] = $line[0]; |
| 520 | 520 | $values['base'] = null; |
| 521 | 521 | $values['owner'] = $line[6]; |
| 522 | - $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
| 523 | - $values['cancel'] = date("Y-m-d",strtotime($line[8])); |
|
| 522 | + $values['date_first_reg'] = date("Y-m-d", strtotime($line[5])); |
|
| 523 | + $values['cancel'] = date("Y-m-d", strtotime($line[8])); |
|
| 524 | 524 | $values['modes'] = $line[4]; |
| 525 | 525 | $values['icao'] = $line[10]; |
| 526 | 526 | } elseif ($country == 'OY') { |
| 527 | 527 | $values['registration'] = $line[0]; |
| 528 | - $values['date_first_reg'] = date("Y-m-d",strtotime($line[4])); |
|
| 528 | + $values['date_first_reg'] = date("Y-m-d", strtotime($line[4])); |
|
| 529 | 529 | $values['modes'] = $line[5]; |
| 530 | 530 | $values['icao'] = $line[6]; |
| 531 | 531 | } elseif ($country == 'PH') { |
| 532 | 532 | $values['registration'] = $line[0]; |
| 533 | - $values['date_first_reg'] = date("Y-m-d",strtotime($line[3])); |
|
| 533 | + $values['date_first_reg'] = date("Y-m-d", strtotime($line[3])); |
|
| 534 | 534 | $values['modes'] = $line[4]; |
| 535 | 535 | $values['icao'] = $line[5]; |
| 536 | 536 | } elseif ($country == 'OM' || $country == 'TF') { |
@@ -541,17 +541,17 @@ discard block |
||
| 541 | 541 | $values['cancel'] = ''; |
| 542 | 542 | } |
| 543 | 543 | if (isset($values['cancel']) && $values['cancel'] == '' && $values['registration'] != null && isset($values['owner'])) { |
| 544 | - $query_dest_values = array(':registration' => $values['registration'],':base' => $values['base'],':date_first_reg' => $values['date_first_reg'],':owner' => $values['owner'],':source' => $database_file); |
|
| 544 | + $query_dest_values = array(':registration' => $values['registration'], ':base' => $values['base'], ':date_first_reg' => $values['date_first_reg'], ':owner' => $values['owner'], ':source' => $database_file); |
|
| 545 | 545 | $sth_dest->execute($query_dest_values); |
| 546 | 546 | } |
| 547 | 547 | if ($globalMasterSource && $values['registration'] != null && isset($values['modes']) && $values['modes'] != '') { |
| 548 | 548 | $modescountry = $Spotter->countryFromAircraftRegistration($values['registration']); |
| 549 | - $query_modes_values = array(':registration' => $values['registration'],':modes' => $values['modes'],':modescountry' => $modescountry,':icaotypecode' => $values['icao'],':source' => $database_file); |
|
| 549 | + $query_modes_values = array(':registration' => $values['registration'], ':modes' => $values['modes'], ':modescountry' => $modescountry, ':icaotypecode' => $values['icao'], ':source' => $database_file); |
|
| 550 | 550 | $sth_modes->execute($query_modes_values); |
| 551 | 551 | } |
| 552 | 552 | } |
| 553 | 553 | if ($globalTransaction) $Connection->db->commit(); |
| 554 | - } catch(PDOException $e) { |
|
| 554 | + } catch (PDOException $e) { |
|
| 555 | 555 | return "error : ".$e->getMessage(); |
| 556 | 556 | } |
| 557 | 557 | } |
@@ -666,7 +666,7 @@ discard block |
||
| 666 | 666 | $Connection = new Connection(); |
| 667 | 667 | $sth = $Connection->db->prepare($query); |
| 668 | 668 | $sth->execute(); |
| 669 | - } catch(PDOException $e) { |
|
| 669 | + } catch (PDOException $e) { |
|
| 670 | 670 | return "error : ".$e->getMessage(); |
| 671 | 671 | } |
| 672 | 672 | |
@@ -676,7 +676,7 @@ discard block |
||
| 676 | 676 | $Connection = new Connection(); |
| 677 | 677 | $sth = $Connection->db->prepare($query); |
| 678 | 678 | $sth->execute(); |
| 679 | - } catch(PDOException $e) { |
|
| 679 | + } catch (PDOException $e) { |
|
| 680 | 680 | return "error : ".$e->getMessage(); |
| 681 | 681 | } |
| 682 | 682 | |
@@ -687,7 +687,7 @@ discard block |
||
| 687 | 687 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 688 | 688 | |
| 689 | 689 | $i = 0; |
| 690 | - while($row = sparql_fetch_array($result)) |
|
| 690 | + while ($row = sparql_fetch_array($result)) |
|
| 691 | 691 | { |
| 692 | 692 | if ($i >= 1) { |
| 693 | 693 | //print_r($row); |
@@ -707,31 +707,31 @@ discard block |
||
| 707 | 707 | $row['image'] = ''; |
| 708 | 708 | $row['image_thumb'] = ''; |
| 709 | 709 | } else { |
| 710 | - $image = str_replace(' ','_',$row['image']); |
|
| 710 | + $image = str_replace(' ', '_', $row['image']); |
|
| 711 | 711 | $digest = md5($image); |
| 712 | - $folder = $digest[0] . '/' . $digest[0] . $digest[1] . '/' . $image . '/220px-' . $image; |
|
| 713 | - $row['image_thumb'] = 'http://upload.wikimedia.org/wikipedia/commons/thumb/' . $folder; |
|
| 714 | - $folder = $digest[0] . '/' . $digest[0] . $digest[1] . '/' . $image; |
|
| 715 | - $row['image'] = 'http://upload.wikimedia.org/wikipedia/commons/' . $folder; |
|
| 712 | + $folder = $digest[0].'/'.$digest[0].$digest[1].'/'.$image.'/220px-'.$image; |
|
| 713 | + $row['image_thumb'] = 'http://upload.wikimedia.org/wikipedia/commons/thumb/'.$folder; |
|
| 714 | + $folder = $digest[0].'/'.$digest[0].$digest[1].'/'.$image; |
|
| 715 | + $row['image'] = 'http://upload.wikimedia.org/wikipedia/commons/'.$folder; |
|
| 716 | 716 | } |
| 717 | 717 | |
| 718 | - $country = explode('-',$row['country']); |
|
| 718 | + $country = explode('-', $row['country']); |
|
| 719 | 719 | $row['country'] = $country[0]; |
| 720 | 720 | |
| 721 | 721 | $row['type'] = trim($row['type']); |
| 722 | - if ($row['type'] == 'Military: Naval Auxiliary Air Station' || $row['type'] == 'http://dbpedia.org/resource/Naval_air_station' || $row['type'] == 'Military: Naval Air Station' || $row['type'] == 'Military Northern Fleet' || $row['type'] == 'Military and industrial' || $row['type'] == 'Military: Royal Air Force station' || $row['type'] == 'http://dbpedia.org/resource/Military_airbase' || $row['type'] == 'Military: Naval air station' || preg_match('/air base/i',$row['name'])) { |
|
| 722 | + if ($row['type'] == 'Military: Naval Auxiliary Air Station' || $row['type'] == 'http://dbpedia.org/resource/Naval_air_station' || $row['type'] == 'Military: Naval Air Station' || $row['type'] == 'Military Northern Fleet' || $row['type'] == 'Military and industrial' || $row['type'] == 'Military: Royal Air Force station' || $row['type'] == 'http://dbpedia.org/resource/Military_airbase' || $row['type'] == 'Military: Naval air station' || preg_match('/air base/i', $row['name'])) { |
|
| 723 | 723 | $row['type'] = 'Military'; |
| 724 | 724 | } elseif ($row['type'] == 'http://dbpedia.org/resource/Airport' || $row['type'] == 'Civil' || $row['type'] == 'Public use' || $row['type'] == 'Public' || $row['type'] == 'http://dbpedia.org/resource/Civilian' || $row['type'] == 'Public, Civilian' || $row['type'] == 'Public / Military' || $row['type'] == 'Private & Civilian' || $row['type'] == 'Civilian and Military' || $row['type'] == 'Public/military' || $row['type'] == 'Active With Few Facilities' || $row['type'] == '?ivilian' || $row['type'] == 'Civil/Military' || $row['type'] == 'NA' || $row['type'] == 'Public/Military') { |
| 725 | 725 | $row['type'] = 'small_airport'; |
| 726 | 726 | } |
| 727 | 727 | |
| 728 | - $row['city'] = urldecode(str_replace('_',' ',str_replace('http://dbpedia.org/resource/','',$row['city']))); |
|
| 729 | - $query_dest_values = array(':airport_id' => $i, ':name' => $row['name'],':iata' => $row['iata'],':icao' => $row['icao'],':latitude' => $row['latitude'],':longitude' => $row['longitude'],':altitude' => $row['altitude'],':type' => $row['type'],':city' => $row['city'],':country' => $row['country'],':home_link' => $row['homepage'],':wikipedia_link' => $row['wikipedia_page'],':image' => $row['image'],':image_thumb' => $row['image_thumb']); |
|
| 728 | + $row['city'] = urldecode(str_replace('_', ' ', str_replace('http://dbpedia.org/resource/', '', $row['city']))); |
|
| 729 | + $query_dest_values = array(':airport_id' => $i, ':name' => $row['name'], ':iata' => $row['iata'], ':icao' => $row['icao'], ':latitude' => $row['latitude'], ':longitude' => $row['longitude'], ':altitude' => $row['altitude'], ':type' => $row['type'], ':city' => $row['city'], ':country' => $row['country'], ':home_link' => $row['homepage'], ':wikipedia_link' => $row['wikipedia_page'], ':image' => $row['image'], ':image_thumb' => $row['image_thumb']); |
|
| 730 | 730 | //print_r($query_dest_values); |
| 731 | 731 | |
| 732 | 732 | try { |
| 733 | 733 | $sth_dest->execute($query_dest_values); |
| 734 | - } catch(PDOException $e) { |
|
| 734 | + } catch (PDOException $e) { |
|
| 735 | 735 | return "error : ".$e->getMessage(); |
| 736 | 736 | } |
| 737 | 737 | } |
@@ -745,7 +745,7 @@ discard block |
||
| 745 | 745 | $Connection = new Connection(); |
| 746 | 746 | $sth = $Connection->db->prepare($query); |
| 747 | 747 | $sth->execute(); |
| 748 | - } catch(PDOException $e) { |
|
| 748 | + } catch (PDOException $e) { |
|
| 749 | 749 | return "error : ".$e->getMessage(); |
| 750 | 750 | } |
| 751 | 751 | |
@@ -753,12 +753,12 @@ discard block |
||
| 753 | 753 | if ($globalDebug) echo "Insert Not available Airport...\n"; |
| 754 | 754 | $query = "INSERT INTO airport (`airport_id`,`name`,`city`,`country`,`iata`,`icao`,`latitude`,`longitude`,`altitude`,`type`,`home_link`,`wikipedia_link`,`image`,`image_thumb`) |
| 755 | 755 | VALUES (:airport_id, :name, :city, :country, :iata, :icao, :latitude, :longitude, :altitude, :type, :home_link, :wikipedia_link, :image, :image_thumb)"; |
| 756 | - $query_values = array(':airport_id' => $i, ':name' => 'Not available',':iata' => 'NA',':icao' => 'NA',':latitude' => '0',':longitude' => '0',':altitude' => '0',':type' => 'NA',':city' => 'N/A',':country' => 'N/A',':home_link' => '',':wikipedia_link' => '',':image' => '',':image_thumb' => ''); |
|
| 756 | + $query_values = array(':airport_id' => $i, ':name' => 'Not available', ':iata' => 'NA', ':icao' => 'NA', ':latitude' => '0', ':longitude' => '0', ':altitude' => '0', ':type' => 'NA', ':city' => 'N/A', ':country' => 'N/A', ':home_link' => '', ':wikipedia_link' => '', ':image' => '', ':image_thumb' => ''); |
|
| 757 | 757 | try { |
| 758 | 758 | $Connection = new Connection(); |
| 759 | 759 | $sth = $Connection->db->prepare($query); |
| 760 | 760 | $sth->execute($query_values); |
| 761 | - } catch(PDOException $e) { |
|
| 761 | + } catch (PDOException $e) { |
|
| 762 | 762 | return "error : ".$e->getMessage(); |
| 763 | 763 | } |
| 764 | 764 | $i++; |
@@ -776,7 +776,7 @@ discard block |
||
| 776 | 776 | echo "Download data from ourairports.com...\n"; |
| 777 | 777 | $delimiter = ','; |
| 778 | 778 | $out_file = $tmp_dir.'airports.csv'; |
| 779 | - update_db::download('http://ourairports.com/data/airports.csv',$out_file); |
|
| 779 | + update_db::download('http://ourairports.com/data/airports.csv', $out_file); |
|
| 780 | 780 | if (!file_exists($out_file) || !is_readable($out_file)) return FALSE; |
| 781 | 781 | echo "Add data from ourairports.com...\n"; |
| 782 | 782 | |
@@ -787,32 +787,32 @@ discard block |
||
| 787 | 787 | //$Connection->db->beginTransaction(); |
| 788 | 788 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 789 | 789 | { |
| 790 | - if(!$header) $header = $row; |
|
| 790 | + if (!$header) $header = $row; |
|
| 791 | 791 | else { |
| 792 | 792 | $data = array(); |
| 793 | 793 | $data = array_combine($header, $row); |
| 794 | 794 | try { |
| 795 | 795 | $sth = $Connection->db->prepare('SELECT COUNT(*) FROM airport WHERE `icao` = :icao'); |
| 796 | 796 | $sth->execute(array(':icao' => $data['gps_code'])); |
| 797 | - } catch(PDOException $e) { |
|
| 797 | + } catch (PDOException $e) { |
|
| 798 | 798 | return "error : ".$e->getMessage(); |
| 799 | 799 | } |
| 800 | 800 | if ($sth->fetchColumn() > 0) { |
| 801 | 801 | $query = 'UPDATE airport SET `type` = :type WHERE icao = :icao'; |
| 802 | 802 | try { |
| 803 | 803 | $sth = $Connection->db->prepare($query); |
| 804 | - $sth->execute(array(':icao' => $data['gps_code'],':type' => $data['type'])); |
|
| 805 | - } catch(PDOException $e) { |
|
| 804 | + $sth->execute(array(':icao' => $data['gps_code'], ':type' => $data['type'])); |
|
| 805 | + } catch (PDOException $e) { |
|
| 806 | 806 | return "error : ".$e->getMessage(); |
| 807 | 807 | } |
| 808 | 808 | } else { |
| 809 | 809 | $query = "INSERT INTO airport (`airport_id`,`name`,`city`,`country`,`iata`,`icao`,`latitude`,`longitude`,`altitude`,`type`,`home_link`,`wikipedia_link`) |
| 810 | 810 | VALUES (:airport_id, :name, :city, :country, :iata, :icao, :latitude, :longitude, :altitude, :type, :home_link, :wikipedia_link)"; |
| 811 | - $query_values = array(':airport_id' => $i, ':name' => $data['name'],':iata' => $data['iata_code'],':icao' => $data['gps_code'],':latitude' => $data['latitude_deg'],':longitude' => $data['longitude_deg'],':altitude' => $data['elevation_ft'],':type' => $data['type'],':city' => $data['municipality'],':country' => $data['iso_country'],':home_link' => $data['home_link'],':wikipedia_link' => $data['wikipedia_link']); |
|
| 811 | + $query_values = array(':airport_id' => $i, ':name' => $data['name'], ':iata' => $data['iata_code'], ':icao' => $data['gps_code'], ':latitude' => $data['latitude_deg'], ':longitude' => $data['longitude_deg'], ':altitude' => $data['elevation_ft'], ':type' => $data['type'], ':city' => $data['municipality'], ':country' => $data['iso_country'], ':home_link' => $data['home_link'], ':wikipedia_link' => $data['wikipedia_link']); |
|
| 812 | 812 | try { |
| 813 | 813 | $sth = $Connection->db->prepare($query); |
| 814 | 814 | $sth->execute($query_values); |
| 815 | - } catch(PDOException $e) { |
|
| 815 | + } catch (PDOException $e) { |
|
| 816 | 816 | return "error : ".$e->getMessage(); |
| 817 | 817 | } |
| 818 | 818 | $i++; |
@@ -825,7 +825,7 @@ discard block |
||
| 825 | 825 | |
| 826 | 826 | echo "Download data from another free database...\n"; |
| 827 | 827 | $out_file = $tmp_dir.'GlobalAirportDatabase.zip'; |
| 828 | - update_db::download('http://www.partow.net/downloads/GlobalAirportDatabase.zip',$out_file); |
|
| 828 | + update_db::download('http://www.partow.net/downloads/GlobalAirportDatabase.zip', $out_file); |
|
| 829 | 829 | if (!file_exists($out_file) || !is_readable($out_file)) return FALSE; |
| 830 | 830 | update_db::unzip($out_file); |
| 831 | 831 | $header = NULL; |
@@ -837,15 +837,15 @@ discard block |
||
| 837 | 837 | //$Connection->db->beginTransaction(); |
| 838 | 838 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 839 | 839 | { |
| 840 | - if(!$header) $header = $row; |
|
| 840 | + if (!$header) $header = $row; |
|
| 841 | 841 | else { |
| 842 | 842 | $data = $row; |
| 843 | 843 | |
| 844 | 844 | $query = 'UPDATE airport SET `city` = :city, `country` = :country WHERE icao = :icao'; |
| 845 | 845 | try { |
| 846 | 846 | $sth = $Connection->db->prepare($query); |
| 847 | - $sth->execute(array(':icao' => $data[0],':city' => ucwords(strtolower($data[3])),':country' => ucwords(strtolower($data[4])))); |
|
| 848 | - } catch(PDOException $e) { |
|
| 847 | + $sth->execute(array(':icao' => $data[0], ':city' => ucwords(strtolower($data[3])), ':country' => ucwords(strtolower($data[4])))); |
|
| 848 | + } catch (PDOException $e) { |
|
| 849 | 849 | return "error : ".$e->getMessage(); |
| 850 | 850 | } |
| 851 | 851 | } |
@@ -859,15 +859,15 @@ discard block |
||
| 859 | 859 | try { |
| 860 | 860 | $sth = $Connection->db->prepare("SELECT icao FROM airport WHERE `name` LIKE '%Air Base%'"); |
| 861 | 861 | $sth->execute(); |
| 862 | - } catch(PDOException $e) { |
|
| 862 | + } catch (PDOException $e) { |
|
| 863 | 863 | return "error : ".$e->getMessage(); |
| 864 | 864 | } |
| 865 | 865 | while ($row = $sth->fetch(PDO::FETCH_ASSOC)) { |
| 866 | 866 | $query2 = 'UPDATE airport SET `type` = :type WHERE icao = :icao'; |
| 867 | 867 | try { |
| 868 | 868 | $sth2 = $Connection->db->prepare($query2); |
| 869 | - $sth2->execute(array(':icao' => $row['icao'],':type' => 'military')); |
|
| 870 | - } catch(PDOException $e) { |
|
| 869 | + $sth2->execute(array(':icao' => $row['icao'], ':type' => 'military')); |
|
| 870 | + } catch (PDOException $e) { |
|
| 871 | 871 | return "error : ".$e->getMessage(); |
| 872 | 872 | } |
| 873 | 873 | } |
@@ -891,7 +891,7 @@ discard block |
||
| 891 | 891 | $Connection = new Connection(); |
| 892 | 892 | $sth = $Connection->db->prepare($query); |
| 893 | 893 | $sth->execute(array(':source' => 'translation.csv')); |
| 894 | - } catch(PDOException $e) { |
|
| 894 | + } catch (PDOException $e) { |
|
| 895 | 895 | return "error : ".$e->getMessage(); |
| 896 | 896 | } |
| 897 | 897 | |
@@ -908,7 +908,7 @@ discard block |
||
| 908 | 908 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 909 | 909 | { |
| 910 | 910 | $i++; |
| 911 | - if($i > 12) { |
|
| 911 | + if ($i > 12) { |
|
| 912 | 912 | $data = $row; |
| 913 | 913 | $operator = $data[2]; |
| 914 | 914 | if ($operator != '' && is_numeric(substr(substr($operator, 0, 3), -1, 1))) { |
@@ -916,7 +916,7 @@ discard block |
||
| 916 | 916 | //echo substr($operator, 0, 2)."\n";; |
| 917 | 917 | if (count($airline_array) > 0) { |
| 918 | 918 | //print_r($airline_array); |
| 919 | - $operator = $airline_array[0]['icao'].substr($operator,2); |
|
| 919 | + $operator = $airline_array[0]['icao'].substr($operator, 2); |
|
| 920 | 920 | } |
| 921 | 921 | } |
| 922 | 922 | |
@@ -924,14 +924,14 @@ discard block |
||
| 924 | 924 | if ($operator_correct != '' && is_numeric(substr(substr($operator_correct, 0, 3), -1, 1))) { |
| 925 | 925 | $airline_array = $Spotter->getAllAirlineInfo(substr($operator_correct, 0, 2)); |
| 926 | 926 | if (count($airline_array) > 0) { |
| 927 | - $operator_correct = $airline_array[0]['icao'].substr($operator_correct,2); |
|
| 927 | + $operator_correct = $airline_array[0]['icao'].substr($operator_correct, 2); |
|
| 928 | 928 | } |
| 929 | 929 | } |
| 930 | 930 | $query = 'INSERT INTO translation (Reg,Reg_correct,Operator,Operator_correct,Source) VALUES (:Reg, :Reg_correct, :Operator, :Operator_correct, :source)'; |
| 931 | 931 | try { |
| 932 | 932 | $sth = $Connection->db->prepare($query); |
| 933 | - $sth->execute(array(':Reg' => $data[0],':Reg_correct' => $data[1],':Operator' => $operator,':Operator_correct' => $operator_correct, ':source' => 'translation.csv')); |
|
| 934 | - } catch(PDOException $e) { |
|
| 933 | + $sth->execute(array(':Reg' => $data[0], ':Reg_correct' => $data[1], ':Operator' => $operator, ':Operator_correct' => $operator_correct, ':source' => 'translation.csv')); |
|
| 934 | + } catch (PDOException $e) { |
|
| 935 | 935 | return "error : ".$e->getMessage(); |
| 936 | 936 | } |
| 937 | 937 | } |
@@ -951,7 +951,7 @@ discard block |
||
| 951 | 951 | $Connection = new Connection(); |
| 952 | 952 | $sth = $Connection->db->prepare($query); |
| 953 | 953 | $sth->execute(array(':source' => 'website_fam')); |
| 954 | - } catch(PDOException $e) { |
|
| 954 | + } catch (PDOException $e) { |
|
| 955 | 955 | return "error : ".$e->getMessage(); |
| 956 | 956 | } |
| 957 | 957 | |
@@ -971,8 +971,8 @@ discard block |
||
| 971 | 971 | $query = 'INSERT INTO translation (Reg,Reg_correct,Operator,Operator_correct,Source) VALUES (:Reg, :Reg_correct, :Operator, :Operator_correct, :source)'; |
| 972 | 972 | try { |
| 973 | 973 | $sth = $Connection->db->prepare($query); |
| 974 | - $sth->execute(array(':Reg' => $data[0],':Reg_correct' => $data[1],':Operator' => $data[2],':Operator_correct' => $data[3], ':source' => 'website_fam')); |
|
| 975 | - } catch(PDOException $e) { |
|
| 974 | + $sth->execute(array(':Reg' => $data[0], ':Reg_correct' => $data[1], ':Operator' => $data[2], ':Operator_correct' => $data[3], ':source' => 'website_fam')); |
|
| 975 | + } catch (PDOException $e) { |
|
| 976 | 976 | return "error : ".$e->getMessage(); |
| 977 | 977 | } |
| 978 | 978 | } |
@@ -995,7 +995,7 @@ discard block |
||
| 995 | 995 | $Connection = new Connection(); |
| 996 | 996 | $sth = $Connection->db->prepare($query); |
| 997 | 997 | $sth->execute(array(':source' => 'website_faa')); |
| 998 | - } catch(PDOException $e) { |
|
| 998 | + } catch (PDOException $e) { |
|
| 999 | 999 | return "error : ".$e->getMessage(); |
| 1000 | 1000 | } |
| 1001 | 1001 | |
@@ -1004,7 +1004,7 @@ discard block |
||
| 1004 | 1004 | $Connection = new Connection(); |
| 1005 | 1005 | $sth = $Connection->db->prepare($query); |
| 1006 | 1006 | $sth->execute(array(':source' => 'website_faa')); |
| 1007 | - } catch(PDOException $e) { |
|
| 1007 | + } catch (PDOException $e) { |
|
| 1008 | 1008 | return "error : ".$e->getMessage(); |
| 1009 | 1009 | } |
| 1010 | 1010 | |
@@ -1021,8 +1021,8 @@ discard block |
||
| 1021 | 1021 | $query_search = 'SELECT icaotypecode FROM aircraft_modes WHERE registration = :registration AND Source <> :source LIMIT 1'; |
| 1022 | 1022 | try { |
| 1023 | 1023 | $sths = $Connection->db->prepare($query_search); |
| 1024 | - $sths->execute(array(':registration' => 'N'.$data[0],':source' => 'website_faa')); |
|
| 1025 | - } catch(PDOException $e) { |
|
| 1024 | + $sths->execute(array(':registration' => 'N'.$data[0], ':source' => 'website_faa')); |
|
| 1025 | + } catch (PDOException $e) { |
|
| 1026 | 1026 | return "error s : ".$e->getMessage(); |
| 1027 | 1027 | } |
| 1028 | 1028 | $result_search = $sths->fetchAll(PDO::FETCH_ASSOC); |
@@ -1035,8 +1035,8 @@ discard block |
||
| 1035 | 1035 | //} |
| 1036 | 1036 | try { |
| 1037 | 1037 | $sthi = $Connection->db->prepare($queryi); |
| 1038 | - $sthi->execute(array(':mfr' => $data[2],':icao' => $result_search[0]['icaotypecode'])); |
|
| 1039 | - } catch(PDOException $e) { |
|
| 1038 | + $sthi->execute(array(':mfr' => $data[2], ':icao' => $result_search[0]['icaotypecode'])); |
|
| 1039 | + } catch (PDOException $e) { |
|
| 1040 | 1040 | return "error u : ".$e->getMessage(); |
| 1041 | 1041 | } |
| 1042 | 1042 | } else { |
@@ -1044,7 +1044,7 @@ discard block |
||
| 1044 | 1044 | try { |
| 1045 | 1045 | $sthsm = $Connection->db->prepare($query_search_mfr); |
| 1046 | 1046 | $sthsm->execute(array(':mfr' => $data[2])); |
| 1047 | - } catch(PDOException $e) { |
|
| 1047 | + } catch (PDOException $e) { |
|
| 1048 | 1048 | return "error mfr : ".$e->getMessage(); |
| 1049 | 1049 | } |
| 1050 | 1050 | $result_search_mfr = $sthsm->fetchAll(PDO::FETCH_ASSOC); |
@@ -1054,8 +1054,8 @@ discard block |
||
| 1054 | 1054 | $queryf = 'INSERT INTO aircraft_modes (FirstCreated,LastModified,ModeS,ModeSCountry,Registration,ICAOTypeCode,Source) VALUES (:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:source)'; |
| 1055 | 1055 | try { |
| 1056 | 1056 | $sthf = $Connection->db->prepare($queryf); |
| 1057 | - $sthf->execute(array(':FirstCreated' => $data[16],':LastModified' => $data[15],':ModeS' => $data[33],':ModeSCountry' => $data[14], ':Registration' => 'N'.$data[0],':ICAOTypeCode' => $result_search_mfr[0]['icao'],':source' => 'website_faa')); |
|
| 1058 | - } catch(PDOException $e) { |
|
| 1057 | + $sthf->execute(array(':FirstCreated' => $data[16], ':LastModified' => $data[15], ':ModeS' => $data[33], ':ModeSCountry' => $data[14], ':Registration' => 'N'.$data[0], ':ICAOTypeCode' => $result_search_mfr[0]['icao'], ':source' => 'website_faa')); |
|
| 1058 | + } catch (PDOException $e) { |
|
| 1059 | 1059 | return "error f : ".$e->getMessage(); |
| 1060 | 1060 | } |
| 1061 | 1061 | } |
@@ -1065,13 +1065,13 @@ discard block |
||
| 1065 | 1065 | $query = 'INSERT INTO aircraft_owner (registration,base,owner,date_first_reg,Source) VALUES (:registration,:base,:owner,:date_first_reg,:source)'; |
| 1066 | 1066 | try { |
| 1067 | 1067 | $sth = $Connection->db->prepare($query); |
| 1068 | - $sth->execute(array(':registration' => 'N'.$data[0],':base' => $data[9],':owner' => ucwords(strtolower($data[6])),':date_first_reg' => date('Y-m-d',strtotime($data[23])), ':source' => 'website_faa')); |
|
| 1069 | - } catch(PDOException $e) { |
|
| 1068 | + $sth->execute(array(':registration' => 'N'.$data[0], ':base' => $data[9], ':owner' => ucwords(strtolower($data[6])), ':date_first_reg' => date('Y-m-d', strtotime($data[23])), ':source' => 'website_faa')); |
|
| 1069 | + } catch (PDOException $e) { |
|
| 1070 | 1070 | return "error i : ".$e->getMessage(); |
| 1071 | 1071 | } |
| 1072 | 1072 | } |
| 1073 | 1073 | } |
| 1074 | - if ($i % 90 == 0) { |
|
| 1074 | + if ($i%90 == 0) { |
|
| 1075 | 1075 | if ($globalTransaction) $Connection->db->commit(); |
| 1076 | 1076 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 1077 | 1077 | } |
@@ -1090,7 +1090,7 @@ discard block |
||
| 1090 | 1090 | $Connection = new Connection(); |
| 1091 | 1091 | $sth = $Connection->db->prepare($query); |
| 1092 | 1092 | $sth->execute(array(':source' => 'website_fam')); |
| 1093 | - } catch(PDOException $e) { |
|
| 1093 | + } catch (PDOException $e) { |
|
| 1094 | 1094 | return "error : ".$e->getMessage(); |
| 1095 | 1095 | } |
| 1096 | 1096 | |
@@ -1111,8 +1111,8 @@ discard block |
||
| 1111 | 1111 | $query = 'INSERT INTO aircraft_modes (FirstCreated,LastModified,ModeS,ModeSCountry,Registration,ICAOTypeCode,type_flight,Source) VALUES (:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:type_flight,:source)'; |
| 1112 | 1112 | try { |
| 1113 | 1113 | $sth = $Connection->db->prepare($query); |
| 1114 | - $sth->execute(array(':FirstCreated' => $data[0],':LastModified' => $data[1],':ModeS' => $data[2],':ModeSCountry' => $data[3], ':Registration' => $data[4],':ICAOTypeCode' => $data[5],':type_flight' => $data[6],':source' => 'website_fam')); |
|
| 1115 | - } catch(PDOException $e) { |
|
| 1114 | + $sth->execute(array(':FirstCreated' => $data[0], ':LastModified' => $data[1], ':ModeS' => $data[2], ':ModeSCountry' => $data[3], ':Registration' => $data[4], ':ICAOTypeCode' => $data[5], ':type_flight' => $data[6], ':source' => 'website_fam')); |
|
| 1115 | + } catch (PDOException $e) { |
|
| 1116 | 1116 | return "error : ".$e->getMessage(); |
| 1117 | 1117 | } |
| 1118 | 1118 | } |
@@ -1131,7 +1131,7 @@ discard block |
||
| 1131 | 1131 | $Connection = new Connection(); |
| 1132 | 1132 | $sth = $Connection->db->prepare($query); |
| 1133 | 1133 | $sth->execute(array(':source' => 'website_fam')); |
| 1134 | - } catch(PDOException $e) { |
|
| 1134 | + } catch (PDOException $e) { |
|
| 1135 | 1135 | return "error : ".$e->getMessage(); |
| 1136 | 1136 | } |
| 1137 | 1137 | |
@@ -1147,8 +1147,8 @@ discard block |
||
| 1147 | 1147 | $query = 'INSERT INTO aircraft_owner (registration,base,owner,date_first_reg,Source) VALUES (:registration,:base,:owner,NULL,:source)'; |
| 1148 | 1148 | try { |
| 1149 | 1149 | $sth = $Connection->db->prepare($query); |
| 1150 | - $sth->execute(array(':registration' => $data[0],':base' => $data[1],':owner' => $data[2], ':source' => 'website_fam')); |
|
| 1151 | - } catch(PDOException $e) { |
|
| 1150 | + $sth->execute(array(':registration' => $data[0], ':base' => $data[1], ':owner' => $data[2], ':source' => 'website_fam')); |
|
| 1151 | + } catch (PDOException $e) { |
|
| 1152 | 1152 | print_r($data); |
| 1153 | 1153 | return "error : ".$e->getMessage(); |
| 1154 | 1154 | } |
@@ -1168,7 +1168,7 @@ discard block |
||
| 1168 | 1168 | $Connection = new Connection(); |
| 1169 | 1169 | $sth = $Connection->db->prepare($query); |
| 1170 | 1170 | $sth->execute(array(':source' => 'website_fam')); |
| 1171 | - } catch(PDOException $e) { |
|
| 1171 | + } catch (PDOException $e) { |
|
| 1172 | 1172 | return "error : ".$e->getMessage(); |
| 1173 | 1173 | } |
| 1174 | 1174 | |
@@ -1188,8 +1188,8 @@ discard block |
||
| 1188 | 1188 | $query = '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)'; |
| 1189 | 1189 | try { |
| 1190 | 1190 | $sth = $Connection->db->prepare($query); |
| 1191 | - $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')); |
|
| 1192 | - } catch(PDOException $e) { |
|
| 1191 | + $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')); |
|
| 1192 | + } catch (PDOException $e) { |
|
| 1193 | 1193 | return "error : ".$e->getMessage(); |
| 1194 | 1194 | } |
| 1195 | 1195 | } |
@@ -1208,7 +1208,7 @@ discard block |
||
| 1208 | 1208 | $Connection = new Connection(); |
| 1209 | 1209 | $sth = $Connection->db->prepare($query); |
| 1210 | 1210 | $sth->execute(); |
| 1211 | - } catch(PDOException $e) { |
|
| 1211 | + } catch (PDOException $e) { |
|
| 1212 | 1212 | return "error : ".$e->getMessage(); |
| 1213 | 1213 | } |
| 1214 | 1214 | |
@@ -1228,8 +1228,8 @@ discard block |
||
| 1228 | 1228 | $query = 'INSERT INTO marine_identity (mmsi,imo,call_sign,ship_name,length,gross_tonnage,dead_weight,width,country,engine_power,type) VALUES (:mmsi,:imo,:call_sign,:ship_name,:length,:gross_tonnage,:dead_weight,:width,:country,:engine_power,:type)'; |
| 1229 | 1229 | try { |
| 1230 | 1230 | $sth = $Connection->db->prepare($query); |
| 1231 | - $sth->execute(array(':mmsi' => $data[0],':imo' => $data[1],':call_sign' => $data[2],':ship_name' => $data[3], ':length' => $data[4],':gross_tonnage' => $data[5],':dead_weight' => $data[6],':width' => $data[7],':country' => $data[8],':engine_power' => $data[9],':type' => $data[10])); |
|
| 1232 | - } catch(PDOException $e) { |
|
| 1231 | + $sth->execute(array(':mmsi' => $data[0], ':imo' => $data[1], ':call_sign' => $data[2], ':ship_name' => $data[3], ':length' => $data[4], ':gross_tonnage' => $data[5], ':dead_weight' => $data[6], ':width' => $data[7], ':country' => $data[8], ':engine_power' => $data[9], ':type' => $data[10])); |
|
| 1232 | + } catch (PDOException $e) { |
|
| 1233 | 1233 | return "error : ".$e->getMessage(); |
| 1234 | 1234 | } |
| 1235 | 1235 | } |
@@ -1248,7 +1248,7 @@ discard block |
||
| 1248 | 1248 | $Connection = new Connection(); |
| 1249 | 1249 | $sth = $Connection->db->prepare($query); |
| 1250 | 1250 | $sth->execute(); |
| 1251 | - } catch(PDOException $e) { |
|
| 1251 | + } catch (PDOException $e) { |
|
| 1252 | 1252 | return "error : ".$e->getMessage(); |
| 1253 | 1253 | } |
| 1254 | 1254 | |
@@ -1264,7 +1264,7 @@ discard block |
||
| 1264 | 1264 | try { |
| 1265 | 1265 | $sth = $Connection->db->prepare($query); |
| 1266 | 1266 | $sth->execute(array(':icao' => $icao)); |
| 1267 | - } catch(PDOException $e) { |
|
| 1267 | + } catch (PDOException $e) { |
|
| 1268 | 1268 | return "error : ".$e->getMessage(); |
| 1269 | 1269 | } |
| 1270 | 1270 | } |
@@ -1275,7 +1275,7 @@ discard block |
||
| 1275 | 1275 | return ''; |
| 1276 | 1276 | } |
| 1277 | 1277 | |
| 1278 | - public static function tle($filename,$tletype) { |
|
| 1278 | + public static function tle($filename, $tletype) { |
|
| 1279 | 1279 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 1280 | 1280 | global $tmp_dir, $globalTransaction; |
| 1281 | 1281 | //$Spotter = new Spotter(); |
@@ -1285,7 +1285,7 @@ discard block |
||
| 1285 | 1285 | $Connection = new Connection(); |
| 1286 | 1286 | $sth = $Connection->db->prepare($query); |
| 1287 | 1287 | $sth->execute(array(':source' => $filename)); |
| 1288 | - } catch(PDOException $e) { |
|
| 1288 | + } catch (PDOException $e) { |
|
| 1289 | 1289 | return "error : ".$e->getMessage(); |
| 1290 | 1290 | } |
| 1291 | 1291 | |
@@ -1310,8 +1310,8 @@ discard block |
||
| 1310 | 1310 | $query = 'INSERT INTO tle (tle_name,tle_tle1,tle_tle2,tle_type,tle_source) VALUES (:name, :tle1, :tle2, :type, :source)'; |
| 1311 | 1311 | try { |
| 1312 | 1312 | $sth = $Connection->db->prepare($query); |
| 1313 | - $sth->execute(array(':name' => $dbdata['name'],':tle1' => $dbdata['tle1'],':tle2' => $dbdata['tle2'], ':type' => $tletype,':source' => $filename)); |
|
| 1314 | - } catch(PDOException $e) { |
|
| 1313 | + $sth->execute(array(':name' => $dbdata['name'], ':tle1' => $dbdata['tle1'], ':tle2' => $dbdata['tle2'], ':type' => $tletype, ':source' => $filename)); |
|
| 1314 | + } catch (PDOException $e) { |
|
| 1315 | 1315 | return "error : ".$e->getMessage(); |
| 1316 | 1316 | } |
| 1317 | 1317 | |
@@ -1331,28 +1331,28 @@ discard block |
||
| 1331 | 1331 | */ |
| 1332 | 1332 | private static function table2array($data) { |
| 1333 | 1333 | $html = str_get_html($data); |
| 1334 | - $tabledata=array(); |
|
| 1335 | - foreach($html->find('tr') as $element) |
|
| 1334 | + $tabledata = array(); |
|
| 1335 | + foreach ($html->find('tr') as $element) |
|
| 1336 | 1336 | { |
| 1337 | 1337 | $td = array(); |
| 1338 | - foreach( $element->find('th') as $row) |
|
| 1338 | + foreach ($element->find('th') as $row) |
|
| 1339 | 1339 | { |
| 1340 | 1340 | $td [] = trim($row->plaintext); |
| 1341 | 1341 | } |
| 1342 | - $td=array_filter($td); |
|
| 1342 | + $td = array_filter($td); |
|
| 1343 | 1343 | $tabledata[] = $td; |
| 1344 | 1344 | |
| 1345 | 1345 | $td = array(); |
| 1346 | 1346 | $tdi = array(); |
| 1347 | - foreach( $element->find('td') as $row) |
|
| 1347 | + foreach ($element->find('td') as $row) |
|
| 1348 | 1348 | { |
| 1349 | 1349 | $td [] = trim($row->plaintext); |
| 1350 | 1350 | $tdi [] = trim($row->innertext); |
| 1351 | 1351 | } |
| 1352 | - $td=array_filter($td); |
|
| 1353 | - $tdi=array_filter($tdi); |
|
| 1352 | + $td = array_filter($td); |
|
| 1353 | + $tdi = array_filter($tdi); |
|
| 1354 | 1354 | // $tabledata[]=array_merge($td,$tdi); |
| 1355 | - $tabledata[]=$td; |
|
| 1355 | + $tabledata[] = $td; |
|
| 1356 | 1356 | } |
| 1357 | 1357 | return(array_filter($tabledata)); |
| 1358 | 1358 | } |
@@ -1425,13 +1425,13 @@ discard block |
||
| 1425 | 1425 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 1426 | 1426 | { |
| 1427 | 1427 | $i++; |
| 1428 | - if($i > 3 && count($row) > 2) { |
|
| 1428 | + if ($i > 3 && count($row) > 2) { |
|
| 1429 | 1429 | $data = array_values(array_filter($row)); |
| 1430 | 1430 | $cntdata = count($data); |
| 1431 | 1431 | if ($cntdata > 10) { |
| 1432 | 1432 | $value = $data[9]; |
| 1433 | 1433 | |
| 1434 | - for ($i =10;$i < $cntdata;$i++) { |
|
| 1434 | + for ($i = 10; $i < $cntdata; $i++) { |
|
| 1435 | 1435 | $value .= ' '.$data[$i]; |
| 1436 | 1436 | } |
| 1437 | 1437 | $data[9] = $value; |
@@ -1441,8 +1441,8 @@ discard block |
||
| 1441 | 1441 | $query = 'INSERT INTO waypoints (name_begin,latitude_begin,longitude_begin,name_end,latitude_end,longitude_end,high,base,top,segment_name) VALUES (:name_begin, :latitude_begin, :longitude_begin, :name_end, :latitude_end, :longitude_end, :high, :base, :top, :segment_name)'; |
| 1442 | 1442 | try { |
| 1443 | 1443 | $sth = $Connection->db->prepare($query); |
| 1444 | - $sth->execute(array(':name_begin' => $data[0],':latitude_begin' => $data[1],':longitude_begin' => $data[2],':name_end' => $data[3], ':latitude_end' => $data[4], ':longitude_end' => $data[5], ':high' => $data[6], ':base' => $data[7], ':top' => $data[8], ':segment_name' => $data[9])); |
|
| 1445 | - } catch(PDOException $e) { |
|
| 1444 | + $sth->execute(array(':name_begin' => $data[0], ':latitude_begin' => $data[1], ':longitude_begin' => $data[2], ':name_end' => $data[3], ':latitude_end' => $data[4], ':longitude_end' => $data[5], ':high' => $data[6], ':base' => $data[7], ':top' => $data[8], ':segment_name' => $data[9])); |
|
| 1445 | + } catch (PDOException $e) { |
|
| 1446 | 1446 | return "error : ".$e->getMessage(); |
| 1447 | 1447 | } |
| 1448 | 1448 | } |
@@ -1463,7 +1463,7 @@ discard block |
||
| 1463 | 1463 | $Connection = new Connection(); |
| 1464 | 1464 | $sth = $Connection->db->prepare($query); |
| 1465 | 1465 | $sth->execute(); |
| 1466 | - } catch(PDOException $e) { |
|
| 1466 | + } catch (PDOException $e) { |
|
| 1467 | 1467 | return "error : ".$e->getMessage(); |
| 1468 | 1468 | } |
| 1469 | 1469 | |
@@ -1475,12 +1475,12 @@ discard block |
||
| 1475 | 1475 | if ($globalTransaction) $Connection->db->beginTransaction(); |
| 1476 | 1476 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 1477 | 1477 | { |
| 1478 | - if(count($row) > 1) { |
|
| 1478 | + if (count($row) > 1) { |
|
| 1479 | 1479 | $query = "INSERT INTO airlines (name,icao,active,forsource) VALUES (:name, :icao, 'Y','ivao')"; |
| 1480 | 1480 | try { |
| 1481 | 1481 | $sth = $Connection->db->prepare($query); |
| 1482 | - $sth->execute(array(':name' => $row[1],':icao' => $row[0])); |
|
| 1483 | - } catch(PDOException $e) { |
|
| 1482 | + $sth->execute(array(':name' => $row[1], ':icao' => $row[0])); |
|
| 1483 | + } catch (PDOException $e) { |
|
| 1484 | 1484 | return "error : ".$e->getMessage(); |
| 1485 | 1485 | } |
| 1486 | 1486 | } |
@@ -1500,21 +1500,21 @@ discard block |
||
| 1500 | 1500 | try { |
| 1501 | 1501 | $sth = $Connection->db->prepare($query); |
| 1502 | 1502 | $sth->execute(); |
| 1503 | - } catch(PDOException $e) { |
|
| 1503 | + } catch (PDOException $e) { |
|
| 1504 | 1504 | return "error : ".$e->getMessage(); |
| 1505 | 1505 | } |
| 1506 | 1506 | } |
| 1507 | 1507 | |
| 1508 | 1508 | |
| 1509 | - if ($globalDBdriver == 'mysql') update_db::gunzip('../db/airspace.sql.gz',$tmp_dir.'airspace.sql'); |
|
| 1509 | + if ($globalDBdriver == 'mysql') update_db::gunzip('../db/airspace.sql.gz', $tmp_dir.'airspace.sql'); |
|
| 1510 | 1510 | else { |
| 1511 | - update_db::gunzip('../db/pgsql/airspace.sql.gz',$tmp_dir.'airspace.sql'); |
|
| 1511 | + update_db::gunzip('../db/pgsql/airspace.sql.gz', $tmp_dir.'airspace.sql'); |
|
| 1512 | 1512 | $query = "CREATE EXTENSION postgis"; |
| 1513 | - $Connection = new Connection(null,null,$_SESSION['database_root'],$_SESSION['database_rootpass']); |
|
| 1513 | + $Connection = new Connection(null, null, $_SESSION['database_root'], $_SESSION['database_rootpass']); |
|
| 1514 | 1514 | try { |
| 1515 | 1515 | $sth = $Connection->db->prepare($query); |
| 1516 | 1516 | $sth->execute(); |
| 1517 | - } catch(PDOException $e) { |
|
| 1517 | + } catch (PDOException $e) { |
|
| 1518 | 1518 | return "error : ".$e->getMessage(); |
| 1519 | 1519 | } |
| 1520 | 1520 | } |
@@ -1527,7 +1527,7 @@ discard block |
||
| 1527 | 1527 | include_once('class.create_db.php'); |
| 1528 | 1528 | require_once(dirname(__FILE__).'/../require/class.NOTAM.php'); |
| 1529 | 1529 | if ($globalDebug) echo "NOTAM from FlightAirMap website : Download..."; |
| 1530 | - update_db::download('http://data.flightairmap.fr/data/notam.txt.gz',$tmp_dir.'notam.txt.gz'); |
|
| 1530 | + update_db::download('http://data.flightairmap.fr/data/notam.txt.gz', $tmp_dir.'notam.txt.gz'); |
|
| 1531 | 1531 | $error = ''; |
| 1532 | 1532 | if (file_exists($tmp_dir.'notam.txt.gz')) { |
| 1533 | 1533 | if ($globalDebug) echo "Gunzip..."; |
@@ -1559,14 +1559,14 @@ discard block |
||
| 1559 | 1559 | try { |
| 1560 | 1560 | $sth = $Connection->db->prepare($query); |
| 1561 | 1561 | $sth->execute(); |
| 1562 | - } catch(PDOException $e) { |
|
| 1562 | + } catch (PDOException $e) { |
|
| 1563 | 1563 | echo "error : ".$e->getMessage(); |
| 1564 | 1564 | } |
| 1565 | 1565 | } |
| 1566 | 1566 | if ($globalDBdriver == 'mysql') { |
| 1567 | - update_db::gunzip('../db/countries.sql.gz',$tmp_dir.'countries.sql'); |
|
| 1567 | + update_db::gunzip('../db/countries.sql.gz', $tmp_dir.'countries.sql'); |
|
| 1568 | 1568 | } else { |
| 1569 | - update_db::gunzip('../db/pgsql/countries.sql.gz',$tmp_dir.'countries.sql'); |
|
| 1569 | + update_db::gunzip('../db/pgsql/countries.sql.gz', $tmp_dir.'countries.sql'); |
|
| 1570 | 1570 | } |
| 1571 | 1571 | $error = create_db::import_file($tmp_dir.'countries.sql'); |
| 1572 | 1572 | return $error; |
@@ -1579,7 +1579,7 @@ discard block |
||
| 1579 | 1579 | // update_db::unzip($tmp_dir.'AptNav.zip'); |
| 1580 | 1580 | // update_db::download('https://gitorious.org/fg/fgdata/raw/e81f8a15424a175a7b715f8f7eb8f4147b802a27:Navaids/awy.dat.gz',$tmp_dir.'awy.dat.gz'); |
| 1581 | 1581 | // update_db::download('http://sourceforge.net/p/flightgear/fgdata/ci/next/tree/Navaids/awy.dat.gz?format=raw',$tmp_dir.'awy.dat.gz','http://sourceforge.net'); |
| 1582 | - update_db::download('http://pkgs.fedoraproject.org/repo/extras/FlightGear-Atlas/awy.dat.gz/f530c9d1c4b31a288ba88dcc8224268b/awy.dat.gz',$tmp_dir.'awy.dat.gz','http://sourceforge.net'); |
|
| 1582 | + update_db::download('http://pkgs.fedoraproject.org/repo/extras/FlightGear-Atlas/awy.dat.gz/f530c9d1c4b31a288ba88dcc8224268b/awy.dat.gz', $tmp_dir.'awy.dat.gz', 'http://sourceforge.net'); |
|
| 1583 | 1583 | update_db::gunzip($tmp_dir.'awy.dat.gz'); |
| 1584 | 1584 | $error = update_db::waypoints($tmp_dir.'awy.dat'); |
| 1585 | 1585 | return $error; |
@@ -1599,7 +1599,7 @@ discard block |
||
| 1599 | 1599 | update_db::ivao_airlines($tmp_dir.'data/airlines.dat'); |
| 1600 | 1600 | if ($globalDebug) echo "Copy airlines logos to airlines images directory..."; |
| 1601 | 1601 | if (is_writable(dirname(__FILE__).'/../images/airlines')) { |
| 1602 | - if (!$Common->xcopy($tmp_dir.'logos/',dirname(__FILE__).'/../images/airlines/')) $error = "Failed to copy airlines logo."; |
|
| 1602 | + if (!$Common->xcopy($tmp_dir.'logos/', dirname(__FILE__).'/../images/airlines/')) $error = "Failed to copy airlines logo."; |
|
| 1603 | 1603 | } else $error = "The directory ".dirname(__FILE__).'/../images/airlines'." must be writable"; |
| 1604 | 1604 | } else $error = "File ".$tmp_dir.'ivao.zip'." doesn't exist. Download failed."; |
| 1605 | 1605 | if ($error != '') { |
@@ -1612,7 +1612,7 @@ discard block |
||
| 1612 | 1612 | global $tmp_dir, $globalDebug; |
| 1613 | 1613 | $error = ''; |
| 1614 | 1614 | if ($globalDebug) echo "Routes : Download..."; |
| 1615 | - update_db::download('http://www.virtualradarserver.co.uk/Files/StandingData.sqb.gz',$tmp_dir.'StandingData.sqb.gz'); |
|
| 1615 | + update_db::download('http://www.virtualradarserver.co.uk/Files/StandingData.sqb.gz', $tmp_dir.'StandingData.sqb.gz'); |
|
| 1616 | 1616 | if (file_exists($tmp_dir.'StandingData.sqb.gz')) { |
| 1617 | 1617 | if ($globalDebug) echo "Gunzip..."; |
| 1618 | 1618 | update_db::gunzip($tmp_dir.'StandingData.sqb.gz'); |
@@ -1628,7 +1628,7 @@ discard block |
||
| 1628 | 1628 | global $tmp_dir, $globalDebug; |
| 1629 | 1629 | $error = ''; |
| 1630 | 1630 | if ($globalDebug) echo "Schedules Oneworld : Download..."; |
| 1631 | - update_db::download('http://data.flightairmap.fr/data/schedules/oneworld.csv.gz',$tmp_dir.'oneworld.csv.gz'); |
|
| 1631 | + update_db::download('http://data.flightairmap.fr/data/schedules/oneworld.csv.gz', $tmp_dir.'oneworld.csv.gz'); |
|
| 1632 | 1632 | if (file_exists($tmp_dir.'oneworld.csv.gz')) { |
| 1633 | 1633 | if ($globalDebug) echo "Gunzip..."; |
| 1634 | 1634 | update_db::gunzip($tmp_dir.'oneworld.csv.gz'); |
@@ -1644,7 +1644,7 @@ discard block |
||
| 1644 | 1644 | global $tmp_dir, $globalDebug; |
| 1645 | 1645 | $error = ''; |
| 1646 | 1646 | if ($globalDebug) echo "Schedules Skyteam : Download..."; |
| 1647 | - update_db::download('http://data.flightairmap.fr/data/schedules/skyteam.csv.gz',$tmp_dir.'skyteam.csv.gz'); |
|
| 1647 | + update_db::download('http://data.flightairmap.fr/data/schedules/skyteam.csv.gz', $tmp_dir.'skyteam.csv.gz'); |
|
| 1648 | 1648 | if (file_exists($tmp_dir.'skyteam.csv.gz')) { |
| 1649 | 1649 | if ($globalDebug) echo "Gunzip..."; |
| 1650 | 1650 | update_db::gunzip($tmp_dir.'skyteam.csv.gz'); |
@@ -1672,7 +1672,7 @@ discard block |
||
| 1672 | 1672 | */ |
| 1673 | 1673 | if ($globalDebug) echo "Modes : Download..."; |
| 1674 | 1674 | // update_db::download('http://planebase.biz/sqb.php?f=basestationall.zip',$tmp_dir.'basestation_latest.zip','http://planebase.biz/bstnsqb'); |
| 1675 | - update_db::download('http://data.flightairmap.fr/data/BaseStation.sqb.gz',$tmp_dir.'BaseStation.sqb.gz'); |
|
| 1675 | + update_db::download('http://data.flightairmap.fr/data/BaseStation.sqb.gz', $tmp_dir.'BaseStation.sqb.gz'); |
|
| 1676 | 1676 | |
| 1677 | 1677 | // if (file_exists($tmp_dir.'basestation_latest.zip')) { |
| 1678 | 1678 | if (file_exists($tmp_dir.'BaseStation.sqb.gz')) { |
@@ -1692,7 +1692,7 @@ discard block |
||
| 1692 | 1692 | public static function update_ModeS_faa() { |
| 1693 | 1693 | global $tmp_dir, $globalDebug; |
| 1694 | 1694 | if ($globalDebug) echo "Modes FAA: Download..."; |
| 1695 | - update_db::download('http://registry.faa.gov/database/ReleasableAircraft.zip',$tmp_dir.'ReleasableAircraft.zip'); |
|
| 1695 | + update_db::download('http://registry.faa.gov/database/ReleasableAircraft.zip', $tmp_dir.'ReleasableAircraft.zip'); |
|
| 1696 | 1696 | if (file_exists($tmp_dir.'ReleasableAircraft.zip')) { |
| 1697 | 1697 | if ($globalDebug) echo "Unzip..."; |
| 1698 | 1698 | update_db::unzip($tmp_dir.'ReleasableAircraft.zip'); |
@@ -1708,7 +1708,7 @@ discard block |
||
| 1708 | 1708 | public static function update_ModeS_flarm() { |
| 1709 | 1709 | global $tmp_dir, $globalDebug; |
| 1710 | 1710 | if ($globalDebug) echo "Modes Flarmnet: Download..."; |
| 1711 | - update_db::download('http://flarmnet.org/files/data.fln',$tmp_dir.'data.fln'); |
|
| 1711 | + update_db::download('http://flarmnet.org/files/data.fln', $tmp_dir.'data.fln'); |
|
| 1712 | 1712 | if (file_exists($tmp_dir.'data.fln')) { |
| 1713 | 1713 | if ($globalDebug) echo "Add to DB..."; |
| 1714 | 1714 | $error = update_db::retrieve_modes_flarmnet($tmp_dir.'data.fln'); |
@@ -1722,7 +1722,7 @@ discard block |
||
| 1722 | 1722 | public static function update_ModeS_ogn() { |
| 1723 | 1723 | global $tmp_dir, $globalDebug; |
| 1724 | 1724 | if ($globalDebug) echo "Modes OGN: Download..."; |
| 1725 | - update_db::download('http://ddb.glidernet.org/download/',$tmp_dir.'ogn.csv'); |
|
| 1725 | + update_db::download('http://ddb.glidernet.org/download/', $tmp_dir.'ogn.csv'); |
|
| 1726 | 1726 | if (file_exists($tmp_dir.'ogn.csv')) { |
| 1727 | 1727 | if ($globalDebug) echo "Add to DB..."; |
| 1728 | 1728 | $error = update_db::retrieve_modes_ogn($tmp_dir.'ogn.csv'); |
@@ -1737,201 +1737,201 @@ discard block |
||
| 1737 | 1737 | global $tmp_dir, $globalDebug, $globalMasterSource; |
| 1738 | 1738 | |
| 1739 | 1739 | if ($globalDebug) echo "Owner France: Download..."; |
| 1740 | - update_db::download('http://antonakis.co.uk/registers/France.txt',$tmp_dir.'owner_f.csv'); |
|
| 1740 | + update_db::download('http://antonakis.co.uk/registers/France.txt', $tmp_dir.'owner_f.csv'); |
|
| 1741 | 1741 | if (file_exists($tmp_dir.'owner_f.csv')) { |
| 1742 | 1742 | if ($globalDebug) echo "Add to DB..."; |
| 1743 | - $error = update_db::retrieve_owner($tmp_dir.'owner_f.csv','F'); |
|
| 1743 | + $error = update_db::retrieve_owner($tmp_dir.'owner_f.csv', 'F'); |
|
| 1744 | 1744 | } else $error = "File ".$tmp_dir.'owner_f.csv'." doesn't exist. Download failed."; |
| 1745 | 1745 | if ($error != '') { |
| 1746 | 1746 | return $error; |
| 1747 | 1747 | } elseif ($globalDebug) echo "Done\n"; |
| 1748 | 1748 | |
| 1749 | 1749 | if ($globalDebug) echo "Owner Ireland: Download..."; |
| 1750 | - update_db::download('http://antonakis.co.uk/registers/Ireland.txt',$tmp_dir.'owner_ei.csv'); |
|
| 1750 | + update_db::download('http://antonakis.co.uk/registers/Ireland.txt', $tmp_dir.'owner_ei.csv'); |
|
| 1751 | 1751 | if (file_exists($tmp_dir.'owner_ei.csv')) { |
| 1752 | 1752 | if ($globalDebug) echo "Add to DB..."; |
| 1753 | - $error = update_db::retrieve_owner($tmp_dir.'owner_ei.csv','EI'); |
|
| 1753 | + $error = update_db::retrieve_owner($tmp_dir.'owner_ei.csv', 'EI'); |
|
| 1754 | 1754 | } else $error = "File ".$tmp_dir.'owner_ei.csv'." doesn't exist. Download failed."; |
| 1755 | 1755 | if ($error != '') { |
| 1756 | 1756 | return $error; |
| 1757 | 1757 | } elseif ($globalDebug) echo "Done\n"; |
| 1758 | 1758 | if ($globalDebug) echo "Owner Switzerland: Download..."; |
| 1759 | - update_db::download('http://antonakis.co.uk/registers/Switzerland.txt',$tmp_dir.'owner_hb.csv'); |
|
| 1759 | + update_db::download('http://antonakis.co.uk/registers/Switzerland.txt', $tmp_dir.'owner_hb.csv'); |
|
| 1760 | 1760 | if (file_exists($tmp_dir.'owner_hb.csv')) { |
| 1761 | 1761 | if ($globalDebug) echo "Add to DB..."; |
| 1762 | - $error = update_db::retrieve_owner($tmp_dir.'owner_hb.csv','HB'); |
|
| 1762 | + $error = update_db::retrieve_owner($tmp_dir.'owner_hb.csv', 'HB'); |
|
| 1763 | 1763 | } else $error = "File ".$tmp_dir.'owner_hb.csv'." doesn't exist. Download failed."; |
| 1764 | 1764 | if ($error != '') { |
| 1765 | 1765 | return $error; |
| 1766 | 1766 | } elseif ($globalDebug) echo "Done\n"; |
| 1767 | 1767 | if ($globalDebug) echo "Owner Czech Republic: Download..."; |
| 1768 | - update_db::download('http://antonakis.co.uk/registers/CzechRepublic.txt',$tmp_dir.'owner_ok.csv'); |
|
| 1768 | + update_db::download('http://antonakis.co.uk/registers/CzechRepublic.txt', $tmp_dir.'owner_ok.csv'); |
|
| 1769 | 1769 | if (file_exists($tmp_dir.'owner_ok.csv')) { |
| 1770 | 1770 | if ($globalDebug) echo "Add to DB..."; |
| 1771 | - $error = update_db::retrieve_owner($tmp_dir.'owner_ok.csv','OK'); |
|
| 1771 | + $error = update_db::retrieve_owner($tmp_dir.'owner_ok.csv', 'OK'); |
|
| 1772 | 1772 | } else $error = "File ".$tmp_dir.'owner_ok.csv'." doesn't exist. Download failed."; |
| 1773 | 1773 | if ($error != '') { |
| 1774 | 1774 | return $error; |
| 1775 | 1775 | } elseif ($globalDebug) echo "Done\n"; |
| 1776 | 1776 | if ($globalDebug) echo "Owner Australia: Download..."; |
| 1777 | - update_db::download('http://antonakis.co.uk/registers/Australia.txt',$tmp_dir.'owner_vh.csv'); |
|
| 1777 | + update_db::download('http://antonakis.co.uk/registers/Australia.txt', $tmp_dir.'owner_vh.csv'); |
|
| 1778 | 1778 | if (file_exists($tmp_dir.'owner_vh.csv')) { |
| 1779 | 1779 | if ($globalDebug) echo "Add to DB..."; |
| 1780 | - $error = update_db::retrieve_owner($tmp_dir.'owner_vh.csv','VH'); |
|
| 1780 | + $error = update_db::retrieve_owner($tmp_dir.'owner_vh.csv', 'VH'); |
|
| 1781 | 1781 | } else $error = "File ".$tmp_dir.'owner_vh.csv'." doesn't exist. Download failed."; |
| 1782 | 1782 | if ($error != '') { |
| 1783 | 1783 | return $error; |
| 1784 | 1784 | } elseif ($globalDebug) echo "Done\n"; |
| 1785 | 1785 | if ($globalDebug) echo "Owner Austria: Download..."; |
| 1786 | - update_db::download('http://antonakis.co.uk/registers/Austria.txt',$tmp_dir.'owner_oe.csv'); |
|
| 1786 | + update_db::download('http://antonakis.co.uk/registers/Austria.txt', $tmp_dir.'owner_oe.csv'); |
|
| 1787 | 1787 | if (file_exists($tmp_dir.'owner_oe.csv')) { |
| 1788 | 1788 | if ($globalDebug) echo "Add to DB..."; |
| 1789 | - $error = update_db::retrieve_owner($tmp_dir.'owner_oe.csv','OE'); |
|
| 1789 | + $error = update_db::retrieve_owner($tmp_dir.'owner_oe.csv', 'OE'); |
|
| 1790 | 1790 | } else $error = "File ".$tmp_dir.'owner_oe.csv'." doesn't exist. Download failed."; |
| 1791 | 1791 | if ($error != '') { |
| 1792 | 1792 | return $error; |
| 1793 | 1793 | } elseif ($globalDebug) echo "Done\n"; |
| 1794 | 1794 | if ($globalDebug) echo "Owner Chile: Download..."; |
| 1795 | - update_db::download('http://antonakis.co.uk/registers/Chile.txt',$tmp_dir.'owner_cc.csv'); |
|
| 1795 | + update_db::download('http://antonakis.co.uk/registers/Chile.txt', $tmp_dir.'owner_cc.csv'); |
|
| 1796 | 1796 | if (file_exists($tmp_dir.'owner_cc.csv')) { |
| 1797 | 1797 | if ($globalDebug) echo "Add to DB..."; |
| 1798 | - $error = update_db::retrieve_owner($tmp_dir.'owner_cc.csv','CC'); |
|
| 1798 | + $error = update_db::retrieve_owner($tmp_dir.'owner_cc.csv', 'CC'); |
|
| 1799 | 1799 | } else $error = "File ".$tmp_dir.'owner_cc.csv'." doesn't exist. Download failed."; |
| 1800 | 1800 | if ($error != '') { |
| 1801 | 1801 | return $error; |
| 1802 | 1802 | } elseif ($globalDebug) echo "Done\n"; |
| 1803 | 1803 | if ($globalDebug) echo "Owner Colombia: Download..."; |
| 1804 | - update_db::download('http://antonakis.co.uk/registers/Colombia.txt',$tmp_dir.'owner_hj.csv'); |
|
| 1804 | + update_db::download('http://antonakis.co.uk/registers/Colombia.txt', $tmp_dir.'owner_hj.csv'); |
|
| 1805 | 1805 | if (file_exists($tmp_dir.'owner_hj.csv')) { |
| 1806 | 1806 | if ($globalDebug) echo "Add to DB..."; |
| 1807 | - $error = update_db::retrieve_owner($tmp_dir.'owner_hj.csv','HJ'); |
|
| 1807 | + $error = update_db::retrieve_owner($tmp_dir.'owner_hj.csv', 'HJ'); |
|
| 1808 | 1808 | } else $error = "File ".$tmp_dir.'owner_hj.csv'." doesn't exist. Download failed."; |
| 1809 | 1809 | if ($error != '') { |
| 1810 | 1810 | return $error; |
| 1811 | 1811 | } elseif ($globalDebug) echo "Done\n"; |
| 1812 | 1812 | if ($globalDebug) echo "Owner Bosnia Herzegobina: Download..."; |
| 1813 | - update_db::download('http://antonakis.co.uk/registers/BosniaHerzegovina.txt',$tmp_dir.'owner_e7.csv'); |
|
| 1813 | + update_db::download('http://antonakis.co.uk/registers/BosniaHerzegovina.txt', $tmp_dir.'owner_e7.csv'); |
|
| 1814 | 1814 | if (file_exists($tmp_dir.'owner_e7.csv')) { |
| 1815 | 1815 | if ($globalDebug) echo "Add to DB..."; |
| 1816 | - $error = update_db::retrieve_owner($tmp_dir.'owner_e7.csv','E7'); |
|
| 1816 | + $error = update_db::retrieve_owner($tmp_dir.'owner_e7.csv', 'E7'); |
|
| 1817 | 1817 | } else $error = "File ".$tmp_dir.'owner_e7.csv'." doesn't exist. Download failed."; |
| 1818 | 1818 | if ($error != '') { |
| 1819 | 1819 | return $error; |
| 1820 | 1820 | } elseif ($globalDebug) echo "Done\n"; |
| 1821 | 1821 | if ($globalDebug) echo "Owner Brazil: Download..."; |
| 1822 | - update_db::download('http://antonakis.co.uk/registers/Brazil.txt',$tmp_dir.'owner_pp.csv'); |
|
| 1822 | + update_db::download('http://antonakis.co.uk/registers/Brazil.txt', $tmp_dir.'owner_pp.csv'); |
|
| 1823 | 1823 | if (file_exists($tmp_dir.'owner_pp.csv')) { |
| 1824 | 1824 | if ($globalDebug) echo "Add to DB..."; |
| 1825 | - $error = update_db::retrieve_owner($tmp_dir.'owner_pp.csv','PP'); |
|
| 1825 | + $error = update_db::retrieve_owner($tmp_dir.'owner_pp.csv', 'PP'); |
|
| 1826 | 1826 | } else $error = "File ".$tmp_dir.'owner_pp.csv'." doesn't exist. Download failed."; |
| 1827 | 1827 | if ($error != '') { |
| 1828 | 1828 | return $error; |
| 1829 | 1829 | } elseif ($globalDebug) echo "Done\n"; |
| 1830 | 1830 | if ($globalDebug) echo "Owner Cayman Islands: Download..."; |
| 1831 | - update_db::download('http://antonakis.co.uk/registers/CaymanIslands.txt',$tmp_dir.'owner_vp.csv'); |
|
| 1831 | + update_db::download('http://antonakis.co.uk/registers/CaymanIslands.txt', $tmp_dir.'owner_vp.csv'); |
|
| 1832 | 1832 | if (file_exists($tmp_dir.'owner_vp.csv')) { |
| 1833 | 1833 | if ($globalDebug) echo "Add to DB..."; |
| 1834 | - $error = update_db::retrieve_owner($tmp_dir.'owner_vp.csv','VP'); |
|
| 1834 | + $error = update_db::retrieve_owner($tmp_dir.'owner_vp.csv', 'VP'); |
|
| 1835 | 1835 | } else $error = "File ".$tmp_dir.'owner_vp.csv'." doesn't exist. Download failed."; |
| 1836 | 1836 | if ($error != '') { |
| 1837 | 1837 | return $error; |
| 1838 | 1838 | } elseif ($globalDebug) echo "Done\n"; |
| 1839 | 1839 | if ($globalDebug) echo "Owner Croatia: Download..."; |
| 1840 | - update_db::download('http://antonakis.co.uk/registers/Croatia.txt',$tmp_dir.'owner_9a.csv'); |
|
| 1840 | + update_db::download('http://antonakis.co.uk/registers/Croatia.txt', $tmp_dir.'owner_9a.csv'); |
|
| 1841 | 1841 | if (file_exists($tmp_dir.'owner_9a.csv')) { |
| 1842 | 1842 | if ($globalDebug) echo "Add to DB..."; |
| 1843 | - $error = update_db::retrieve_owner($tmp_dir.'owner_9a.csv','9A'); |
|
| 1843 | + $error = update_db::retrieve_owner($tmp_dir.'owner_9a.csv', '9A'); |
|
| 1844 | 1844 | } else $error = "File ".$tmp_dir.'owner_9a.csv'." doesn't exist. Download failed."; |
| 1845 | 1845 | if ($error != '') { |
| 1846 | 1846 | return $error; |
| 1847 | 1847 | } elseif ($globalDebug) echo "Done\n"; |
| 1848 | 1848 | if ($globalDebug) echo "Owner Luxembourg: Download..."; |
| 1849 | - update_db::download('http://antonakis.co.uk/registers/Luxembourg.txt',$tmp_dir.'owner_lx.csv'); |
|
| 1849 | + update_db::download('http://antonakis.co.uk/registers/Luxembourg.txt', $tmp_dir.'owner_lx.csv'); |
|
| 1850 | 1850 | if (file_exists($tmp_dir.'owner_lx.csv')) { |
| 1851 | 1851 | if ($globalDebug) echo "Add to DB..."; |
| 1852 | - $error = update_db::retrieve_owner($tmp_dir.'owner_lx.csv','LX'); |
|
| 1852 | + $error = update_db::retrieve_owner($tmp_dir.'owner_lx.csv', 'LX'); |
|
| 1853 | 1853 | } else $error = "File ".$tmp_dir.'owner_lx.csv'." doesn't exist. Download failed."; |
| 1854 | 1854 | if ($error != '') { |
| 1855 | 1855 | return $error; |
| 1856 | 1856 | } elseif ($globalDebug) echo "Done\n"; |
| 1857 | 1857 | if ($globalDebug) echo "Owner Maldives: Download..."; |
| 1858 | - update_db::download('http://antonakis.co.uk/registers/Maldives.txt',$tmp_dir.'owner_8q.csv'); |
|
| 1858 | + update_db::download('http://antonakis.co.uk/registers/Maldives.txt', $tmp_dir.'owner_8q.csv'); |
|
| 1859 | 1859 | if (file_exists($tmp_dir.'owner_8q.csv')) { |
| 1860 | 1860 | if ($globalDebug) echo "Add to DB..."; |
| 1861 | - $error = update_db::retrieve_owner($tmp_dir.'owner_8q.csv','8Q'); |
|
| 1861 | + $error = update_db::retrieve_owner($tmp_dir.'owner_8q.csv', '8Q'); |
|
| 1862 | 1862 | } else $error = "File ".$tmp_dir.'owner_8q.csv'." doesn't exist. Download failed."; |
| 1863 | 1863 | if ($error != '') { |
| 1864 | 1864 | return $error; |
| 1865 | 1865 | } elseif ($globalDebug) echo "Done\n"; |
| 1866 | 1866 | if ($globalDebug) echo "Owner New Zealand: Download..."; |
| 1867 | - update_db::download('http://antonakis.co.uk/registers/NewZealand.txt',$tmp_dir.'owner_zk.csv'); |
|
| 1867 | + update_db::download('http://antonakis.co.uk/registers/NewZealand.txt', $tmp_dir.'owner_zk.csv'); |
|
| 1868 | 1868 | if (file_exists($tmp_dir.'owner_zk.csv')) { |
| 1869 | 1869 | if ($globalDebug) echo "Add to DB..."; |
| 1870 | - $error = update_db::retrieve_owner($tmp_dir.'owner_zk.csv','ZK'); |
|
| 1870 | + $error = update_db::retrieve_owner($tmp_dir.'owner_zk.csv', 'ZK'); |
|
| 1871 | 1871 | } else $error = "File ".$tmp_dir.'owner_zk.csv'." doesn't exist. Download failed."; |
| 1872 | 1872 | if ($error != '') { |
| 1873 | 1873 | return $error; |
| 1874 | 1874 | } elseif ($globalDebug) echo "Done\n"; |
| 1875 | 1875 | if ($globalDebug) echo "Owner Papua New Guinea: Download..."; |
| 1876 | - update_db::download('http://antonakis.co.uk/registers/PapuaNewGuinea.txt',$tmp_dir.'owner_p2.csv'); |
|
| 1876 | + update_db::download('http://antonakis.co.uk/registers/PapuaNewGuinea.txt', $tmp_dir.'owner_p2.csv'); |
|
| 1877 | 1877 | if (file_exists($tmp_dir.'owner_p2.csv')) { |
| 1878 | 1878 | if ($globalDebug) echo "Add to DB..."; |
| 1879 | - $error = update_db::retrieve_owner($tmp_dir.'owner_p2.csv','P2'); |
|
| 1879 | + $error = update_db::retrieve_owner($tmp_dir.'owner_p2.csv', 'P2'); |
|
| 1880 | 1880 | } else $error = "File ".$tmp_dir.'owner_p2.csv'." doesn't exist. Download failed."; |
| 1881 | 1881 | if ($error != '') { |
| 1882 | 1882 | return $error; |
| 1883 | 1883 | } elseif ($globalDebug) echo "Done\n"; |
| 1884 | 1884 | if ($globalDebug) echo "Owner Slovakia: Download..."; |
| 1885 | - update_db::download('http://antonakis.co.uk/registers/Slovakia.txt',$tmp_dir.'owner_om.csv'); |
|
| 1885 | + update_db::download('http://antonakis.co.uk/registers/Slovakia.txt', $tmp_dir.'owner_om.csv'); |
|
| 1886 | 1886 | if (file_exists($tmp_dir.'owner_om.csv')) { |
| 1887 | 1887 | if ($globalDebug) echo "Add to DB..."; |
| 1888 | - $error = update_db::retrieve_owner($tmp_dir.'owner_om.csv','OM'); |
|
| 1888 | + $error = update_db::retrieve_owner($tmp_dir.'owner_om.csv', 'OM'); |
|
| 1889 | 1889 | } else $error = "File ".$tmp_dir.'owner_om.csv'." doesn't exist. Download failed."; |
| 1890 | 1890 | if ($error != '') { |
| 1891 | 1891 | return $error; |
| 1892 | 1892 | } elseif ($globalDebug) echo "Done\n"; |
| 1893 | 1893 | if ($globalDebug) echo "Owner Ecuador: Download..."; |
| 1894 | - update_db::download('http://antonakis.co.uk/registers/Ecuador.txt',$tmp_dir.'owner_hc.csv'); |
|
| 1894 | + update_db::download('http://antonakis.co.uk/registers/Ecuador.txt', $tmp_dir.'owner_hc.csv'); |
|
| 1895 | 1895 | if (file_exists($tmp_dir.'owner_hc.csv')) { |
| 1896 | 1896 | if ($globalDebug) echo "Add to DB..."; |
| 1897 | - $error = update_db::retrieve_owner($tmp_dir.'owner_hc.csv','HC'); |
|
| 1897 | + $error = update_db::retrieve_owner($tmp_dir.'owner_hc.csv', 'HC'); |
|
| 1898 | 1898 | } else $error = "File ".$tmp_dir.'owner_hc.csv'." doesn't exist. Download failed."; |
| 1899 | 1899 | if ($error != '') { |
| 1900 | 1900 | return $error; |
| 1901 | 1901 | } elseif ($globalDebug) echo "Done\n"; |
| 1902 | 1902 | if ($globalDebug) echo "Owner Iceland: Download..."; |
| 1903 | - update_db::download('http://antonakis.co.uk/registers/Iceland.txt',$tmp_dir.'owner_tf.csv'); |
|
| 1903 | + update_db::download('http://antonakis.co.uk/registers/Iceland.txt', $tmp_dir.'owner_tf.csv'); |
|
| 1904 | 1904 | if (file_exists($tmp_dir.'owner_tf.csv')) { |
| 1905 | 1905 | if ($globalDebug) echo "Add to DB..."; |
| 1906 | - $error = update_db::retrieve_owner($tmp_dir.'owner_tf.csv','TF'); |
|
| 1906 | + $error = update_db::retrieve_owner($tmp_dir.'owner_tf.csv', 'TF'); |
|
| 1907 | 1907 | } else $error = "File ".$tmp_dir.'owner_tf.csv'." doesn't exist. Download failed."; |
| 1908 | 1908 | if ($error != '') { |
| 1909 | 1909 | return $error; |
| 1910 | 1910 | } elseif ($globalDebug) echo "Done\n"; |
| 1911 | 1911 | if ($globalDebug) echo "Owner Isle of Man: Download..."; |
| 1912 | - update_db::download('http://antonakis.co.uk/registers/IsleOfMan.txt',$tmp_dir.'owner_m.csv'); |
|
| 1912 | + update_db::download('http://antonakis.co.uk/registers/IsleOfMan.txt', $tmp_dir.'owner_m.csv'); |
|
| 1913 | 1913 | if (file_exists($tmp_dir.'owner_m.csv')) { |
| 1914 | 1914 | if ($globalDebug) echo "Add to DB..."; |
| 1915 | - $error = update_db::retrieve_owner($tmp_dir.'owner_m.csv','M'); |
|
| 1915 | + $error = update_db::retrieve_owner($tmp_dir.'owner_m.csv', 'M'); |
|
| 1916 | 1916 | } else $error = "File ".$tmp_dir.'owner_m.csv'." doesn't exist. Download failed."; |
| 1917 | 1917 | if ($error != '') { |
| 1918 | 1918 | return $error; |
| 1919 | 1919 | } elseif ($globalDebug) echo "Done\n"; |
| 1920 | 1920 | if ($globalMasterSource) { |
| 1921 | 1921 | if ($globalDebug) echo "ModeS Netherlands: Download..."; |
| 1922 | - update_db::download('http://antonakis.co.uk/registers/Netherlands.txt',$tmp_dir.'owner_ph.csv'); |
|
| 1922 | + update_db::download('http://antonakis.co.uk/registers/Netherlands.txt', $tmp_dir.'owner_ph.csv'); |
|
| 1923 | 1923 | if (file_exists($tmp_dir.'owner_ph.csv')) { |
| 1924 | 1924 | if ($globalDebug) echo "Add to DB..."; |
| 1925 | - $error = update_db::retrieve_owner($tmp_dir.'owner_ph.csv','PH'); |
|
| 1925 | + $error = update_db::retrieve_owner($tmp_dir.'owner_ph.csv', 'PH'); |
|
| 1926 | 1926 | } else $error = "File ".$tmp_dir.'owner_ph.csv'." doesn't exist. Download failed."; |
| 1927 | 1927 | if ($error != '') { |
| 1928 | 1928 | return $error; |
| 1929 | 1929 | } elseif ($globalDebug) echo "Done\n"; |
| 1930 | 1930 | if ($globalDebug) echo "ModeS Denmark: Download..."; |
| 1931 | - update_db::download('http://antonakis.co.uk/registers/Denmark.txt',$tmp_dir.'owner_oy.csv'); |
|
| 1931 | + update_db::download('http://antonakis.co.uk/registers/Denmark.txt', $tmp_dir.'owner_oy.csv'); |
|
| 1932 | 1932 | if (file_exists($tmp_dir.'owner_oy.csv')) { |
| 1933 | 1933 | if ($globalDebug) echo "Add to DB..."; |
| 1934 | - $error = update_db::retrieve_owner($tmp_dir.'owner_oy.csv','OY'); |
|
| 1934 | + $error = update_db::retrieve_owner($tmp_dir.'owner_oy.csv', 'OY'); |
|
| 1935 | 1935 | } else $error = "File ".$tmp_dir.'owner_oy.csv'." doesn't exist. Download failed."; |
| 1936 | 1936 | if ($error != '') { |
| 1937 | 1937 | return $error; |
@@ -1944,7 +1944,7 @@ discard block |
||
| 1944 | 1944 | global $tmp_dir, $globalDebug; |
| 1945 | 1945 | $error = ''; |
| 1946 | 1946 | if ($globalDebug) echo "Translation : Download..."; |
| 1947 | - update_db::download('http://www.acarsd.org/download/translation.php',$tmp_dir.'translation.zip'); |
|
| 1947 | + update_db::download('http://www.acarsd.org/download/translation.php', $tmp_dir.'translation.zip'); |
|
| 1948 | 1948 | if (file_exists($tmp_dir.'translation.zip')) { |
| 1949 | 1949 | if ($globalDebug) echo "Unzip..."; |
| 1950 | 1950 | update_db::unzip($tmp_dir.'translation.zip'); |
@@ -1960,7 +1960,7 @@ discard block |
||
| 1960 | 1960 | public static function update_translation_fam() { |
| 1961 | 1961 | global $tmp_dir, $globalDebug; |
| 1962 | 1962 | if ($globalDebug) echo "Translation from FlightAirMap website : Download..."; |
| 1963 | - update_db::download('http://data.flightairmap.fr/data/translation.tsv.gz',$tmp_dir.'translation.tsv.gz'); |
|
| 1963 | + update_db::download('http://data.flightairmap.fr/data/translation.tsv.gz', $tmp_dir.'translation.tsv.gz'); |
|
| 1964 | 1964 | if (file_exists($tmp_dir.'translation.tsv.gz')) { |
| 1965 | 1965 | if ($globalDebug) echo "Gunzip..."; |
| 1966 | 1966 | update_db::gunzip($tmp_dir.'translation.tsv.gz'); |
@@ -1975,7 +1975,7 @@ discard block |
||
| 1975 | 1975 | public static function update_ModeS_fam() { |
| 1976 | 1976 | global $tmp_dir, $globalDebug; |
| 1977 | 1977 | if ($globalDebug) echo "ModeS from FlightAirMap website : Download..."; |
| 1978 | - update_db::download('http://data.flightairmap.fr/data/modes.tsv.gz',$tmp_dir.'modes.tsv.gz'); |
|
| 1978 | + update_db::download('http://data.flightairmap.fr/data/modes.tsv.gz', $tmp_dir.'modes.tsv.gz'); |
|
| 1979 | 1979 | if (file_exists($tmp_dir.'modes.tsv.gz')) { |
| 1980 | 1980 | if ($globalDebug) echo "Gunzip..."; |
| 1981 | 1981 | update_db::gunzip($tmp_dir.'modes.tsv.gz'); |
@@ -1991,9 +1991,9 @@ discard block |
||
| 1991 | 1991 | global $tmp_dir, $globalDebug, $globalOwner; |
| 1992 | 1992 | if ($globalDebug) echo "owner from FlightAirMap website : Download..."; |
| 1993 | 1993 | if ($globalOwner === TRUE) { |
| 1994 | - update_db::download('http://data.flightairmap.fr/data/owners_all.tsv.gz',$tmp_dir.'owners.tsv.gz'); |
|
| 1994 | + update_db::download('http://data.flightairmap.fr/data/owners_all.tsv.gz', $tmp_dir.'owners.tsv.gz'); |
|
| 1995 | 1995 | } else { |
| 1996 | - update_db::download('http://data.flightairmap.fr/data/owners.tsv.gz',$tmp_dir.'owners.tsv.gz'); |
|
| 1996 | + update_db::download('http://data.flightairmap.fr/data/owners.tsv.gz', $tmp_dir.'owners.tsv.gz'); |
|
| 1997 | 1997 | } |
| 1998 | 1998 | if (file_exists($tmp_dir.'owners.tsv.gz')) { |
| 1999 | 1999 | if ($globalDebug) echo "Gunzip..."; |
@@ -2009,7 +2009,7 @@ discard block |
||
| 2009 | 2009 | public static function update_routes_fam() { |
| 2010 | 2010 | global $tmp_dir, $globalDebug; |
| 2011 | 2011 | if ($globalDebug) echo "Routes from FlightAirMap website : Download..."; |
| 2012 | - update_db::download('http://data.flightairmap.fr/data/routes.tsv.gz',$tmp_dir.'routes.tsv.gz'); |
|
| 2012 | + update_db::download('http://data.flightairmap.fr/data/routes.tsv.gz', $tmp_dir.'routes.tsv.gz'); |
|
| 2013 | 2013 | if (file_exists($tmp_dir.'routes.tsv.gz')) { |
| 2014 | 2014 | if ($globalDebug) echo "Gunzip..."; |
| 2015 | 2015 | update_db::gunzip($tmp_dir.'routes.tsv.gz'); |
@@ -2023,13 +2023,13 @@ discard block |
||
| 2023 | 2023 | } |
| 2024 | 2024 | public static function update_marine_identity_fam() { |
| 2025 | 2025 | global $tmp_dir, $globalDebug; |
| 2026 | - update_db::download('http://data.flightairmap.fr/data/marine_identity.tsv.gz.md5',$tmp_dir.'marine_identity.tsv.gz.md5'); |
|
| 2026 | + update_db::download('http://data.flightairmap.fr/data/marine_identity.tsv.gz.md5', $tmp_dir.'marine_identity.tsv.gz.md5'); |
|
| 2027 | 2027 | if (file_exists($tmp_dir.'marine_identity.tsv.gz.md5')) { |
| 2028 | - $marine_identity_md5_file = explode(' ',file_get_contents($tmp_dir.'marine_identity.tsv.gz.md5')); |
|
| 2028 | + $marine_identity_md5_file = explode(' ', file_get_contents($tmp_dir.'marine_identity.tsv.gz.md5')); |
|
| 2029 | 2029 | $marine_identity_md5 = $marine_identity_md5_file[0]; |
| 2030 | 2030 | if (!update_db::check_marine_identity_version($marine_identity_md5)) { |
| 2031 | 2031 | if ($globalDebug) echo "Marine identity from FlightAirMap website : Download..."; |
| 2032 | - update_db::download('http://data.flightairmap.fr/data/marine_identity.tsv.gz',$tmp_dir.'marine_identity.tsv.gz'); |
|
| 2032 | + update_db::download('http://data.flightairmap.fr/data/marine_identity.tsv.gz', $tmp_dir.'marine_identity.tsv.gz'); |
|
| 2033 | 2033 | if (file_exists($tmp_dir.'marine_identity.tsv.gz')) { |
| 2034 | 2034 | if ($globalDebug) echo "Gunzip..."; |
| 2035 | 2035 | update_db::gunzip($tmp_dir.'marine_identity.tsv.gz'); |
@@ -2049,7 +2049,7 @@ discard block |
||
| 2049 | 2049 | public static function update_banned_fam() { |
| 2050 | 2050 | global $tmp_dir, $globalDebug; |
| 2051 | 2051 | if ($globalDebug) echo "Banned airlines in Europe from FlightAirMap website : Download..."; |
| 2052 | - update_db::download('http://data.flightairmap.fr/data/ban_eu.csv',$tmp_dir.'ban_eu.csv'); |
|
| 2052 | + update_db::download('http://data.flightairmap.fr/data/ban_eu.csv', $tmp_dir.'ban_eu.csv'); |
|
| 2053 | 2053 | if (file_exists($tmp_dir.'ban_eu.csv')) { |
| 2054 | 2054 | //if ($globalDebug) echo "Gunzip..."; |
| 2055 | 2055 | //update_db::gunzip($tmp_dir.'ban_ue.csv'); |
@@ -2068,18 +2068,18 @@ discard block |
||
| 2068 | 2068 | $error = ''; |
| 2069 | 2069 | if ($globalDebug) echo "Airspace from FlightAirMap website : Download..."; |
| 2070 | 2070 | if ($globalDBdriver == 'mysql') { |
| 2071 | - update_db::download('http://data.flightairmap.fr/data/airspace_mysql.sql.gz.md5',$tmp_dir.'airspace.sql.gz.md5'); |
|
| 2071 | + update_db::download('http://data.flightairmap.fr/data/airspace_mysql.sql.gz.md5', $tmp_dir.'airspace.sql.gz.md5'); |
|
| 2072 | 2072 | } else { |
| 2073 | - update_db::download('http://data.flightairmap.fr/data/airspace_pgsql.sql.gz.md5',$tmp_dir.'airspace.sql.gz.md5'); |
|
| 2073 | + update_db::download('http://data.flightairmap.fr/data/airspace_pgsql.sql.gz.md5', $tmp_dir.'airspace.sql.gz.md5'); |
|
| 2074 | 2074 | } |
| 2075 | 2075 | if (file_exists($tmp_dir.'airspace.sql.gz.md5')) { |
| 2076 | - $airspace_md5_file = explode(' ',file_get_contents($tmp_dir.'airspace.sql.gz.md5')); |
|
| 2076 | + $airspace_md5_file = explode(' ', file_get_contents($tmp_dir.'airspace.sql.gz.md5')); |
|
| 2077 | 2077 | $airspace_md5 = $airspace_md5_file[0]; |
| 2078 | 2078 | if (!update_db::check_airspace_version($airspace_md5)) { |
| 2079 | 2079 | if ($globalDBdriver == 'mysql') { |
| 2080 | - update_db::download('http://data.flightairmap.fr/data/airspace_mysql.sql.gz',$tmp_dir.'airspace.sql.gz'); |
|
| 2080 | + update_db::download('http://data.flightairmap.fr/data/airspace_mysql.sql.gz', $tmp_dir.'airspace.sql.gz'); |
|
| 2081 | 2081 | } else { |
| 2082 | - update_db::download('http://data.flightairmap.fr/data/airspace_pgsql.sql.gz',$tmp_dir.'airspace.sql.gz'); |
|
| 2082 | + update_db::download('http://data.flightairmap.fr/data/airspace_pgsql.sql.gz', $tmp_dir.'airspace.sql.gz'); |
|
| 2083 | 2083 | } |
| 2084 | 2084 | if (file_exists($tmp_dir.'airspace.sql.gz')) { |
| 2085 | 2085 | if ($globalDebug) echo "Gunzip..."; |
@@ -2091,7 +2091,7 @@ discard block |
||
| 2091 | 2091 | try { |
| 2092 | 2092 | $sth = $Connection->db->prepare($query); |
| 2093 | 2093 | $sth->execute(); |
| 2094 | - } catch(PDOException $e) { |
|
| 2094 | + } catch (PDOException $e) { |
|
| 2095 | 2095 | return "error : ".$e->getMessage(); |
| 2096 | 2096 | } |
| 2097 | 2097 | } |
@@ -2109,15 +2109,15 @@ discard block |
||
| 2109 | 2109 | public static function update_tle() { |
| 2110 | 2110 | global $tmp_dir, $globalDebug; |
| 2111 | 2111 | if ($globalDebug) echo "Download TLE : Download..."; |
| 2112 | - $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', |
|
| 2113 | - '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', |
|
| 2114 | - 'engineering.txt','education.txt','military.txt','radar.txt','cubesat.txt','other.txt','tle-new.txt'); |
|
| 2112 | + $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', |
|
| 2113 | + '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', |
|
| 2114 | + 'engineering.txt', 'education.txt', 'military.txt', 'radar.txt', 'cubesat.txt', 'other.txt', 'tle-new.txt'); |
|
| 2115 | 2115 | foreach ($alltle as $filename) { |
| 2116 | 2116 | if ($globalDebug) echo "downloading ".$filename.'...'; |
| 2117 | - update_db::download('http://celestrak.com/NORAD/elements/'.$filename,$tmp_dir.$filename); |
|
| 2117 | + update_db::download('http://celestrak.com/NORAD/elements/'.$filename, $tmp_dir.$filename); |
|
| 2118 | 2118 | if (file_exists($tmp_dir.$filename)) { |
| 2119 | 2119 | if ($globalDebug) echo "Add to DB ".$filename."..."; |
| 2120 | - $error = update_db::tle($tmp_dir.$filename,str_replace('.txt','',$filename)); |
|
| 2120 | + $error = update_db::tle($tmp_dir.$filename, str_replace('.txt', '', $filename)); |
|
| 2121 | 2121 | } else $error = "File ".$tmp_dir.$filename." doesn't exist. Download failed."; |
| 2122 | 2122 | if ($error != '') { |
| 2123 | 2123 | echo $error."\n"; |
@@ -2130,32 +2130,32 @@ discard block |
||
| 2130 | 2130 | global $tmp_dir, $globalDebug; |
| 2131 | 2131 | $error = ''; |
| 2132 | 2132 | if ($globalDebug) echo "Models from FlightAirMap website : Download..."; |
| 2133 | - update_db::download('http://data.flightairmap.fr/data/models/models.md5sum',$tmp_dir.'models.md5sum'); |
|
| 2133 | + update_db::download('http://data.flightairmap.fr/data/models/models.md5sum', $tmp_dir.'models.md5sum'); |
|
| 2134 | 2134 | if (file_exists($tmp_dir.'models.md5sum')) { |
| 2135 | 2135 | if ($globalDebug) echo "Check files...\n"; |
| 2136 | 2136 | $newmodelsdb = array(); |
| 2137 | - if (($handle = fopen($tmp_dir.'models.md5sum','r')) !== FALSE) { |
|
| 2138 | - while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
|
| 2137 | + if (($handle = fopen($tmp_dir.'models.md5sum', 'r')) !== FALSE) { |
|
| 2138 | + while (($row = fgetcsv($handle, 1000, " ")) !== FALSE) { |
|
| 2139 | 2139 | $model = trim($row[2]); |
| 2140 | 2140 | $newmodelsdb[$model] = trim($row[0]); |
| 2141 | 2141 | } |
| 2142 | 2142 | } |
| 2143 | 2143 | $modelsdb = array(); |
| 2144 | 2144 | if (file_exists(dirname(__FILE__).'/../models/models.md5sum')) { |
| 2145 | - if (($handle = fopen(dirname(__FILE__).'/../models/models.md5sum','r')) !== FALSE) { |
|
| 2146 | - while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
|
| 2145 | + if (($handle = fopen(dirname(__FILE__).'/../models/models.md5sum', 'r')) !== FALSE) { |
|
| 2146 | + while (($row = fgetcsv($handle, 1000, " ")) !== FALSE) { |
|
| 2147 | 2147 | $model = trim($row[2]); |
| 2148 | 2148 | $modelsdb[$model] = trim($row[0]); |
| 2149 | 2149 | } |
| 2150 | 2150 | } |
| 2151 | 2151 | } |
| 2152 | - $diff = array_diff($newmodelsdb,$modelsdb); |
|
| 2152 | + $diff = array_diff($newmodelsdb, $modelsdb); |
|
| 2153 | 2153 | foreach ($diff as $key => $value) { |
| 2154 | 2154 | if ($globalDebug) echo 'Downloading model '.$key.' ...'."\n"; |
| 2155 | - update_db::download('http://data.flightairmap.fr/data/models/'.$key,dirname(__FILE__).'/../models/'.$key); |
|
| 2155 | + update_db::download('http://data.flightairmap.fr/data/models/'.$key, dirname(__FILE__).'/../models/'.$key); |
|
| 2156 | 2156 | |
| 2157 | 2157 | } |
| 2158 | - update_db::download('http://data.flightairmap.fr/data/models/models.md5sum',dirname(__FILE__).'/../models/models.md5sum'); |
|
| 2158 | + update_db::download('http://data.flightairmap.fr/data/models/models.md5sum', dirname(__FILE__).'/../models/models.md5sum'); |
|
| 2159 | 2159 | } else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
| 2160 | 2160 | if ($error != '') { |
| 2161 | 2161 | return $error; |
@@ -2167,32 +2167,32 @@ discard block |
||
| 2167 | 2167 | global $tmp_dir, $globalDebug; |
| 2168 | 2168 | $error = ''; |
| 2169 | 2169 | if ($globalDebug) echo "Space models from FlightAirMap website : Download..."; |
| 2170 | - update_db::download('http://data.flightairmap.fr/data/models/space/space_models.md5sum',$tmp_dir.'space_models.md5sum'); |
|
| 2170 | + update_db::download('http://data.flightairmap.fr/data/models/space/space_models.md5sum', $tmp_dir.'space_models.md5sum'); |
|
| 2171 | 2171 | if (file_exists($tmp_dir.'space_models.md5sum')) { |
| 2172 | 2172 | if ($globalDebug) echo "Check files...\n"; |
| 2173 | 2173 | $newmodelsdb = array(); |
| 2174 | - if (($handle = fopen($tmp_dir.'space_models.md5sum','r')) !== FALSE) { |
|
| 2175 | - while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
|
| 2174 | + if (($handle = fopen($tmp_dir.'space_models.md5sum', 'r')) !== FALSE) { |
|
| 2175 | + while (($row = fgetcsv($handle, 1000, " ")) !== FALSE) { |
|
| 2176 | 2176 | $model = trim($row[2]); |
| 2177 | 2177 | $newmodelsdb[$model] = trim($row[0]); |
| 2178 | 2178 | } |
| 2179 | 2179 | } |
| 2180 | 2180 | $modelsdb = array(); |
| 2181 | 2181 | if (file_exists(dirname(__FILE__).'/../models/space/space_models.md5sum')) { |
| 2182 | - if (($handle = fopen(dirname(__FILE__).'/../models/space/space_models.md5sum','r')) !== FALSE) { |
|
| 2183 | - while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
|
| 2182 | + if (($handle = fopen(dirname(__FILE__).'/../models/space/space_models.md5sum', 'r')) !== FALSE) { |
|
| 2183 | + while (($row = fgetcsv($handle, 1000, " ")) !== FALSE) { |
|
| 2184 | 2184 | $model = trim($row[2]); |
| 2185 | 2185 | $modelsdb[$model] = trim($row[0]); |
| 2186 | 2186 | } |
| 2187 | 2187 | } |
| 2188 | 2188 | } |
| 2189 | - $diff = array_diff($newmodelsdb,$modelsdb); |
|
| 2189 | + $diff = array_diff($newmodelsdb, $modelsdb); |
|
| 2190 | 2190 | foreach ($diff as $key => $value) { |
| 2191 | 2191 | if ($globalDebug) echo 'Downloading space model '.$key.' ...'."\n"; |
| 2192 | - update_db::download('http://data.flightairmap.fr/data/models/space/'.$key,dirname(__FILE__).'/../models/space/'.$key); |
|
| 2192 | + update_db::download('http://data.flightairmap.fr/data/models/space/'.$key, dirname(__FILE__).'/../models/space/'.$key); |
|
| 2193 | 2193 | |
| 2194 | 2194 | } |
| 2195 | - update_db::download('http://data.flightairmap.fr/data/models/space/space_models.md5sum',dirname(__FILE__).'/../models/space/space_models.md5sum'); |
|
| 2195 | + update_db::download('http://data.flightairmap.fr/data/models/space/space_models.md5sum', dirname(__FILE__).'/../models/space/space_models.md5sum'); |
|
| 2196 | 2196 | } else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
| 2197 | 2197 | if ($error != '') { |
| 2198 | 2198 | return $error; |
@@ -2204,32 +2204,32 @@ discard block |
||
| 2204 | 2204 | global $tmp_dir, $globalDebug; |
| 2205 | 2205 | $error = ''; |
| 2206 | 2206 | if ($globalDebug) echo "Vehicules models from FlightAirMap website : Download..."; |
| 2207 | - update_db::download('http://data.flightairmap.fr/data/models/vehicules/vehicules_models.md5sum',$tmp_dir.'vehicules_models.md5sum'); |
|
| 2207 | + update_db::download('http://data.flightairmap.fr/data/models/vehicules/vehicules_models.md5sum', $tmp_dir.'vehicules_models.md5sum'); |
|
| 2208 | 2208 | if (file_exists($tmp_dir.'vehicules_models.md5sum')) { |
| 2209 | 2209 | if ($globalDebug) echo "Check files...\n"; |
| 2210 | 2210 | $newmodelsdb = array(); |
| 2211 | - if (($handle = fopen($tmp_dir.'vehicules_models.md5sum','r')) !== FALSE) { |
|
| 2212 | - while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
|
| 2211 | + if (($handle = fopen($tmp_dir.'vehicules_models.md5sum', 'r')) !== FALSE) { |
|
| 2212 | + while (($row = fgetcsv($handle, 1000, " ")) !== FALSE) { |
|
| 2213 | 2213 | $model = trim($row[2]); |
| 2214 | 2214 | $newmodelsdb[$model] = trim($row[0]); |
| 2215 | 2215 | } |
| 2216 | 2216 | } |
| 2217 | 2217 | $modelsdb = array(); |
| 2218 | 2218 | if (file_exists(dirname(__FILE__).'/../models/vehicules/vehicules_models.md5sum')) { |
| 2219 | - if (($handle = fopen(dirname(__FILE__).'/../models/vehicules/vehicules_models.md5sum','r')) !== FALSE) { |
|
| 2220 | - while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
|
| 2219 | + if (($handle = fopen(dirname(__FILE__).'/../models/vehicules/vehicules_models.md5sum', 'r')) !== FALSE) { |
|
| 2220 | + while (($row = fgetcsv($handle, 1000, " ")) !== FALSE) { |
|
| 2221 | 2221 | $model = trim($row[2]); |
| 2222 | 2222 | $modelsdb[$model] = trim($row[0]); |
| 2223 | 2223 | } |
| 2224 | 2224 | } |
| 2225 | 2225 | } |
| 2226 | - $diff = array_diff($newmodelsdb,$modelsdb); |
|
| 2226 | + $diff = array_diff($newmodelsdb, $modelsdb); |
|
| 2227 | 2227 | foreach ($diff as $key => $value) { |
| 2228 | 2228 | if ($globalDebug) echo 'Downloading vehicules model '.$key.' ...'."\n"; |
| 2229 | - update_db::download('http://data.flightairmap.fr/data/models/vehicules/'.$key,dirname(__FILE__).'/../models/vehicules/'.$key); |
|
| 2229 | + update_db::download('http://data.flightairmap.fr/data/models/vehicules/'.$key, dirname(__FILE__).'/../models/vehicules/'.$key); |
|
| 2230 | 2230 | |
| 2231 | 2231 | } |
| 2232 | - update_db::download('http://data.flightairmap.fr/data/models/vehicules/vehicules_models.md5sum',dirname(__FILE__).'/../models/vehicules/vehicules_models.md5sum'); |
|
| 2232 | + update_db::download('http://data.flightairmap.fr/data/models/vehicules/vehicules_models.md5sum', dirname(__FILE__).'/../models/vehicules/vehicules_models.md5sum'); |
|
| 2233 | 2233 | } else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
| 2234 | 2234 | if ($error != '') { |
| 2235 | 2235 | return $error; |
@@ -2252,8 +2252,8 @@ discard block |
||
| 2252 | 2252 | */ |
| 2253 | 2253 | if (file_exists($tmp_dir.'aircrafts.html')) { |
| 2254 | 2254 | //var_dump(file_get_html($tmp_dir.'aircrafts.html')); |
| 2255 | - $fh = fopen($tmp_dir.'aircrafts.html',"r"); |
|
| 2256 | - $result = fread($fh,100000000); |
|
| 2255 | + $fh = fopen($tmp_dir.'aircrafts.html', "r"); |
|
| 2256 | + $result = fread($fh, 100000000); |
|
| 2257 | 2257 | //echo $result; |
| 2258 | 2258 | //var_dump(str_get_html($result)); |
| 2259 | 2259 | //print_r(self::table2array($result)); |
@@ -2271,23 +2271,23 @@ discard block |
||
| 2271 | 2271 | $Connection = new Connection(); |
| 2272 | 2272 | $sth = $Connection->db->prepare($query); |
| 2273 | 2273 | $sth->execute(); |
| 2274 | - } catch(PDOException $e) { |
|
| 2274 | + } catch (PDOException $e) { |
|
| 2275 | 2275 | return "error : ".$e->getMessage(); |
| 2276 | 2276 | } |
| 2277 | 2277 | |
| 2278 | 2278 | $error = ''; |
| 2279 | 2279 | if ($globalDebug) echo "Notam : Download..."; |
| 2280 | - update_db::download($globalNOTAMSource,$tmp_dir.'notam.rss'); |
|
| 2280 | + update_db::download($globalNOTAMSource, $tmp_dir.'notam.rss'); |
|
| 2281 | 2281 | if (file_exists($tmp_dir.'notam.rss')) { |
| 2282 | - $notams = json_decode(json_encode(simplexml_load_file($tmp_dir.'notam.rss')),true); |
|
| 2282 | + $notams = json_decode(json_encode(simplexml_load_file($tmp_dir.'notam.rss')), true); |
|
| 2283 | 2283 | foreach ($notams['channel']['item'] as $notam) { |
| 2284 | - $title = explode(':',$notam['title']); |
|
| 2284 | + $title = explode(':', $notam['title']); |
|
| 2285 | 2285 | $data['ref'] = trim($title[0]); |
| 2286 | 2286 | unset($title[0]); |
| 2287 | - $data['title'] = trim(implode(':',$title)); |
|
| 2288 | - $description = strip_tags($notam['description'],'<pre>'); |
|
| 2289 | - preg_match(':^(.*?)<pre>:',$description,$match); |
|
| 2290 | - $q = explode('/',$match[1]); |
|
| 2287 | + $data['title'] = trim(implode(':', $title)); |
|
| 2288 | + $description = strip_tags($notam['description'], '<pre>'); |
|
| 2289 | + preg_match(':^(.*?)<pre>:', $description, $match); |
|
| 2290 | + $q = explode('/', $match[1]); |
|
| 2291 | 2291 | $data['fir'] = $q[0]; |
| 2292 | 2292 | $data['code'] = $q[1]; |
| 2293 | 2293 | $ifrvfr = $q[2]; |
@@ -2303,30 +2303,30 @@ discard block |
||
| 2303 | 2303 | $data['lower_limit'] = $q[5]; |
| 2304 | 2304 | $data['upper_limit'] = $q[6]; |
| 2305 | 2305 | $latlonrad = $q[7]; |
| 2306 | - sscanf($latlonrad,'%4c%c%5c%c%3d',$las,$lac,$lns,$lnc,$radius); |
|
| 2307 | - $latitude = $Common->convertDec($las,'latitude'); |
|
| 2308 | - $longitude = $Common->convertDec($lns,'longitude'); |
|
| 2306 | + sscanf($latlonrad, '%4c%c%5c%c%3d', $las, $lac, $lns, $lnc, $radius); |
|
| 2307 | + $latitude = $Common->convertDec($las, 'latitude'); |
|
| 2308 | + $longitude = $Common->convertDec($lns, 'longitude'); |
|
| 2309 | 2309 | if ($lac == 'S') $latitude = '-'.$latitude; |
| 2310 | 2310 | if ($lnc == 'W') $longitude = '-'.$longitude; |
| 2311 | 2311 | $data['center_latitude'] = $latitude; |
| 2312 | 2312 | $data['center_longitude'] = $longitude; |
| 2313 | 2313 | $data['radius'] = intval($radius); |
| 2314 | 2314 | |
| 2315 | - preg_match(':<pre>(.*?)</pre>:',$description,$match); |
|
| 2315 | + preg_match(':<pre>(.*?)</pre>:', $description, $match); |
|
| 2316 | 2316 | $data['text'] = $match[1]; |
| 2317 | - preg_match(':</pre>(.*?)$:',$description,$match); |
|
| 2317 | + preg_match(':</pre>(.*?)$:', $description, $match); |
|
| 2318 | 2318 | $fromto = $match[1]; |
| 2319 | - preg_match('#FROM:(.*?)TO:#',$fromto,$match); |
|
| 2319 | + preg_match('#FROM:(.*?)TO:#', $fromto, $match); |
|
| 2320 | 2320 | $fromall = trim($match[1]); |
| 2321 | - preg_match('#^(.*?) \((.*?)\)$#',$fromall,$match); |
|
| 2321 | + preg_match('#^(.*?) \((.*?)\)$#', $fromall, $match); |
|
| 2322 | 2322 | $from = trim($match[1]); |
| 2323 | - $data['date_begin'] = date("Y-m-d H:i:s",strtotime($from)); |
|
| 2324 | - preg_match('#TO:(.*?)$#',$fromto,$match); |
|
| 2323 | + $data['date_begin'] = date("Y-m-d H:i:s", strtotime($from)); |
|
| 2324 | + preg_match('#TO:(.*?)$#', $fromto, $match); |
|
| 2325 | 2325 | $toall = trim($match[1]); |
| 2326 | - if (!preg_match(':Permanent:',$toall)) { |
|
| 2327 | - preg_match('#^(.*?) \((.*?)\)#',$toall,$match); |
|
| 2326 | + if (!preg_match(':Permanent:', $toall)) { |
|
| 2327 | + preg_match('#^(.*?) \((.*?)\)#', $toall, $match); |
|
| 2328 | 2328 | $to = trim($match[1]); |
| 2329 | - $data['date_end'] = date("Y-m-d H:i:s",strtotime($to)); |
|
| 2329 | + $data['date_end'] = date("Y-m-d H:i:s", strtotime($to)); |
|
| 2330 | 2330 | $data['permanent'] = 0; |
| 2331 | 2331 | } else { |
| 2332 | 2332 | $data['date_end'] = NULL; |
@@ -2334,7 +2334,7 @@ discard block |
||
| 2334 | 2334 | } |
| 2335 | 2335 | $data['full_notam'] = $notam['title'].'<br>'.$notam['description']; |
| 2336 | 2336 | $NOTAM = new NOTAM(); |
| 2337 | - $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']); |
|
| 2337 | + $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']); |
|
| 2338 | 2338 | unset($data); |
| 2339 | 2339 | } |
| 2340 | 2340 | } else $error = "File ".$tmp_dir.'notam.rss'." doesn't exist. Download failed."; |
@@ -2357,16 +2357,16 @@ discard block |
||
| 2357 | 2357 | $Connection = new Connection(); |
| 2358 | 2358 | $sth = $Connection->db->prepare($query); |
| 2359 | 2359 | $sth->execute(); |
| 2360 | - } catch(PDOException $e) { |
|
| 2360 | + } catch (PDOException $e) { |
|
| 2361 | 2361 | return "error : ".$e->getMessage(); |
| 2362 | 2362 | } |
| 2363 | 2363 | } |
| 2364 | 2364 | $Common = new Common(); |
| 2365 | 2365 | $airspace_lst = $Common->getData('https://raw.githubusercontent.com/XCSoar/xcsoar-data-repository/master/data/airspace.json'); |
| 2366 | - $airspace_json = json_decode($airspace_lst,true); |
|
| 2366 | + $airspace_json = json_decode($airspace_lst, true); |
|
| 2367 | 2367 | foreach ($airspace_json['records'] as $airspace) { |
| 2368 | 2368 | if ($globalDebug) echo $airspace['name']."...\n"; |
| 2369 | - update_db::download($airspace['uri'],$tmp_dir.$airspace['name']); |
|
| 2369 | + update_db::download($airspace['uri'], $tmp_dir.$airspace['name']); |
|
| 2370 | 2370 | if (file_exists($tmp_dir.$airspace['name'])) { |
| 2371 | 2371 | file_put_contents($tmp_dir.$airspace['name'], utf8_encode(file_get_contents($tmp_dir.$airspace['name']))); |
| 2372 | 2372 | //system('recode l9..utf8 '.$tmp_dir.$airspace['name']); |
@@ -2388,7 +2388,7 @@ discard block |
||
| 2388 | 2388 | $Connection = new Connection(); |
| 2389 | 2389 | $sth = $Connection->db->prepare($query); |
| 2390 | 2390 | $sth->execute(array(':new' => $new, ':old' => $old)); |
| 2391 | - } catch(PDOException $e) { |
|
| 2391 | + } catch (PDOException $e) { |
|
| 2392 | 2392 | return "error : ".$e->getMessage(); |
| 2393 | 2393 | } |
| 2394 | 2394 | } |
@@ -2405,7 +2405,7 @@ discard block |
||
| 2405 | 2405 | $Connection = new Connection(); |
| 2406 | 2406 | $sth = $Connection->db->prepare($query); |
| 2407 | 2407 | $sth->execute(); |
| 2408 | - } catch(PDOException $e) { |
|
| 2408 | + } catch (PDOException $e) { |
|
| 2409 | 2409 | return "error : ".$e->getMessage(); |
| 2410 | 2410 | } |
| 2411 | 2411 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -2420,7 +2420,7 @@ discard block |
||
| 2420 | 2420 | $Connection = new Connection(); |
| 2421 | 2421 | $sth = $Connection->db->prepare($query); |
| 2422 | 2422 | $sth->execute(); |
| 2423 | - } catch(PDOException $e) { |
|
| 2423 | + } catch (PDOException $e) { |
|
| 2424 | 2424 | return "error : ".$e->getMessage(); |
| 2425 | 2425 | } |
| 2426 | 2426 | } |
@@ -2431,7 +2431,7 @@ discard block |
||
| 2431 | 2431 | $Connection = new Connection(); |
| 2432 | 2432 | $sth = $Connection->db->prepare($query); |
| 2433 | 2433 | $sth->execute(array(':version' => $version)); |
| 2434 | - } catch(PDOException $e) { |
|
| 2434 | + } catch (PDOException $e) { |
|
| 2435 | 2435 | return "error : ".$e->getMessage(); |
| 2436 | 2436 | } |
| 2437 | 2437 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -2445,7 +2445,7 @@ discard block |
||
| 2445 | 2445 | $Connection = new Connection(); |
| 2446 | 2446 | $sth = $Connection->db->prepare($query); |
| 2447 | 2447 | $sth->execute(array(':version' => $version)); |
| 2448 | - } catch(PDOException $e) { |
|
| 2448 | + } catch (PDOException $e) { |
|
| 2449 | 2449 | return "error : ".$e->getMessage(); |
| 2450 | 2450 | } |
| 2451 | 2451 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -2461,7 +2461,7 @@ discard block |
||
| 2461 | 2461 | $Connection = new Connection(); |
| 2462 | 2462 | $sth = $Connection->db->prepare($query); |
| 2463 | 2463 | $sth->execute(array(':version' => $version)); |
| 2464 | - } catch(PDOException $e) { |
|
| 2464 | + } catch (PDOException $e) { |
|
| 2465 | 2465 | return "error : ".$e->getMessage(); |
| 2466 | 2466 | } |
| 2467 | 2467 | } |
@@ -2473,7 +2473,7 @@ discard block |
||
| 2473 | 2473 | $Connection = new Connection(); |
| 2474 | 2474 | $sth = $Connection->db->prepare($query); |
| 2475 | 2475 | $sth->execute(array(':version' => $version)); |
| 2476 | - } catch(PDOException $e) { |
|
| 2476 | + } catch (PDOException $e) { |
|
| 2477 | 2477 | return "error : ".$e->getMessage(); |
| 2478 | 2478 | } |
| 2479 | 2479 | } |
@@ -2489,7 +2489,7 @@ discard block |
||
| 2489 | 2489 | $Connection = new Connection(); |
| 2490 | 2490 | $sth = $Connection->db->prepare($query); |
| 2491 | 2491 | $sth->execute(); |
| 2492 | - } catch(PDOException $e) { |
|
| 2492 | + } catch (PDOException $e) { |
|
| 2493 | 2493 | return "error : ".$e->getMessage(); |
| 2494 | 2494 | } |
| 2495 | 2495 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -2504,7 +2504,7 @@ discard block |
||
| 2504 | 2504 | $Connection = new Connection(); |
| 2505 | 2505 | $sth = $Connection->db->prepare($query); |
| 2506 | 2506 | $sth->execute(); |
| 2507 | - } catch(PDOException $e) { |
|
| 2507 | + } catch (PDOException $e) { |
|
| 2508 | 2508 | return "error : ".$e->getMessage(); |
| 2509 | 2509 | } |
| 2510 | 2510 | } |
@@ -2519,7 +2519,7 @@ discard block |
||
| 2519 | 2519 | $Connection = new Connection(); |
| 2520 | 2520 | $sth = $Connection->db->prepare($query); |
| 2521 | 2521 | $sth->execute(); |
| 2522 | - } catch(PDOException $e) { |
|
| 2522 | + } catch (PDOException $e) { |
|
| 2523 | 2523 | return "error : ".$e->getMessage(); |
| 2524 | 2524 | } |
| 2525 | 2525 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -2534,7 +2534,7 @@ discard block |
||
| 2534 | 2534 | $Connection = new Connection(); |
| 2535 | 2535 | $sth = $Connection->db->prepare($query); |
| 2536 | 2536 | $sth->execute(); |
| 2537 | - } catch(PDOException $e) { |
|
| 2537 | + } catch (PDOException $e) { |
|
| 2538 | 2538 | return "error : ".$e->getMessage(); |
| 2539 | 2539 | } |
| 2540 | 2540 | } |
@@ -2550,7 +2550,7 @@ discard block |
||
| 2550 | 2550 | $Connection = new Connection(); |
| 2551 | 2551 | $sth = $Connection->db->prepare($query); |
| 2552 | 2552 | $sth->execute(); |
| 2553 | - } catch(PDOException $e) { |
|
| 2553 | + } catch (PDOException $e) { |
|
| 2554 | 2554 | return "error : ".$e->getMessage(); |
| 2555 | 2555 | } |
| 2556 | 2556 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -2565,7 +2565,7 @@ discard block |
||
| 2565 | 2565 | $Connection = new Connection(); |
| 2566 | 2566 | $sth = $Connection->db->prepare($query); |
| 2567 | 2567 | $sth->execute(); |
| 2568 | - } catch(PDOException $e) { |
|
| 2568 | + } catch (PDOException $e) { |
|
| 2569 | 2569 | return "error : ".$e->getMessage(); |
| 2570 | 2570 | } |
| 2571 | 2571 | } |
@@ -2580,7 +2580,7 @@ discard block |
||
| 2580 | 2580 | $Connection = new Connection(); |
| 2581 | 2581 | $sth = $Connection->db->prepare($query); |
| 2582 | 2582 | $sth->execute(); |
| 2583 | - } catch(PDOException $e) { |
|
| 2583 | + } catch (PDOException $e) { |
|
| 2584 | 2584 | return "error : ".$e->getMessage(); |
| 2585 | 2585 | } |
| 2586 | 2586 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -2595,7 +2595,7 @@ discard block |
||
| 2595 | 2595 | $Connection = new Connection(); |
| 2596 | 2596 | $sth = $Connection->db->prepare($query); |
| 2597 | 2597 | $sth->execute(); |
| 2598 | - } catch(PDOException $e) { |
|
| 2598 | + } catch (PDOException $e) { |
|
| 2599 | 2599 | return "error : ".$e->getMessage(); |
| 2600 | 2600 | } |
| 2601 | 2601 | } |
@@ -2610,7 +2610,7 @@ discard block |
||
| 2610 | 2610 | $Connection = new Connection(); |
| 2611 | 2611 | $sth = $Connection->db->prepare($query); |
| 2612 | 2612 | $sth->execute(); |
| 2613 | - } catch(PDOException $e) { |
|
| 2613 | + } catch (PDOException $e) { |
|
| 2614 | 2614 | return "error : ".$e->getMessage(); |
| 2615 | 2615 | } |
| 2616 | 2616 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -2625,7 +2625,7 @@ discard block |
||
| 2625 | 2625 | $Connection = new Connection(); |
| 2626 | 2626 | $sth = $Connection->db->prepare($query); |
| 2627 | 2627 | $sth->execute(); |
| 2628 | - } catch(PDOException $e) { |
|
| 2628 | + } catch (PDOException $e) { |
|
| 2629 | 2629 | return "error : ".$e->getMessage(); |
| 2630 | 2630 | } |
| 2631 | 2631 | } |
@@ -2640,7 +2640,7 @@ discard block |
||
| 2640 | 2640 | $Connection = new Connection(); |
| 2641 | 2641 | $sth = $Connection->db->prepare($query); |
| 2642 | 2642 | $sth->execute(); |
| 2643 | - } catch(PDOException $e) { |
|
| 2643 | + } catch (PDOException $e) { |
|
| 2644 | 2644 | return "error : ".$e->getMessage(); |
| 2645 | 2645 | } |
| 2646 | 2646 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -2655,7 +2655,7 @@ discard block |
||
| 2655 | 2655 | $Connection = new Connection(); |
| 2656 | 2656 | $sth = $Connection->db->prepare($query); |
| 2657 | 2657 | $sth->execute(); |
| 2658 | - } catch(PDOException $e) { |
|
| 2658 | + } catch (PDOException $e) { |
|
| 2659 | 2659 | return "error : ".$e->getMessage(); |
| 2660 | 2660 | } |
| 2661 | 2661 | } |
@@ -2670,7 +2670,7 @@ discard block |
||
| 2670 | 2670 | $Connection = new Connection(); |
| 2671 | 2671 | $sth = $Connection->db->prepare($query); |
| 2672 | 2672 | $sth->execute(); |
| 2673 | - } catch(PDOException $e) { |
|
| 2673 | + } catch (PDOException $e) { |
|
| 2674 | 2674 | return "error : ".$e->getMessage(); |
| 2675 | 2675 | } |
| 2676 | 2676 | } |
@@ -2685,7 +2685,7 @@ discard block |
||
| 2685 | 2685 | $Connection = new Connection(); |
| 2686 | 2686 | $sth = $Connection->db->prepare($query); |
| 2687 | 2687 | $sth->execute(); |
| 2688 | - } catch(PDOException $e) { |
|
| 2688 | + } catch (PDOException $e) { |
|
| 2689 | 2689 | return "error : ".$e->getMessage(); |
| 2690 | 2690 | } |
| 2691 | 2691 | } |
@@ -16,7 +16,9 @@ discard block |
||
| 16 | 16 | curl_setopt($ch, CURLOPT_URL, $url); |
| 17 | 17 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
| 18 | 18 | curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); |
| 19 | - if ($referer != '') curl_setopt($ch, CURLOPT_REFERER, $referer); |
|
| 19 | + if ($referer != '') { |
|
| 20 | + curl_setopt($ch, CURLOPT_REFERER, $referer); |
|
| 21 | + } |
|
| 20 | 22 | 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'); |
| 21 | 23 | curl_setopt($ch, CURLOPT_FILE, $fp); |
| 22 | 24 | curl_exec($ch); |
@@ -27,12 +29,16 @@ discard block |
||
| 27 | 29 | public static function gunzip($in_file,$out_file_name = '') { |
| 28 | 30 | //echo $in_file.' -> '.$out_file_name."\n"; |
| 29 | 31 | $buffer_size = 4096; // read 4kb at a time |
| 30 | - if ($out_file_name == '') $out_file_name = str_replace('.gz', '', $in_file); |
|
| 32 | + if ($out_file_name == '') { |
|
| 33 | + $out_file_name = str_replace('.gz', '', $in_file); |
|
| 34 | + } |
|
| 31 | 35 | if ($in_file != '' && file_exists($in_file)) { |
| 32 | 36 | // PHP version of Ubuntu use gzopen64 instead of gzopen |
| 33 | - if (function_exists('gzopen')) $file = gzopen($in_file,'rb'); |
|
| 34 | - elseif (function_exists('gzopen64')) $file = gzopen64($in_file,'rb'); |
|
| 35 | - else { |
|
| 37 | + if (function_exists('gzopen')) { |
|
| 38 | + $file = gzopen($in_file,'rb'); |
|
| 39 | + } elseif (function_exists('gzopen64')) { |
|
| 40 | + $file = gzopen64($in_file,'rb'); |
|
| 41 | + } else { |
|
| 36 | 42 | echo 'gzopen not available'; |
| 37 | 43 | die; |
| 38 | 44 | } |
@@ -53,8 +59,12 @@ discard block |
||
| 53 | 59 | if ($res === TRUE) { |
| 54 | 60 | $zip->extractTo($path); |
| 55 | 61 | $zip->close(); |
| 56 | - } else return false; |
|
| 57 | - } else return false; |
|
| 62 | + } else { |
|
| 63 | + return false; |
|
| 64 | + } |
|
| 65 | + } else { |
|
| 66 | + return false; |
|
| 67 | + } |
|
| 58 | 68 | } |
| 59 | 69 | |
| 60 | 70 | public static function connect_sqlite($database) { |
@@ -69,7 +79,9 @@ discard block |
||
| 69 | 79 | public static function retrieve_route_sqlite_to_dest($database_file) { |
| 70 | 80 | global $globalDebug, $globalTransaction; |
| 71 | 81 | //$query = 'TRUNCATE TABLE routes'; |
| 72 | - if ($globalDebug) echo " - Delete previous routes from DB -"; |
|
| 82 | + if ($globalDebug) { |
|
| 83 | + echo " - Delete previous routes from DB -"; |
|
| 84 | + } |
|
| 73 | 85 | $query = "DELETE FROM routes WHERE Source = '' OR Source = :source"; |
| 74 | 86 | $Connection = new Connection(); |
| 75 | 87 | try { |
@@ -80,7 +92,9 @@ discard block |
||
| 80 | 92 | return "error : ".$e->getMessage(); |
| 81 | 93 | } |
| 82 | 94 | |
| 83 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
| 95 | + if ($globalDebug) { |
|
| 96 | + echo " - Add routes to DB -"; |
|
| 97 | + } |
|
| 84 | 98 | update_db::connect_sqlite($database_file); |
| 85 | 99 | //$query = 'select Route.RouteID, Route.callsign, operator.Icao AS operator_icao, FromAir.Icao AS FromAirportIcao, ToAir.Icao AS ToAirportIcao from Route inner join operator ON Route.operatorId = operator.operatorId LEFT JOIN Airport AS FromAir ON route.FromAirportId = FromAir.AirportId LEFT JOIN Airport AS ToAir ON ToAir.AirportID = route.ToAirportID'; |
| 86 | 100 | $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"; |
@@ -95,15 +109,21 @@ discard block |
||
| 95 | 109 | $Connection = new Connection(); |
| 96 | 110 | $sth_dest = $Connection->db->prepare($query_dest); |
| 97 | 111 | try { |
| 98 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 112 | + if ($globalTransaction) { |
|
| 113 | + $Connection->db->beginTransaction(); |
|
| 114 | + } |
|
| 99 | 115 | while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
| 100 | 116 | //$query_dest_values = array(':RouteID' => $values['RouteId'],':CallSign' => $values['Callsign'],':Operator_ICAO' => $values['operator_icao'],':FromAirport_ICAO' => $values['FromAirportIcao'],':ToAirport_ICAO' => $values['ToAirportIcao'],':routestop' => $values['AllStop'],':source' => $database_file); |
| 101 | 117 | $query_dest_values = array(':CallSign' => $values['Callsign'],':Operator_ICAO' => $values['operator_icao'],':FromAirport_ICAO' => $values['FromAirportIcao'],':ToAirport_ICAO' => $values['ToAirportIcao'],':routestop' => $values['AllStop'],':source' => $database_file); |
| 102 | 118 | $sth_dest->execute($query_dest_values); |
| 103 | 119 | } |
| 104 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 120 | + if ($globalTransaction) { |
|
| 121 | + $Connection->db->commit(); |
|
| 122 | + } |
|
| 105 | 123 | } catch(PDOException $e) { |
| 106 | - if ($globalTransaction) $Connection->db->rollBack(); |
|
| 124 | + if ($globalTransaction) { |
|
| 125 | + $Connection->db->rollBack(); |
|
| 126 | + } |
|
| 107 | 127 | return "error : ".$e->getMessage(); |
| 108 | 128 | } |
| 109 | 129 | return ''; |
@@ -111,7 +131,9 @@ discard block |
||
| 111 | 131 | public static function retrieve_route_oneworld($database_file) { |
| 112 | 132 | global $globalDebug, $globalTransaction; |
| 113 | 133 | //$query = 'TRUNCATE TABLE routes'; |
| 114 | - if ($globalDebug) echo " - Delete previous routes from DB -"; |
|
| 134 | + if ($globalDebug) { |
|
| 135 | + echo " - Delete previous routes from DB -"; |
|
| 136 | + } |
|
| 115 | 137 | $query = "DELETE FROM routes WHERE Source = '' OR Source = :source"; |
| 116 | 138 | $Connection = new Connection(); |
| 117 | 139 | try { |
@@ -122,14 +144,18 @@ discard block |
||
| 122 | 144 | return "error : ".$e->getMessage(); |
| 123 | 145 | } |
| 124 | 146 | |
| 125 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
| 147 | + if ($globalDebug) { |
|
| 148 | + echo " - Add routes to DB -"; |
|
| 149 | + } |
|
| 126 | 150 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 127 | 151 | $Spotter = new Spotter(); |
| 128 | 152 | if ($fh = fopen($database_file,"r")) { |
| 129 | 153 | $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)'; |
| 130 | 154 | $Connection = new Connection(); |
| 131 | 155 | $sth_dest = $Connection->db->prepare($query_dest); |
| 132 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 156 | + if ($globalTransaction) { |
|
| 157 | + $Connection->db->beginTransaction(); |
|
| 158 | + } |
|
| 133 | 159 | while (!feof($fh)) { |
| 134 | 160 | $line = fgetcsv($fh,9999,','); |
| 135 | 161 | if ($line[0] != '') { |
@@ -138,13 +164,17 @@ discard block |
||
| 138 | 164 | $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'); |
| 139 | 165 | $sth_dest->execute($query_dest_values); |
| 140 | 166 | } catch(PDOException $e) { |
| 141 | - if ($globalTransaction) $Connection->db->rollBack(); |
|
| 167 | + if ($globalTransaction) { |
|
| 168 | + $Connection->db->rollBack(); |
|
| 169 | + } |
|
| 142 | 170 | return "error : ".$e->getMessage(); |
| 143 | 171 | } |
| 144 | 172 | } |
| 145 | 173 | } |
| 146 | 174 | } |
| 147 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 175 | + if ($globalTransaction) { |
|
| 176 | + $Connection->db->commit(); |
|
| 177 | + } |
|
| 148 | 178 | } |
| 149 | 179 | return ''; |
| 150 | 180 | } |
@@ -152,7 +182,9 @@ discard block |
||
| 152 | 182 | public static function retrieve_route_skyteam($database_file) { |
| 153 | 183 | global $globalDebug, $globalTransaction; |
| 154 | 184 | //$query = 'TRUNCATE TABLE routes'; |
| 155 | - if ($globalDebug) echo " - Delete previous routes from DB -"; |
|
| 185 | + if ($globalDebug) { |
|
| 186 | + echo " - Delete previous routes from DB -"; |
|
| 187 | + } |
|
| 156 | 188 | $query = "DELETE FROM routes WHERE Source = '' OR Source = :source"; |
| 157 | 189 | $Connection = new Connection(); |
| 158 | 190 | try { |
@@ -163,7 +195,9 @@ discard block |
||
| 163 | 195 | return "error : ".$e->getMessage(); |
| 164 | 196 | } |
| 165 | 197 | |
| 166 | - if ($globalDebug) echo " - Add routes to DB -"; |
|
| 198 | + if ($globalDebug) { |
|
| 199 | + echo " - Add routes to DB -"; |
|
| 200 | + } |
|
| 167 | 201 | |
| 168 | 202 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 169 | 203 | $Spotter = new Spotter(); |
@@ -172,7 +206,9 @@ discard block |
||
| 172 | 206 | $Connection = new Connection(); |
| 173 | 207 | $sth_dest = $Connection->db->prepare($query_dest); |
| 174 | 208 | try { |
| 175 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 209 | + if ($globalTransaction) { |
|
| 210 | + $Connection->db->beginTransaction(); |
|
| 211 | + } |
|
| 176 | 212 | while (!feof($fh)) { |
| 177 | 213 | $line = fgetcsv($fh,9999,','); |
| 178 | 214 | if ($line[0] != '') { |
@@ -183,9 +219,13 @@ discard block |
||
| 183 | 219 | } |
| 184 | 220 | } |
| 185 | 221 | } |
| 186 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 222 | + if ($globalTransaction) { |
|
| 223 | + $Connection->db->commit(); |
|
| 224 | + } |
|
| 187 | 225 | } catch(PDOException $e) { |
| 188 | - if ($globalTransaction) $Connection->db->rollBack(); |
|
| 226 | + if ($globalTransaction) { |
|
| 227 | + $Connection->db->rollBack(); |
|
| 228 | + } |
|
| 189 | 229 | return "error : ".$e->getMessage(); |
| 190 | 230 | } |
| 191 | 231 | } |
@@ -228,11 +268,16 @@ discard block |
||
| 228 | 268 | $sth_dest = $Connection->db->prepare($query_dest); |
| 229 | 269 | $sth_dest_owner = $Connection->db->prepare($query_dest_owner); |
| 230 | 270 | try { |
| 231 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 271 | + if ($globalTransaction) { |
|
| 272 | + $Connection->db->beginTransaction(); |
|
| 273 | + } |
|
| 232 | 274 | while ($values = $sth->fetch(PDO::FETCH_ASSOC)) { |
| 233 | 275 | //$query_dest_values = array(':AircraftID' => $values['AircraftID'],':FirstCreated' => $values['FirstCreated'],':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':SerialNo' => $values['SerialNo'], ':OperatorFlagCode' => $values['OperatorFlagCode'], ':Manufacturer' => $values['Manufacturer'], ':Type' => $values['Type'], ':FirstRegDate' => $values['FirstRegDate'], ':CurrentRegDate' => $values['CurrentRegDate'], ':Country' => $values['Country'], ':PreviousID' => $values['PreviousID'], ':DeRegDate' => $values['DeRegDate'], ':Status' => $values['Status'], ':PopularName' => $values['PopularName'],':GenericName' => $values['GenericName'],':AircraftClass' => $values['AircraftClass'], ':Engines' => $values['Engines'], ':OwnershipStatus' => $values['OwnershipStatus'],':RegisteredOwners' => $values['RegisteredOwners'],':MTOW' => $values['MTOW'], ':TotalHours' => $values['TotalHours'],':YearBuilt' => $values['YearBuilt'], ':CofACategory' => $values['CofACategory'], ':CofAExpiry' => $values['CofAExpiry'], ':UserNotes' => $values['UserNotes'], ':Interested' => $values['Interested'], ':UserTag' => $values['UserTag'], ':InfoUrl' => $values['InfoURL'], ':PictureUrl1' => $values['PictureURL1'], ':PictureUrl2' => $values['PictureURL2'], ':PictureUrl3' => $values['PictureURL3'], ':UserBool1' => $values['UserBool1'], ':UserBool2' => $values['UserBool2'], ':UserBool3' => $values['UserBool3'], ':UserBool4' => $values['UserBool4'], ':UserBool5' => $values['UserBool5'], ':UserString1' => $values['UserString1'], ':UserString2' => $values['UserString2'], ':UserString3' => $values['UserString3'], ':UserString4' => $values['UserString4'], ':UserString5' => $values['UserString5'], ':UserInt1' => $values['UserInt1'], ':UserInt2' => $values['UserInt2'], ':UserInt3' => $values['UserInt3'], ':UserInt4' => $values['UserInt4'], ':UserInt5' => $values['UserInt5']); |
| 234 | - if ($values['UserString4'] == 'M') $type = 'military'; |
|
| 235 | - else $type = null; |
|
| 276 | + if ($values['UserString4'] == 'M') { |
|
| 277 | + $type = 'military'; |
|
| 278 | + } else { |
|
| 279 | + $type = null; |
|
| 280 | + } |
|
| 236 | 281 | $query_dest_values = array(':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':source' => $database_file,':type' => $type); |
| 237 | 282 | $sth_dest->execute($query_dest_values); |
| 238 | 283 | if ($values['RegisteredOwners'] != '' && $values['RegisteredOwners'] != NULL && $values['RegisteredOwners'] != 'Private') { |
@@ -240,7 +285,9 @@ discard block |
||
| 240 | 285 | $sth_dest_owner->execute($query_dest_owner_values); |
| 241 | 286 | } |
| 242 | 287 | } |
| 243 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 288 | + if ($globalTransaction) { |
|
| 289 | + $Connection->db->commit(); |
|
| 290 | + } |
|
| 244 | 291 | } catch(PDOException $e) { |
| 245 | 292 | return "error : ".$e->getMessage(); |
| 246 | 293 | } |
@@ -277,7 +324,9 @@ discard block |
||
| 277 | 324 | $Connection = new Connection(); |
| 278 | 325 | $sth_dest = $Connection->db->prepare($query_dest); |
| 279 | 326 | try { |
| 280 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 327 | + if ($globalTransaction) { |
|
| 328 | + $Connection->db->beginTransaction(); |
|
| 329 | + } |
|
| 281 | 330 | while (!feof($fh)) { |
| 282 | 331 | $values = array(); |
| 283 | 332 | $line = $Common->hex2str(fgets($fh,9999)); |
@@ -288,7 +337,9 @@ discard block |
||
| 288 | 337 | // Check if we can find ICAO, else set it to GLID |
| 289 | 338 | $aircraft_name_split = explode(' ',$aircraft_name); |
| 290 | 339 | $search_more = ''; |
| 291 | - if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
| 340 | + if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) { |
|
| 341 | + $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
| 342 | + } |
|
| 292 | 343 | $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
| 293 | 344 | $sth_search = $Connection->db->prepare($query_search); |
| 294 | 345 | try { |
@@ -301,7 +352,9 @@ discard block |
||
| 301 | 352 | } catch(PDOException $e) { |
| 302 | 353 | return "error : ".$e->getMessage(); |
| 303 | 354 | } |
| 304 | - if (!isset($values['ICAOTypeCode'])) $values['ICAOTypeCode'] = 'GLID'; |
|
| 355 | + if (!isset($values['ICAOTypeCode'])) { |
|
| 356 | + $values['ICAOTypeCode'] = 'GLID'; |
|
| 357 | + } |
|
| 305 | 358 | // Add data to db |
| 306 | 359 | if ($values['Registration'] != '' && $values['Registration'] != '0000') { |
| 307 | 360 | //$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']); |
@@ -310,7 +363,9 @@ discard block |
||
| 310 | 363 | $sth_dest->execute($query_dest_values); |
| 311 | 364 | } |
| 312 | 365 | } |
| 313 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 366 | + if ($globalTransaction) { |
|
| 367 | + $Connection->db->commit(); |
|
| 368 | + } |
|
| 314 | 369 | } catch(PDOException $e) { |
| 315 | 370 | return "error : ".$e->getMessage(); |
| 316 | 371 | } |
@@ -346,7 +401,9 @@ discard block |
||
| 346 | 401 | $Connection = new Connection(); |
| 347 | 402 | $sth_dest = $Connection->db->prepare($query_dest); |
| 348 | 403 | try { |
| 349 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 404 | + if ($globalTransaction) { |
|
| 405 | + $Connection->db->beginTransaction(); |
|
| 406 | + } |
|
| 350 | 407 | $tmp = fgetcsv($fh,9999,',',"'"); |
| 351 | 408 | while (!feof($fh)) { |
| 352 | 409 | $line = fgetcsv($fh,9999,',',"'"); |
@@ -359,13 +416,17 @@ discard block |
||
| 359 | 416 | // Check if we can find ICAO, else set it to GLID |
| 360 | 417 | $aircraft_name_split = explode(' ',$aircraft_name); |
| 361 | 418 | $search_more = ''; |
| 362 | - if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
| 419 | + if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) { |
|
| 420 | + $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'"; |
|
| 421 | + } |
|
| 363 | 422 | $query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more; |
| 364 | 423 | $sth_search = $Connection->db->prepare($query_search); |
| 365 | 424 | try { |
| 366 | 425 | $sth_search->execute(); |
| 367 | 426 | $result = $sth_search->fetch(PDO::FETCH_ASSOC); |
| 368 | - if (isset($result['icao']) && $result['icao'] != '') $values['ICAOTypeCode'] = $result['icao']; |
|
| 427 | + if (isset($result['icao']) && $result['icao'] != '') { |
|
| 428 | + $values['ICAOTypeCode'] = $result['icao']; |
|
| 429 | + } |
|
| 369 | 430 | } catch(PDOException $e) { |
| 370 | 431 | return "error : ".$e->getMessage(); |
| 371 | 432 | } |
@@ -378,7 +439,9 @@ discard block |
||
| 378 | 439 | $sth_dest->execute($query_dest_values); |
| 379 | 440 | } |
| 380 | 441 | } |
| 381 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 442 | + if ($globalTransaction) { |
|
| 443 | + $Connection->db->commit(); |
|
| 444 | + } |
|
| 382 | 445 | } catch(PDOException $e) { |
| 383 | 446 | return "error : ".$e->getMessage(); |
| 384 | 447 | } |
@@ -417,7 +480,9 @@ discard block |
||
| 417 | 480 | $sth_dest = $Connection->db->prepare($query_dest); |
| 418 | 481 | $sth_modes = $Connection->db->prepare($query_modes); |
| 419 | 482 | try { |
| 420 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 483 | + if ($globalTransaction) { |
|
| 484 | + $Connection->db->beginTransaction(); |
|
| 485 | + } |
|
| 421 | 486 | $tmp = fgetcsv($fh,9999,',','"'); |
| 422 | 487 | while (!feof($fh)) { |
| 423 | 488 | $line = fgetcsv($fh,9999,',','"'); |
@@ -427,16 +492,22 @@ discard block |
||
| 427 | 492 | $values['registration'] = $line[0]; |
| 428 | 493 | $values['base'] = $line[4]; |
| 429 | 494 | $values['owner'] = $line[5]; |
| 430 | - if ($line[6] == '') $values['date_first_reg'] = null; |
|
| 431 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
| 495 | + if ($line[6] == '') { |
|
| 496 | + $values['date_first_reg'] = null; |
|
| 497 | + } else { |
|
| 498 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
| 499 | + } |
|
| 432 | 500 | $values['cancel'] = $line[7]; |
| 433 | 501 | } elseif ($country == 'EI') { |
| 434 | 502 | // TODO : add modeS & reg to aircraft_modes |
| 435 | 503 | $values['registration'] = $line[0]; |
| 436 | 504 | $values['base'] = $line[3]; |
| 437 | 505 | $values['owner'] = $line[2]; |
| 438 | - if ($line[1] == '') $values['date_first_reg'] = null; |
|
| 439 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[1])); |
|
| 506 | + if ($line[1] == '') { |
|
| 507 | + $values['date_first_reg'] = null; |
|
| 508 | + } else { |
|
| 509 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[1])); |
|
| 510 | + } |
|
| 440 | 511 | $values['cancel'] = ''; |
| 441 | 512 | $values['modes'] = $line[7]; |
| 442 | 513 | $values['icao'] = $line[8]; |
@@ -455,16 +526,22 @@ discard block |
||
| 455 | 526 | $values['registration'] = $line[3]; |
| 456 | 527 | $values['base'] = null; |
| 457 | 528 | $values['owner'] = $line[5]; |
| 458 | - if ($line[18] == '') $values['date_first_reg'] = null; |
|
| 459 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[18])); |
|
| 529 | + if ($line[18] == '') { |
|
| 530 | + $values['date_first_reg'] = null; |
|
| 531 | + } else { |
|
| 532 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[18])); |
|
| 533 | + } |
|
| 460 | 534 | $values['cancel'] = ''; |
| 461 | 535 | } elseif ($country == 'VH') { |
| 462 | 536 | // TODO : add modeS & reg to aircraft_modes |
| 463 | 537 | $values['registration'] = $line[0]; |
| 464 | 538 | $values['base'] = null; |
| 465 | 539 | $values['owner'] = $line[12]; |
| 466 | - if ($line[28] == '') $values['date_first_reg'] = null; |
|
| 467 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[28])); |
|
| 540 | + if ($line[28] == '') { |
|
| 541 | + $values['date_first_reg'] = null; |
|
| 542 | + } else { |
|
| 543 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[28])); |
|
| 544 | + } |
|
| 468 | 545 | |
| 469 | 546 | $values['cancel'] = $line[39]; |
| 470 | 547 | } elseif ($country == 'OE' || $country == '9A' || $country == 'VP' || $country == 'LX' || $country == 'P2' || $country == 'HC') { |
@@ -483,29 +560,41 @@ discard block |
||
| 483 | 560 | $values['registration'] = $line[0]; |
| 484 | 561 | $values['base'] = null; |
| 485 | 562 | $values['owner'] = $line[8]; |
| 486 | - if ($line[7] == '') $values['date_first_reg'] = null; |
|
| 487 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
| 563 | + if ($line[7] == '') { |
|
| 564 | + $values['date_first_reg'] = null; |
|
| 565 | + } else { |
|
| 566 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
| 567 | + } |
|
| 488 | 568 | $values['cancel'] = ''; |
| 489 | 569 | } elseif ($country == 'PP') { |
| 490 | 570 | $values['registration'] = $line[0]; |
| 491 | 571 | $values['base'] = null; |
| 492 | 572 | $values['owner'] = $line[4]; |
| 493 | - if ($line[6] == '') $values['date_first_reg'] = null; |
|
| 494 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
| 573 | + if ($line[6] == '') { |
|
| 574 | + $values['date_first_reg'] = null; |
|
| 575 | + } else { |
|
| 576 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[6])); |
|
| 577 | + } |
|
| 495 | 578 | $values['cancel'] = $line[7]; |
| 496 | 579 | } elseif ($country == 'E7') { |
| 497 | 580 | $values['registration'] = $line[0]; |
| 498 | 581 | $values['base'] = null; |
| 499 | 582 | $values['owner'] = $line[4]; |
| 500 | - if ($line[5] == '') $values['date_first_reg'] = null; |
|
| 501 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
| 583 | + if ($line[5] == '') { |
|
| 584 | + $values['date_first_reg'] = null; |
|
| 585 | + } else { |
|
| 586 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[5])); |
|
| 587 | + } |
|
| 502 | 588 | $values['cancel'] = ''; |
| 503 | 589 | } elseif ($country == '8Q') { |
| 504 | 590 | $values['registration'] = $line[0]; |
| 505 | 591 | $values['base'] = null; |
| 506 | 592 | $values['owner'] = $line[3]; |
| 507 | - if ($line[7] == '') $values['date_first_reg'] = null; |
|
| 508 | - else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
| 593 | + if ($line[7] == '') { |
|
| 594 | + $values['date_first_reg'] = null; |
|
| 595 | + } else { |
|
| 596 | + $values['date_first_reg'] = date("Y-m-d",strtotime($line[7])); |
|
| 597 | + } |
|
| 509 | 598 | $values['cancel'] = ''; |
| 510 | 599 | } elseif ($country == 'ZK') { |
| 511 | 600 | $values['registration'] = $line[0]; |
@@ -550,7 +639,9 @@ discard block |
||
| 550 | 639 | $sth_modes->execute($query_modes_values); |
| 551 | 640 | } |
| 552 | 641 | } |
| 553 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 642 | + if ($globalTransaction) { |
|
| 643 | + $Connection->db->commit(); |
|
| 644 | + } |
|
| 554 | 645 | } catch(PDOException $e) { |
| 555 | 646 | return "error : ".$e->getMessage(); |
| 556 | 647 | } |
@@ -684,25 +775,45 @@ discard block |
||
| 684 | 775 | VALUES (:airport_id, :name, :city, :country, :iata, :icao, :latitude, :longitude, :altitude, :type, :home_link, :wikipedia_link, :image_thumb, :image)"; |
| 685 | 776 | $Connection = new Connection(); |
| 686 | 777 | $sth_dest = $Connection->db->prepare($query_dest); |
| 687 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 778 | + if ($globalTransaction) { |
|
| 779 | + $Connection->db->beginTransaction(); |
|
| 780 | + } |
|
| 688 | 781 | |
| 689 | 782 | $i = 0; |
| 690 | 783 | while($row = sparql_fetch_array($result)) |
| 691 | 784 | { |
| 692 | 785 | if ($i >= 1) { |
| 693 | 786 | //print_r($row); |
| 694 | - if (!isset($row['iata'])) $row['iata'] = ''; |
|
| 695 | - if (!isset($row['icao'])) $row['icao'] = ''; |
|
| 696 | - if (!isset($row['type'])) $row['type'] = ''; |
|
| 697 | - if (!isset($row['altitude'])) $row['altitude'] = ''; |
|
| 787 | + if (!isset($row['iata'])) { |
|
| 788 | + $row['iata'] = ''; |
|
| 789 | + } |
|
| 790 | + if (!isset($row['icao'])) { |
|
| 791 | + $row['icao'] = ''; |
|
| 792 | + } |
|
| 793 | + if (!isset($row['type'])) { |
|
| 794 | + $row['type'] = ''; |
|
| 795 | + } |
|
| 796 | + if (!isset($row['altitude'])) { |
|
| 797 | + $row['altitude'] = ''; |
|
| 798 | + } |
|
| 698 | 799 | if (isset($row['city_bis'])) { |
| 699 | 800 | $row['city'] = $row['city_bis']; |
| 700 | 801 | } |
| 701 | - if (!isset($row['city'])) $row['city'] = ''; |
|
| 702 | - if (!isset($row['country'])) $row['country'] = ''; |
|
| 703 | - if (!isset($row['homepage'])) $row['homepage'] = ''; |
|
| 704 | - if (!isset($row['wikipedia_page'])) $row['wikipedia_page'] = ''; |
|
| 705 | - if (!isset($row['name'])) continue; |
|
| 802 | + if (!isset($row['city'])) { |
|
| 803 | + $row['city'] = ''; |
|
| 804 | + } |
|
| 805 | + if (!isset($row['country'])) { |
|
| 806 | + $row['country'] = ''; |
|
| 807 | + } |
|
| 808 | + if (!isset($row['homepage'])) { |
|
| 809 | + $row['homepage'] = ''; |
|
| 810 | + } |
|
| 811 | + if (!isset($row['wikipedia_page'])) { |
|
| 812 | + $row['wikipedia_page'] = ''; |
|
| 813 | + } |
|
| 814 | + if (!isset($row['name'])) { |
|
| 815 | + continue; |
|
| 816 | + } |
|
| 706 | 817 | if (!isset($row['image'])) { |
| 707 | 818 | $row['image'] = ''; |
| 708 | 819 | $row['image_thumb'] = ''; |
@@ -738,7 +849,9 @@ discard block |
||
| 738 | 849 | |
| 739 | 850 | $i++; |
| 740 | 851 | } |
| 741 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 852 | + if ($globalTransaction) { |
|
| 853 | + $Connection->db->commit(); |
|
| 854 | + } |
|
| 742 | 855 | echo "Delete duplicate rows...\n"; |
| 743 | 856 | $query = 'ALTER IGNORE TABLE airport ADD UNIQUE INDEX icaoidx (icao)'; |
| 744 | 857 | try { |
@@ -750,7 +863,9 @@ discard block |
||
| 750 | 863 | } |
| 751 | 864 | |
| 752 | 865 | |
| 753 | - if ($globalDebug) echo "Insert Not available Airport...\n"; |
|
| 866 | + if ($globalDebug) { |
|
| 867 | + echo "Insert Not available Airport...\n"; |
|
| 868 | + } |
|
| 754 | 869 | $query = "INSERT INTO airport (`airport_id`,`name`,`city`,`country`,`iata`,`icao`,`latitude`,`longitude`,`altitude`,`type`,`home_link`,`wikipedia_link`,`image`,`image_thumb`) |
| 755 | 870 | VALUES (:airport_id, :name, :city, :country, :iata, :icao, :latitude, :longitude, :altitude, :type, :home_link, :wikipedia_link, :image, :image_thumb)"; |
| 756 | 871 | $query_values = array(':airport_id' => $i, ':name' => 'Not available',':iata' => 'NA',':icao' => 'NA',':latitude' => '0',':longitude' => '0',':altitude' => '0',':type' => 'NA',':city' => 'N/A',':country' => 'N/A',':home_link' => '',':wikipedia_link' => '',':image' => '',':image_thumb' => ''); |
@@ -777,7 +892,9 @@ discard block |
||
| 777 | 892 | $delimiter = ','; |
| 778 | 893 | $out_file = $tmp_dir.'airports.csv'; |
| 779 | 894 | update_db::download('http://ourairports.com/data/airports.csv',$out_file); |
| 780 | - if (!file_exists($out_file) || !is_readable($out_file)) return FALSE; |
|
| 895 | + if (!file_exists($out_file) || !is_readable($out_file)) { |
|
| 896 | + return FALSE; |
|
| 897 | + } |
|
| 781 | 898 | echo "Add data from ourairports.com...\n"; |
| 782 | 899 | |
| 783 | 900 | $header = NULL; |
@@ -787,8 +904,9 @@ discard block |
||
| 787 | 904 | //$Connection->db->beginTransaction(); |
| 788 | 905 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 789 | 906 | { |
| 790 | - if(!$header) $header = $row; |
|
| 791 | - else { |
|
| 907 | + if(!$header) { |
|
| 908 | + $header = $row; |
|
| 909 | + } else { |
|
| 792 | 910 | $data = array(); |
| 793 | 911 | $data = array_combine($header, $row); |
| 794 | 912 | try { |
@@ -826,7 +944,9 @@ discard block |
||
| 826 | 944 | echo "Download data from another free database...\n"; |
| 827 | 945 | $out_file = $tmp_dir.'GlobalAirportDatabase.zip'; |
| 828 | 946 | update_db::download('http://www.partow.net/downloads/GlobalAirportDatabase.zip',$out_file); |
| 829 | - if (!file_exists($out_file) || !is_readable($out_file)) return FALSE; |
|
| 947 | + if (!file_exists($out_file) || !is_readable($out_file)) { |
|
| 948 | + return FALSE; |
|
| 949 | + } |
|
| 830 | 950 | update_db::unzip($out_file); |
| 831 | 951 | $header = NULL; |
| 832 | 952 | echo "Add data from another free database...\n"; |
@@ -837,8 +957,9 @@ discard block |
||
| 837 | 957 | //$Connection->db->beginTransaction(); |
| 838 | 958 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 839 | 959 | { |
| 840 | - if(!$header) $header = $row; |
|
| 841 | - else { |
|
| 960 | + if(!$header) { |
|
| 961 | + $header = $row; |
|
| 962 | + } else { |
|
| 842 | 963 | $data = $row; |
| 843 | 964 | |
| 844 | 965 | $query = 'UPDATE airport SET `city` = :city, `country` = :country WHERE icao = :icao'; |
@@ -1014,7 +1135,9 @@ discard block |
||
| 1014 | 1135 | if (($handle = fopen($tmp_dir.'MASTER.txt', 'r')) !== FALSE) |
| 1015 | 1136 | { |
| 1016 | 1137 | $i = 0; |
| 1017 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 1138 | + if ($globalTransaction) { |
|
| 1139 | + $Connection->db->beginTransaction(); |
|
| 1140 | + } |
|
| 1018 | 1141 | while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 1019 | 1142 | { |
| 1020 | 1143 | if ($i > 0) { |
@@ -1027,7 +1150,9 @@ discard block |
||
| 1027 | 1150 | } |
| 1028 | 1151 | $result_search = $sths->fetchAll(PDO::FETCH_ASSOC); |
| 1029 | 1152 | if (!empty($result_search)) { |
| 1030 | - if ($globalDebug) echo '.'; |
|
| 1153 | + if ($globalDebug) { |
|
| 1154 | + echo '.'; |
|
| 1155 | + } |
|
| 1031 | 1156 | //if ($globalDBdriver == 'mysql') { |
| 1032 | 1157 | // $queryi = 'INSERT INTO faamfr (mfr,icao) VALUES (:mfr,:icao) ON DUPLICATE KEY UPDATE icao = :icao'; |
| 1033 | 1158 | //} else { |
@@ -1049,8 +1174,12 @@ discard block |
||
| 1049 | 1174 | } |
| 1050 | 1175 | $result_search_mfr = $sthsm->fetchAll(PDO::FETCH_ASSOC); |
| 1051 | 1176 | if (!empty($result_search_mfr)) { |
| 1052 | - if (trim($data[16]) == '' && trim($data[23]) != '') $data[16] = $data[23]; |
|
| 1053 | - if (trim($data[16]) == '' && trim($data[15]) != '') $data[16] = $data[15]; |
|
| 1177 | + if (trim($data[16]) == '' && trim($data[23]) != '') { |
|
| 1178 | + $data[16] = $data[23]; |
|
| 1179 | + } |
|
| 1180 | + if (trim($data[16]) == '' && trim($data[15]) != '') { |
|
| 1181 | + $data[16] = $data[15]; |
|
| 1182 | + } |
|
| 1054 | 1183 | $queryf = 'INSERT INTO aircraft_modes (FirstCreated,LastModified,ModeS,ModeSCountry,Registration,ICAOTypeCode,Source) VALUES (:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:source)'; |
| 1055 | 1184 | try { |
| 1056 | 1185 | $sthf = $Connection->db->prepare($queryf); |
@@ -1061,7 +1190,9 @@ discard block |
||
| 1061 | 1190 | } |
| 1062 | 1191 | } |
| 1063 | 1192 | if (strtotime($data[29]) > time()) { |
| 1064 | - if ($globalDebug) echo 'i'; |
|
| 1193 | + if ($globalDebug) { |
|
| 1194 | + echo 'i'; |
|
| 1195 | + } |
|
| 1065 | 1196 | $query = 'INSERT INTO aircraft_owner (registration,base,owner,date_first_reg,Source) VALUES (:registration,:base,:owner,:date_first_reg,:source)'; |
| 1066 | 1197 | try { |
| 1067 | 1198 | $sth = $Connection->db->prepare($query); |
@@ -1072,13 +1203,19 @@ discard block |
||
| 1072 | 1203 | } |
| 1073 | 1204 | } |
| 1074 | 1205 | if ($i % 90 == 0) { |
| 1075 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 1076 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 1206 | + if ($globalTransaction) { |
|
| 1207 | + $Connection->db->commit(); |
|
| 1208 | + } |
|
| 1209 | + if ($globalTransaction) { |
|
| 1210 | + $Connection->db->beginTransaction(); |
|
| 1211 | + } |
|
| 1077 | 1212 | } |
| 1078 | 1213 | $i++; |
| 1079 | 1214 | } |
| 1080 | 1215 | fclose($handle); |
| 1081 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 1216 | + if ($globalTransaction) { |
|
| 1217 | + $Connection->db->commit(); |
|
| 1218 | + } |
|
| 1082 | 1219 | } |
| 1083 | 1220 | print_r($mfr); |
| 1084 | 1221 | return ''; |
@@ -1103,11 +1240,15 @@ discard block |
||
| 1103 | 1240 | $i = 0; |
| 1104 | 1241 | //$Connection->db->setAttribute(PDO::ATTR_AUTOCOMMIT, FALSE); |
| 1105 | 1242 | //$Connection->db->beginTransaction(); |
| 1106 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 1243 | + if ($globalTransaction) { |
|
| 1244 | + $Connection->db->beginTransaction(); |
|
| 1245 | + } |
|
| 1107 | 1246 | while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 1108 | 1247 | { |
| 1109 | 1248 | if ($i > 0) { |
| 1110 | - if ($data[1] == 'NULL') $data[1] = $data[0]; |
|
| 1249 | + if ($data[1] == 'NULL') { |
|
| 1250 | + $data[1] = $data[0]; |
|
| 1251 | + } |
|
| 1111 | 1252 | $query = 'INSERT INTO aircraft_modes (FirstCreated,LastModified,ModeS,ModeSCountry,Registration,ICAOTypeCode,type_flight,Source) VALUES (:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:type_flight,:source)'; |
| 1112 | 1253 | try { |
| 1113 | 1254 | $sth = $Connection->db->prepare($query); |
@@ -1119,7 +1260,9 @@ discard block |
||
| 1119 | 1260 | $i++; |
| 1120 | 1261 | } |
| 1121 | 1262 | fclose($handle); |
| 1122 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 1263 | + if ($globalTransaction) { |
|
| 1264 | + $Connection->db->commit(); |
|
| 1265 | + } |
|
| 1123 | 1266 | } |
| 1124 | 1267 | return ''; |
| 1125 | 1268 | } |
@@ -1140,7 +1283,9 @@ discard block |
||
| 1140 | 1283 | if (($handle = fopen($tmp_dir.'owners.tsv', 'r')) !== FALSE) |
| 1141 | 1284 | { |
| 1142 | 1285 | $i = 0; |
| 1143 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 1286 | + if ($globalTransaction) { |
|
| 1287 | + $Connection->db->beginTransaction(); |
|
| 1288 | + } |
|
| 1144 | 1289 | while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 1145 | 1290 | { |
| 1146 | 1291 | if ($i > 0) { |
@@ -1156,7 +1301,9 @@ discard block |
||
| 1156 | 1301 | $i++; |
| 1157 | 1302 | } |
| 1158 | 1303 | fclose($handle); |
| 1159 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 1304 | + if ($globalTransaction) { |
|
| 1305 | + $Connection->db->commit(); |
|
| 1306 | + } |
|
| 1160 | 1307 | } |
| 1161 | 1308 | return ''; |
| 1162 | 1309 | } |
@@ -1181,7 +1328,9 @@ discard block |
||
| 1181 | 1328 | $i = 0; |
| 1182 | 1329 | //$Connection->db->setAttribute(PDO::ATTR_AUTOCOMMIT, FALSE); |
| 1183 | 1330 | //$Connection->db->beginTransaction(); |
| 1184 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 1331 | + if ($globalTransaction) { |
|
| 1332 | + $Connection->db->beginTransaction(); |
|
| 1333 | + } |
|
| 1185 | 1334 | while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 1186 | 1335 | { |
| 1187 | 1336 | if ($i > 0) { |
@@ -1196,7 +1345,9 @@ discard block |
||
| 1196 | 1345 | $i++; |
| 1197 | 1346 | } |
| 1198 | 1347 | fclose($handle); |
| 1199 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 1348 | + if ($globalTransaction) { |
|
| 1349 | + $Connection->db->commit(); |
|
| 1350 | + } |
|
| 1200 | 1351 | } |
| 1201 | 1352 | return ''; |
| 1202 | 1353 | } |
@@ -1221,7 +1372,9 @@ discard block |
||
| 1221 | 1372 | $i = 0; |
| 1222 | 1373 | //$Connection->db->setAttribute(PDO::ATTR_AUTOCOMMIT, FALSE); |
| 1223 | 1374 | //$Connection->db->beginTransaction(); |
| 1224 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 1375 | + if ($globalTransaction) { |
|
| 1376 | + $Connection->db->beginTransaction(); |
|
| 1377 | + } |
|
| 1225 | 1378 | while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 1226 | 1379 | { |
| 1227 | 1380 | if ($i > 0) { |
@@ -1236,7 +1389,9 @@ discard block |
||
| 1236 | 1389 | $i++; |
| 1237 | 1390 | } |
| 1238 | 1391 | fclose($handle); |
| 1239 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 1392 | + if ($globalTransaction) { |
|
| 1393 | + $Connection->db->commit(); |
|
| 1394 | + } |
|
| 1240 | 1395 | } |
| 1241 | 1396 | return ''; |
| 1242 | 1397 | } |
@@ -1255,7 +1410,9 @@ discard block |
||
| 1255 | 1410 | $Connection = new Connection(); |
| 1256 | 1411 | if (($handle = fopen($tmp_dir.'ban_eu.csv', 'r')) !== FALSE) |
| 1257 | 1412 | { |
| 1258 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 1413 | + if ($globalTransaction) { |
|
| 1414 | + $Connection->db->beginTransaction(); |
|
| 1415 | + } |
|
| 1259 | 1416 | while (($data = fgetcsv($handle, 1000)) !== FALSE) |
| 1260 | 1417 | { |
| 1261 | 1418 | $query = 'UPDATE airlines SET ban_eu = 1 WHERE icao = :icao AND forsource IS NULL'; |
@@ -1270,7 +1427,9 @@ discard block |
||
| 1270 | 1427 | } |
| 1271 | 1428 | } |
| 1272 | 1429 | fclose($handle); |
| 1273 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 1430 | + if ($globalTransaction) { |
|
| 1431 | + $Connection->db->commit(); |
|
| 1432 | + } |
|
| 1274 | 1433 | } |
| 1275 | 1434 | return ''; |
| 1276 | 1435 | } |
@@ -1421,7 +1580,9 @@ discard block |
||
| 1421 | 1580 | if (($handle = fopen($filename, 'r')) !== FALSE) |
| 1422 | 1581 | { |
| 1423 | 1582 | $i = 0; |
| 1424 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 1583 | + if ($globalTransaction) { |
|
| 1584 | + $Connection->db->beginTransaction(); |
|
| 1585 | + } |
|
| 1425 | 1586 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 1426 | 1587 | { |
| 1427 | 1588 | $i++; |
@@ -1449,7 +1610,9 @@ discard block |
||
| 1449 | 1610 | } |
| 1450 | 1611 | } |
| 1451 | 1612 | fclose($handle); |
| 1452 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 1613 | + if ($globalTransaction) { |
|
| 1614 | + $Connection->db->commit(); |
|
| 1615 | + } |
|
| 1453 | 1616 | } |
| 1454 | 1617 | return ''; |
| 1455 | 1618 | } |
@@ -1472,7 +1635,9 @@ discard block |
||
| 1472 | 1635 | $Connection = new Connection(); |
| 1473 | 1636 | if (($handle = fopen($filename, 'r')) !== FALSE) |
| 1474 | 1637 | { |
| 1475 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 1638 | + if ($globalTransaction) { |
|
| 1639 | + $Connection->db->beginTransaction(); |
|
| 1640 | + } |
|
| 1476 | 1641 | while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) |
| 1477 | 1642 | { |
| 1478 | 1643 | if(count($row) > 1) { |
@@ -1486,7 +1651,9 @@ discard block |
||
| 1486 | 1651 | } |
| 1487 | 1652 | } |
| 1488 | 1653 | fclose($handle); |
| 1489 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 1654 | + if ($globalTransaction) { |
|
| 1655 | + $Connection->db->commit(); |
|
| 1656 | + } |
|
| 1490 | 1657 | } |
| 1491 | 1658 | return ''; |
| 1492 | 1659 | } |
@@ -1506,8 +1673,9 @@ discard block |
||
| 1506 | 1673 | } |
| 1507 | 1674 | |
| 1508 | 1675 | |
| 1509 | - if ($globalDBdriver == 'mysql') update_db::gunzip('../db/airspace.sql.gz',$tmp_dir.'airspace.sql'); |
|
| 1510 | - else { |
|
| 1676 | + if ($globalDBdriver == 'mysql') { |
|
| 1677 | + update_db::gunzip('../db/airspace.sql.gz',$tmp_dir.'airspace.sql'); |
|
| 1678 | + } else { |
|
| 1511 | 1679 | update_db::gunzip('../db/pgsql/airspace.sql.gz',$tmp_dir.'airspace.sql'); |
| 1512 | 1680 | $query = "CREATE EXTENSION postgis"; |
| 1513 | 1681 | $Connection = new Connection(null,null,$_SESSION['database_root'],$_SESSION['database_rootpass']); |
@@ -1526,20 +1694,30 @@ discard block |
||
| 1526 | 1694 | global $tmp_dir, $globalDebug; |
| 1527 | 1695 | include_once('class.create_db.php'); |
| 1528 | 1696 | require_once(dirname(__FILE__).'/../require/class.NOTAM.php'); |
| 1529 | - if ($globalDebug) echo "NOTAM from FlightAirMap website : Download..."; |
|
| 1697 | + if ($globalDebug) { |
|
| 1698 | + echo "NOTAM from FlightAirMap website : Download..."; |
|
| 1699 | + } |
|
| 1530 | 1700 | update_db::download('http://data.flightairmap.fr/data/notam.txt.gz',$tmp_dir.'notam.txt.gz'); |
| 1531 | 1701 | $error = ''; |
| 1532 | 1702 | if (file_exists($tmp_dir.'notam.txt.gz')) { |
| 1533 | - if ($globalDebug) echo "Gunzip..."; |
|
| 1703 | + if ($globalDebug) { |
|
| 1704 | + echo "Gunzip..."; |
|
| 1705 | + } |
|
| 1534 | 1706 | update_db::gunzip($tmp_dir.'notam.txt.gz'); |
| 1535 | - if ($globalDebug) echo "Add to DB..."; |
|
| 1707 | + if ($globalDebug) { |
|
| 1708 | + echo "Add to DB..."; |
|
| 1709 | + } |
|
| 1536 | 1710 | //$error = create_db::import_file($tmp_dir.'notam.sql'); |
| 1537 | 1711 | $NOTAM = new NOTAM(); |
| 1538 | 1712 | $NOTAM->updateNOTAMfromTextFile($tmp_dir.'notam.txt'); |
| 1539 | - } else $error = "File ".$tmp_dir.'notam.txt.gz'." doesn't exist. Download failed."; |
|
| 1713 | + } else { |
|
| 1714 | + $error = "File ".$tmp_dir.'notam.txt.gz'." doesn't exist. Download failed."; |
|
| 1715 | + } |
|
| 1540 | 1716 | if ($error != '') { |
| 1541 | 1717 | return $error; |
| 1542 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1718 | + } elseif ($globalDebug) { |
|
| 1719 | + echo "Done\n"; |
|
| 1720 | + } |
|
| 1543 | 1721 | return ''; |
| 1544 | 1722 | } |
| 1545 | 1723 | |
@@ -1593,67 +1771,111 @@ discard block |
||
| 1593 | 1771 | //if ($globalDebug) echo "IVAO : Download..."; |
| 1594 | 1772 | //update_db::download('http://fr.mirror.ivao.aero/software/ivae_feb2013.zip',$tmp_dir.'ivae_feb2013.zip'); |
| 1595 | 1773 | if (file_exists($tmp_dir.'ivae_feb2013.zip')) { |
| 1596 | - if ($globalDebug) echo "Unzip..."; |
|
| 1774 | + if ($globalDebug) { |
|
| 1775 | + echo "Unzip..."; |
|
| 1776 | + } |
|
| 1597 | 1777 | update_db::unzip($tmp_dir.'ivae_feb2013.zip'); |
| 1598 | - if ($globalDebug) echo "Add to DB..."; |
|
| 1778 | + if ($globalDebug) { |
|
| 1779 | + echo "Add to DB..."; |
|
| 1780 | + } |
|
| 1599 | 1781 | update_db::ivao_airlines($tmp_dir.'data/airlines.dat'); |
| 1600 | - if ($globalDebug) echo "Copy airlines logos to airlines images directory..."; |
|
| 1782 | + if ($globalDebug) { |
|
| 1783 | + echo "Copy airlines logos to airlines images directory..."; |
|
| 1784 | + } |
|
| 1601 | 1785 | if (is_writable(dirname(__FILE__).'/../images/airlines')) { |
| 1602 | - if (!$Common->xcopy($tmp_dir.'logos/',dirname(__FILE__).'/../images/airlines/')) $error = "Failed to copy airlines logo."; |
|
| 1603 | - } else $error = "The directory ".dirname(__FILE__).'/../images/airlines'." must be writable"; |
|
| 1604 | - } else $error = "File ".$tmp_dir.'ivao.zip'." doesn't exist. Download failed."; |
|
| 1786 | + if (!$Common->xcopy($tmp_dir.'logos/',dirname(__FILE__).'/../images/airlines/')) { |
|
| 1787 | + $error = "Failed to copy airlines logo."; |
|
| 1788 | + } |
|
| 1789 | + } else { |
|
| 1790 | + $error = "The directory ".dirname(__FILE__).'/../images/airlines'." must be writable"; |
|
| 1791 | + } |
|
| 1792 | + } else { |
|
| 1793 | + $error = "File ".$tmp_dir.'ivao.zip'." doesn't exist. Download failed."; |
|
| 1794 | + } |
|
| 1605 | 1795 | if ($error != '') { |
| 1606 | 1796 | return $error; |
| 1607 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1797 | + } elseif ($globalDebug) { |
|
| 1798 | + echo "Done\n"; |
|
| 1799 | + } |
|
| 1608 | 1800 | return ''; |
| 1609 | 1801 | } |
| 1610 | 1802 | |
| 1611 | 1803 | public static function update_routes() { |
| 1612 | 1804 | global $tmp_dir, $globalDebug; |
| 1613 | 1805 | $error = ''; |
| 1614 | - if ($globalDebug) echo "Routes : Download..."; |
|
| 1806 | + if ($globalDebug) { |
|
| 1807 | + echo "Routes : Download..."; |
|
| 1808 | + } |
|
| 1615 | 1809 | update_db::download('http://www.virtualradarserver.co.uk/Files/StandingData.sqb.gz',$tmp_dir.'StandingData.sqb.gz'); |
| 1616 | 1810 | if (file_exists($tmp_dir.'StandingData.sqb.gz')) { |
| 1617 | - if ($globalDebug) echo "Gunzip..."; |
|
| 1811 | + if ($globalDebug) { |
|
| 1812 | + echo "Gunzip..."; |
|
| 1813 | + } |
|
| 1618 | 1814 | update_db::gunzip($tmp_dir.'StandingData.sqb.gz'); |
| 1619 | - if ($globalDebug) echo "Add to DB..."; |
|
| 1815 | + if ($globalDebug) { |
|
| 1816 | + echo "Add to DB..."; |
|
| 1817 | + } |
|
| 1620 | 1818 | $error = update_db::retrieve_route_sqlite_to_dest($tmp_dir.'StandingData.sqb'); |
| 1621 | - } else $error = "File ".$tmp_dir.'StandingData.sqb.gz'." doesn't exist. Download failed."; |
|
| 1819 | + } else { |
|
| 1820 | + $error = "File ".$tmp_dir.'StandingData.sqb.gz'." doesn't exist. Download failed."; |
|
| 1821 | + } |
|
| 1622 | 1822 | if ($error != '') { |
| 1623 | 1823 | return $error; |
| 1624 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1824 | + } elseif ($globalDebug) { |
|
| 1825 | + echo "Done\n"; |
|
| 1826 | + } |
|
| 1625 | 1827 | return ''; |
| 1626 | 1828 | } |
| 1627 | 1829 | public static function update_oneworld() { |
| 1628 | 1830 | global $tmp_dir, $globalDebug; |
| 1629 | 1831 | $error = ''; |
| 1630 | - if ($globalDebug) echo "Schedules Oneworld : Download..."; |
|
| 1832 | + if ($globalDebug) { |
|
| 1833 | + echo "Schedules Oneworld : Download..."; |
|
| 1834 | + } |
|
| 1631 | 1835 | update_db::download('http://data.flightairmap.fr/data/schedules/oneworld.csv.gz',$tmp_dir.'oneworld.csv.gz'); |
| 1632 | 1836 | if (file_exists($tmp_dir.'oneworld.csv.gz')) { |
| 1633 | - if ($globalDebug) echo "Gunzip..."; |
|
| 1837 | + if ($globalDebug) { |
|
| 1838 | + echo "Gunzip..."; |
|
| 1839 | + } |
|
| 1634 | 1840 | update_db::gunzip($tmp_dir.'oneworld.csv.gz'); |
| 1635 | - if ($globalDebug) echo "Add to DB..."; |
|
| 1841 | + if ($globalDebug) { |
|
| 1842 | + echo "Add to DB..."; |
|
| 1843 | + } |
|
| 1636 | 1844 | $error = update_db::retrieve_route_oneworld($tmp_dir.'oneworld.csv'); |
| 1637 | - } else $error = "File ".$tmp_dir.'oneworld.csv.gz'." doesn't exist. Download failed."; |
|
| 1845 | + } else { |
|
| 1846 | + $error = "File ".$tmp_dir.'oneworld.csv.gz'." doesn't exist. Download failed."; |
|
| 1847 | + } |
|
| 1638 | 1848 | if ($error != '') { |
| 1639 | 1849 | return $error; |
| 1640 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1850 | + } elseif ($globalDebug) { |
|
| 1851 | + echo "Done\n"; |
|
| 1852 | + } |
|
| 1641 | 1853 | return ''; |
| 1642 | 1854 | } |
| 1643 | 1855 | public static function update_skyteam() { |
| 1644 | 1856 | global $tmp_dir, $globalDebug; |
| 1645 | 1857 | $error = ''; |
| 1646 | - if ($globalDebug) echo "Schedules Skyteam : Download..."; |
|
| 1858 | + if ($globalDebug) { |
|
| 1859 | + echo "Schedules Skyteam : Download..."; |
|
| 1860 | + } |
|
| 1647 | 1861 | update_db::download('http://data.flightairmap.fr/data/schedules/skyteam.csv.gz',$tmp_dir.'skyteam.csv.gz'); |
| 1648 | 1862 | if (file_exists($tmp_dir.'skyteam.csv.gz')) { |
| 1649 | - if ($globalDebug) echo "Gunzip..."; |
|
| 1863 | + if ($globalDebug) { |
|
| 1864 | + echo "Gunzip..."; |
|
| 1865 | + } |
|
| 1650 | 1866 | update_db::gunzip($tmp_dir.'skyteam.csv.gz'); |
| 1651 | - if ($globalDebug) echo "Add to DB..."; |
|
| 1867 | + if ($globalDebug) { |
|
| 1868 | + echo "Add to DB..."; |
|
| 1869 | + } |
|
| 1652 | 1870 | $error = update_db::retrieve_route_skyteam($tmp_dir.'skyteam.csv'); |
| 1653 | - } else $error = "File ".$tmp_dir.'skyteam.csv.gz'." doesn't exist. Download failed."; |
|
| 1871 | + } else { |
|
| 1872 | + $error = "File ".$tmp_dir.'skyteam.csv.gz'." doesn't exist. Download failed."; |
|
| 1873 | + } |
|
| 1654 | 1874 | if ($error != '') { |
| 1655 | 1875 | return $error; |
| 1656 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1876 | + } elseif ($globalDebug) { |
|
| 1877 | + echo "Done\n"; |
|
| 1878 | + } |
|
| 1657 | 1879 | return ''; |
| 1658 | 1880 | } |
| 1659 | 1881 | public static function update_ModeS() { |
@@ -1670,355 +1892,619 @@ discard block |
||
| 1670 | 1892 | exit; |
| 1671 | 1893 | } elseif ($globalDebug) echo "Done\n"; |
| 1672 | 1894 | */ |
| 1673 | - if ($globalDebug) echo "Modes : Download..."; |
|
| 1674 | -// update_db::download('http://planebase.biz/sqb.php?f=basestationall.zip',$tmp_dir.'basestation_latest.zip','http://planebase.biz/bstnsqb'); |
|
| 1895 | + if ($globalDebug) { |
|
| 1896 | + echo "Modes : Download..."; |
|
| 1897 | + } |
|
| 1898 | + // update_db::download('http://planebase.biz/sqb.php?f=basestationall.zip',$tmp_dir.'basestation_latest.zip','http://planebase.biz/bstnsqb'); |
|
| 1675 | 1899 | update_db::download('http://data.flightairmap.fr/data/BaseStation.sqb.gz',$tmp_dir.'BaseStation.sqb.gz'); |
| 1676 | 1900 | |
| 1677 | 1901 | // if (file_exists($tmp_dir.'basestation_latest.zip')) { |
| 1678 | 1902 | if (file_exists($tmp_dir.'BaseStation.sqb.gz')) { |
| 1679 | - if ($globalDebug) echo "Unzip..."; |
|
| 1680 | -// update_db::unzip($tmp_dir.'basestation_latest.zip'); |
|
| 1903 | + if ($globalDebug) { |
|
| 1904 | + echo "Unzip..."; |
|
| 1905 | + } |
|
| 1906 | + // update_db::unzip($tmp_dir.'basestation_latest.zip'); |
|
| 1681 | 1907 | update_db::gunzip($tmp_dir.'BaseStation.sqb.gz'); |
| 1682 | - if ($globalDebug) echo "Add to DB..."; |
|
| 1908 | + if ($globalDebug) { |
|
| 1909 | + echo "Add to DB..."; |
|
| 1910 | + } |
|
| 1683 | 1911 | $error = update_db::retrieve_modes_sqlite_to_dest($tmp_dir.'BaseStation.sqb'); |
| 1684 | 1912 | // $error = update_db::retrieve_modes_sqlite_to_dest($tmp_dir.'basestation.sqb'); |
| 1685 | - } else $error = "File ".$tmp_dir.'basestation_latest.zip'." doesn't exist. Download failed."; |
|
| 1913 | + } else { |
|
| 1914 | + $error = "File ".$tmp_dir.'basestation_latest.zip'." doesn't exist. Download failed."; |
|
| 1915 | + } |
|
| 1686 | 1916 | if ($error != '') { |
| 1687 | 1917 | return $error; |
| 1688 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1918 | + } elseif ($globalDebug) { |
|
| 1919 | + echo "Done\n"; |
|
| 1920 | + } |
|
| 1689 | 1921 | return ''; |
| 1690 | 1922 | } |
| 1691 | 1923 | |
| 1692 | 1924 | public static function update_ModeS_faa() { |
| 1693 | 1925 | global $tmp_dir, $globalDebug; |
| 1694 | - if ($globalDebug) echo "Modes FAA: Download..."; |
|
| 1926 | + if ($globalDebug) { |
|
| 1927 | + echo "Modes FAA: Download..."; |
|
| 1928 | + } |
|
| 1695 | 1929 | update_db::download('http://registry.faa.gov/database/ReleasableAircraft.zip',$tmp_dir.'ReleasableAircraft.zip'); |
| 1696 | 1930 | if (file_exists($tmp_dir.'ReleasableAircraft.zip')) { |
| 1697 | - if ($globalDebug) echo "Unzip..."; |
|
| 1931 | + if ($globalDebug) { |
|
| 1932 | + echo "Unzip..."; |
|
| 1933 | + } |
|
| 1698 | 1934 | update_db::unzip($tmp_dir.'ReleasableAircraft.zip'); |
| 1699 | - if ($globalDebug) echo "Add to DB..."; |
|
| 1935 | + if ($globalDebug) { |
|
| 1936 | + echo "Add to DB..."; |
|
| 1937 | + } |
|
| 1700 | 1938 | $error = update_db::modes_faa(); |
| 1701 | - } else $error = "File ".$tmp_dir.'ReleasableAircraft.zip'." doesn't exist. Download failed."; |
|
| 1939 | + } else { |
|
| 1940 | + $error = "File ".$tmp_dir.'ReleasableAircraft.zip'." doesn't exist. Download failed."; |
|
| 1941 | + } |
|
| 1702 | 1942 | if ($error != '') { |
| 1703 | 1943 | return $error; |
| 1704 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1944 | + } elseif ($globalDebug) { |
|
| 1945 | + echo "Done\n"; |
|
| 1946 | + } |
|
| 1705 | 1947 | return ''; |
| 1706 | 1948 | } |
| 1707 | 1949 | |
| 1708 | 1950 | public static function update_ModeS_flarm() { |
| 1709 | 1951 | global $tmp_dir, $globalDebug; |
| 1710 | - if ($globalDebug) echo "Modes Flarmnet: Download..."; |
|
| 1952 | + if ($globalDebug) { |
|
| 1953 | + echo "Modes Flarmnet: Download..."; |
|
| 1954 | + } |
|
| 1711 | 1955 | update_db::download('http://flarmnet.org/files/data.fln',$tmp_dir.'data.fln'); |
| 1712 | 1956 | if (file_exists($tmp_dir.'data.fln')) { |
| 1713 | - if ($globalDebug) echo "Add to DB..."; |
|
| 1957 | + if ($globalDebug) { |
|
| 1958 | + echo "Add to DB..."; |
|
| 1959 | + } |
|
| 1714 | 1960 | $error = update_db::retrieve_modes_flarmnet($tmp_dir.'data.fln'); |
| 1715 | - } else $error = "File ".$tmp_dir.'data.fln'." doesn't exist. Download failed."; |
|
| 1961 | + } else { |
|
| 1962 | + $error = "File ".$tmp_dir.'data.fln'." doesn't exist. Download failed."; |
|
| 1963 | + } |
|
| 1716 | 1964 | if ($error != '') { |
| 1717 | 1965 | return $error; |
| 1718 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1966 | + } elseif ($globalDebug) { |
|
| 1967 | + echo "Done\n"; |
|
| 1968 | + } |
|
| 1719 | 1969 | return ''; |
| 1720 | 1970 | } |
| 1721 | 1971 | |
| 1722 | 1972 | public static function update_ModeS_ogn() { |
| 1723 | 1973 | global $tmp_dir, $globalDebug; |
| 1724 | - if ($globalDebug) echo "Modes OGN: Download..."; |
|
| 1974 | + if ($globalDebug) { |
|
| 1975 | + echo "Modes OGN: Download..."; |
|
| 1976 | + } |
|
| 1725 | 1977 | update_db::download('http://ddb.glidernet.org/download/',$tmp_dir.'ogn.csv'); |
| 1726 | 1978 | if (file_exists($tmp_dir.'ogn.csv')) { |
| 1727 | - if ($globalDebug) echo "Add to DB..."; |
|
| 1979 | + if ($globalDebug) { |
|
| 1980 | + echo "Add to DB..."; |
|
| 1981 | + } |
|
| 1728 | 1982 | $error = update_db::retrieve_modes_ogn($tmp_dir.'ogn.csv'); |
| 1729 | - } else $error = "File ".$tmp_dir.'ogn.csv'." doesn't exist. Download failed."; |
|
| 1983 | + } else { |
|
| 1984 | + $error = "File ".$tmp_dir.'ogn.csv'." doesn't exist. Download failed."; |
|
| 1985 | + } |
|
| 1730 | 1986 | if ($error != '') { |
| 1731 | 1987 | return $error; |
| 1732 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1988 | + } elseif ($globalDebug) { |
|
| 1989 | + echo "Done\n"; |
|
| 1990 | + } |
|
| 1733 | 1991 | return ''; |
| 1734 | 1992 | } |
| 1735 | 1993 | |
| 1736 | 1994 | public static function update_owner() { |
| 1737 | 1995 | global $tmp_dir, $globalDebug, $globalMasterSource; |
| 1738 | 1996 | |
| 1739 | - if ($globalDebug) echo "Owner France: Download..."; |
|
| 1997 | + if ($globalDebug) { |
|
| 1998 | + echo "Owner France: Download..."; |
|
| 1999 | + } |
|
| 1740 | 2000 | update_db::download('http://antonakis.co.uk/registers/France.txt',$tmp_dir.'owner_f.csv'); |
| 1741 | 2001 | if (file_exists($tmp_dir.'owner_f.csv')) { |
| 1742 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2002 | + if ($globalDebug) { |
|
| 2003 | + echo "Add to DB..."; |
|
| 2004 | + } |
|
| 1743 | 2005 | $error = update_db::retrieve_owner($tmp_dir.'owner_f.csv','F'); |
| 1744 | - } else $error = "File ".$tmp_dir.'owner_f.csv'." doesn't exist. Download failed."; |
|
| 2006 | + } else { |
|
| 2007 | + $error = "File ".$tmp_dir.'owner_f.csv'." doesn't exist. Download failed."; |
|
| 2008 | + } |
|
| 1745 | 2009 | if ($error != '') { |
| 1746 | 2010 | return $error; |
| 1747 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2011 | + } elseif ($globalDebug) { |
|
| 2012 | + echo "Done\n"; |
|
| 2013 | + } |
|
| 1748 | 2014 | |
| 1749 | - if ($globalDebug) echo "Owner Ireland: Download..."; |
|
| 2015 | + if ($globalDebug) { |
|
| 2016 | + echo "Owner Ireland: Download..."; |
|
| 2017 | + } |
|
| 1750 | 2018 | update_db::download('http://antonakis.co.uk/registers/Ireland.txt',$tmp_dir.'owner_ei.csv'); |
| 1751 | 2019 | if (file_exists($tmp_dir.'owner_ei.csv')) { |
| 1752 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2020 | + if ($globalDebug) { |
|
| 2021 | + echo "Add to DB..."; |
|
| 2022 | + } |
|
| 1753 | 2023 | $error = update_db::retrieve_owner($tmp_dir.'owner_ei.csv','EI'); |
| 1754 | - } else $error = "File ".$tmp_dir.'owner_ei.csv'." doesn't exist. Download failed."; |
|
| 2024 | + } else { |
|
| 2025 | + $error = "File ".$tmp_dir.'owner_ei.csv'." doesn't exist. Download failed."; |
|
| 2026 | + } |
|
| 1755 | 2027 | if ($error != '') { |
| 1756 | 2028 | return $error; |
| 1757 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1758 | - if ($globalDebug) echo "Owner Switzerland: Download..."; |
|
| 2029 | + } elseif ($globalDebug) { |
|
| 2030 | + echo "Done\n"; |
|
| 2031 | + } |
|
| 2032 | + if ($globalDebug) { |
|
| 2033 | + echo "Owner Switzerland: Download..."; |
|
| 2034 | + } |
|
| 1759 | 2035 | update_db::download('http://antonakis.co.uk/registers/Switzerland.txt',$tmp_dir.'owner_hb.csv'); |
| 1760 | 2036 | if (file_exists($tmp_dir.'owner_hb.csv')) { |
| 1761 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2037 | + if ($globalDebug) { |
|
| 2038 | + echo "Add to DB..."; |
|
| 2039 | + } |
|
| 1762 | 2040 | $error = update_db::retrieve_owner($tmp_dir.'owner_hb.csv','HB'); |
| 1763 | - } else $error = "File ".$tmp_dir.'owner_hb.csv'." doesn't exist. Download failed."; |
|
| 2041 | + } else { |
|
| 2042 | + $error = "File ".$tmp_dir.'owner_hb.csv'." doesn't exist. Download failed."; |
|
| 2043 | + } |
|
| 1764 | 2044 | if ($error != '') { |
| 1765 | 2045 | return $error; |
| 1766 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1767 | - if ($globalDebug) echo "Owner Czech Republic: Download..."; |
|
| 2046 | + } elseif ($globalDebug) { |
|
| 2047 | + echo "Done\n"; |
|
| 2048 | + } |
|
| 2049 | + if ($globalDebug) { |
|
| 2050 | + echo "Owner Czech Republic: Download..."; |
|
| 2051 | + } |
|
| 1768 | 2052 | update_db::download('http://antonakis.co.uk/registers/CzechRepublic.txt',$tmp_dir.'owner_ok.csv'); |
| 1769 | 2053 | if (file_exists($tmp_dir.'owner_ok.csv')) { |
| 1770 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2054 | + if ($globalDebug) { |
|
| 2055 | + echo "Add to DB..."; |
|
| 2056 | + } |
|
| 1771 | 2057 | $error = update_db::retrieve_owner($tmp_dir.'owner_ok.csv','OK'); |
| 1772 | - } else $error = "File ".$tmp_dir.'owner_ok.csv'." doesn't exist. Download failed."; |
|
| 2058 | + } else { |
|
| 2059 | + $error = "File ".$tmp_dir.'owner_ok.csv'." doesn't exist. Download failed."; |
|
| 2060 | + } |
|
| 1773 | 2061 | if ($error != '') { |
| 1774 | 2062 | return $error; |
| 1775 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1776 | - if ($globalDebug) echo "Owner Australia: Download..."; |
|
| 2063 | + } elseif ($globalDebug) { |
|
| 2064 | + echo "Done\n"; |
|
| 2065 | + } |
|
| 2066 | + if ($globalDebug) { |
|
| 2067 | + echo "Owner Australia: Download..."; |
|
| 2068 | + } |
|
| 1777 | 2069 | update_db::download('http://antonakis.co.uk/registers/Australia.txt',$tmp_dir.'owner_vh.csv'); |
| 1778 | 2070 | if (file_exists($tmp_dir.'owner_vh.csv')) { |
| 1779 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2071 | + if ($globalDebug) { |
|
| 2072 | + echo "Add to DB..."; |
|
| 2073 | + } |
|
| 1780 | 2074 | $error = update_db::retrieve_owner($tmp_dir.'owner_vh.csv','VH'); |
| 1781 | - } else $error = "File ".$tmp_dir.'owner_vh.csv'." doesn't exist. Download failed."; |
|
| 2075 | + } else { |
|
| 2076 | + $error = "File ".$tmp_dir.'owner_vh.csv'." doesn't exist. Download failed."; |
|
| 2077 | + } |
|
| 1782 | 2078 | if ($error != '') { |
| 1783 | 2079 | return $error; |
| 1784 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1785 | - if ($globalDebug) echo "Owner Austria: Download..."; |
|
| 2080 | + } elseif ($globalDebug) { |
|
| 2081 | + echo "Done\n"; |
|
| 2082 | + } |
|
| 2083 | + if ($globalDebug) { |
|
| 2084 | + echo "Owner Austria: Download..."; |
|
| 2085 | + } |
|
| 1786 | 2086 | update_db::download('http://antonakis.co.uk/registers/Austria.txt',$tmp_dir.'owner_oe.csv'); |
| 1787 | 2087 | if (file_exists($tmp_dir.'owner_oe.csv')) { |
| 1788 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2088 | + if ($globalDebug) { |
|
| 2089 | + echo "Add to DB..."; |
|
| 2090 | + } |
|
| 1789 | 2091 | $error = update_db::retrieve_owner($tmp_dir.'owner_oe.csv','OE'); |
| 1790 | - } else $error = "File ".$tmp_dir.'owner_oe.csv'." doesn't exist. Download failed."; |
|
| 2092 | + } else { |
|
| 2093 | + $error = "File ".$tmp_dir.'owner_oe.csv'." doesn't exist. Download failed."; |
|
| 2094 | + } |
|
| 1791 | 2095 | if ($error != '') { |
| 1792 | 2096 | return $error; |
| 1793 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1794 | - if ($globalDebug) echo "Owner Chile: Download..."; |
|
| 2097 | + } elseif ($globalDebug) { |
|
| 2098 | + echo "Done\n"; |
|
| 2099 | + } |
|
| 2100 | + if ($globalDebug) { |
|
| 2101 | + echo "Owner Chile: Download..."; |
|
| 2102 | + } |
|
| 1795 | 2103 | update_db::download('http://antonakis.co.uk/registers/Chile.txt',$tmp_dir.'owner_cc.csv'); |
| 1796 | 2104 | if (file_exists($tmp_dir.'owner_cc.csv')) { |
| 1797 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2105 | + if ($globalDebug) { |
|
| 2106 | + echo "Add to DB..."; |
|
| 2107 | + } |
|
| 1798 | 2108 | $error = update_db::retrieve_owner($tmp_dir.'owner_cc.csv','CC'); |
| 1799 | - } else $error = "File ".$tmp_dir.'owner_cc.csv'." doesn't exist. Download failed."; |
|
| 2109 | + } else { |
|
| 2110 | + $error = "File ".$tmp_dir.'owner_cc.csv'." doesn't exist. Download failed."; |
|
| 2111 | + } |
|
| 1800 | 2112 | if ($error != '') { |
| 1801 | 2113 | return $error; |
| 1802 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1803 | - if ($globalDebug) echo "Owner Colombia: Download..."; |
|
| 2114 | + } elseif ($globalDebug) { |
|
| 2115 | + echo "Done\n"; |
|
| 2116 | + } |
|
| 2117 | + if ($globalDebug) { |
|
| 2118 | + echo "Owner Colombia: Download..."; |
|
| 2119 | + } |
|
| 1804 | 2120 | update_db::download('http://antonakis.co.uk/registers/Colombia.txt',$tmp_dir.'owner_hj.csv'); |
| 1805 | 2121 | if (file_exists($tmp_dir.'owner_hj.csv')) { |
| 1806 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2122 | + if ($globalDebug) { |
|
| 2123 | + echo "Add to DB..."; |
|
| 2124 | + } |
|
| 1807 | 2125 | $error = update_db::retrieve_owner($tmp_dir.'owner_hj.csv','HJ'); |
| 1808 | - } else $error = "File ".$tmp_dir.'owner_hj.csv'." doesn't exist. Download failed."; |
|
| 2126 | + } else { |
|
| 2127 | + $error = "File ".$tmp_dir.'owner_hj.csv'." doesn't exist. Download failed."; |
|
| 2128 | + } |
|
| 1809 | 2129 | if ($error != '') { |
| 1810 | 2130 | return $error; |
| 1811 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1812 | - if ($globalDebug) echo "Owner Bosnia Herzegobina: Download..."; |
|
| 2131 | + } elseif ($globalDebug) { |
|
| 2132 | + echo "Done\n"; |
|
| 2133 | + } |
|
| 2134 | + if ($globalDebug) { |
|
| 2135 | + echo "Owner Bosnia Herzegobina: Download..."; |
|
| 2136 | + } |
|
| 1813 | 2137 | update_db::download('http://antonakis.co.uk/registers/BosniaHerzegovina.txt',$tmp_dir.'owner_e7.csv'); |
| 1814 | 2138 | if (file_exists($tmp_dir.'owner_e7.csv')) { |
| 1815 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2139 | + if ($globalDebug) { |
|
| 2140 | + echo "Add to DB..."; |
|
| 2141 | + } |
|
| 1816 | 2142 | $error = update_db::retrieve_owner($tmp_dir.'owner_e7.csv','E7'); |
| 1817 | - } else $error = "File ".$tmp_dir.'owner_e7.csv'." doesn't exist. Download failed."; |
|
| 2143 | + } else { |
|
| 2144 | + $error = "File ".$tmp_dir.'owner_e7.csv'." doesn't exist. Download failed."; |
|
| 2145 | + } |
|
| 1818 | 2146 | if ($error != '') { |
| 1819 | 2147 | return $error; |
| 1820 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1821 | - if ($globalDebug) echo "Owner Brazil: Download..."; |
|
| 2148 | + } elseif ($globalDebug) { |
|
| 2149 | + echo "Done\n"; |
|
| 2150 | + } |
|
| 2151 | + if ($globalDebug) { |
|
| 2152 | + echo "Owner Brazil: Download..."; |
|
| 2153 | + } |
|
| 1822 | 2154 | update_db::download('http://antonakis.co.uk/registers/Brazil.txt',$tmp_dir.'owner_pp.csv'); |
| 1823 | 2155 | if (file_exists($tmp_dir.'owner_pp.csv')) { |
| 1824 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2156 | + if ($globalDebug) { |
|
| 2157 | + echo "Add to DB..."; |
|
| 2158 | + } |
|
| 1825 | 2159 | $error = update_db::retrieve_owner($tmp_dir.'owner_pp.csv','PP'); |
| 1826 | - } else $error = "File ".$tmp_dir.'owner_pp.csv'." doesn't exist. Download failed."; |
|
| 2160 | + } else { |
|
| 2161 | + $error = "File ".$tmp_dir.'owner_pp.csv'." doesn't exist. Download failed."; |
|
| 2162 | + } |
|
| 1827 | 2163 | if ($error != '') { |
| 1828 | 2164 | return $error; |
| 1829 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1830 | - if ($globalDebug) echo "Owner Cayman Islands: Download..."; |
|
| 2165 | + } elseif ($globalDebug) { |
|
| 2166 | + echo "Done\n"; |
|
| 2167 | + } |
|
| 2168 | + if ($globalDebug) { |
|
| 2169 | + echo "Owner Cayman Islands: Download..."; |
|
| 2170 | + } |
|
| 1831 | 2171 | update_db::download('http://antonakis.co.uk/registers/CaymanIslands.txt',$tmp_dir.'owner_vp.csv'); |
| 1832 | 2172 | if (file_exists($tmp_dir.'owner_vp.csv')) { |
| 1833 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2173 | + if ($globalDebug) { |
|
| 2174 | + echo "Add to DB..."; |
|
| 2175 | + } |
|
| 1834 | 2176 | $error = update_db::retrieve_owner($tmp_dir.'owner_vp.csv','VP'); |
| 1835 | - } else $error = "File ".$tmp_dir.'owner_vp.csv'." doesn't exist. Download failed."; |
|
| 2177 | + } else { |
|
| 2178 | + $error = "File ".$tmp_dir.'owner_vp.csv'." doesn't exist. Download failed."; |
|
| 2179 | + } |
|
| 1836 | 2180 | if ($error != '') { |
| 1837 | 2181 | return $error; |
| 1838 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1839 | - if ($globalDebug) echo "Owner Croatia: Download..."; |
|
| 2182 | + } elseif ($globalDebug) { |
|
| 2183 | + echo "Done\n"; |
|
| 2184 | + } |
|
| 2185 | + if ($globalDebug) { |
|
| 2186 | + echo "Owner Croatia: Download..."; |
|
| 2187 | + } |
|
| 1840 | 2188 | update_db::download('http://antonakis.co.uk/registers/Croatia.txt',$tmp_dir.'owner_9a.csv'); |
| 1841 | 2189 | if (file_exists($tmp_dir.'owner_9a.csv')) { |
| 1842 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2190 | + if ($globalDebug) { |
|
| 2191 | + echo "Add to DB..."; |
|
| 2192 | + } |
|
| 1843 | 2193 | $error = update_db::retrieve_owner($tmp_dir.'owner_9a.csv','9A'); |
| 1844 | - } else $error = "File ".$tmp_dir.'owner_9a.csv'." doesn't exist. Download failed."; |
|
| 2194 | + } else { |
|
| 2195 | + $error = "File ".$tmp_dir.'owner_9a.csv'." doesn't exist. Download failed."; |
|
| 2196 | + } |
|
| 1845 | 2197 | if ($error != '') { |
| 1846 | 2198 | return $error; |
| 1847 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1848 | - if ($globalDebug) echo "Owner Luxembourg: Download..."; |
|
| 2199 | + } elseif ($globalDebug) { |
|
| 2200 | + echo "Done\n"; |
|
| 2201 | + } |
|
| 2202 | + if ($globalDebug) { |
|
| 2203 | + echo "Owner Luxembourg: Download..."; |
|
| 2204 | + } |
|
| 1849 | 2205 | update_db::download('http://antonakis.co.uk/registers/Luxembourg.txt',$tmp_dir.'owner_lx.csv'); |
| 1850 | 2206 | if (file_exists($tmp_dir.'owner_lx.csv')) { |
| 1851 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2207 | + if ($globalDebug) { |
|
| 2208 | + echo "Add to DB..."; |
|
| 2209 | + } |
|
| 1852 | 2210 | $error = update_db::retrieve_owner($tmp_dir.'owner_lx.csv','LX'); |
| 1853 | - } else $error = "File ".$tmp_dir.'owner_lx.csv'." doesn't exist. Download failed."; |
|
| 2211 | + } else { |
|
| 2212 | + $error = "File ".$tmp_dir.'owner_lx.csv'." doesn't exist. Download failed."; |
|
| 2213 | + } |
|
| 1854 | 2214 | if ($error != '') { |
| 1855 | 2215 | return $error; |
| 1856 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1857 | - if ($globalDebug) echo "Owner Maldives: Download..."; |
|
| 2216 | + } elseif ($globalDebug) { |
|
| 2217 | + echo "Done\n"; |
|
| 2218 | + } |
|
| 2219 | + if ($globalDebug) { |
|
| 2220 | + echo "Owner Maldives: Download..."; |
|
| 2221 | + } |
|
| 1858 | 2222 | update_db::download('http://antonakis.co.uk/registers/Maldives.txt',$tmp_dir.'owner_8q.csv'); |
| 1859 | 2223 | if (file_exists($tmp_dir.'owner_8q.csv')) { |
| 1860 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2224 | + if ($globalDebug) { |
|
| 2225 | + echo "Add to DB..."; |
|
| 2226 | + } |
|
| 1861 | 2227 | $error = update_db::retrieve_owner($tmp_dir.'owner_8q.csv','8Q'); |
| 1862 | - } else $error = "File ".$tmp_dir.'owner_8q.csv'." doesn't exist. Download failed."; |
|
| 2228 | + } else { |
|
| 2229 | + $error = "File ".$tmp_dir.'owner_8q.csv'." doesn't exist. Download failed."; |
|
| 2230 | + } |
|
| 1863 | 2231 | if ($error != '') { |
| 1864 | 2232 | return $error; |
| 1865 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1866 | - if ($globalDebug) echo "Owner New Zealand: Download..."; |
|
| 2233 | + } elseif ($globalDebug) { |
|
| 2234 | + echo "Done\n"; |
|
| 2235 | + } |
|
| 2236 | + if ($globalDebug) { |
|
| 2237 | + echo "Owner New Zealand: Download..."; |
|
| 2238 | + } |
|
| 1867 | 2239 | update_db::download('http://antonakis.co.uk/registers/NewZealand.txt',$tmp_dir.'owner_zk.csv'); |
| 1868 | 2240 | if (file_exists($tmp_dir.'owner_zk.csv')) { |
| 1869 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2241 | + if ($globalDebug) { |
|
| 2242 | + echo "Add to DB..."; |
|
| 2243 | + } |
|
| 1870 | 2244 | $error = update_db::retrieve_owner($tmp_dir.'owner_zk.csv','ZK'); |
| 1871 | - } else $error = "File ".$tmp_dir.'owner_zk.csv'." doesn't exist. Download failed."; |
|
| 2245 | + } else { |
|
| 2246 | + $error = "File ".$tmp_dir.'owner_zk.csv'." doesn't exist. Download failed."; |
|
| 2247 | + } |
|
| 1872 | 2248 | if ($error != '') { |
| 1873 | 2249 | return $error; |
| 1874 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1875 | - if ($globalDebug) echo "Owner Papua New Guinea: Download..."; |
|
| 2250 | + } elseif ($globalDebug) { |
|
| 2251 | + echo "Done\n"; |
|
| 2252 | + } |
|
| 2253 | + if ($globalDebug) { |
|
| 2254 | + echo "Owner Papua New Guinea: Download..."; |
|
| 2255 | + } |
|
| 1876 | 2256 | update_db::download('http://antonakis.co.uk/registers/PapuaNewGuinea.txt',$tmp_dir.'owner_p2.csv'); |
| 1877 | 2257 | if (file_exists($tmp_dir.'owner_p2.csv')) { |
| 1878 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2258 | + if ($globalDebug) { |
|
| 2259 | + echo "Add to DB..."; |
|
| 2260 | + } |
|
| 1879 | 2261 | $error = update_db::retrieve_owner($tmp_dir.'owner_p2.csv','P2'); |
| 1880 | - } else $error = "File ".$tmp_dir.'owner_p2.csv'." doesn't exist. Download failed."; |
|
| 2262 | + } else { |
|
| 2263 | + $error = "File ".$tmp_dir.'owner_p2.csv'." doesn't exist. Download failed."; |
|
| 2264 | + } |
|
| 1881 | 2265 | if ($error != '') { |
| 1882 | 2266 | return $error; |
| 1883 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1884 | - if ($globalDebug) echo "Owner Slovakia: Download..."; |
|
| 2267 | + } elseif ($globalDebug) { |
|
| 2268 | + echo "Done\n"; |
|
| 2269 | + } |
|
| 2270 | + if ($globalDebug) { |
|
| 2271 | + echo "Owner Slovakia: Download..."; |
|
| 2272 | + } |
|
| 1885 | 2273 | update_db::download('http://antonakis.co.uk/registers/Slovakia.txt',$tmp_dir.'owner_om.csv'); |
| 1886 | 2274 | if (file_exists($tmp_dir.'owner_om.csv')) { |
| 1887 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2275 | + if ($globalDebug) { |
|
| 2276 | + echo "Add to DB..."; |
|
| 2277 | + } |
|
| 1888 | 2278 | $error = update_db::retrieve_owner($tmp_dir.'owner_om.csv','OM'); |
| 1889 | - } else $error = "File ".$tmp_dir.'owner_om.csv'." doesn't exist. Download failed."; |
|
| 2279 | + } else { |
|
| 2280 | + $error = "File ".$tmp_dir.'owner_om.csv'." doesn't exist. Download failed."; |
|
| 2281 | + } |
|
| 1890 | 2282 | if ($error != '') { |
| 1891 | 2283 | return $error; |
| 1892 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1893 | - if ($globalDebug) echo "Owner Ecuador: Download..."; |
|
| 2284 | + } elseif ($globalDebug) { |
|
| 2285 | + echo "Done\n"; |
|
| 2286 | + } |
|
| 2287 | + if ($globalDebug) { |
|
| 2288 | + echo "Owner Ecuador: Download..."; |
|
| 2289 | + } |
|
| 1894 | 2290 | update_db::download('http://antonakis.co.uk/registers/Ecuador.txt',$tmp_dir.'owner_hc.csv'); |
| 1895 | 2291 | if (file_exists($tmp_dir.'owner_hc.csv')) { |
| 1896 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2292 | + if ($globalDebug) { |
|
| 2293 | + echo "Add to DB..."; |
|
| 2294 | + } |
|
| 1897 | 2295 | $error = update_db::retrieve_owner($tmp_dir.'owner_hc.csv','HC'); |
| 1898 | - } else $error = "File ".$tmp_dir.'owner_hc.csv'." doesn't exist. Download failed."; |
|
| 2296 | + } else { |
|
| 2297 | + $error = "File ".$tmp_dir.'owner_hc.csv'." doesn't exist. Download failed."; |
|
| 2298 | + } |
|
| 1899 | 2299 | if ($error != '') { |
| 1900 | 2300 | return $error; |
| 1901 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1902 | - if ($globalDebug) echo "Owner Iceland: Download..."; |
|
| 2301 | + } elseif ($globalDebug) { |
|
| 2302 | + echo "Done\n"; |
|
| 2303 | + } |
|
| 2304 | + if ($globalDebug) { |
|
| 2305 | + echo "Owner Iceland: Download..."; |
|
| 2306 | + } |
|
| 1903 | 2307 | update_db::download('http://antonakis.co.uk/registers/Iceland.txt',$tmp_dir.'owner_tf.csv'); |
| 1904 | 2308 | if (file_exists($tmp_dir.'owner_tf.csv')) { |
| 1905 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2309 | + if ($globalDebug) { |
|
| 2310 | + echo "Add to DB..."; |
|
| 2311 | + } |
|
| 1906 | 2312 | $error = update_db::retrieve_owner($tmp_dir.'owner_tf.csv','TF'); |
| 1907 | - } else $error = "File ".$tmp_dir.'owner_tf.csv'." doesn't exist. Download failed."; |
|
| 2313 | + } else { |
|
| 2314 | + $error = "File ".$tmp_dir.'owner_tf.csv'." doesn't exist. Download failed."; |
|
| 2315 | + } |
|
| 1908 | 2316 | if ($error != '') { |
| 1909 | 2317 | return $error; |
| 1910 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1911 | - if ($globalDebug) echo "Owner Isle of Man: Download..."; |
|
| 2318 | + } elseif ($globalDebug) { |
|
| 2319 | + echo "Done\n"; |
|
| 2320 | + } |
|
| 2321 | + if ($globalDebug) { |
|
| 2322 | + echo "Owner Isle of Man: Download..."; |
|
| 2323 | + } |
|
| 1912 | 2324 | update_db::download('http://antonakis.co.uk/registers/IsleOfMan.txt',$tmp_dir.'owner_m.csv'); |
| 1913 | 2325 | if (file_exists($tmp_dir.'owner_m.csv')) { |
| 1914 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2326 | + if ($globalDebug) { |
|
| 2327 | + echo "Add to DB..."; |
|
| 2328 | + } |
|
| 1915 | 2329 | $error = update_db::retrieve_owner($tmp_dir.'owner_m.csv','M'); |
| 1916 | - } else $error = "File ".$tmp_dir.'owner_m.csv'." doesn't exist. Download failed."; |
|
| 2330 | + } else { |
|
| 2331 | + $error = "File ".$tmp_dir.'owner_m.csv'." doesn't exist. Download failed."; |
|
| 2332 | + } |
|
| 1917 | 2333 | if ($error != '') { |
| 1918 | 2334 | return $error; |
| 1919 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2335 | + } elseif ($globalDebug) { |
|
| 2336 | + echo "Done\n"; |
|
| 2337 | + } |
|
| 1920 | 2338 | if ($globalMasterSource) { |
| 1921 | - if ($globalDebug) echo "ModeS Netherlands: Download..."; |
|
| 2339 | + if ($globalDebug) { |
|
| 2340 | + echo "ModeS Netherlands: Download..."; |
|
| 2341 | + } |
|
| 1922 | 2342 | update_db::download('http://antonakis.co.uk/registers/Netherlands.txt',$tmp_dir.'owner_ph.csv'); |
| 1923 | 2343 | if (file_exists($tmp_dir.'owner_ph.csv')) { |
| 1924 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2344 | + if ($globalDebug) { |
|
| 2345 | + echo "Add to DB..."; |
|
| 2346 | + } |
|
| 1925 | 2347 | $error = update_db::retrieve_owner($tmp_dir.'owner_ph.csv','PH'); |
| 1926 | - } else $error = "File ".$tmp_dir.'owner_ph.csv'." doesn't exist. Download failed."; |
|
| 2348 | + } else { |
|
| 2349 | + $error = "File ".$tmp_dir.'owner_ph.csv'." doesn't exist. Download failed."; |
|
| 2350 | + } |
|
| 1927 | 2351 | if ($error != '') { |
| 1928 | 2352 | return $error; |
| 1929 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1930 | - if ($globalDebug) echo "ModeS Denmark: Download..."; |
|
| 2353 | + } elseif ($globalDebug) { |
|
| 2354 | + echo "Done\n"; |
|
| 2355 | + } |
|
| 2356 | + if ($globalDebug) { |
|
| 2357 | + echo "ModeS Denmark: Download..."; |
|
| 2358 | + } |
|
| 1931 | 2359 | update_db::download('http://antonakis.co.uk/registers/Denmark.txt',$tmp_dir.'owner_oy.csv'); |
| 1932 | 2360 | if (file_exists($tmp_dir.'owner_oy.csv')) { |
| 1933 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2361 | + if ($globalDebug) { |
|
| 2362 | + echo "Add to DB..."; |
|
| 2363 | + } |
|
| 1934 | 2364 | $error = update_db::retrieve_owner($tmp_dir.'owner_oy.csv','OY'); |
| 1935 | - } else $error = "File ".$tmp_dir.'owner_oy.csv'." doesn't exist. Download failed."; |
|
| 2365 | + } else { |
|
| 2366 | + $error = "File ".$tmp_dir.'owner_oy.csv'." doesn't exist. Download failed."; |
|
| 2367 | + } |
|
| 1936 | 2368 | if ($error != '') { |
| 1937 | 2369 | return $error; |
| 1938 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 1939 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2370 | + } elseif ($globalDebug) { |
|
| 2371 | + echo "Done\n"; |
|
| 2372 | + } |
|
| 2373 | + } elseif ($globalDebug) { |
|
| 2374 | + echo "Done\n"; |
|
| 2375 | + } |
|
| 1940 | 2376 | return ''; |
| 1941 | 2377 | } |
| 1942 | 2378 | |
| 1943 | 2379 | public static function update_translation() { |
| 1944 | 2380 | global $tmp_dir, $globalDebug; |
| 1945 | 2381 | $error = ''; |
| 1946 | - if ($globalDebug) echo "Translation : Download..."; |
|
| 2382 | + if ($globalDebug) { |
|
| 2383 | + echo "Translation : Download..."; |
|
| 2384 | + } |
|
| 1947 | 2385 | update_db::download('http://www.acarsd.org/download/translation.php',$tmp_dir.'translation.zip'); |
| 1948 | 2386 | if (file_exists($tmp_dir.'translation.zip')) { |
| 1949 | - if ($globalDebug) echo "Unzip..."; |
|
| 2387 | + if ($globalDebug) { |
|
| 2388 | + echo "Unzip..."; |
|
| 2389 | + } |
|
| 1950 | 2390 | update_db::unzip($tmp_dir.'translation.zip'); |
| 1951 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2391 | + if ($globalDebug) { |
|
| 2392 | + echo "Add to DB..."; |
|
| 2393 | + } |
|
| 1952 | 2394 | $error = update_db::translation(); |
| 1953 | - } else $error = "File ".$tmp_dir.'translation.zip'." doesn't exist. Download failed."; |
|
| 2395 | + } else { |
|
| 2396 | + $error = "File ".$tmp_dir.'translation.zip'." doesn't exist. Download failed."; |
|
| 2397 | + } |
|
| 1954 | 2398 | if ($error != '') { |
| 1955 | 2399 | return $error; |
| 1956 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2400 | + } elseif ($globalDebug) { |
|
| 2401 | + echo "Done\n"; |
|
| 2402 | + } |
|
| 1957 | 2403 | return ''; |
| 1958 | 2404 | } |
| 1959 | 2405 | |
| 1960 | 2406 | public static function update_translation_fam() { |
| 1961 | 2407 | global $tmp_dir, $globalDebug; |
| 1962 | - if ($globalDebug) echo "Translation from FlightAirMap website : Download..."; |
|
| 2408 | + if ($globalDebug) { |
|
| 2409 | + echo "Translation from FlightAirMap website : Download..."; |
|
| 2410 | + } |
|
| 1963 | 2411 | update_db::download('http://data.flightairmap.fr/data/translation.tsv.gz',$tmp_dir.'translation.tsv.gz'); |
| 1964 | 2412 | if (file_exists($tmp_dir.'translation.tsv.gz')) { |
| 1965 | - if ($globalDebug) echo "Gunzip..."; |
|
| 2413 | + if ($globalDebug) { |
|
| 2414 | + echo "Gunzip..."; |
|
| 2415 | + } |
|
| 1966 | 2416 | update_db::gunzip($tmp_dir.'translation.tsv.gz'); |
| 1967 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2417 | + if ($globalDebug) { |
|
| 2418 | + echo "Add to DB..."; |
|
| 2419 | + } |
|
| 1968 | 2420 | $error = update_db::translation_fam(); |
| 1969 | - } else $error = "File ".$tmp_dir.'translation.tsv.gz'." doesn't exist. Download failed."; |
|
| 2421 | + } else { |
|
| 2422 | + $error = "File ".$tmp_dir.'translation.tsv.gz'." doesn't exist. Download failed."; |
|
| 2423 | + } |
|
| 1970 | 2424 | if ($error != '') { |
| 1971 | 2425 | return $error; |
| 1972 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2426 | + } elseif ($globalDebug) { |
|
| 2427 | + echo "Done\n"; |
|
| 2428 | + } |
|
| 1973 | 2429 | return ''; |
| 1974 | 2430 | } |
| 1975 | 2431 | public static function update_ModeS_fam() { |
| 1976 | 2432 | global $tmp_dir, $globalDebug; |
| 1977 | - if ($globalDebug) echo "ModeS from FlightAirMap website : Download..."; |
|
| 2433 | + if ($globalDebug) { |
|
| 2434 | + echo "ModeS from FlightAirMap website : Download..."; |
|
| 2435 | + } |
|
| 1978 | 2436 | update_db::download('http://data.flightairmap.fr/data/modes.tsv.gz',$tmp_dir.'modes.tsv.gz'); |
| 1979 | 2437 | if (file_exists($tmp_dir.'modes.tsv.gz')) { |
| 1980 | - if ($globalDebug) echo "Gunzip..."; |
|
| 2438 | + if ($globalDebug) { |
|
| 2439 | + echo "Gunzip..."; |
|
| 2440 | + } |
|
| 1981 | 2441 | update_db::gunzip($tmp_dir.'modes.tsv.gz'); |
| 1982 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2442 | + if ($globalDebug) { |
|
| 2443 | + echo "Add to DB..."; |
|
| 2444 | + } |
|
| 1983 | 2445 | $error = update_db::modes_fam(); |
| 1984 | - } else $error = "File ".$tmp_dir.'modes.tsv.gz'." doesn't exist. Download failed."; |
|
| 2446 | + } else { |
|
| 2447 | + $error = "File ".$tmp_dir.'modes.tsv.gz'." doesn't exist. Download failed."; |
|
| 2448 | + } |
|
| 1985 | 2449 | if ($error != '') { |
| 1986 | 2450 | return $error; |
| 1987 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2451 | + } elseif ($globalDebug) { |
|
| 2452 | + echo "Done\n"; |
|
| 2453 | + } |
|
| 1988 | 2454 | return ''; |
| 1989 | 2455 | } |
| 1990 | 2456 | public static function update_owner_fam() { |
| 1991 | 2457 | global $tmp_dir, $globalDebug, $globalOwner; |
| 1992 | - if ($globalDebug) echo "owner from FlightAirMap website : Download..."; |
|
| 2458 | + if ($globalDebug) { |
|
| 2459 | + echo "owner from FlightAirMap website : Download..."; |
|
| 2460 | + } |
|
| 1993 | 2461 | if ($globalOwner === TRUE) { |
| 1994 | 2462 | update_db::download('http://data.flightairmap.fr/data/owners_all.tsv.gz',$tmp_dir.'owners.tsv.gz'); |
| 1995 | 2463 | } else { |
| 1996 | 2464 | update_db::download('http://data.flightairmap.fr/data/owners.tsv.gz',$tmp_dir.'owners.tsv.gz'); |
| 1997 | 2465 | } |
| 1998 | 2466 | if (file_exists($tmp_dir.'owners.tsv.gz')) { |
| 1999 | - if ($globalDebug) echo "Gunzip..."; |
|
| 2467 | + if ($globalDebug) { |
|
| 2468 | + echo "Gunzip..."; |
|
| 2469 | + } |
|
| 2000 | 2470 | update_db::gunzip($tmp_dir.'owners.tsv.gz'); |
| 2001 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2471 | + if ($globalDebug) { |
|
| 2472 | + echo "Add to DB..."; |
|
| 2473 | + } |
|
| 2002 | 2474 | $error = update_db::owner_fam(); |
| 2003 | - } else $error = "File ".$tmp_dir.'owners.tsv.gz'." doesn't exist. Download failed."; |
|
| 2475 | + } else { |
|
| 2476 | + $error = "File ".$tmp_dir.'owners.tsv.gz'." doesn't exist. Download failed."; |
|
| 2477 | + } |
|
| 2004 | 2478 | if ($error != '') { |
| 2005 | 2479 | return $error; |
| 2006 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2480 | + } elseif ($globalDebug) { |
|
| 2481 | + echo "Done\n"; |
|
| 2482 | + } |
|
| 2007 | 2483 | return ''; |
| 2008 | 2484 | } |
| 2009 | 2485 | public static function update_routes_fam() { |
| 2010 | 2486 | global $tmp_dir, $globalDebug; |
| 2011 | - if ($globalDebug) echo "Routes from FlightAirMap website : Download..."; |
|
| 2487 | + if ($globalDebug) { |
|
| 2488 | + echo "Routes from FlightAirMap website : Download..."; |
|
| 2489 | + } |
|
| 2012 | 2490 | update_db::download('http://data.flightairmap.fr/data/routes.tsv.gz',$tmp_dir.'routes.tsv.gz'); |
| 2013 | 2491 | if (file_exists($tmp_dir.'routes.tsv.gz')) { |
| 2014 | - if ($globalDebug) echo "Gunzip..."; |
|
| 2492 | + if ($globalDebug) { |
|
| 2493 | + echo "Gunzip..."; |
|
| 2494 | + } |
|
| 2015 | 2495 | update_db::gunzip($tmp_dir.'routes.tsv.gz'); |
| 2016 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2496 | + if ($globalDebug) { |
|
| 2497 | + echo "Add to DB..."; |
|
| 2498 | + } |
|
| 2017 | 2499 | $error = update_db::routes_fam(); |
| 2018 | - } else $error = "File ".$tmp_dir.'routes.tsv.gz'." doesn't exist. Download failed."; |
|
| 2500 | + } else { |
|
| 2501 | + $error = "File ".$tmp_dir.'routes.tsv.gz'." doesn't exist. Download failed."; |
|
| 2502 | + } |
|
| 2019 | 2503 | if ($error != '') { |
| 2020 | 2504 | return $error; |
| 2021 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2505 | + } elseif ($globalDebug) { |
|
| 2506 | + echo "Done\n"; |
|
| 2507 | + } |
|
| 2022 | 2508 | return ''; |
| 2023 | 2509 | } |
| 2024 | 2510 | public static function update_marine_identity_fam() { |
@@ -2028,14 +2514,22 @@ discard block |
||
| 2028 | 2514 | $marine_identity_md5_file = explode(' ',file_get_contents($tmp_dir.'marine_identity.tsv.gz.md5')); |
| 2029 | 2515 | $marine_identity_md5 = $marine_identity_md5_file[0]; |
| 2030 | 2516 | if (!update_db::check_marine_identity_version($marine_identity_md5)) { |
| 2031 | - if ($globalDebug) echo "Marine identity from FlightAirMap website : Download..."; |
|
| 2517 | + if ($globalDebug) { |
|
| 2518 | + echo "Marine identity from FlightAirMap website : Download..."; |
|
| 2519 | + } |
|
| 2032 | 2520 | update_db::download('http://data.flightairmap.fr/data/marine_identity.tsv.gz',$tmp_dir.'marine_identity.tsv.gz'); |
| 2033 | 2521 | if (file_exists($tmp_dir.'marine_identity.tsv.gz')) { |
| 2034 | - if ($globalDebug) echo "Gunzip..."; |
|
| 2522 | + if ($globalDebug) { |
|
| 2523 | + echo "Gunzip..."; |
|
| 2524 | + } |
|
| 2035 | 2525 | update_db::gunzip($tmp_dir.'marine_identity.tsv.gz'); |
| 2036 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2526 | + if ($globalDebug) { |
|
| 2527 | + echo "Add to DB..."; |
|
| 2528 | + } |
|
| 2037 | 2529 | $error = update_db::marine_identity_fam(); |
| 2038 | - } else $error = "File ".$tmp_dir.'marine_identity.tsv.gz'." doesn't exist. Download failed."; |
|
| 2530 | + } else { |
|
| 2531 | + $error = "File ".$tmp_dir.'marine_identity.tsv.gz'." doesn't exist. Download failed."; |
|
| 2532 | + } |
|
| 2039 | 2533 | if ($error != '') { |
| 2040 | 2534 | return $error; |
| 2041 | 2535 | } elseif ($globalDebug) { |
@@ -2048,17 +2542,25 @@ discard block |
||
| 2048 | 2542 | } |
| 2049 | 2543 | public static function update_banned_fam() { |
| 2050 | 2544 | global $tmp_dir, $globalDebug; |
| 2051 | - if ($globalDebug) echo "Banned airlines in Europe from FlightAirMap website : Download..."; |
|
| 2545 | + if ($globalDebug) { |
|
| 2546 | + echo "Banned airlines in Europe from FlightAirMap website : Download..."; |
|
| 2547 | + } |
|
| 2052 | 2548 | update_db::download('http://data.flightairmap.fr/data/ban_eu.csv',$tmp_dir.'ban_eu.csv'); |
| 2053 | 2549 | if (file_exists($tmp_dir.'ban_eu.csv')) { |
| 2054 | 2550 | //if ($globalDebug) echo "Gunzip..."; |
| 2055 | 2551 | //update_db::gunzip($tmp_dir.'ban_ue.csv'); |
| 2056 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2552 | + if ($globalDebug) { |
|
| 2553 | + echo "Add to DB..."; |
|
| 2554 | + } |
|
| 2057 | 2555 | $error = update_db::banned_fam(); |
| 2058 | - } else $error = "File ".$tmp_dir.'ban_eu.csv'." doesn't exist. Download failed."; |
|
| 2556 | + } else { |
|
| 2557 | + $error = "File ".$tmp_dir.'ban_eu.csv'." doesn't exist. Download failed."; |
|
| 2558 | + } |
|
| 2059 | 2559 | if ($error != '') { |
| 2060 | 2560 | return $error; |
| 2061 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2561 | + } elseif ($globalDebug) { |
|
| 2562 | + echo "Done\n"; |
|
| 2563 | + } |
|
| 2062 | 2564 | return ''; |
| 2063 | 2565 | } |
| 2064 | 2566 | |
@@ -2066,7 +2568,9 @@ discard block |
||
| 2066 | 2568 | global $tmp_dir, $globalDebug, $globalDBdriver; |
| 2067 | 2569 | include_once('class.create_db.php'); |
| 2068 | 2570 | $error = ''; |
| 2069 | - if ($globalDebug) echo "Airspace from FlightAirMap website : Download..."; |
|
| 2571 | + if ($globalDebug) { |
|
| 2572 | + echo "Airspace from FlightAirMap website : Download..."; |
|
| 2573 | + } |
|
| 2070 | 2574 | if ($globalDBdriver == 'mysql') { |
| 2071 | 2575 | update_db::download('http://data.flightairmap.fr/data/airspace_mysql.sql.gz.md5',$tmp_dir.'airspace.sql.gz.md5'); |
| 2072 | 2576 | } else { |
@@ -2082,9 +2586,13 @@ discard block |
||
| 2082 | 2586 | update_db::download('http://data.flightairmap.fr/data/airspace_pgsql.sql.gz',$tmp_dir.'airspace.sql.gz'); |
| 2083 | 2587 | } |
| 2084 | 2588 | if (file_exists($tmp_dir.'airspace.sql.gz')) { |
| 2085 | - if ($globalDebug) echo "Gunzip..."; |
|
| 2589 | + if ($globalDebug) { |
|
| 2590 | + echo "Gunzip..."; |
|
| 2591 | + } |
|
| 2086 | 2592 | update_db::gunzip($tmp_dir.'airspace.sql.gz'); |
| 2087 | - if ($globalDebug) echo "Add to DB..."; |
|
| 2593 | + if ($globalDebug) { |
|
| 2594 | + echo "Add to DB..."; |
|
| 2595 | + } |
|
| 2088 | 2596 | $Connection = new Connection(); |
| 2089 | 2597 | if ($Connection->tableExists('airspace')) { |
| 2090 | 2598 | $query = 'DROP TABLE airspace'; |
@@ -2097,31 +2605,47 @@ discard block |
||
| 2097 | 2605 | } |
| 2098 | 2606 | $error = create_db::import_file($tmp_dir.'airspace.sql'); |
| 2099 | 2607 | update_db::insert_airspace_version($airspace_md5); |
| 2100 | - } else $error = "File ".$tmp_dir.'airpsace.sql.gz'." doesn't exist. Download failed."; |
|
| 2608 | + } else { |
|
| 2609 | + $error = "File ".$tmp_dir.'airpsace.sql.gz'." doesn't exist. Download failed."; |
|
| 2610 | + } |
|
| 2101 | 2611 | } |
| 2102 | - } else $error = "File ".$tmp_dir.'airpsace.sql.gz.md5'." doesn't exist. Download failed."; |
|
| 2612 | + } else { |
|
| 2613 | + $error = "File ".$tmp_dir.'airpsace.sql.gz.md5'." doesn't exist. Download failed."; |
|
| 2614 | + } |
|
| 2103 | 2615 | if ($error != '') { |
| 2104 | 2616 | return $error; |
| 2105 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2617 | + } elseif ($globalDebug) { |
|
| 2618 | + echo "Done\n"; |
|
| 2619 | + } |
|
| 2106 | 2620 | return ''; |
| 2107 | 2621 | } |
| 2108 | 2622 | |
| 2109 | 2623 | public static function update_tle() { |
| 2110 | 2624 | global $tmp_dir, $globalDebug; |
| 2111 | - if ($globalDebug) echo "Download TLE : Download..."; |
|
| 2625 | + if ($globalDebug) { |
|
| 2626 | + echo "Download TLE : Download..."; |
|
| 2627 | + } |
|
| 2112 | 2628 | $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', |
| 2113 | 2629 | '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', |
| 2114 | 2630 | 'engineering.txt','education.txt','military.txt','radar.txt','cubesat.txt','other.txt','tle-new.txt'); |
| 2115 | 2631 | foreach ($alltle as $filename) { |
| 2116 | - if ($globalDebug) echo "downloading ".$filename.'...'; |
|
| 2632 | + if ($globalDebug) { |
|
| 2633 | + echo "downloading ".$filename.'...'; |
|
| 2634 | + } |
|
| 2117 | 2635 | update_db::download('http://celestrak.com/NORAD/elements/'.$filename,$tmp_dir.$filename); |
| 2118 | 2636 | if (file_exists($tmp_dir.$filename)) { |
| 2119 | - if ($globalDebug) echo "Add to DB ".$filename."..."; |
|
| 2637 | + if ($globalDebug) { |
|
| 2638 | + echo "Add to DB ".$filename."..."; |
|
| 2639 | + } |
|
| 2120 | 2640 | $error = update_db::tle($tmp_dir.$filename,str_replace('.txt','',$filename)); |
| 2121 | - } else $error = "File ".$tmp_dir.$filename." doesn't exist. Download failed."; |
|
| 2641 | + } else { |
|
| 2642 | + $error = "File ".$tmp_dir.$filename." doesn't exist. Download failed."; |
|
| 2643 | + } |
|
| 2122 | 2644 | if ($error != '') { |
| 2123 | 2645 | echo $error."\n"; |
| 2124 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2646 | + } elseif ($globalDebug) { |
|
| 2647 | + echo "Done\n"; |
|
| 2648 | + } |
|
| 2125 | 2649 | } |
| 2126 | 2650 | return ''; |
| 2127 | 2651 | } |
@@ -2129,10 +2653,14 @@ discard block |
||
| 2129 | 2653 | public static function update_models() { |
| 2130 | 2654 | global $tmp_dir, $globalDebug; |
| 2131 | 2655 | $error = ''; |
| 2132 | - if ($globalDebug) echo "Models from FlightAirMap website : Download..."; |
|
| 2656 | + if ($globalDebug) { |
|
| 2657 | + echo "Models from FlightAirMap website : Download..."; |
|
| 2658 | + } |
|
| 2133 | 2659 | update_db::download('http://data.flightairmap.fr/data/models/models.md5sum',$tmp_dir.'models.md5sum'); |
| 2134 | 2660 | if (file_exists($tmp_dir.'models.md5sum')) { |
| 2135 | - if ($globalDebug) echo "Check files...\n"; |
|
| 2661 | + if ($globalDebug) { |
|
| 2662 | + echo "Check files...\n"; |
|
| 2663 | + } |
|
| 2136 | 2664 | $newmodelsdb = array(); |
| 2137 | 2665 | if (($handle = fopen($tmp_dir.'models.md5sum','r')) !== FALSE) { |
| 2138 | 2666 | while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
@@ -2151,25 +2679,35 @@ discard block |
||
| 2151 | 2679 | } |
| 2152 | 2680 | $diff = array_diff($newmodelsdb,$modelsdb); |
| 2153 | 2681 | foreach ($diff as $key => $value) { |
| 2154 | - if ($globalDebug) echo 'Downloading model '.$key.' ...'."\n"; |
|
| 2682 | + if ($globalDebug) { |
|
| 2683 | + echo 'Downloading model '.$key.' ...'."\n"; |
|
| 2684 | + } |
|
| 2155 | 2685 | update_db::download('http://data.flightairmap.fr/data/models/'.$key,dirname(__FILE__).'/../models/'.$key); |
| 2156 | 2686 | |
| 2157 | 2687 | } |
| 2158 | 2688 | update_db::download('http://data.flightairmap.fr/data/models/models.md5sum',dirname(__FILE__).'/../models/models.md5sum'); |
| 2159 | - } else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
| 2689 | + } else { |
|
| 2690 | + $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
| 2691 | + } |
|
| 2160 | 2692 | if ($error != '') { |
| 2161 | 2693 | return $error; |
| 2162 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2694 | + } elseif ($globalDebug) { |
|
| 2695 | + echo "Done\n"; |
|
| 2696 | + } |
|
| 2163 | 2697 | return ''; |
| 2164 | 2698 | } |
| 2165 | 2699 | |
| 2166 | 2700 | public static function update_space_models() { |
| 2167 | 2701 | global $tmp_dir, $globalDebug; |
| 2168 | 2702 | $error = ''; |
| 2169 | - if ($globalDebug) echo "Space models from FlightAirMap website : Download..."; |
|
| 2703 | + if ($globalDebug) { |
|
| 2704 | + echo "Space models from FlightAirMap website : Download..."; |
|
| 2705 | + } |
|
| 2170 | 2706 | update_db::download('http://data.flightairmap.fr/data/models/space/space_models.md5sum',$tmp_dir.'space_models.md5sum'); |
| 2171 | 2707 | if (file_exists($tmp_dir.'space_models.md5sum')) { |
| 2172 | - if ($globalDebug) echo "Check files...\n"; |
|
| 2708 | + if ($globalDebug) { |
|
| 2709 | + echo "Check files...\n"; |
|
| 2710 | + } |
|
| 2173 | 2711 | $newmodelsdb = array(); |
| 2174 | 2712 | if (($handle = fopen($tmp_dir.'space_models.md5sum','r')) !== FALSE) { |
| 2175 | 2713 | while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
@@ -2188,25 +2726,35 @@ discard block |
||
| 2188 | 2726 | } |
| 2189 | 2727 | $diff = array_diff($newmodelsdb,$modelsdb); |
| 2190 | 2728 | foreach ($diff as $key => $value) { |
| 2191 | - if ($globalDebug) echo 'Downloading space model '.$key.' ...'."\n"; |
|
| 2729 | + if ($globalDebug) { |
|
| 2730 | + echo 'Downloading space model '.$key.' ...'."\n"; |
|
| 2731 | + } |
|
| 2192 | 2732 | update_db::download('http://data.flightairmap.fr/data/models/space/'.$key,dirname(__FILE__).'/../models/space/'.$key); |
| 2193 | 2733 | |
| 2194 | 2734 | } |
| 2195 | 2735 | update_db::download('http://data.flightairmap.fr/data/models/space/space_models.md5sum',dirname(__FILE__).'/../models/space/space_models.md5sum'); |
| 2196 | - } else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
| 2736 | + } else { |
|
| 2737 | + $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
| 2738 | + } |
|
| 2197 | 2739 | if ($error != '') { |
| 2198 | 2740 | return $error; |
| 2199 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2741 | + } elseif ($globalDebug) { |
|
| 2742 | + echo "Done\n"; |
|
| 2743 | + } |
|
| 2200 | 2744 | return ''; |
| 2201 | 2745 | } |
| 2202 | 2746 | |
| 2203 | 2747 | public static function update_vehicules_models() { |
| 2204 | 2748 | global $tmp_dir, $globalDebug; |
| 2205 | 2749 | $error = ''; |
| 2206 | - if ($globalDebug) echo "Vehicules models from FlightAirMap website : Download..."; |
|
| 2750 | + if ($globalDebug) { |
|
| 2751 | + echo "Vehicules models from FlightAirMap website : Download..."; |
|
| 2752 | + } |
|
| 2207 | 2753 | update_db::download('http://data.flightairmap.fr/data/models/vehicules/vehicules_models.md5sum',$tmp_dir.'vehicules_models.md5sum'); |
| 2208 | 2754 | if (file_exists($tmp_dir.'vehicules_models.md5sum')) { |
| 2209 | - if ($globalDebug) echo "Check files...\n"; |
|
| 2755 | + if ($globalDebug) { |
|
| 2756 | + echo "Check files...\n"; |
|
| 2757 | + } |
|
| 2210 | 2758 | $newmodelsdb = array(); |
| 2211 | 2759 | if (($handle = fopen($tmp_dir.'vehicules_models.md5sum','r')) !== FALSE) { |
| 2212 | 2760 | while (($row = fgetcsv($handle,1000," ")) !== FALSE) { |
@@ -2225,15 +2773,21 @@ discard block |
||
| 2225 | 2773 | } |
| 2226 | 2774 | $diff = array_diff($newmodelsdb,$modelsdb); |
| 2227 | 2775 | foreach ($diff as $key => $value) { |
| 2228 | - if ($globalDebug) echo 'Downloading vehicules model '.$key.' ...'."\n"; |
|
| 2776 | + if ($globalDebug) { |
|
| 2777 | + echo 'Downloading vehicules model '.$key.' ...'."\n"; |
|
| 2778 | + } |
|
| 2229 | 2779 | update_db::download('http://data.flightairmap.fr/data/models/vehicules/'.$key,dirname(__FILE__).'/../models/vehicules/'.$key); |
| 2230 | 2780 | |
| 2231 | 2781 | } |
| 2232 | 2782 | update_db::download('http://data.flightairmap.fr/data/models/vehicules/vehicules_models.md5sum',dirname(__FILE__).'/../models/vehicules/vehicules_models.md5sum'); |
| 2233 | - } else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
| 2783 | + } else { |
|
| 2784 | + $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed."; |
|
| 2785 | + } |
|
| 2234 | 2786 | if ($error != '') { |
| 2235 | 2787 | return $error; |
| 2236 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2788 | + } elseif ($globalDebug) { |
|
| 2789 | + echo "Done\n"; |
|
| 2790 | + } |
|
| 2237 | 2791 | return ''; |
| 2238 | 2792 | } |
| 2239 | 2793 | |
@@ -2276,7 +2830,9 @@ discard block |
||
| 2276 | 2830 | } |
| 2277 | 2831 | |
| 2278 | 2832 | $error = ''; |
| 2279 | - if ($globalDebug) echo "Notam : Download..."; |
|
| 2833 | + if ($globalDebug) { |
|
| 2834 | + echo "Notam : Download..."; |
|
| 2835 | + } |
|
| 2280 | 2836 | update_db::download($globalNOTAMSource,$tmp_dir.'notam.rss'); |
| 2281 | 2837 | if (file_exists($tmp_dir.'notam.rss')) { |
| 2282 | 2838 | $notams = json_decode(json_encode(simplexml_load_file($tmp_dir.'notam.rss')),true); |
@@ -2291,14 +2847,30 @@ discard block |
||
| 2291 | 2847 | $data['fir'] = $q[0]; |
| 2292 | 2848 | $data['code'] = $q[1]; |
| 2293 | 2849 | $ifrvfr = $q[2]; |
| 2294 | - if ($ifrvfr == 'IV') $data['rules'] = 'IFR/VFR'; |
|
| 2295 | - if ($ifrvfr == 'I') $data['rules'] = 'IFR'; |
|
| 2296 | - if ($ifrvfr == 'V') $data['rules'] = 'VFR'; |
|
| 2297 | - if ($q[4] == 'A') $data['scope'] = 'Airport warning'; |
|
| 2298 | - if ($q[4] == 'E') $data['scope'] = 'Enroute warning'; |
|
| 2299 | - if ($q[4] == 'W') $data['scope'] = 'Navigation warning'; |
|
| 2300 | - if ($q[4] == 'AE') $data['scope'] = 'Airport/Enroute warning'; |
|
| 2301 | - if ($q[4] == 'AW') $data['scope'] = 'Airport/Navigation warning'; |
|
| 2850 | + if ($ifrvfr == 'IV') { |
|
| 2851 | + $data['rules'] = 'IFR/VFR'; |
|
| 2852 | + } |
|
| 2853 | + if ($ifrvfr == 'I') { |
|
| 2854 | + $data['rules'] = 'IFR'; |
|
| 2855 | + } |
|
| 2856 | + if ($ifrvfr == 'V') { |
|
| 2857 | + $data['rules'] = 'VFR'; |
|
| 2858 | + } |
|
| 2859 | + if ($q[4] == 'A') { |
|
| 2860 | + $data['scope'] = 'Airport warning'; |
|
| 2861 | + } |
|
| 2862 | + if ($q[4] == 'E') { |
|
| 2863 | + $data['scope'] = 'Enroute warning'; |
|
| 2864 | + } |
|
| 2865 | + if ($q[4] == 'W') { |
|
| 2866 | + $data['scope'] = 'Navigation warning'; |
|
| 2867 | + } |
|
| 2868 | + if ($q[4] == 'AE') { |
|
| 2869 | + $data['scope'] = 'Airport/Enroute warning'; |
|
| 2870 | + } |
|
| 2871 | + if ($q[4] == 'AW') { |
|
| 2872 | + $data['scope'] = 'Airport/Navigation warning'; |
|
| 2873 | + } |
|
| 2302 | 2874 | //$data['scope'] = $q[4]; |
| 2303 | 2875 | $data['lower_limit'] = $q[5]; |
| 2304 | 2876 | $data['upper_limit'] = $q[6]; |
@@ -2306,8 +2878,12 @@ discard block |
||
| 2306 | 2878 | sscanf($latlonrad,'%4c%c%5c%c%3d',$las,$lac,$lns,$lnc,$radius); |
| 2307 | 2879 | $latitude = $Common->convertDec($las,'latitude'); |
| 2308 | 2880 | $longitude = $Common->convertDec($lns,'longitude'); |
| 2309 | - if ($lac == 'S') $latitude = '-'.$latitude; |
|
| 2310 | - if ($lnc == 'W') $longitude = '-'.$longitude; |
|
| 2881 | + if ($lac == 'S') { |
|
| 2882 | + $latitude = '-'.$latitude; |
|
| 2883 | + } |
|
| 2884 | + if ($lnc == 'W') { |
|
| 2885 | + $longitude = '-'.$longitude; |
|
| 2886 | + } |
|
| 2311 | 2887 | $data['center_latitude'] = $latitude; |
| 2312 | 2888 | $data['center_longitude'] = $longitude; |
| 2313 | 2889 | $data['radius'] = intval($radius); |
@@ -2337,10 +2913,14 @@ discard block |
||
| 2337 | 2913 | $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']); |
| 2338 | 2914 | unset($data); |
| 2339 | 2915 | } |
| 2340 | - } else $error = "File ".$tmp_dir.'notam.rss'." doesn't exist. Download failed."; |
|
| 2916 | + } else { |
|
| 2917 | + $error = "File ".$tmp_dir.'notam.rss'." doesn't exist. Download failed."; |
|
| 2918 | + } |
|
| 2341 | 2919 | if ($error != '') { |
| 2342 | 2920 | return $error; |
| 2343 | - } elseif ($globalDebug) echo "Done\n"; |
|
| 2921 | + } elseif ($globalDebug) { |
|
| 2922 | + echo "Done\n"; |
|
| 2923 | + } |
|
| 2344 | 2924 | return ''; |
| 2345 | 2925 | } |
| 2346 | 2926 | |
@@ -2365,7 +2945,9 @@ discard block |
||
| 2365 | 2945 | $airspace_lst = $Common->getData('https://raw.githubusercontent.com/XCSoar/xcsoar-data-repository/master/data/airspace.json'); |
| 2366 | 2946 | $airspace_json = json_decode($airspace_lst,true); |
| 2367 | 2947 | foreach ($airspace_json['records'] as $airspace) { |
| 2368 | - if ($globalDebug) echo $airspace['name']."...\n"; |
|
| 2948 | + if ($globalDebug) { |
|
| 2949 | + echo $airspace['name']."...\n"; |
|
| 2950 | + } |
|
| 2369 | 2951 | update_db::download($airspace['uri'],$tmp_dir.$airspace['name']); |
| 2370 | 2952 | if (file_exists($tmp_dir.$airspace['name'])) { |
| 2371 | 2953 | file_put_contents($tmp_dir.$airspace['name'], utf8_encode(file_get_contents($tmp_dir.$airspace['name']))); |
@@ -2409,8 +2991,11 @@ discard block |
||
| 2409 | 2991 | return "error : ".$e->getMessage(); |
| 2410 | 2992 | } |
| 2411 | 2993 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
| 2412 | - if ($row['nb'] > 0) return false; |
|
| 2413 | - else return true; |
|
| 2994 | + if ($row['nb'] > 0) { |
|
| 2995 | + return false; |
|
| 2996 | + } else { |
|
| 2997 | + return true; |
|
| 2998 | + } |
|
| 2414 | 2999 | } |
| 2415 | 3000 | |
| 2416 | 3001 | public static function insert_last_update() { |
@@ -2435,8 +3020,11 @@ discard block |
||
| 2435 | 3020 | return "error : ".$e->getMessage(); |
| 2436 | 3021 | } |
| 2437 | 3022 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
| 2438 | - if ($row['nb'] > 0) return true; |
|
| 2439 | - else return false; |
|
| 3023 | + if ($row['nb'] > 0) { |
|
| 3024 | + return true; |
|
| 3025 | + } else { |
|
| 3026 | + return false; |
|
| 3027 | + } |
|
| 2440 | 3028 | } |
| 2441 | 3029 | |
| 2442 | 3030 | public static function check_marine_identity_version($version) { |
@@ -2449,8 +3037,11 @@ discard block |
||
| 2449 | 3037 | return "error : ".$e->getMessage(); |
| 2450 | 3038 | } |
| 2451 | 3039 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
| 2452 | - if ($row['nb'] > 0) return true; |
|
| 2453 | - else return false; |
|
| 3040 | + if ($row['nb'] > 0) { |
|
| 3041 | + return true; |
|
| 3042 | + } else { |
|
| 3043 | + return false; |
|
| 3044 | + } |
|
| 2454 | 3045 | } |
| 2455 | 3046 | |
| 2456 | 3047 | |
@@ -2493,8 +3084,11 @@ discard block |
||
| 2493 | 3084 | return "error : ".$e->getMessage(); |
| 2494 | 3085 | } |
| 2495 | 3086 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
| 2496 | - if ($row['nb'] > 0) return false; |
|
| 2497 | - else return true; |
|
| 3087 | + if ($row['nb'] > 0) { |
|
| 3088 | + return false; |
|
| 3089 | + } else { |
|
| 3090 | + return true; |
|
| 3091 | + } |
|
| 2498 | 3092 | } |
| 2499 | 3093 | |
| 2500 | 3094 | public static function insert_last_notam_update() { |
@@ -2523,8 +3117,11 @@ discard block |
||
| 2523 | 3117 | return "error : ".$e->getMessage(); |
| 2524 | 3118 | } |
| 2525 | 3119 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
| 2526 | - if ($row['nb'] > 0) return false; |
|
| 2527 | - else return true; |
|
| 3120 | + if ($row['nb'] > 0) { |
|
| 3121 | + return false; |
|
| 3122 | + } else { |
|
| 3123 | + return true; |
|
| 3124 | + } |
|
| 2528 | 3125 | } |
| 2529 | 3126 | |
| 2530 | 3127 | public static function insert_last_airspace_update() { |
@@ -2554,8 +3151,11 @@ discard block |
||
| 2554 | 3151 | return "error : ".$e->getMessage(); |
| 2555 | 3152 | } |
| 2556 | 3153 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
| 2557 | - if ($row['nb'] > 0) return false; |
|
| 2558 | - else return true; |
|
| 3154 | + if ($row['nb'] > 0) { |
|
| 3155 | + return false; |
|
| 3156 | + } else { |
|
| 3157 | + return true; |
|
| 3158 | + } |
|
| 2559 | 3159 | } |
| 2560 | 3160 | |
| 2561 | 3161 | public static function insert_last_owner_update() { |
@@ -2584,8 +3184,11 @@ discard block |
||
| 2584 | 3184 | return "error : ".$e->getMessage(); |
| 2585 | 3185 | } |
| 2586 | 3186 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
| 2587 | - if ($row['nb'] > 0) return false; |
|
| 2588 | - else return true; |
|
| 3187 | + if ($row['nb'] > 0) { |
|
| 3188 | + return false; |
|
| 3189 | + } else { |
|
| 3190 | + return true; |
|
| 3191 | + } |
|
| 2589 | 3192 | } |
| 2590 | 3193 | |
| 2591 | 3194 | public static function insert_last_schedules_update() { |
@@ -2614,8 +3217,11 @@ discard block |
||
| 2614 | 3217 | return "error : ".$e->getMessage(); |
| 2615 | 3218 | } |
| 2616 | 3219 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
| 2617 | - if ($row['nb'] > 0) return false; |
|
| 2618 | - else return true; |
|
| 3220 | + if ($row['nb'] > 0) { |
|
| 3221 | + return false; |
|
| 3222 | + } else { |
|
| 3223 | + return true; |
|
| 3224 | + } |
|
| 2619 | 3225 | } |
| 2620 | 3226 | |
| 2621 | 3227 | public static function insert_last_tle_update() { |
@@ -2644,8 +3250,11 @@ discard block |
||
| 2644 | 3250 | return "error : ".$e->getMessage(); |
| 2645 | 3251 | } |
| 2646 | 3252 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
| 2647 | - if ($row['nb'] > 0) return false; |
|
| 2648 | - else return true; |
|
| 3253 | + if ($row['nb'] > 0) { |
|
| 3254 | + return false; |
|
| 3255 | + } else { |
|
| 3256 | + return true; |
|
| 3257 | + } |
|
| 2649 | 3258 | } |
| 2650 | 3259 | |
| 2651 | 3260 | public static function insert_last_marine_identity_update() { |