@@ -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 | ?> |
@@ -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() { |
@@ -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, date 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(); |