@@ -7,35 +7,35 @@ discard block |
||
7 | 7 | public $latest_schema = 46; |
8 | 8 | |
9 | 9 | public function __construct($dbc = null,$dbname = null,$user = null,$pass = null) { |
10 | - global $globalNoDB; |
|
11 | - if (isset($globalNoDB) && $globalNoDB === TRUE) { |
|
10 | + global $globalNoDB; |
|
11 | + if (isset($globalNoDB) && $globalNoDB === TRUE) { |
|
12 | 12 | $this->db = null; |
13 | - } else { |
|
13 | + } else { |
|
14 | 14 | if ($dbc === null) { |
15 | - if ($this->db === null && $dbname === null) { |
|
15 | + if ($this->db === null && $dbname === null) { |
|
16 | 16 | if ($user === null && $pass === null) { |
17 | - $this->createDBConnection(); |
|
17 | + $this->createDBConnection(); |
|
18 | 18 | } else { |
19 | - $this->createDBConnection(null,$user,$pass); |
|
19 | + $this->createDBConnection(null,$user,$pass); |
|
20 | 20 | } |
21 | - } else { |
|
21 | + } else { |
|
22 | 22 | $this->createDBConnection($dbname); |
23 | - } |
|
23 | + } |
|
24 | 24 | } elseif ($dbname === null || $dbname === 'default') { |
25 | - $this->db = $dbc; |
|
26 | - if ($this->connectionExists() === false) { |
|
25 | + $this->db = $dbc; |
|
26 | + if ($this->connectionExists() === false) { |
|
27 | 27 | /* |
28 | 28 | echo 'Restart Connection !!!'."\n"; |
29 | 29 | $e = new \Exception; |
30 | 30 | var_dump($e->getTraceAsString()); |
31 | 31 | */ |
32 | 32 | $this->createDBConnection(); |
33 | - } |
|
33 | + } |
|
34 | 34 | } else { |
35 | - //$this->connectionExists(); |
|
36 | - $this->dbs[$dbname] = $dbc; |
|
35 | + //$this->connectionExists(); |
|
36 | + $this->dbs[$dbname] = $dbc; |
|
37 | + } |
|
37 | 38 | } |
38 | - } |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | public function db() { |
@@ -56,11 +56,11 @@ discard block |
||
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
59 | - * Creates the database connection |
|
60 | - * |
|
61 | - * @return Boolean of the database connection |
|
62 | - * |
|
63 | - */ |
|
59 | + * Creates the database connection |
|
60 | + * |
|
61 | + * @return Boolean of the database connection |
|
62 | + * |
|
63 | + */ |
|
64 | 64 | |
65 | 65 | public function createDBConnection($DBname = null, $user = null, $pass = null) |
66 | 66 | { |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | return false; |
159 | 159 | } |
160 | 160 | if($results->rowCount()>0) { |
161 | - return true; |
|
161 | + return true; |
|
162 | 162 | } |
163 | 163 | else return false; |
164 | 164 | } |
@@ -176,14 +176,14 @@ discard block |
||
176 | 176 | $sum = $sum->fetchColumn(0); |
177 | 177 | } else $sum = 0; |
178 | 178 | if (intval($sum) !== 2) { |
179 | - return false; |
|
179 | + return false; |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | } catch(PDOException $e) { |
183 | 183 | if($e->getCode() != 'HY000' || !stristr($e->getMessage(), 'server has gone away')) { |
184 | - throw $e; |
|
185 | - } |
|
186 | - //echo 'error ! '.$e->getMessage(); |
|
184 | + throw $e; |
|
185 | + } |
|
186 | + //echo 'error ! '.$e->getMessage(); |
|
187 | 187 | return false; |
188 | 188 | } |
189 | 189 | return true; |
@@ -287,8 +287,8 @@ discard block |
||
287 | 287 | $version = 0; |
288 | 288 | if ($this->tableExists('aircraft')) { |
289 | 289 | if (!$this->tableExists('config')) { |
290 | - $version = '1'; |
|
291 | - return $version; |
|
290 | + $version = '1'; |
|
291 | + return $version; |
|
292 | 292 | } else { |
293 | 293 | $query = "SELECT value FROM config WHERE name = 'schema_version' LIMIT 1"; |
294 | 294 | try { |
@@ -309,10 +309,10 @@ discard block |
||
309 | 309 | * @return Boolean if latest version or not |
310 | 310 | */ |
311 | 311 | public function latest() { |
312 | - global $globalNoDB; |
|
313 | - if (isset($globalNoDB) && $globalNoDB === TRUE) return true; |
|
314 | - if ($this->check_schema_version() == $this->latest_schema) return true; |
|
315 | - else return false; |
|
312 | + global $globalNoDB; |
|
313 | + if (isset($globalNoDB) && $globalNoDB === TRUE) return true; |
|
314 | + if ($this->check_schema_version() == $this->latest_schema) return true; |
|
315 | + else return false; |
|
316 | 316 | } |
317 | 317 | |
318 | 318 | } |
@@ -1,12 +1,12 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | require_once(dirname(__FILE__).'/settings.php'); |
3 | 3 | |
4 | -class Connection{ |
|
4 | +class Connection { |
|
5 | 5 | public $db = null; |
6 | 6 | public $dbs = array(); |
7 | 7 | public $latest_schema = 46; |
8 | 8 | |
9 | - public function __construct($dbc = null,$dbname = null,$user = null,$pass = null) { |
|
9 | + public function __construct($dbc = null, $dbname = null, $user = null, $pass = null) { |
|
10 | 10 | global $globalNoDB; |
11 | 11 | if (isset($globalNoDB) && $globalNoDB === TRUE) { |
12 | 12 | $this->db = null; |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | if ($user === null && $pass === null) { |
17 | 17 | $this->createDBConnection(); |
18 | 18 | } else { |
19 | - $this->createDBConnection(null,$user,$pass); |
|
19 | + $this->createDBConnection(null, $user, $pass); |
|
20 | 20 | } |
21 | 21 | } else { |
22 | 22 | $this->createDBConnection($dbname); |
@@ -100,14 +100,14 @@ discard block |
||
100 | 100 | while (true) { |
101 | 101 | try { |
102 | 102 | if ($globalDBSdriver == 'mysql') { |
103 | - $this->dbs[$DBname] = new PDO("$globalDBSdriver:host=$globalDBShost;port=$globalDBSport;dbname=$globalDBSname;charset=utf8", $globalDBSuser, $globalDBSpass); |
|
103 | + $this->dbs[$DBname] = new PDO("$globalDBSdriver:host=$globalDBShost;port=$globalDBSport;dbname=$globalDBSname;charset=utf8", $globalDBSuser, $globalDBSpass); |
|
104 | 104 | $this->dbs[$DBname]->setAttribute(PDO::MYSQL_ATTR_INIT_COMMAND, "SET NAMES 'utf8'"); |
105 | 105 | $this->dbs[$DBname]->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); |
106 | - $this->dbs[$DBname]->setAttribute(PDO::ATTR_CASE,PDO::CASE_LOWER); |
|
107 | - if (!isset($globalDBTimeOut)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,500); |
|
108 | - else $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,$globalDBTimeOut); |
|
109 | - if (!isset($globalDBPersistent)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,true); |
|
110 | - else $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,$globalDBPersistent); |
|
106 | + $this->dbs[$DBname]->setAttribute(PDO::ATTR_CASE, PDO::CASE_LOWER); |
|
107 | + if (!isset($globalDBTimeOut)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT, 500); |
|
108 | + else $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT, $globalDBTimeOut); |
|
109 | + if (!isset($globalDBPersistent)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT, true); |
|
110 | + else $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT, $globalDBPersistent); |
|
111 | 111 | $this->dbs[$DBname]->setAttribute(PDO::ATTR_EMULATE_PREPARES, true); |
112 | 112 | $this->dbs[$DBname]->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, true); |
113 | 113 | // Workaround against "ONLY_FULL_GROUP_BY" mode |
@@ -117,19 +117,19 @@ discard block |
||
117 | 117 | $this->dbs[$DBname]->exec('SET SESSION time_zone = "+00:00"'); |
118 | 118 | //$this->dbs[$DBname]->exec('SET @@session.time_zone = "+00:00"'); |
119 | 119 | } else { |
120 | - $this->dbs[$DBname] = new PDO("$globalDBSdriver:host=$globalDBShost;port=$globalDBSport;dbname=$globalDBSname;options='--client_encoding=utf8'", $globalDBSuser, $globalDBSpass); |
|
120 | + $this->dbs[$DBname] = new PDO("$globalDBSdriver:host=$globalDBShost;port=$globalDBSport;dbname=$globalDBSname;options='--client_encoding=utf8'", $globalDBSuser, $globalDBSpass); |
|
121 | 121 | //$this->dbs[$DBname]->setAttribute(PDO::MYSQL_ATTR_INIT_COMMAND, "SET NAMES 'utf8'"); |
122 | 122 | $this->dbs[$DBname]->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); |
123 | - $this->dbs[$DBname]->setAttribute(PDO::ATTR_CASE,PDO::CASE_LOWER); |
|
124 | - if (!isset($globalDBTimeOut)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,200); |
|
125 | - else $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,$globalDBTimeOut); |
|
126 | - if (!isset($globalDBPersistent)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,true); |
|
127 | - else $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,$globalDBPersistent); |
|
123 | + $this->dbs[$DBname]->setAttribute(PDO::ATTR_CASE, PDO::CASE_LOWER); |
|
124 | + if (!isset($globalDBTimeOut)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT, 200); |
|
125 | + else $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT, $globalDBTimeOut); |
|
126 | + if (!isset($globalDBPersistent)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT, true); |
|
127 | + else $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT, $globalDBPersistent); |
|
128 | 128 | $this->dbs[$DBname]->setAttribute(PDO::ATTR_EMULATE_PREPARES, true); |
129 | 129 | $this->dbs[$DBname]->exec('SET timezone="UTC"'); |
130 | 130 | } |
131 | 131 | break; |
132 | - } catch(PDOException $e) { |
|
132 | + } catch (PDOException $e) { |
|
133 | 133 | $i++; |
134 | 134 | if (isset($globalDebug) && $globalDebug) echo 'Error connecting to DB: '.$globalDBSname.' - Error: '.$e->getMessage()."\n"; |
135 | 135 | //exit; |
@@ -154,10 +154,10 @@ discard block |
||
154 | 154 | try { |
155 | 155 | //$Connection = new Connection(); |
156 | 156 | $results = $this->db->query($query); |
157 | - } catch(PDOException $e) { |
|
157 | + } catch (PDOException $e) { |
|
158 | 158 | return false; |
159 | 159 | } |
160 | - if($results->rowCount()>0) { |
|
160 | + if ($results->rowCount() > 0) { |
|
161 | 161 | return true; |
162 | 162 | } |
163 | 163 | else return false; |
@@ -179,8 +179,8 @@ discard block |
||
179 | 179 | return false; |
180 | 180 | } |
181 | 181 | |
182 | - } catch(PDOException $e) { |
|
183 | - if($e->getCode() != 'HY000' || !stristr($e->getMessage(), 'server has gone away')) { |
|
182 | + } catch (PDOException $e) { |
|
183 | + if ($e->getCode() != 'HY000' || !stristr($e->getMessage(), 'server has gone away')) { |
|
184 | 184 | throw $e; |
185 | 185 | } |
186 | 186 | //echo 'error ! '.$e->getMessage(); |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | /* |
193 | 193 | * Check if index exist |
194 | 194 | */ |
195 | - public function indexExists($table,$index) |
|
195 | + public function indexExists($table, $index) |
|
196 | 196 | { |
197 | 197 | global $globalDBdriver, $globalDBname; |
198 | 198 | if ($globalDBdriver == 'mysql') { |
@@ -203,11 +203,11 @@ discard block |
||
203 | 203 | try { |
204 | 204 | //$Connection = new Connection(); |
205 | 205 | $results = $this->db->query($query); |
206 | - } catch(PDOException $e) { |
|
206 | + } catch (PDOException $e) { |
|
207 | 207 | return false; |
208 | 208 | } |
209 | 209 | $nb = $results->fetchAll(PDO::FETCH_ASSOC); |
210 | - if($nb[0]['nb'] > 0) { |
|
210 | + if ($nb[0]['nb'] > 0) { |
|
211 | 211 | return true; |
212 | 212 | } |
213 | 213 | else return false; |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | $query = "SELECT * FROM ".$table." LIMIT 0"; |
223 | 223 | try { |
224 | 224 | $results = $this->db->query($query); |
225 | - } catch(PDOException $e) { |
|
225 | + } catch (PDOException $e) { |
|
226 | 226 | return "error : ".$e->getMessage()."\n"; |
227 | 227 | } |
228 | 228 | $columns = array(); |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | return $columns; |
235 | 235 | } |
236 | 236 | |
237 | - public function getColumnType($table,$column) { |
|
237 | + public function getColumnType($table, $column) { |
|
238 | 238 | $select = $this->db->query('SELECT '.$column.' FROM '.$table); |
239 | 239 | $tomet = $select->getColumnMeta(0); |
240 | 240 | return $tomet['native_type']; |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | * Check if a column name exist in a table |
245 | 245 | * @return Boolean column exist or not |
246 | 246 | */ |
247 | - public function checkColumnName($table,$name) |
|
247 | + public function checkColumnName($table, $name) |
|
248 | 248 | { |
249 | 249 | global $globalDBdriver, $globalDBname; |
250 | 250 | if ($globalDBdriver == 'mysql') { |
@@ -254,8 +254,8 @@ discard block |
||
254 | 254 | } |
255 | 255 | try { |
256 | 256 | $sth = $this->db()->prepare($query); |
257 | - $sth->execute(array(':database' => $globalDBname,':table' => $table,':name' => $name)); |
|
258 | - } catch(PDOException $e) { |
|
257 | + $sth->execute(array(':database' => $globalDBname, ':table' => $table, ':name' => $name)); |
|
258 | + } catch (PDOException $e) { |
|
259 | 259 | echo "error : ".$e->getMessage()."\n"; |
260 | 260 | } |
261 | 261 | $result = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | try { |
295 | 295 | $sth = $this->db->prepare($query); |
296 | 296 | $sth->execute(); |
297 | - } catch(PDOException $e) { |
|
297 | + } catch (PDOException $e) { |
|
298 | 298 | return "error : ".$e->getMessage()."\n"; |
299 | 299 | } |
300 | 300 | $result = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -6,6 +6,9 @@ discard block |
||
6 | 6 | public $dbs = array(); |
7 | 7 | public $latest_schema = 46; |
8 | 8 | |
9 | + /** |
|
10 | + * @param string $dbname |
|
11 | + */ |
|
9 | 12 | public function __construct($dbc = null,$dbname = null,$user = null,$pass = null) { |
10 | 13 | global $globalNoDB; |
11 | 14 | if (isset($globalNoDB) && $globalNoDB === TRUE) { |
@@ -142,6 +145,9 @@ discard block |
||
142 | 145 | return true; |
143 | 146 | } |
144 | 147 | |
148 | + /** |
|
149 | + * @param string $table |
|
150 | + */ |
|
145 | 151 | public function tableExists($table) |
146 | 152 | { |
147 | 153 | global $globalDBdriver, $globalDBname; |
@@ -192,6 +198,11 @@ discard block |
||
192 | 198 | /* |
193 | 199 | * Check if index exist |
194 | 200 | */ |
201 | + |
|
202 | + /** |
|
203 | + * @param string $table |
|
204 | + * @param string $index |
|
205 | + */ |
|
195 | 206 | public function indexExists($table,$index) |
196 | 207 | { |
197 | 208 | global $globalDBdriver, $globalDBname; |
@@ -234,6 +245,10 @@ discard block |
||
234 | 245 | return $columns; |
235 | 246 | } |
236 | 247 | |
248 | + /** |
|
249 | + * @param string $table |
|
250 | + * @param string $column |
|
251 | + */ |
|
237 | 252 | public function getColumnType($table,$column) { |
238 | 253 | $select = $this->db->query('SELECT '.$column.' FROM '.$table); |
239 | 254 | $tomet = $select->getColumnMeta(0); |
@@ -244,6 +259,11 @@ discard block |
||
244 | 259 | * Check if a column name exist in a table |
245 | 260 | * @return Boolean column exist or not |
246 | 261 | */ |
262 | + |
|
263 | + /** |
|
264 | + * @param string $table |
|
265 | + * @param string $name |
|
266 | + */ |
|
247 | 267 | public function checkColumnName($table,$name) |
248 | 268 | { |
249 | 269 | global $globalDBdriver, $globalDBname; |
@@ -73,8 +73,11 @@ discard block |
||
73 | 73 | $globalDBSname = $globalDBname; |
74 | 74 | $globalDBSuser = $globalDBuser; |
75 | 75 | $globalDBSpass = $globalDBpass; |
76 | - if (!isset($globalDBport) || $globalDBport === NULL || $globalDBport == '') $globalDBSport = 3306; |
|
77 | - else $globalDBSport = $globalDBport; |
|
76 | + if (!isset($globalDBport) || $globalDBport === NULL || $globalDBport == '') { |
|
77 | + $globalDBSport = 3306; |
|
78 | + } else { |
|
79 | + $globalDBSport = $globalDBport; |
|
80 | + } |
|
78 | 81 | } else { |
79 | 82 | $DBname = 'default'; |
80 | 83 | $globalDBSdriver = $globalDBdriver; |
@@ -82,8 +85,11 @@ discard block |
||
82 | 85 | $globalDBSname = $globalDBname; |
83 | 86 | $globalDBSuser = $user; |
84 | 87 | $globalDBSpass = $pass; |
85 | - if (!isset($globalDBport) || $globalDBport === NULL || $globalDBport == '') $globalDBSport = 3306; |
|
86 | - else $globalDBSport = $globalDBport; |
|
88 | + if (!isset($globalDBport) || $globalDBport === NULL || $globalDBport == '') { |
|
89 | + $globalDBSport = 3306; |
|
90 | + } else { |
|
91 | + $globalDBSport = $globalDBport; |
|
92 | + } |
|
87 | 93 | } |
88 | 94 | } else { |
89 | 95 | $globalDBSdriver = $globalDB[$DBname]['driver']; |
@@ -91,11 +97,16 @@ discard block |
||
91 | 97 | $globalDBSname = $globalDB[$DBname]['name']; |
92 | 98 | $globalDBSuser = $globalDB[$DBname]['user']; |
93 | 99 | $globalDBSpass = $globalDB[$DBname]['pass']; |
94 | - if (isset($globalDB[$DBname]['port'])) $globalDBSport = $globalDB[$DBname]['port']; |
|
95 | - else $globalDBSport = 3306; |
|
100 | + if (isset($globalDB[$DBname]['port'])) { |
|
101 | + $globalDBSport = $globalDB[$DBname]['port']; |
|
102 | + } else { |
|
103 | + $globalDBSport = 3306; |
|
104 | + } |
|
96 | 105 | } |
97 | 106 | // Set number of try to connect to DB |
98 | - if (!isset($globalDBretry) || $globalDBretry == '' || $globalDBretry === NULL) $globalDBretry = 10; |
|
107 | + if (!isset($globalDBretry) || $globalDBretry == '' || $globalDBretry === NULL) { |
|
108 | + $globalDBretry = 10; |
|
109 | + } |
|
99 | 110 | $i = 0; |
100 | 111 | while (true) { |
101 | 112 | try { |
@@ -104,10 +115,16 @@ discard block |
||
104 | 115 | $this->dbs[$DBname]->setAttribute(PDO::MYSQL_ATTR_INIT_COMMAND, "SET NAMES 'utf8'"); |
105 | 116 | $this->dbs[$DBname]->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); |
106 | 117 | $this->dbs[$DBname]->setAttribute(PDO::ATTR_CASE,PDO::CASE_LOWER); |
107 | - if (!isset($globalDBTimeOut)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,500); |
|
108 | - else $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,$globalDBTimeOut); |
|
109 | - if (!isset($globalDBPersistent)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,true); |
|
110 | - else $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,$globalDBPersistent); |
|
118 | + if (!isset($globalDBTimeOut)) { |
|
119 | + $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,500); |
|
120 | + } else { |
|
121 | + $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,$globalDBTimeOut); |
|
122 | + } |
|
123 | + if (!isset($globalDBPersistent)) { |
|
124 | + $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,true); |
|
125 | + } else { |
|
126 | + $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,$globalDBPersistent); |
|
127 | + } |
|
111 | 128 | $this->dbs[$DBname]->setAttribute(PDO::ATTR_EMULATE_PREPARES, true); |
112 | 129 | $this->dbs[$DBname]->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, true); |
113 | 130 | // Workaround against "ONLY_FULL_GROUP_BY" mode |
@@ -121,24 +138,36 @@ discard block |
||
121 | 138 | //$this->dbs[$DBname]->setAttribute(PDO::MYSQL_ATTR_INIT_COMMAND, "SET NAMES 'utf8'"); |
122 | 139 | $this->dbs[$DBname]->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); |
123 | 140 | $this->dbs[$DBname]->setAttribute(PDO::ATTR_CASE,PDO::CASE_LOWER); |
124 | - if (!isset($globalDBTimeOut)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,200); |
|
125 | - else $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,$globalDBTimeOut); |
|
126 | - if (!isset($globalDBPersistent)) $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,true); |
|
127 | - else $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,$globalDBPersistent); |
|
141 | + if (!isset($globalDBTimeOut)) { |
|
142 | + $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,200); |
|
143 | + } else { |
|
144 | + $this->dbs[$DBname]->setAttribute(PDO::ATTR_TIMEOUT,$globalDBTimeOut); |
|
145 | + } |
|
146 | + if (!isset($globalDBPersistent)) { |
|
147 | + $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,true); |
|
148 | + } else { |
|
149 | + $this->dbs[$DBname]->setAttribute(PDO::ATTR_PERSISTENT,$globalDBPersistent); |
|
150 | + } |
|
128 | 151 | $this->dbs[$DBname]->setAttribute(PDO::ATTR_EMULATE_PREPARES, true); |
129 | 152 | $this->dbs[$DBname]->exec('SET timezone="UTC"'); |
130 | 153 | } |
131 | 154 | break; |
132 | 155 | } catch(PDOException $e) { |
133 | 156 | $i++; |
134 | - if (isset($globalDebug) && $globalDebug) echo 'Error connecting to DB: '.$globalDBSname.' - Error: '.$e->getMessage()."\n"; |
|
157 | + if (isset($globalDebug) && $globalDebug) { |
|
158 | + echo 'Error connecting to DB: '.$globalDBSname.' - Error: '.$e->getMessage()."\n"; |
|
159 | + } |
|
135 | 160 | //exit; |
136 | - if ($i > $globalDBretry) return false; |
|
161 | + if ($i > $globalDBretry) { |
|
162 | + return false; |
|
163 | + } |
|
137 | 164 | //return false; |
138 | 165 | } |
139 | 166 | sleep(5); |
140 | 167 | } |
141 | - if ($DBname === 'default') $this->db = $this->dbs['default']; |
|
168 | + if ($DBname === 'default') { |
|
169 | + $this->db = $this->dbs['default']; |
|
170 | + } |
|
142 | 171 | return true; |
143 | 172 | } |
144 | 173 | |
@@ -150,7 +179,9 @@ discard block |
||
150 | 179 | } else { |
151 | 180 | $query = "SELECT * FROM pg_catalog.pg_tables WHERE tablename = '".$table."'"; |
152 | 181 | } |
153 | - if ($this->db == NULL) return false; |
|
182 | + if ($this->db == NULL) { |
|
183 | + return false; |
|
184 | + } |
|
154 | 185 | try { |
155 | 186 | //$Connection = new Connection(); |
156 | 187 | $results = $this->db->query($query); |
@@ -159,22 +190,31 @@ discard block |
||
159 | 190 | } |
160 | 191 | if($results->rowCount()>0) { |
161 | 192 | return true; |
193 | + } else { |
|
194 | + return false; |
|
162 | 195 | } |
163 | - else return false; |
|
164 | 196 | } |
165 | 197 | |
166 | 198 | public function connectionExists() |
167 | 199 | { |
168 | 200 | global $globalDBdriver, $globalDBCheckConnection, $globalNoDB; |
169 | - if (isset($globalDBCheckConnection) && $globalDBCheckConnection === FALSE) return true; |
|
170 | - if (isset($globalNoDB) && $globalNoDB === TRUE) return true; |
|
201 | + if (isset($globalDBCheckConnection) && $globalDBCheckConnection === FALSE) { |
|
202 | + return true; |
|
203 | + } |
|
204 | + if (isset($globalNoDB) && $globalNoDB === TRUE) { |
|
205 | + return true; |
|
206 | + } |
|
171 | 207 | $query = "SELECT 1 + 1"; |
172 | - if ($this->db === null) return false; |
|
208 | + if ($this->db === null) { |
|
209 | + return false; |
|
210 | + } |
|
173 | 211 | try { |
174 | 212 | $sum = @$this->db->query($query); |
175 | 213 | if ($sum instanceof \PDOStatement) { |
176 | 214 | $sum = $sum->fetchColumn(0); |
177 | - } else $sum = 0; |
|
215 | + } else { |
|
216 | + $sum = 0; |
|
217 | + } |
|
178 | 218 | if (intval($sum) !== 2) { |
179 | 219 | return false; |
180 | 220 | } |
@@ -209,8 +249,9 @@ discard block |
||
209 | 249 | $nb = $results->fetchAll(PDO::FETCH_ASSOC); |
210 | 250 | if($nb[0]['nb'] > 0) { |
211 | 251 | return true; |
252 | + } else { |
|
253 | + return false; |
|
212 | 254 | } |
213 | - else return false; |
|
214 | 255 | } |
215 | 256 | |
216 | 257 | /* |
@@ -260,9 +301,12 @@ discard block |
||
260 | 301 | } |
261 | 302 | $result = $sth->fetch(PDO::FETCH_ASSOC); |
262 | 303 | $sth->closeCursor(); |
263 | - if ($result['nb'] > 0) return true; |
|
264 | - else return false; |
|
265 | -/* } else { |
|
304 | + if ($result['nb'] > 0) { |
|
305 | + return true; |
|
306 | + } else { |
|
307 | + return false; |
|
308 | + } |
|
309 | + /* } else { |
|
266 | 310 | $query = "SELECT * FROM ".$table." LIMIT 0"; |
267 | 311 | try { |
268 | 312 | $results = $this->db->query($query); |
@@ -301,7 +345,9 @@ discard block |
||
301 | 345 | $sth->closeCursor(); |
302 | 346 | return $result['value']; |
303 | 347 | } |
304 | - } else return $version; |
|
348 | + } else { |
|
349 | + return $version; |
|
350 | + } |
|
305 | 351 | } |
306 | 352 | |
307 | 353 | /* |
@@ -310,9 +356,14 @@ discard block |
||
310 | 356 | */ |
311 | 357 | public function latest() { |
312 | 358 | global $globalNoDB; |
313 | - if (isset($globalNoDB) && $globalNoDB === TRUE) return true; |
|
314 | - if ($this->check_schema_version() == $this->latest_schema) return true; |
|
315 | - else return false; |
|
359 | + if (isset($globalNoDB) && $globalNoDB === TRUE) { |
|
360 | + return true; |
|
361 | + } |
|
362 | + if ($this->check_schema_version() == $this->latest_schema) { |
|
363 | + return true; |
|
364 | + } else { |
|
365 | + return false; |
|
366 | + } |
|
316 | 367 | } |
317 | 368 | |
318 | 369 | } |
@@ -124,11 +124,11 @@ discard block |
||
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
127 | - * Gets all launch site |
|
128 | - * |
|
129 | - * @return Array the launch site list |
|
130 | - * |
|
131 | - */ |
|
127 | + * Gets all launch site |
|
128 | + * |
|
129 | + * @return Array the launch site list |
|
130 | + * |
|
131 | + */ |
|
132 | 132 | public function countAllLaunchSite($limit = true, $filters = array()) |
133 | 133 | { |
134 | 134 | global $globalDBdriver; |
@@ -153,11 +153,11 @@ discard block |
||
153 | 153 | } |
154 | 154 | |
155 | 155 | /** |
156 | - * Gets all owners |
|
157 | - * |
|
158 | - * @return Array the owners list |
|
159 | - * |
|
160 | - */ |
|
156 | + * Gets all owners |
|
157 | + * |
|
158 | + * @return Array the owners list |
|
159 | + * |
|
160 | + */ |
|
161 | 161 | public function countAllOwners($limit = true, $filters = array()) |
162 | 162 | { |
163 | 163 | global $globalDBdriver; |
@@ -182,11 +182,11 @@ discard block |
||
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
185 | - * Gets all countries owners |
|
186 | - * |
|
187 | - * @return Array the countries list |
|
188 | - * |
|
189 | - */ |
|
185 | + * Gets all countries owners |
|
186 | + * |
|
187 | + * @return Array the countries list |
|
188 | + * |
|
189 | + */ |
|
190 | 190 | public function countAllCountriesOwners($limit = true, $filters = array()) |
191 | 191 | { |
192 | 192 | global $globalDBdriver; |
@@ -211,11 +211,11 @@ discard block |
||
211 | 211 | } |
212 | 212 | |
213 | 213 | /** |
214 | - * Counts all launch dates during the last year |
|
215 | - * |
|
216 | - * @return Array the launch date list |
|
217 | - * |
|
218 | - */ |
|
214 | + * Counts all launch dates during the last year |
|
215 | + * |
|
216 | + * @return Array the launch date list |
|
217 | + * |
|
218 | + */ |
|
219 | 219 | public function countAllMonthsLastYear($filters = array(), $sincedate = '') |
220 | 220 | { |
221 | 221 | global $globalTimezone, $globalDBdriver; |
@@ -256,11 +256,11 @@ discard block |
||
256 | 256 | } |
257 | 257 | |
258 | 258 | /** |
259 | - * Counts all dates during the last 10 years |
|
260 | - * |
|
261 | - * @return Array the date list |
|
262 | - * |
|
263 | - */ |
|
259 | + * Counts all dates during the last 10 years |
|
260 | + * |
|
261 | + * @return Array the date list |
|
262 | + * |
|
263 | + */ |
|
264 | 264 | public function countAllYears($filters = array(), $sincedate = '') |
265 | 265 | { |
266 | 266 | global $globalTimezone, $globalDBdriver; |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | try { |
20 | 20 | $sth = $this->db->prepare($query); |
21 | 21 | $sth->execute(array(':name' => $name)); |
22 | - } catch(PDOException $e) { |
|
22 | + } catch (PDOException $e) { |
|
23 | 23 | echo $e->getMessage(); |
24 | 24 | } |
25 | 25 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | try { |
32 | 32 | $sth = $this->db->prepare($query); |
33 | 33 | $sth->execute(); |
34 | - } catch(PDOException $e) { |
|
34 | + } catch (PDOException $e) { |
|
35 | 35 | echo $e->getMessage(); |
36 | 36 | } |
37 | 37 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | try { |
44 | 44 | $sth = $this->db->prepare($query); |
45 | 45 | $sth->execute(); |
46 | - } catch(PDOException $e) { |
|
46 | + } catch (PDOException $e) { |
|
47 | 47 | echo $e->getMessage(); |
48 | 48 | } |
49 | 49 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | try { |
56 | 56 | $sth = $this->db->prepare($query); |
57 | 57 | $sth->execute(array(':type' => $type)); |
58 | - } catch(PDOException $e) { |
|
58 | + } catch (PDOException $e) { |
|
59 | 59 | echo $e->getMessage(); |
60 | 60 | } |
61 | 61 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -63,48 +63,48 @@ discard block |
||
63 | 63 | else return array(); |
64 | 64 | } |
65 | 65 | |
66 | - public function position_all($timestamp_begin = '',$timestamp_end = '',$second = 10) { |
|
66 | + public function position_all($timestamp_begin = '', $timestamp_end = '', $second = 10) { |
|
67 | 67 | $all_sat = $this->get_tle_names(); |
68 | 68 | $result = array(); |
69 | 69 | foreach ($all_sat as $sat) { |
70 | - $position = $this->position($sat['tle_name'],$timestamp_begin,$timestamp_end,$second); |
|
71 | - $result = array_merge($position,$result); |
|
70 | + $position = $this->position($sat['tle_name'], $timestamp_begin, $timestamp_end, $second); |
|
71 | + $result = array_merge($position, $result); |
|
72 | 72 | } |
73 | 73 | return $result; |
74 | 74 | } |
75 | 75 | |
76 | - public function position_all_type($type,$timestamp_begin = '',$timestamp_end = '',$second = 10) { |
|
76 | + public function position_all_type($type, $timestamp_begin = '', $timestamp_end = '', $second = 10) { |
|
77 | 77 | $all_sat = $this->get_tle_names_type($type); |
78 | 78 | $result = array(); |
79 | 79 | foreach ($all_sat as $sat) { |
80 | - $position = $this->position($sat['tle_name'],$timestamp_begin,$timestamp_end,$second); |
|
81 | - $result = array_merge($position,$result); |
|
80 | + $position = $this->position($sat['tle_name'], $timestamp_begin, $timestamp_end, $second); |
|
81 | + $result = array_merge($position, $result); |
|
82 | 82 | } |
83 | 83 | return $result; |
84 | 84 | } |
85 | 85 | |
86 | - public function position($name,$timestamp_begin = '',$timestamp_end = '',$second = 10) { |
|
86 | + public function position($name, $timestamp_begin = '', $timestamp_end = '', $second = 10) { |
|
87 | 87 | $qth = new Predict_QTH(); |
88 | 88 | $qth->lat = floatval(37.790252); |
89 | 89 | $qth->lon = floatval(-122.419968); |
90 | 90 | |
91 | 91 | $tle_file = $this->get_tle($name); |
92 | 92 | $type = $tle_file['tle_type']; |
93 | - $tle = new Predict_TLE($tle_file['tle_name'],$tle_file['tle_tle1'],$tle_file['tle_tle2']); |
|
93 | + $tle = new Predict_TLE($tle_file['tle_name'], $tle_file['tle_tle1'], $tle_file['tle_tle2']); |
|
94 | 94 | $sat = new Predict_Sat($tle); |
95 | 95 | $predict = new Predict(); |
96 | 96 | //if ($timestamp == '') $now = Predict_Time::get_current_daynum(); |
97 | 97 | if ($timestamp_begin == '') $timestamp_begin = time(); |
98 | 98 | if ($timestamp_end == '') { |
99 | 99 | $now = Predict_Time::unix2daynum($timestamp_begin); |
100 | - $predict->predict_calc($sat,$qth,$now); |
|
101 | - return array('name' => $name, 'latitude' => $sat->ssplat,'longitude' => $sat->ssplon, 'altitude' => $sat->alt,'speed' => $sat->velo*60*60,'timestamp' => $timestamp_begin,'type' => $type); |
|
100 | + $predict->predict_calc($sat, $qth, $now); |
|
101 | + return array('name' => $name, 'latitude' => $sat->ssplat, 'longitude' => $sat->ssplon, 'altitude' => $sat->alt, 'speed' => $sat->velo*60*60, 'timestamp' => $timestamp_begin, 'type' => $type); |
|
102 | 102 | } else { |
103 | 103 | $result = array(); |
104 | - for ($timestamp = $timestamp_begin; $timestamp <= $timestamp_end; $timestamp=$timestamp+$second) { |
|
104 | + for ($timestamp = $timestamp_begin; $timestamp <= $timestamp_end; $timestamp = $timestamp + $second) { |
|
105 | 105 | $now = Predict_Time::unix2daynum($timestamp); |
106 | - $predict->predict_calc($sat,$qth,$now); |
|
107 | - $result[] = array('name' => $name,'latitude' => $sat->ssplat,'longitude' => $sat->ssplon, 'altitude' => $sat->alt,'speed' => $sat->velo*60*60,'timestamp' => $timestamp,'type' => $type); |
|
106 | + $predict->predict_calc($sat, $qth, $now); |
|
107 | + $result[] = array('name' => $name, 'latitude' => $sat->ssplat, 'longitude' => $sat->ssplon, 'altitude' => $sat->alt, 'speed' => $sat->velo*60*60, 'timestamp' => $timestamp, 'type' => $type); |
|
108 | 108 | } |
109 | 109 | return $result; |
110 | 110 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | try { |
116 | 116 | $sth = $this->db->prepare($query); |
117 | 117 | $sth->execute(array(':name' => $name.'%')); |
118 | - } catch(PDOException $e) { |
|
118 | + } catch (PDOException $e) { |
|
119 | 119 | echo $e->getMessage(); |
120 | 120 | } |
121 | 121 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | $sth->execute($query_values); |
144 | 144 | $launch_site_array = array(); |
145 | 145 | $temp_array = array(); |
146 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
146 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
147 | 147 | { |
148 | 148 | $temp_array['launch_site'] = $row['launch_site']; |
149 | 149 | $temp_array['launch_site_count'] = $row['launch_site_count']; |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | $sth->execute($query_values); |
173 | 173 | $owner_array = array(); |
174 | 174 | $temp_array = array(); |
175 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
175 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
176 | 176 | { |
177 | 177 | $temp_array['owner_name'] = $row['owner_name']; |
178 | 178 | $temp_array['owner_count'] = $row['owner_count']; |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | $sth->execute($query_values); |
202 | 202 | $owner_array = array(); |
203 | 203 | $temp_array = array(); |
204 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
204 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
205 | 205 | { |
206 | 206 | $temp_array['country_name'] = $row['country_name']; |
207 | 207 | $temp_array['country_count'] = $row['country_count']; |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | $sth->execute($query_data); |
246 | 246 | $date_array = array(); |
247 | 247 | $temp_array = array(); |
248 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
248 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
249 | 249 | { |
250 | 250 | $temp_array['year_name'] = $row['year_name']; |
251 | 251 | $temp_array['month_name'] = $row['month_name']; |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | $sth->execute($query_data); |
291 | 291 | $date_array = array(); |
292 | 292 | $temp_array = array(); |
293 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
293 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
294 | 294 | { |
295 | 295 | $temp_array['year_name'] = $row['year_name']; |
296 | 296 | $temp_array['date_count'] = $row['date_count']; |
@@ -23,8 +23,11 @@ discard block |
||
23 | 23 | echo $e->getMessage(); |
24 | 24 | } |
25 | 25 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
26 | - if (isset($result[0])) return $result[0]; |
|
27 | - else return array(); |
|
26 | + if (isset($result[0])) { |
|
27 | + return $result[0]; |
|
28 | + } else { |
|
29 | + return array(); |
|
30 | + } |
|
28 | 31 | } |
29 | 32 | public function get_tle_types() { |
30 | 33 | $query = 'SELECT DISTINCT tle_type FROM tle ORDER BY tle_type'; |
@@ -35,8 +38,11 @@ discard block |
||
35 | 38 | echo $e->getMessage(); |
36 | 39 | } |
37 | 40 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
38 | - if (isset($result[0])) return $result; |
|
39 | - else return array(); |
|
41 | + if (isset($result[0])) { |
|
42 | + return $result; |
|
43 | + } else { |
|
44 | + return array(); |
|
45 | + } |
|
40 | 46 | } |
41 | 47 | public function get_tle_names() { |
42 | 48 | $query = 'SELECT DISTINCT tle_name, tle_type FROM tle'; |
@@ -47,8 +53,11 @@ discard block |
||
47 | 53 | echo $e->getMessage(); |
48 | 54 | } |
49 | 55 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
50 | - if (isset($result[0])) return $result; |
|
51 | - else return array(); |
|
56 | + if (isset($result[0])) { |
|
57 | + return $result; |
|
58 | + } else { |
|
59 | + return array(); |
|
60 | + } |
|
52 | 61 | } |
53 | 62 | public function get_tle_names_type($type) { |
54 | 63 | $query = 'SELECT tle_name, tle_type FROM tle WHERE tle_type = :type ORDER BY tle_name'; |
@@ -59,8 +68,11 @@ discard block |
||
59 | 68 | echo $e->getMessage(); |
60 | 69 | } |
61 | 70 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
62 | - if (isset($result[0])) return $result; |
|
63 | - else return array(); |
|
71 | + if (isset($result[0])) { |
|
72 | + return $result; |
|
73 | + } else { |
|
74 | + return array(); |
|
75 | + } |
|
64 | 76 | } |
65 | 77 | |
66 | 78 | public function position_all($timestamp_begin = '',$timestamp_end = '',$second = 10) { |
@@ -94,7 +106,9 @@ discard block |
||
94 | 106 | $sat = new Predict_Sat($tle); |
95 | 107 | $predict = new Predict(); |
96 | 108 | //if ($timestamp == '') $now = Predict_Time::get_current_daynum(); |
97 | - if ($timestamp_begin == '') $timestamp_begin = time(); |
|
109 | + if ($timestamp_begin == '') { |
|
110 | + $timestamp_begin = time(); |
|
111 | + } |
|
98 | 112 | if ($timestamp_end == '') { |
99 | 113 | $now = Predict_Time::unix2daynum($timestamp_begin); |
100 | 114 | $predict->predict_calc($sat,$qth,$now); |
@@ -119,8 +133,11 @@ discard block |
||
119 | 133 | echo $e->getMessage(); |
120 | 134 | } |
121 | 135 | $result = $sth->fetchAll(PDO::FETCH_ASSOC); |
122 | - if (isset($result[0])) return $result[0]; |
|
123 | - else return array(); |
|
136 | + if (isset($result[0])) { |
|
137 | + return $result[0]; |
|
138 | + } else { |
|
139 | + return array(); |
|
140 | + } |
|
124 | 141 | } |
125 | 142 | |
126 | 143 | /** |
@@ -138,7 +155,9 @@ discard block |
||
138 | 155 | FROM satellite".$filter_query." satellite.launch_site <> '' AND satellite.launch_site IS NOT NULL"; |
139 | 156 | $query_values = array(); |
140 | 157 | $query .= " GROUP BY satellite.launch_site ORDER BY launch_site_count DESC"; |
141 | - if ($limit) $query .= " LIMIT 10 OFFSET 0"; |
|
158 | + if ($limit) { |
|
159 | + $query .= " LIMIT 10 OFFSET 0"; |
|
160 | + } |
|
142 | 161 | $sth = $this->db->prepare($query); |
143 | 162 | $sth->execute($query_values); |
144 | 163 | $launch_site_array = array(); |
@@ -167,7 +186,9 @@ discard block |
||
167 | 186 | FROM satellite".$filter_query." satellite.owner <> '' AND satellite.owner IS NOT NULL"; |
168 | 187 | $query_values = array(); |
169 | 188 | $query .= " GROUP BY satellite.owner ORDER BY owner_count DESC"; |
170 | - if ($limit) $query .= " LIMIT 10 OFFSET 0"; |
|
189 | + if ($limit) { |
|
190 | + $query .= " LIMIT 10 OFFSET 0"; |
|
191 | + } |
|
171 | 192 | $sth = $this->db->prepare($query); |
172 | 193 | $sth->execute($query_values); |
173 | 194 | $owner_array = array(); |
@@ -196,7 +217,9 @@ discard block |
||
196 | 217 | FROM satellite".$filter_query." satellite.country_owner <> '' AND satellite.country_owner IS NOT NULL"; |
197 | 218 | $query_values = array(); |
198 | 219 | $query .= " GROUP BY satellite.country_owner ORDER BY country_count DESC"; |
199 | - if ($limit) $query .= " LIMIT 10 OFFSET 0"; |
|
220 | + if ($limit) { |
|
221 | + $query .= " LIMIT 10 OFFSET 0"; |
|
222 | + } |
|
200 | 223 | $sth = $this->db->prepare($query); |
201 | 224 | $sth->execute($query_values); |
202 | 225 | $owner_array = array(); |
@@ -223,20 +246,26 @@ discard block |
||
223 | 246 | date_default_timezone_set($globalTimezone); |
224 | 247 | $datetime = new DateTime(); |
225 | 248 | $offset = $datetime->format('P'); |
226 | - } else $offset = '+00:00'; |
|
249 | + } else { |
|
250 | + $offset = '+00:00'; |
|
251 | + } |
|
227 | 252 | //$filter_query = $this->getFilter($filters,true,true); |
228 | 253 | $filter_query = ' WHERE'; |
229 | 254 | if ($globalDBdriver == 'mysql') { |
230 | 255 | $query = "SELECT MONTH(CONVERT_TZ(satellite.launch_date,'+00:00', :offset)) AS month_name, YEAR(CONVERT_TZ(satellite.launch_date,'+00:00', :offset)) AS year_name, count(*) as date_count |
231 | 256 | FROM satellite".$filter_query." satellite.launch_date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 1 YEAR)"; |
232 | - if ($sincedate != '') $query .= " AND satellite.launch_date > '".$sincedate."'"; |
|
257 | + if ($sincedate != '') { |
|
258 | + $query .= " AND satellite.launch_date > '".$sincedate."'"; |
|
259 | + } |
|
233 | 260 | $query .= " GROUP BY year_name, month_name |
234 | 261 | ORDER BY year_name, month_name ASC"; |
235 | 262 | $query_data = array(':offset' => $offset); |
236 | 263 | } else { |
237 | 264 | $query = "SELECT EXTRACT(MONTH FROM satellite.launch_date AT TIME ZONE INTERVAL :offset) AS month_name, EXTRACT(YEAR FROM satellite.launch_date AT TIME ZONE INTERVAL :offset) AS year_name, count(*) as date_count |
238 | 265 | FROM satellite".$filter_query." satellite.launch_date >= CURRENT_TIMESTAMP AT TIME ZONE INTERVAL :offset - INTERVAL '1 YEARS'"; |
239 | - if ($sincedate != '') $query .= " AND satellite.launch_date > '".$sincedate."'"; |
|
266 | + if ($sincedate != '') { |
|
267 | + $query .= " AND satellite.launch_date > '".$sincedate."'"; |
|
268 | + } |
|
240 | 269 | $query .= " GROUP BY year_name, month_name |
241 | 270 | ORDER BY year_name, month_name ASC"; |
242 | 271 | $query_data = array(':offset' => $offset); |
@@ -268,20 +297,26 @@ discard block |
||
268 | 297 | date_default_timezone_set($globalTimezone); |
269 | 298 | $datetime = new DateTime(); |
270 | 299 | $offset = $datetime->format('P'); |
271 | - } else $offset = '+00:00'; |
|
300 | + } else { |
|
301 | + $offset = '+00:00'; |
|
302 | + } |
|
272 | 303 | //$filter_query = $this->getFilter($filters,true,true); |
273 | 304 | $filter_query = ' WHERE'; |
274 | 305 | if ($globalDBdriver == 'mysql') { |
275 | 306 | $query = "SELECT YEAR(CONVERT_TZ(satellite.launch_date,'+00:00', :offset)) AS year_name, count(*) as date_count |
276 | 307 | FROM satellite".$filter_query." satellite.launch_date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 10 YEAR)"; |
277 | - if ($sincedate != '') $query .= " AND satellite.launch_date > '".$sincedate."'"; |
|
308 | + if ($sincedate != '') { |
|
309 | + $query .= " AND satellite.launch_date > '".$sincedate."'"; |
|
310 | + } |
|
278 | 311 | $query .= " GROUP BY year_name |
279 | 312 | ORDER BY year_name ASC"; |
280 | 313 | $query_data = array(':offset' => $offset); |
281 | 314 | } else { |
282 | 315 | $query = "SELECT EXTRACT(YEAR FROM satellite.launch_date AT TIME ZONE INTERVAL :offset) AS year_name, count(*) as date_count |
283 | 316 | FROM satellite".$filter_query." satellite.launch_date >= CURRENT_TIMESTAMP AT TIME ZONE INTERVAL :offset - INTERVAL '10 YEARS'"; |
284 | - if ($sincedate != '') $query .= " AND satellite.launch_date > '".$sincedate."'"; |
|
317 | + if ($sincedate != '') { |
|
318 | + $query .= " AND satellite.launch_date > '".$sincedate."'"; |
|
319 | + } |
|
285 | 320 | $query .= " GROUP BY year_name |
286 | 321 | ORDER BY year_name ASC"; |
287 | 322 | $query_data = array(':offset' => $offset); |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | <button type="button" class="close">×</button> |
10 | 10 | <?php |
11 | 11 | |
12 | -$sat = filter_input(INPUT_GET,'sat',FILTER_SANITIZE_STRING); |
|
12 | +$sat = filter_input(INPUT_GET, 'sat', FILTER_SANITIZE_STRING); |
|
13 | 13 | $sat = urldecode($sat); |
14 | 14 | //$info = $Satellite->get_info(str_replace(' ','-',$sat)); |
15 | 15 | //print_r($info); |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $aircraft_name = 'INTEGRAL'; |
49 | 49 | // $ground_speed = 14970; |
50 | 50 | $launch_date = '17 October 2002'; |
51 | -} elseif (strpos($sat,'IRIDIUM') !== false) { |
|
51 | +} elseif (strpos($sat, 'IRIDIUM') !== false) { |
|
52 | 52 | $image = 'https://upload.wikimedia.org/wikipedia/commons/b/b6/Iridium_Satellite.jpg'; |
53 | 53 | $image_copyright = 'Cliff'; |
54 | 54 | $ident = 'Iridium satellite constellation'; |
@@ -56,23 +56,23 @@ discard block |
||
56 | 56 | $aircraft_name = $sat; |
57 | 57 | // $ground_speed = 14970; |
58 | 58 | // $launch_date = '29 september 2011'; |
59 | -} elseif (strpos($sat,'ORBCOMM') !== false) { |
|
59 | +} elseif (strpos($sat, 'ORBCOMM') !== false) { |
|
60 | 60 | $ident = 'Orbcomm'; |
61 | 61 | $aircraft_wiki = 'https://en.wikipedia.org/wiki/Orbcomm_(satellite)'; |
62 | 62 | $aircraft_name = $sat; |
63 | -} elseif (strpos($sat,'GLOBALSTAR') !== false) { |
|
63 | +} elseif (strpos($sat, 'GLOBALSTAR') !== false) { |
|
64 | 64 | $ident = 'Globalstar'; |
65 | 65 | $aircraft_wiki = 'https://en.wikipedia.org/wiki/Globalstar'; |
66 | 66 | $aircraft_name = $sat; |
67 | - $satname = str_replace(array('[+]','[-]'),'',$sat); |
|
68 | -} elseif (strpos($sat,'OSCAR 7') !== false) { |
|
67 | + $satname = str_replace(array('[+]', '[-]'), '', $sat); |
|
68 | +} elseif (strpos($sat, 'OSCAR 7') !== false) { |
|
69 | 69 | $image = 'https://upload.wikimedia.org/wikipedia/en/a/ad/AMSAT-OSCAR_7.jpg'; |
70 | 70 | $image_copyright = 'Amsat.org'; |
71 | 71 | $ident = 'AMSAT-OSCAR 7'; |
72 | 72 | $aircraft_wiki = 'https://en.wikipedia.org/wiki/AMSAT-OSCAR_7'; |
73 | 73 | $aircraft_name = $sat; |
74 | 74 | $launch_date = '15 November 1974'; |
75 | -} elseif (strpos($sat,'santaclaus') !== false) { |
|
75 | +} elseif (strpos($sat, 'santaclaus') !== false) { |
|
76 | 76 | $image = 'https://upload.wikimedia.org/wikipedia/commons/4/49/Jonathan_G_Meath_portrays_Santa_Claus.jpg'; |
77 | 77 | $image_copyright = 'Jonathan G Meath'; |
78 | 78 | $ident = 'Santa Claus'; |
@@ -81,8 +81,8 @@ discard block |
||
81 | 81 | // $launch_date = '15 November 1974'; |
82 | 82 | } else { |
83 | 83 | $ident = $sat; |
84 | - if (strpos($sat,'(')) $satname = $sat; |
|
85 | - else $satname = str_replace(array(' '),'-',$sat); |
|
84 | + if (strpos($sat, '(')) $satname = $sat; |
|
85 | + else $satname = str_replace(array(' '), '-', $sat); |
|
86 | 86 | } |
87 | 87 | if (!isset($satname)) $satname = $sat; |
88 | 88 | $info = $Satellite->get_info(strtolower(trim($satname))); |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | print '<div><span>'._("Orbit").'</span>'.$info['orbit'].'</div>'; |
146 | 146 | } |
147 | 147 | if ($info['launch_date'] != '') { |
148 | - print '<div><span>'._("Launch Date").'</span>'.date('Y-m-d',strtotime($info['launch_date'])).'</div>'; |
|
148 | + print '<div><span>'._("Launch Date").'</span>'.date('Y-m-d', strtotime($info['launch_date'])).'</div>'; |
|
149 | 149 | } |
150 | 150 | if ($info['launch_site'] != '') { |
151 | 151 | print '<div><span>'._("Launch Site").'</span>'.$info['launch_site'].'</div>'; |
@@ -81,10 +81,15 @@ |
||
81 | 81 | // $launch_date = '15 November 1974'; |
82 | 82 | } else { |
83 | 83 | $ident = $sat; |
84 | - if (strpos($sat,'(')) $satname = $sat; |
|
85 | - else $satname = str_replace(array(' '),'-',$sat); |
|
84 | + if (strpos($sat,'(')) { |
|
85 | + $satname = $sat; |
|
86 | + } else { |
|
87 | + $satname = str_replace(array(' '),'-',$sat); |
|
88 | + } |
|
89 | + } |
|
90 | +if (!isset($satname)) { |
|
91 | + $satname = $sat; |
|
86 | 92 | } |
87 | -if (!isset($satname)) $satname = $sat; |
|
88 | 93 | $info = $Satellite->get_info(strtolower(trim($satname))); |
89 | 94 | $position = $Satellite->position($sat); |
90 | 95 | $ground_speed = $position['speed']; |
@@ -52,7 +52,12 @@ |
||
52 | 52 | } else { |
53 | 53 | for (var i = 0; i < viewer.dataSources.get(dsn).entities.values.length; i++) { |
54 | 54 | var entity = viewer.dataSources.get(dsn).entities.values[i]; |
55 | - if (parseInt(entity.lastupdatesat) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) print $globalMapRefresh*2000; else print '60000'; ?>)) { |
|
55 | + if (parseInt(entity.lastupdatesat) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) { |
|
56 | + print $globalMapRefresh*2000; |
|
57 | +} else { |
|
58 | + print '60000'; |
|
59 | +} |
|
60 | +?>)) { |
|
56 | 61 | viewer.dataSources.get(dsn).entities.remove(entity); |
57 | 62 | } |
58 | 63 | } |
@@ -20,17 +20,17 @@ discard block |
||
20 | 20 | |
21 | 21 | $spotter_array = array(); |
22 | 22 | if (isset($_COOKIE['sattypes']) && $_COOKIE['sattypes'] != '') { |
23 | - $sattypes = explode(',',$_COOKIE['sattypes']); |
|
23 | + $sattypes = explode(',', $_COOKIE['sattypes']); |
|
24 | 24 | foreach ($sattypes as $sattype) { |
25 | - $spotter_array = array_merge($Satellite->position_all_type($sattype,$timeb-$globalLiveInterval,$timeb),$spotter_array); |
|
25 | + $spotter_array = array_merge($Satellite->position_all_type($sattype, $timeb - $globalLiveInterval, $timeb), $spotter_array); |
|
26 | 26 | } |
27 | 27 | } |
28 | 28 | if (isset($_COOKIE['displayiss']) && $_COOKIE['displayiss']) { |
29 | - $spotter_array = array_merge($Satellite->position('ISS (ZARYA)',time()-$globalLiveInterval,time()),$spotter_array); |
|
30 | - $spotter_array = array_merge($Satellite->position('TIANGONG 1',time()-$globalLiveInterval,time()),$spotter_array); |
|
31 | - $spotter_array = array_merge($Satellite->position('TIANGONG-2',time()-$globalLiveInterval,time()),$spotter_array); |
|
29 | + $spotter_array = array_merge($Satellite->position('ISS (ZARYA)', time() - $globalLiveInterval, time()), $spotter_array); |
|
30 | + $spotter_array = array_merge($Satellite->position('TIANGONG 1', time() - $globalLiveInterval, time()), $spotter_array); |
|
31 | + $spotter_array = array_merge($Satellite->position('TIANGONG-2', time() - $globalLiveInterval, time()), $spotter_array); |
|
32 | 32 | } |
33 | -$spotter_array = array_unique($spotter_array,SORT_REGULAR); |
|
33 | +$spotter_array = array_unique($spotter_array, SORT_REGULAR); |
|
34 | 34 | /* |
35 | 35 | $modelsdb = array(); |
36 | 36 | if (file_exists('models/space/space_modelsdb')) { |
@@ -54,14 +54,14 @@ discard block |
||
54 | 54 | // $output .= ',"clock": {"interval" : "'.date("c",time()-$globalLiveInterval).'/'.date("c").'","currentTime" : "'.date("c",time() - $globalLiveInterval).'","multiplier" : 1,"range" : "LOOP_STOP","step": "SYSTEM_CLOCK_MULTIPLIER"}'; |
55 | 55 | |
56 | 56 | // $output .= ',"clock": {"interval" : "'.date("c",time()-$globalLiveInterval).'/'.date("c").'","currentTime" : "'.date("c",time() - $globalLiveInterval).'","multiplier" : 1,"range" : "UNBOUNDED","step": "SYSTEM_CLOCK_MULTIPLIER"}'; |
57 | -$output .= ',"clock": {"currentTime" : "'.date("c",time() - $globalLiveInterval).'","multiplier" : 1,"range" : "UNBOUNDED","step": "SYSTEM_CLOCK_MULTIPLIER"}'; |
|
57 | +$output .= ',"clock": {"currentTime" : "'.date("c", time() - $globalLiveInterval).'","multiplier" : 1,"range" : "UNBOUNDED","step": "SYSTEM_CLOCK_MULTIPLIER"}'; |
|
58 | 58 | //$output .= ',"clock": {"currentTime" : "%minitime%","multiplier" : 1,"range" : "UNBOUNDED","step": "SYSTEM_CLOCK_MULTIPLIER"}'; |
59 | 59 | |
60 | 60 | // $output .= ',"clock": {"interval" : "'.date("c",time()-$globalLiveInterval).'/'.date("c").'","currentTime" : "'.date("c",time() - $globalLiveInterval).'","multiplier" : 1,"step": "SYSTEM_CLOCK_MULTIPLIER"}'; |
61 | 61 | $output .= '},'; |
62 | 62 | if (!empty($spotter_array) && is_array($spotter_array)) |
63 | 63 | { |
64 | - foreach($spotter_array as $spotter_item) |
|
64 | + foreach ($spotter_array as $spotter_item) |
|
65 | 65 | { |
66 | 66 | $j++; |
67 | 67 | date_default_timezone_set('UTC'); |
@@ -115,23 +115,23 @@ discard block |
||
115 | 115 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/cubiesat.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
116 | 116 | } elseif ($spotter_item['name'] == 'TERRA') { |
117 | 117 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/terra.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
118 | - } elseif (strpos($spotter_item['name'],'O3B') !== false) { |
|
118 | + } elseif (strpos($spotter_item['name'], 'O3B') !== false) { |
|
119 | 119 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/o3b.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
120 | - } elseif (strpos($spotter_item['name'],'GLOBALSTAR') !== false) { |
|
120 | + } elseif (strpos($spotter_item['name'], 'GLOBALSTAR') !== false) { |
|
121 | 121 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/globalstar.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
122 | - } elseif (strpos($spotter_item['name'],'GPS') !== false) { |
|
122 | + } elseif (strpos($spotter_item['name'], 'GPS') !== false) { |
|
123 | 123 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/gps.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
124 | - } elseif (strpos($spotter_item['name'],'GENESIS') !== false) { |
|
124 | + } elseif (strpos($spotter_item['name'], 'GENESIS') !== false) { |
|
125 | 125 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/genesis.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
126 | - } elseif (strpos($spotter_item['name'],'OSCAR 7') !== false) { |
|
126 | + } elseif (strpos($spotter_item['name'], 'OSCAR 7') !== false) { |
|
127 | 127 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/oscar7.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
128 | - } elseif (strpos($spotter_item['name'],'FLOCK') !== false) { |
|
128 | + } elseif (strpos($spotter_item['name'], 'FLOCK') !== false) { |
|
129 | 129 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/cubesat.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
130 | - } elseif (strpos($spotter_item['name'],'PLEIADES') !== false) { |
|
130 | + } elseif (strpos($spotter_item['name'], 'PLEIADES') !== false) { |
|
131 | 131 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/pleiades.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
132 | - } elseif (strpos($spotter_item['name'],'DUCHIFAT') !== false) { |
|
132 | + } elseif (strpos($spotter_item['name'], 'DUCHIFAT') !== false) { |
|
133 | 133 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/duchifat.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
134 | - } elseif (strpos($spotter_item['name'],'FORMOSAT-2') !== false) { |
|
134 | + } elseif (strpos($spotter_item['name'], 'FORMOSAT-2') !== false) { |
|
135 | 135 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/formosat2.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
136 | 136 | } elseif ($spotter_item['type'] == 'iridium') { |
137 | 137 | $output .= '"model": {"gltf" : "'.$globalURL.'/models/space/iridium.glb'.'","scale" : 1.0,"minimumPixelSize": 25,"maximunPixelSize": 300 },'; |
@@ -153,14 +153,14 @@ discard block |
||
153 | 153 | // $output .= '"epoch" : "'.date("c",strtotime($spotter_item['date'])).'", '; |
154 | 154 | $output .= '"interpolationAlgorithm":"HERMITE","interpolationDegree":3,'; |
155 | 155 | $output .= '"cartographicDegrees": ['; |
156 | - $output .= '"'.date("c",$spotter_item['timestamp']).'", '; |
|
156 | + $output .= '"'.date("c", $spotter_item['timestamp']).'", '; |
|
157 | 157 | $output .= $spotter_item['longitude'].', '; |
158 | 158 | $output .= $spotter_item['latitude'].', '; |
159 | 159 | $output .= $spotter_item['altitude']*1000; |
160 | 160 | $orientation = '"orientation" : { '; |
161 | 161 | $orientation .= '"unitQuaternion": ['; |
162 | 162 | } else { |
163 | - $output .= ',"'.date("c",$spotter_item['timestamp']).'", '; |
|
163 | + $output .= ',"'.date("c", $spotter_item['timestamp']).'", '; |
|
164 | 164 | $output .= $spotter_item['longitude'].', '; |
165 | 165 | $output .= $spotter_item['latitude'].', '; |
166 | 166 | $output .= $spotter_item['altitude']*1000; |
@@ -14,11 +14,11 @@ discard block |
||
14 | 14 | try { |
15 | 15 | $sth = $Connection->db->prepare($query); |
16 | 16 | $sth->execute(); |
17 | - } catch(PDOException $e) { |
|
17 | + } catch (PDOException $e) { |
|
18 | 18 | return "error : ".$e->getMessage()."\n"; |
19 | 19 | } |
20 | 20 | while ($row = $sth->fetch(PDO::FETCH_ASSOC)) { |
21 | - $Schedule->addSchedule($row['ident'],$row['departure_airport_icao'],$row['departure_airport_time'],$row['arrival_airport_icao'],$row['arrival_airport_time']); |
|
21 | + $Schedule->addSchedule($row['ident'], $row['departure_airport_icao'], $row['departure_airport_time'], $row['arrival_airport_icao'], $row['arrival_airport_time']); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | } |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | try { |
51 | 51 | $sth = $Connection->db->prepare($query); |
52 | 52 | $sth->execute(); |
53 | - } catch(PDOException $e) { |
|
53 | + } catch (PDOException $e) { |
|
54 | 54 | return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
55 | 55 | } |
56 | 56 | // Copy schedules data to routes table |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | try { |
61 | 61 | $sth = $Connection->db->prepare($query); |
62 | 62 | $sth->execute(); |
63 | - } catch(PDOException $e) { |
|
63 | + } catch (PDOException $e) { |
|
64 | 64 | return "error (delete schedule table) : ".$e->getMessage()."\n"; |
65 | 65 | } |
66 | 66 | // Add source column |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | try { |
69 | 69 | $sth = $Connection->db->prepare($query); |
70 | 70 | $sth->execute(); |
71 | - } catch(PDOException $e) { |
|
71 | + } catch (PDOException $e) { |
|
72 | 72 | return "error (add source column to aircraft_modes) : ".$e->getMessage()."\n"; |
73 | 73 | } |
74 | 74 | // Delete unused column |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | try { |
77 | 77 | $sth = $Connection->db->prepare($query); |
78 | 78 | $sth->execute(); |
79 | - } catch(PDOException $e) { |
|
79 | + } catch (PDOException $e) { |
|
80 | 80 | return "error (Delete unused column of aircraft_modes) : ".$e->getMessage()."\n"; |
81 | 81 | } |
82 | 82 | // Add ModeS column |
@@ -84,14 +84,14 @@ discard block |
||
84 | 84 | try { |
85 | 85 | $sth = $Connection->db->prepare($query); |
86 | 86 | $sth->execute(); |
87 | - } catch(PDOException $e) { |
|
87 | + } catch (PDOException $e) { |
|
88 | 88 | return "error (Add ModeS column in spotter_output) : ".$e->getMessage()."\n"; |
89 | 89 | } |
90 | 90 | $query = "ALTER TABLE `spotter_live` ADD `ModeS` VARCHAR(255)"; |
91 | 91 | try { |
92 | 92 | $sth = $Connection->db->prepare($query); |
93 | 93 | $sth->execute(); |
94 | - } catch(PDOException $e) { |
|
94 | + } catch (PDOException $e) { |
|
95 | 95 | return "error (Add ModeS column in spotter_live) : ".$e->getMessage()."\n"; |
96 | 96 | } |
97 | 97 | // Add auto_increment for aircraft_modes |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | try { |
100 | 100 | $sth = $Connection->db->prepare($query); |
101 | 101 | $sth->execute(); |
102 | - } catch(PDOException $e) { |
|
102 | + } catch (PDOException $e) { |
|
103 | 103 | return "error (Add Auto increment in aircraft_modes) : ".$e->getMessage()."\n"; |
104 | 104 | } |
105 | 105 | $error = ''; |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | try { |
111 | 111 | $sth = $Connection->db->prepare($query); |
112 | 112 | $sth->execute(); |
113 | - } catch(PDOException $e) { |
|
113 | + } catch (PDOException $e) { |
|
114 | 114 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
115 | 115 | } |
116 | 116 | return $error; |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | try { |
124 | 124 | $sth = $Connection->db->prepare($query); |
125 | 125 | $sth->execute(); |
126 | - } catch(PDOException $e) { |
|
126 | + } catch (PDOException $e) { |
|
127 | 127 | return "error (add new columns to routes table) : ".$e->getMessage()."\n"; |
128 | 128 | } |
129 | 129 | $error = ''; |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | try { |
135 | 135 | $sth = $Connection->db->prepare($query); |
136 | 136 | $sth->execute(); |
137 | - } catch(PDOException $e) { |
|
137 | + } catch (PDOException $e) { |
|
138 | 138 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
139 | 139 | } |
140 | 140 | return $error; |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | try { |
148 | 148 | $sth = $Connection->db->prepare($query); |
149 | 149 | $sth->execute(); |
150 | - } catch(PDOException $e) { |
|
150 | + } catch (PDOException $e) { |
|
151 | 151 | return "error (add new columns to aircraft_modes) : ".$e->getMessage()."\n"; |
152 | 152 | } |
153 | 153 | // Add image_source_website column to spotter_image |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | try { |
156 | 156 | $sth = $Connection->db->prepare($query); |
157 | 157 | $sth->execute(); |
158 | - } catch(PDOException $e) { |
|
158 | + } catch (PDOException $e) { |
|
159 | 159 | return "error (add new columns to spotter_image) : ".$e->getMessage()."\n"; |
160 | 160 | } |
161 | 161 | $error = ''; |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | try { |
165 | 165 | $sth = $Connection->db->prepare($query); |
166 | 166 | $sth->execute(); |
167 | - } catch(PDOException $e) { |
|
167 | + } catch (PDOException $e) { |
|
168 | 168 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
169 | 169 | } |
170 | 170 | return $error; |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | try { |
183 | 183 | $sth = $Connection->db->prepare($query); |
184 | 184 | $sth->execute(); |
185 | - } catch(PDOException $e) { |
|
185 | + } catch (PDOException $e) { |
|
186 | 186 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
187 | 187 | } |
188 | 188 | } |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | try { |
197 | 197 | $sth = $Connection->db->prepare($query); |
198 | 198 | $sth->execute(); |
199 | - } catch(PDOException $e) { |
|
199 | + } catch (PDOException $e) { |
|
200 | 200 | return "error (add new columns to translation) : ".$e->getMessage()."\n"; |
201 | 201 | } |
202 | 202 | // Add aircraft_shadow column to aircraft |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | try { |
205 | 205 | $sth = $Connection->db->prepare($query); |
206 | 206 | $sth->execute(); |
207 | - } catch(PDOException $e) { |
|
207 | + } catch (PDOException $e) { |
|
208 | 208 | return "error (add new column to aircraft) : ".$e->getMessage()."\n"; |
209 | 209 | } |
210 | 210 | // Add aircraft_shadow column to spotter_live |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | try { |
213 | 213 | $sth = $Connection->db->prepare($query); |
214 | 214 | $sth->execute(); |
215 | - } catch(PDOException $e) { |
|
215 | + } catch (PDOException $e) { |
|
216 | 216 | return "error (add new column to spotter_live) : ".$e->getMessage()."\n"; |
217 | 217 | } |
218 | 218 | $error = ''; |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | try { |
226 | 226 | $sth = $Connection->db->prepare($query); |
227 | 227 | $sth->execute(); |
228 | - } catch(PDOException $e) { |
|
228 | + } catch (PDOException $e) { |
|
229 | 229 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
230 | 230 | } |
231 | 231 | return $error; |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | |
234 | 234 | private static function update_from_6() { |
235 | 235 | $Connection = new Connection(); |
236 | - if (!$Connection->indexExists('spotter_output','flightaware_id')) { |
|
236 | + if (!$Connection->indexExists('spotter_output', 'flightaware_id')) { |
|
237 | 237 | $query = "ALTER TABLE spotter_output ADD INDEX(flightaware_id); |
238 | 238 | ALTER TABLE spotter_output ADD INDEX(date); |
239 | 239 | ALTER TABLE spotter_output ADD INDEX(ident); |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | try { |
251 | 251 | $sth = $Connection->db->prepare($query); |
252 | 252 | $sth->execute(); |
253 | - } catch(PDOException $e) { |
|
253 | + } catch (PDOException $e) { |
|
254 | 254 | return "error (add some indexes) : ".$e->getMessage()."\n"; |
255 | 255 | } |
256 | 256 | } |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | try { |
266 | 266 | $sth = $Connection->db->prepare($query); |
267 | 267 | $sth->execute(); |
268 | - } catch(PDOException $e) { |
|
268 | + } catch (PDOException $e) { |
|
269 | 269 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
270 | 270 | } |
271 | 271 | return $error; |
@@ -274,12 +274,12 @@ discard block |
||
274 | 274 | private static function update_from_7() { |
275 | 275 | global $globalDBname, $globalDBdriver; |
276 | 276 | $Connection = new Connection(); |
277 | - $query="ALTER TABLE spotter_live ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL; |
|
277 | + $query = "ALTER TABLE spotter_live ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL; |
|
278 | 278 | ALTER TABLE spotter_output ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL;"; |
279 | 279 | try { |
280 | 280 | $sth = $Connection->db->prepare($query); |
281 | 281 | $sth->execute(); |
282 | - } catch(PDOException $e) { |
|
282 | + } catch (PDOException $e) { |
|
283 | 283 | return "error (add pilot column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
284 | 284 | } |
285 | 285 | if ($globalDBdriver == 'mysql') { |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | try { |
288 | 288 | $sth = $Connection->db->prepare($query); |
289 | 289 | $sth->execute(); |
290 | - } catch(PDOException $e) { |
|
290 | + } catch (PDOException $e) { |
|
291 | 291 | return "error (problem when select engine for spotter_engine) : ".$e->getMessage()."\n"; |
292 | 292 | } |
293 | 293 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -299,15 +299,15 @@ discard block |
||
299 | 299 | DROP TABLE spotter_archive; |
300 | 300 | RENAME TABLE copy TO spotter_archive;"; |
301 | 301 | } else { |
302 | - $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
302 | + $query = "ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
303 | 303 | } |
304 | 304 | } else { |
305 | - $query="ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
305 | + $query = "ALTER TABLE spotter_archive ADD pilot_name VARCHAR(255) NULL, ADD pilot_id VARCHAR(255) NULL"; |
|
306 | 306 | } |
307 | 307 | try { |
308 | 308 | $sth = $Connection->db->prepare($query); |
309 | 309 | $sth->execute(); |
310 | - } catch(PDOException $e) { |
|
310 | + } catch (PDOException $e) { |
|
311 | 311 | return "error (add pilot column to spotter_archive) : ".$e->getMessage()."\n"; |
312 | 312 | } |
313 | 313 | |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | try { |
321 | 321 | $sth = $Connection->db->prepare($query); |
322 | 322 | $sth->execute(); |
323 | - } catch(PDOException $e) { |
|
323 | + } catch (PDOException $e) { |
|
324 | 324 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
325 | 325 | } |
326 | 326 | return $error; |
@@ -339,14 +339,14 @@ discard block |
||
339 | 339 | try { |
340 | 340 | $sth = $Connection->db->prepare($query); |
341 | 341 | $sth->execute(); |
342 | - } catch(PDOException $e) { |
|
342 | + } catch (PDOException $e) { |
|
343 | 343 | return "error (insert last_update values) : ".$e->getMessage()."\n"; |
344 | 344 | } |
345 | 345 | $query = "UPDATE `config` SET `value` = '9' WHERE `name` = 'schema_version'"; |
346 | 346 | try { |
347 | 347 | $sth = $Connection->db->prepare($query); |
348 | 348 | $sth->execute(); |
349 | - } catch(PDOException $e) { |
|
349 | + } catch (PDOException $e) { |
|
350 | 350 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
351 | 351 | } |
352 | 352 | return $error; |
@@ -354,12 +354,12 @@ discard block |
||
354 | 354 | |
355 | 355 | private static function update_from_9() { |
356 | 356 | $Connection = new Connection(); |
357 | - $query="ALTER TABLE spotter_live ADD verticalrate INT(11) NULL; |
|
357 | + $query = "ALTER TABLE spotter_live ADD verticalrate INT(11) NULL; |
|
358 | 358 | ALTER TABLE spotter_output ADD verticalrate INT(11) NULL;"; |
359 | 359 | try { |
360 | 360 | $sth = $Connection->db->prepare($query); |
361 | 361 | $sth->execute(); |
362 | - } catch(PDOException $e) { |
|
362 | + } catch (PDOException $e) { |
|
363 | 363 | return "error (add verticalrate column to spotter_live and spotter_output) : ".$e->getMessage()."\n"; |
364 | 364 | } |
365 | 365 | $error = ''; |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | try { |
372 | 372 | $sth = $Connection->db->prepare($query); |
373 | 373 | $sth->execute(); |
374 | - } catch(PDOException $e) { |
|
374 | + } catch (PDOException $e) { |
|
375 | 375 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
376 | 376 | } |
377 | 377 | return $error; |
@@ -379,11 +379,11 @@ discard block |
||
379 | 379 | |
380 | 380 | private static function update_from_10() { |
381 | 381 | $Connection = new Connection(); |
382 | - $query="ALTER TABLE atc CHANGE `type` `type` ENUM('Observer','Flight Information','Delivery','Tower','Approach','ACC','Departure','Ground','Flight Service Station','Control Radar or Centre') CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL"; |
|
382 | + $query = "ALTER TABLE atc CHANGE `type` `type` ENUM('Observer','Flight Information','Delivery','Tower','Approach','ACC','Departure','Ground','Flight Service Station','Control Radar or Centre') CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL"; |
|
383 | 383 | try { |
384 | 384 | $sth = $Connection->db->prepare($query); |
385 | 385 | $sth->execute(); |
386 | - } catch(PDOException $e) { |
|
386 | + } catch (PDOException $e) { |
|
387 | 387 | return "error (add new enum to ATC table) : ".$e->getMessage()."\n"; |
388 | 388 | } |
389 | 389 | $error = ''; |
@@ -401,7 +401,7 @@ discard block |
||
401 | 401 | try { |
402 | 402 | $sth = $Connection->db->prepare($query); |
403 | 403 | $sth->execute(); |
404 | - } catch(PDOException $e) { |
|
404 | + } catch (PDOException $e) { |
|
405 | 405 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
406 | 406 | } |
407 | 407 | return $error; |
@@ -410,18 +410,18 @@ discard block |
||
410 | 410 | private static function update_from_11() { |
411 | 411 | global $globalDBdriver, $globalDBname; |
412 | 412 | $Connection = new Connection(); |
413 | - $query="ALTER TABLE spotter_output ADD owner_name VARCHAR(255) NULL DEFAULT NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_seen DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, ADD last_latitude FLOAT NULL, ADD last_longitude FLOAT NULL, ADD last_altitude INT(11) NULL, ADD last_ground_speed INT(11), ADD real_arrival_airport_icao VARCHAR(999), ADD real_arrival_airport_time VARCHAR(20),ADD real_departure_airport_icao VARCHAR(999), ADD real_departure_airport_time VARCHAR(20)"; |
|
413 | + $query = "ALTER TABLE spotter_output ADD owner_name VARCHAR(255) NULL DEFAULT NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_ground BOOLEAN NOT NULL DEFAULT FALSE, ADD last_seen DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, ADD last_latitude FLOAT NULL, ADD last_longitude FLOAT NULL, ADD last_altitude INT(11) NULL, ADD last_ground_speed INT(11), ADD real_arrival_airport_icao VARCHAR(999), ADD real_arrival_airport_time VARCHAR(20),ADD real_departure_airport_icao VARCHAR(999), ADD real_departure_airport_time VARCHAR(20)"; |
|
414 | 414 | try { |
415 | 415 | $sth = $Connection->db->prepare($query); |
416 | 416 | $sth->execute(); |
417 | - } catch(PDOException $e) { |
|
417 | + } catch (PDOException $e) { |
|
418 | 418 | return "error (add owner_name & format_source column to spotter_output) : ".$e->getMessage()."\n"; |
419 | 419 | } |
420 | - $query="ALTER TABLE spotter_live ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
420 | + $query = "ALTER TABLE spotter_live ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
421 | 421 | try { |
422 | 422 | $sth = $Connection->db->prepare($query); |
423 | 423 | $sth->execute(); |
424 | - } catch(PDOException $e) { |
|
424 | + } catch (PDOException $e) { |
|
425 | 425 | return "error (format_source column to spotter_live) : ".$e->getMessage()."\n"; |
426 | 426 | } |
427 | 427 | if ($globalDBdriver == 'mysql') { |
@@ -429,7 +429,7 @@ discard block |
||
429 | 429 | try { |
430 | 430 | $sth = $Connection->db->prepare($query); |
431 | 431 | $sth->execute(); |
432 | - } catch(PDOException $e) { |
|
432 | + } catch (PDOException $e) { |
|
433 | 433 | return "error (problem when select engine for spotter_engine) : ".$e->getMessage()."\n"; |
434 | 434 | } |
435 | 435 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -441,15 +441,15 @@ discard block |
||
441 | 441 | DROP TABLE spotter_archive; |
442 | 442 | RENAME TABLE copy TO spotter_archive;"; |
443 | 443 | } else { |
444 | - $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
444 | + $query = "ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
445 | 445 | } |
446 | 446 | } else { |
447 | - $query="ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
447 | + $query = "ALTER TABLE spotter_archive ADD verticalrate INT(11) NULL, ADD format_source VARCHAR(255) NULL DEFAULT NULL, ADD ground BOOLEAN NOT NULL DEFAULT FALSE"; |
|
448 | 448 | } |
449 | 449 | try { |
450 | 450 | $sth = $Connection->db->prepare($query); |
451 | 451 | $sth->execute(); |
452 | - } catch(PDOException $e) { |
|
452 | + } catch (PDOException $e) { |
|
453 | 453 | return "error (add columns to spotter_archive) : ".$e->getMessage()."\n"; |
454 | 454 | } |
455 | 455 | |
@@ -459,7 +459,7 @@ discard block |
||
459 | 459 | try { |
460 | 460 | $sth = $Connection->db->prepare($query); |
461 | 461 | $sth->execute(); |
462 | - } catch(PDOException $e) { |
|
462 | + } catch (PDOException $e) { |
|
463 | 463 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
464 | 464 | } |
465 | 465 | return $error; |
@@ -487,7 +487,7 @@ discard block |
||
487 | 487 | try { |
488 | 488 | $sth = $Connection->db->prepare($query); |
489 | 489 | $sth->execute(); |
490 | - } catch(PDOException $e) { |
|
490 | + } catch (PDOException $e) { |
|
491 | 491 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
492 | 492 | } |
493 | 493 | return $error; |
@@ -495,12 +495,12 @@ discard block |
||
495 | 495 | |
496 | 496 | private static function update_from_13() { |
497 | 497 | $Connection = new Connection(); |
498 | - if (!$Connection->checkColumnName('spotter_archive_output','real_departure_airport_icao')) { |
|
499 | - $query="ALTER TABLE spotter_archive_output ADD real_departure_airport_icao VARCHAR(20), ADD real_departure_airport_time VARCHAR(20)"; |
|
498 | + if (!$Connection->checkColumnName('spotter_archive_output', 'real_departure_airport_icao')) { |
|
499 | + $query = "ALTER TABLE spotter_archive_output ADD real_departure_airport_icao VARCHAR(20), ADD real_departure_airport_time VARCHAR(20)"; |
|
500 | 500 | try { |
501 | 501 | $sth = $Connection->db->prepare($query); |
502 | 502 | $sth->execute(); |
503 | - } catch(PDOException $e) { |
|
503 | + } catch (PDOException $e) { |
|
504 | 504 | return "error (update spotter_archive_output) : ".$e->getMessage()."\n"; |
505 | 505 | } |
506 | 506 | } |
@@ -509,7 +509,7 @@ discard block |
||
509 | 509 | try { |
510 | 510 | $sth = $Connection->db->prepare($query); |
511 | 511 | $sth->execute(); |
512 | - } catch(PDOException $e) { |
|
512 | + } catch (PDOException $e) { |
|
513 | 513 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
514 | 514 | } |
515 | 515 | return $error; |
@@ -527,7 +527,7 @@ discard block |
||
527 | 527 | try { |
528 | 528 | $sth = $Connection->db->prepare($query); |
529 | 529 | $sth->execute(); |
530 | - } catch(PDOException $e) { |
|
530 | + } catch (PDOException $e) { |
|
531 | 531 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
532 | 532 | } |
533 | 533 | return $error; |
@@ -538,11 +538,11 @@ discard block |
||
538 | 538 | $Connection = new Connection(); |
539 | 539 | $error = ''; |
540 | 540 | // Add tables |
541 | - $query="ALTER TABLE `stats` CHANGE `stats_date` `stats_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP"; |
|
541 | + $query = "ALTER TABLE `stats` CHANGE `stats_date` `stats_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP"; |
|
542 | 542 | try { |
543 | 543 | $sth = $Connection->db->prepare($query); |
544 | 544 | $sth->execute(); |
545 | - } catch(PDOException $e) { |
|
545 | + } catch (PDOException $e) { |
|
546 | 546 | return "error (update stats) : ".$e->getMessage()."\n"; |
547 | 547 | } |
548 | 548 | if ($error != '') return $error; |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | try { |
551 | 551 | $sth = $Connection->db->prepare($query); |
552 | 552 | $sth->execute(); |
553 | - } catch(PDOException $e) { |
|
553 | + } catch (PDOException $e) { |
|
554 | 554 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
555 | 555 | } |
556 | 556 | return $error; |
@@ -571,7 +571,7 @@ discard block |
||
571 | 571 | try { |
572 | 572 | $sth = $Connection->db->prepare($query); |
573 | 573 | $sth->execute(); |
574 | - } catch(PDOException $e) { |
|
574 | + } catch (PDOException $e) { |
|
575 | 575 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
576 | 576 | } |
577 | 577 | return $error; |
@@ -589,7 +589,7 @@ discard block |
||
589 | 589 | try { |
590 | 590 | $sth = $Connection->db->prepare($query); |
591 | 591 | $sth->execute(); |
592 | - } catch(PDOException $e) { |
|
592 | + } catch (PDOException $e) { |
|
593 | 593 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
594 | 594 | } |
595 | 595 | return $error; |
@@ -598,12 +598,12 @@ discard block |
||
598 | 598 | $Connection = new Connection(); |
599 | 599 | $error = ''; |
600 | 600 | // Modify stats_airport table |
601 | - if (!$Connection->checkColumnName('stats_airport','airport_name')) { |
|
601 | + if (!$Connection->checkColumnName('stats_airport', 'airport_name')) { |
|
602 | 602 | $query = "ALTER TABLE `stats_airport` ADD `stats_type` VARCHAR(50) NOT NULL DEFAULT 'yearly', ADD `airport_name` VARCHAR(255) NOT NULL, ADD `date` DATE NULL DEFAULT NULL, DROP INDEX `airport_icao`, ADD UNIQUE `airport_icao` (`airport_icao`, `type`, `date`)"; |
603 | 603 | try { |
604 | 604 | $sth = $Connection->db->prepare($query); |
605 | 605 | $sth->execute(); |
606 | - } catch(PDOException $e) { |
|
606 | + } catch (PDOException $e) { |
|
607 | 607 | return "error (update stats) : ".$e->getMessage()."\n"; |
608 | 608 | } |
609 | 609 | } |
@@ -612,7 +612,7 @@ discard block |
||
612 | 612 | try { |
613 | 613 | $sth = $Connection->db->prepare($query); |
614 | 614 | $sth->execute(); |
615 | - } catch(PDOException $e) { |
|
615 | + } catch (PDOException $e) { |
|
616 | 616 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
617 | 617 | } |
618 | 618 | return $error; |
@@ -629,73 +629,73 @@ discard block |
||
629 | 629 | try { |
630 | 630 | $sth = $Connection->db->prepare($query); |
631 | 631 | $sth->execute(); |
632 | - } catch(PDOException $e) { |
|
632 | + } catch (PDOException $e) { |
|
633 | 633 | return "error (remove primary key on spotter_archive) : ".$e->getMessage()."\n"; |
634 | 634 | } |
635 | 635 | $query = "alter table spotter_archive add spotter_archive_id INT(11)"; |
636 | 636 | try { |
637 | 637 | $sth = $Connection->db->prepare($query); |
638 | 638 | $sth->execute(); |
639 | - } catch(PDOException $e) { |
|
639 | + } catch (PDOException $e) { |
|
640 | 640 | return "error (add id again on spotter_archive) : ".$e->getMessage()."\n"; |
641 | 641 | } |
642 | - if (!$Connection->checkColumnName('spotter_archive','over_country')) { |
|
642 | + if (!$Connection->checkColumnName('spotter_archive', 'over_country')) { |
|
643 | 643 | // Add column over_country |
644 | 644 | $query = "ALTER TABLE `spotter_archive` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
645 | 645 | try { |
646 | 646 | $sth = $Connection->db->prepare($query); |
647 | 647 | $sth->execute(); |
648 | - } catch(PDOException $e) { |
|
648 | + } catch (PDOException $e) { |
|
649 | 649 | return "error (add over_country) : ".$e->getMessage()."\n"; |
650 | 650 | } |
651 | 651 | } |
652 | - if (!$Connection->checkColumnName('spotter_live','over_country')) { |
|
652 | + if (!$Connection->checkColumnName('spotter_live', 'over_country')) { |
|
653 | 653 | // Add column over_country |
654 | 654 | $query = "ALTER TABLE `spotter_live` ADD `over_country` VARCHAR(5) NULL DEFAULT NULL"; |
655 | 655 | try { |
656 | 656 | $sth = $Connection->db->prepare($query); |
657 | 657 | $sth->execute(); |
658 | - } catch(PDOException $e) { |
|
658 | + } catch (PDOException $e) { |
|
659 | 659 | return "error (add over_country) : ".$e->getMessage()."\n"; |
660 | 660 | } |
661 | 661 | } |
662 | - if (!$Connection->checkColumnName('spotter_output','source_name')) { |
|
662 | + if (!$Connection->checkColumnName('spotter_output', 'source_name')) { |
|
663 | 663 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
664 | 664 | $query = "ALTER TABLE `spotter_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
665 | 665 | try { |
666 | 666 | $sth = $Connection->db->prepare($query); |
667 | 667 | $sth->execute(); |
668 | - } catch(PDOException $e) { |
|
668 | + } catch (PDOException $e) { |
|
669 | 669 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
670 | 670 | } |
671 | 671 | } |
672 | - if (!$Connection->checkColumnName('spotter_live','source_name')) { |
|
672 | + if (!$Connection->checkColumnName('spotter_live', 'source_name')) { |
|
673 | 673 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
674 | 674 | $query = "ALTER TABLE `spotter_live` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
675 | 675 | try { |
676 | 676 | $sth = $Connection->db->prepare($query); |
677 | 677 | $sth->execute(); |
678 | - } catch(PDOException $e) { |
|
678 | + } catch (PDOException $e) { |
|
679 | 679 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
680 | 680 | } |
681 | 681 | } |
682 | - if (!$Connection->checkColumnName('spotter_archive_output','source_name')) { |
|
682 | + if (!$Connection->checkColumnName('spotter_archive_output', 'source_name')) { |
|
683 | 683 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
684 | 684 | $query = "ALTER TABLE `spotter_archive_output` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`"; |
685 | 685 | try { |
686 | 686 | $sth = $Connection->db->prepare($query); |
687 | 687 | $sth->execute(); |
688 | - } catch(PDOException $e) { |
|
688 | + } catch (PDOException $e) { |
|
689 | 689 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
690 | 690 | } |
691 | 691 | } |
692 | - if (!$Connection->checkColumnName('spotter_archive','source_name')) { |
|
692 | + if (!$Connection->checkColumnName('spotter_archive', 'source_name')) { |
|
693 | 693 | // Add source_name to spotter_output, spotter_live, spotter_archive, spotter_archive_output |
694 | 694 | $query = "ALTER TABLE `spotter_archive` ADD `source_name` VARCHAR(255) NULL AFTER `format_source`;"; |
695 | 695 | try { |
696 | 696 | $sth = $Connection->db->prepare($query); |
697 | 697 | $sth->execute(); |
698 | - } catch(PDOException $e) { |
|
698 | + } catch (PDOException $e) { |
|
699 | 699 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
700 | 700 | } |
701 | 701 | } |
@@ -704,7 +704,7 @@ discard block |
||
704 | 704 | try { |
705 | 705 | $sth = $Connection->db->prepare($query); |
706 | 706 | $sth->execute(); |
707 | - } catch(PDOException $e) { |
|
707 | + } catch (PDOException $e) { |
|
708 | 708 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
709 | 709 | } |
710 | 710 | return $error; |
@@ -719,13 +719,13 @@ discard block |
||
719 | 719 | $error .= create_db::import_file('../db/airlines.sql'); |
720 | 720 | if ($error != '') return 'Import airlines.sql : '.$error; |
721 | 721 | } |
722 | - if (!$Connection->checkColumnName('aircraft_modes','type_flight')) { |
|
722 | + if (!$Connection->checkColumnName('aircraft_modes', 'type_flight')) { |
|
723 | 723 | // Add column over_country |
724 | 724 | $query = "ALTER TABLE `aircraft_modes` ADD `type_flight` VARCHAR(50) NULL DEFAULT NULL;"; |
725 | 725 | try { |
726 | 726 | $sth = $Connection->db->prepare($query); |
727 | 727 | $sth->execute(); |
728 | - } catch(PDOException $e) { |
|
728 | + } catch (PDOException $e) { |
|
729 | 729 | return "error (add over_country) : ".$e->getMessage()."\n"; |
730 | 730 | } |
731 | 731 | } |
@@ -741,7 +741,7 @@ discard block |
||
741 | 741 | try { |
742 | 742 | $sth = $Connection->db->prepare($query); |
743 | 743 | $sth->execute(); |
744 | - } catch(PDOException $e) { |
|
744 | + } catch (PDOException $e) { |
|
745 | 745 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
746 | 746 | } |
747 | 747 | return $error; |
@@ -750,13 +750,13 @@ discard block |
||
750 | 750 | private static function update_from_21() { |
751 | 751 | $Connection = new Connection(); |
752 | 752 | $error = ''; |
753 | - if (!$Connection->checkColumnName('stats_airport','stats_type')) { |
|
753 | + if (!$Connection->checkColumnName('stats_airport', 'stats_type')) { |
|
754 | 754 | // Rename type to stats_type |
755 | 755 | $query = "ALTER TABLE `stats_airport` CHANGE `type` `stats_type` VARCHAR(50);ALTER TABLE `stats` CHANGE `type` `stats_type` VARCHAR(50);ALTER TABLE `stats_flight` CHANGE `type` `stats_type` VARCHAR(50);"; |
756 | 756 | try { |
757 | 757 | $sth = $Connection->db->prepare($query); |
758 | 758 | $sth->execute(); |
759 | - } catch(PDOException $e) { |
|
759 | + } catch (PDOException $e) { |
|
760 | 760 | return "error (rename type to stats_type on stats*) : ".$e->getMessage()."\n"; |
761 | 761 | } |
762 | 762 | if ($error != '') return $error; |
@@ -765,7 +765,7 @@ discard block |
||
765 | 765 | try { |
766 | 766 | $sth = $Connection->db->prepare($query); |
767 | 767 | $sth->execute(); |
768 | - } catch(PDOException $e) { |
|
768 | + } catch (PDOException $e) { |
|
769 | 769 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
770 | 770 | } |
771 | 771 | return $error; |
@@ -788,7 +788,7 @@ discard block |
||
788 | 788 | try { |
789 | 789 | $sth = $Connection->db->prepare($query); |
790 | 790 | $sth->execute(); |
791 | - } catch(PDOException $e) { |
|
791 | + } catch (PDOException $e) { |
|
792 | 792 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
793 | 793 | } |
794 | 794 | return $error; |
@@ -815,17 +815,17 @@ discard block |
||
815 | 815 | try { |
816 | 816 | $sth = $Connection->db->prepare($query); |
817 | 817 | $sth->execute(); |
818 | - } catch(PDOException $e) { |
|
818 | + } catch (PDOException $e) { |
|
819 | 819 | return "error (create index on spotter_archive) : ".$e->getMessage()."\n"; |
820 | 820 | } |
821 | 821 | } |
822 | - if (!$Connection->checkColumnName('stats_aircraft','aircraft_manufacturer')) { |
|
822 | + if (!$Connection->checkColumnName('stats_aircraft', 'aircraft_manufacturer')) { |
|
823 | 823 | // Add aircraft_manufacturer to stats_aircraft |
824 | 824 | $query = "ALTER TABLE stats_aircraft ADD aircraft_manufacturer VARCHAR(255) NULL"; |
825 | 825 | try { |
826 | 826 | $sth = $Connection->db->prepare($query); |
827 | 827 | $sth->execute(); |
828 | - } catch(PDOException $e) { |
|
828 | + } catch (PDOException $e) { |
|
829 | 829 | return "error (add aircraft_manufacturer column) : ".$e->getMessage()."\n"; |
830 | 830 | } |
831 | 831 | } |
@@ -834,7 +834,7 @@ discard block |
||
834 | 834 | try { |
835 | 835 | $sth = $Connection->db->prepare($query); |
836 | 836 | $sth->execute(); |
837 | - } catch(PDOException $e) { |
|
837 | + } catch (PDOException $e) { |
|
838 | 838 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
839 | 839 | } |
840 | 840 | return $error; |
@@ -850,23 +850,23 @@ discard block |
||
850 | 850 | $error .= create_db::import_file('../db/pgsql/airlines.sql'); |
851 | 851 | } |
852 | 852 | if ($error != '') return 'Import airlines.sql : '.$error; |
853 | - if (!$Connection->checkColumnName('airlines','forsource')) { |
|
853 | + if (!$Connection->checkColumnName('airlines', 'forsource')) { |
|
854 | 854 | // Add forsource to airlines |
855 | 855 | $query = "ALTER TABLE airlines ADD forsource VARCHAR(255) NULL DEFAULT NULL"; |
856 | 856 | try { |
857 | 857 | $sth = $Connection->db->prepare($query); |
858 | 858 | $sth->execute(); |
859 | - } catch(PDOException $e) { |
|
859 | + } catch (PDOException $e) { |
|
860 | 860 | return "error (add forsource column) : ".$e->getMessage()."\n"; |
861 | 861 | } |
862 | 862 | } |
863 | - if (!$Connection->checkColumnName('stats_aircraft','stats_airline')) { |
|
863 | + if (!$Connection->checkColumnName('stats_aircraft', 'stats_airline')) { |
|
864 | 864 | // Add forsource to airlines |
865 | 865 | $query = "ALTER TABLE stats_aircraft ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
866 | 866 | try { |
867 | 867 | $sth = $Connection->db->prepare($query); |
868 | 868 | $sth->execute(); |
869 | - } catch(PDOException $e) { |
|
869 | + } catch (PDOException $e) { |
|
870 | 870 | return "error (add stats_airline & filter_name column in stats_aircraft) : ".$e->getMessage()."\n"; |
871 | 871 | } |
872 | 872 | // Add unique key |
@@ -878,17 +878,17 @@ discard block |
||
878 | 878 | try { |
879 | 879 | $sth = $Connection->db->prepare($query); |
880 | 880 | $sth->execute(); |
881 | - } catch(PDOException $e) { |
|
881 | + } catch (PDOException $e) { |
|
882 | 882 | return "error (add unique key in stats_aircraft) : ".$e->getMessage()."\n"; |
883 | 883 | } |
884 | 884 | } |
885 | - if (!$Connection->checkColumnName('stats_airport','stats_airline')) { |
|
885 | + if (!$Connection->checkColumnName('stats_airport', 'stats_airline')) { |
|
886 | 886 | // Add forsource to airlines |
887 | 887 | $query = "ALTER TABLE stats_airport ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
888 | 888 | try { |
889 | 889 | $sth = $Connection->db->prepare($query); |
890 | 890 | $sth->execute(); |
891 | - } catch(PDOException $e) { |
|
891 | + } catch (PDOException $e) { |
|
892 | 892 | return "error (add filter_name column in stats_airport) : ".$e->getMessage()."\n"; |
893 | 893 | } |
894 | 894 | // Add unique key |
@@ -900,17 +900,17 @@ discard block |
||
900 | 900 | try { |
901 | 901 | $sth = $Connection->db->prepare($query); |
902 | 902 | $sth->execute(); |
903 | - } catch(PDOException $e) { |
|
903 | + } catch (PDOException $e) { |
|
904 | 904 | return "error (add unique key in stats_airport) : ".$e->getMessage()."\n"; |
905 | 905 | } |
906 | 906 | } |
907 | - if (!$Connection->checkColumnName('stats_country','stats_airline')) { |
|
907 | + if (!$Connection->checkColumnName('stats_country', 'stats_airline')) { |
|
908 | 908 | // Add forsource to airlines |
909 | 909 | $query = "ALTER TABLE stats_country ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
910 | 910 | try { |
911 | 911 | $sth = $Connection->db->prepare($query); |
912 | 912 | $sth->execute(); |
913 | - } catch(PDOException $e) { |
|
913 | + } catch (PDOException $e) { |
|
914 | 914 | return "error (add stats_airline & filter_name column in stats_country) : ".$e->getMessage()."\n"; |
915 | 915 | } |
916 | 916 | // Add unique key |
@@ -922,36 +922,36 @@ discard block |
||
922 | 922 | try { |
923 | 923 | $sth = $Connection->db->prepare($query); |
924 | 924 | $sth->execute(); |
925 | - } catch(PDOException $e) { |
|
925 | + } catch (PDOException $e) { |
|
926 | 926 | return "error (add unique key in stats_airline) : ".$e->getMessage()."\n"; |
927 | 927 | } |
928 | 928 | } |
929 | - if (!$Connection->checkColumnName('stats_flight','stats_airline')) { |
|
929 | + if (!$Connection->checkColumnName('stats_flight', 'stats_airline')) { |
|
930 | 930 | // Add forsource to airlines |
931 | 931 | $query = "ALTER TABLE stats_flight ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
932 | 932 | try { |
933 | 933 | $sth = $Connection->db->prepare($query); |
934 | 934 | $sth->execute(); |
935 | - } catch(PDOException $e) { |
|
935 | + } catch (PDOException $e) { |
|
936 | 936 | return "error (add stats_airline & filter_name column in stats_flight) : ".$e->getMessage()."\n"; |
937 | 937 | } |
938 | 938 | } |
939 | - if (!$Connection->checkColumnName('stats','stats_airline')) { |
|
939 | + if (!$Connection->checkColumnName('stats', 'stats_airline')) { |
|
940 | 940 | // Add forsource to airlines |
941 | 941 | $query = "ALTER TABLE stats ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
942 | 942 | try { |
943 | 943 | $sth = $Connection->db->prepare($query); |
944 | 944 | $sth->execute(); |
945 | - } catch(PDOException $e) { |
|
945 | + } catch (PDOException $e) { |
|
946 | 946 | return "error (add stats_airline & filter_name column in stats) : ".$e->getMessage()."\n"; |
947 | 947 | } |
948 | - if ($globalDBdriver == 'mysql' && $Connection->indexExists('stats','type')) { |
|
948 | + if ($globalDBdriver == 'mysql' && $Connection->indexExists('stats', 'type')) { |
|
949 | 949 | // Add unique key |
950 | 950 | $query = "drop index type on stats;ALTER TABLE stats ADD UNIQUE stats_type (stats_type,stats_date,stats_airline,filter_name);"; |
951 | 951 | try { |
952 | 952 | $sth = $Connection->db->prepare($query); |
953 | 953 | $sth->execute(); |
954 | - } catch(PDOException $e) { |
|
954 | + } catch (PDOException $e) { |
|
955 | 955 | return "error (add unique key in stats) : ".$e->getMessage()."\n"; |
956 | 956 | } |
957 | 957 | } else { |
@@ -964,18 +964,18 @@ discard block |
||
964 | 964 | try { |
965 | 965 | $sth = $Connection->db->prepare($query); |
966 | 966 | $sth->execute(); |
967 | - } catch(PDOException $e) { |
|
967 | + } catch (PDOException $e) { |
|
968 | 968 | return "error (add unique key in stats) : ".$e->getMessage()."\n"; |
969 | 969 | } |
970 | 970 | } |
971 | 971 | } |
972 | - if (!$Connection->checkColumnName('stats_registration','stats_airline')) { |
|
972 | + if (!$Connection->checkColumnName('stats_registration', 'stats_airline')) { |
|
973 | 973 | // Add forsource to airlines |
974 | 974 | $query = "ALTER TABLE stats_registration ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
975 | 975 | try { |
976 | 976 | $sth = $Connection->db->prepare($query); |
977 | 977 | $sth->execute(); |
978 | - } catch(PDOException $e) { |
|
978 | + } catch (PDOException $e) { |
|
979 | 979 | return "error (add stats_airline & filter_name column in stats_registration) : ".$e->getMessage()."\n"; |
980 | 980 | } |
981 | 981 | // Add unique key |
@@ -987,17 +987,17 @@ discard block |
||
987 | 987 | try { |
988 | 988 | $sth = $Connection->db->prepare($query); |
989 | 989 | $sth->execute(); |
990 | - } catch(PDOException $e) { |
|
990 | + } catch (PDOException $e) { |
|
991 | 991 | return "error (add unique key in stats_registration) : ".$e->getMessage()."\n"; |
992 | 992 | } |
993 | 993 | } |
994 | - if (!$Connection->checkColumnName('stats_callsign','filter_name')) { |
|
994 | + if (!$Connection->checkColumnName('stats_callsign', 'filter_name')) { |
|
995 | 995 | // Add forsource to airlines |
996 | 996 | $query = "ALTER TABLE stats_callsign ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
997 | 997 | try { |
998 | 998 | $sth = $Connection->db->prepare($query); |
999 | 999 | $sth->execute(); |
1000 | - } catch(PDOException $e) { |
|
1000 | + } catch (PDOException $e) { |
|
1001 | 1001 | return "error (add filter_name column in stats_callsign) : ".$e->getMessage()."\n"; |
1002 | 1002 | } |
1003 | 1003 | // Add unique key |
@@ -1009,17 +1009,17 @@ discard block |
||
1009 | 1009 | try { |
1010 | 1010 | $sth = $Connection->db->prepare($query); |
1011 | 1011 | $sth->execute(); |
1012 | - } catch(PDOException $e) { |
|
1012 | + } catch (PDOException $e) { |
|
1013 | 1013 | return "error (add unique key in stats_callsign) : ".$e->getMessage()."\n"; |
1014 | 1014 | } |
1015 | 1015 | } |
1016 | - if (!$Connection->checkColumnName('stats_airline','filter_name')) { |
|
1016 | + if (!$Connection->checkColumnName('stats_airline', 'filter_name')) { |
|
1017 | 1017 | // Add forsource to airlines |
1018 | 1018 | $query = "ALTER TABLE stats_airline ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
1019 | 1019 | try { |
1020 | 1020 | $sth = $Connection->db->prepare($query); |
1021 | 1021 | $sth->execute(); |
1022 | - } catch(PDOException $e) { |
|
1022 | + } catch (PDOException $e) { |
|
1023 | 1023 | return "error (add filter_name column in stats_airline) : ".$e->getMessage()."\n"; |
1024 | 1024 | } |
1025 | 1025 | // Add unique key |
@@ -1031,7 +1031,7 @@ discard block |
||
1031 | 1031 | try { |
1032 | 1032 | $sth = $Connection->db->prepare($query); |
1033 | 1033 | $sth->execute(); |
1034 | - } catch(PDOException $e) { |
|
1034 | + } catch (PDOException $e) { |
|
1035 | 1035 | return "error (add unique key in stats_callsign) : ".$e->getMessage()."\n"; |
1036 | 1036 | } |
1037 | 1037 | } |
@@ -1040,7 +1040,7 @@ discard block |
||
1040 | 1040 | try { |
1041 | 1041 | $sth = $Connection->db->prepare($query); |
1042 | 1042 | $sth->execute(); |
1043 | - } catch(PDOException $e) { |
|
1043 | + } catch (PDOException $e) { |
|
1044 | 1044 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1045 | 1045 | } |
1046 | 1046 | return $error; |
@@ -1050,13 +1050,13 @@ discard block |
||
1050 | 1050 | global $globalDBdriver; |
1051 | 1051 | $Connection = new Connection(); |
1052 | 1052 | $error = ''; |
1053 | - if (!$Connection->checkColumnName('stats_owner','stats_airline')) { |
|
1053 | + if (!$Connection->checkColumnName('stats_owner', 'stats_airline')) { |
|
1054 | 1054 | // Add forsource to airlines |
1055 | 1055 | $query = "ALTER TABLE stats_owner ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
1056 | 1056 | try { |
1057 | 1057 | $sth = $Connection->db->prepare($query); |
1058 | 1058 | $sth->execute(); |
1059 | - } catch(PDOException $e) { |
|
1059 | + } catch (PDOException $e) { |
|
1060 | 1060 | return "error (add stats_airline & filter_name column in stats_owner) : ".$e->getMessage()."\n"; |
1061 | 1061 | } |
1062 | 1062 | // Add unique key |
@@ -1068,17 +1068,17 @@ discard block |
||
1068 | 1068 | try { |
1069 | 1069 | $sth = $Connection->db->prepare($query); |
1070 | 1070 | $sth->execute(); |
1071 | - } catch(PDOException $e) { |
|
1071 | + } catch (PDOException $e) { |
|
1072 | 1072 | return "error (add unique key in stats_owner) : ".$e->getMessage()."\n"; |
1073 | 1073 | } |
1074 | 1074 | } |
1075 | - if (!$Connection->checkColumnName('stats_pilot','stats_airline')) { |
|
1075 | + if (!$Connection->checkColumnName('stats_pilot', 'stats_airline')) { |
|
1076 | 1076 | // Add forsource to airlines |
1077 | 1077 | $query = "ALTER TABLE stats_pilot ADD stats_airline VARCHAR(255) NULL DEFAULT '', ADD filter_name VARCHAR(255) NULL DEFAULT ''"; |
1078 | 1078 | try { |
1079 | 1079 | $sth = $Connection->db->prepare($query); |
1080 | 1080 | $sth->execute(); |
1081 | - } catch(PDOException $e) { |
|
1081 | + } catch (PDOException $e) { |
|
1082 | 1082 | return "error (add stats_airline & filter_name column in stats_pilot) : ".$e->getMessage()."\n"; |
1083 | 1083 | } |
1084 | 1084 | // Add unique key |
@@ -1090,7 +1090,7 @@ discard block |
||
1090 | 1090 | try { |
1091 | 1091 | $sth = $Connection->db->prepare($query); |
1092 | 1092 | $sth->execute(); |
1093 | - } catch(PDOException $e) { |
|
1093 | + } catch (PDOException $e) { |
|
1094 | 1094 | return "error (add unique key in stats_pilot) : ".$e->getMessage()."\n"; |
1095 | 1095 | } |
1096 | 1096 | } |
@@ -1098,7 +1098,7 @@ discard block |
||
1098 | 1098 | try { |
1099 | 1099 | $sth = $Connection->db->prepare($query); |
1100 | 1100 | $sth->execute(); |
1101 | - } catch(PDOException $e) { |
|
1101 | + } catch (PDOException $e) { |
|
1102 | 1102 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1103 | 1103 | } |
1104 | 1104 | return $error; |
@@ -1108,12 +1108,12 @@ discard block |
||
1108 | 1108 | global $globalDBdriver; |
1109 | 1109 | $Connection = new Connection(); |
1110 | 1110 | $error = ''; |
1111 | - if (!$Connection->checkColumnName('atc','format_source')) { |
|
1111 | + if (!$Connection->checkColumnName('atc', 'format_source')) { |
|
1112 | 1112 | $query = "ALTER TABLE atc ADD format_source VARCHAR(255) DEFAULT NULL, ADD source_name VARCHAR(255) DEFAULT NULL"; |
1113 | 1113 | try { |
1114 | 1114 | $sth = $Connection->db->prepare($query); |
1115 | 1115 | $sth->execute(); |
1116 | - } catch(PDOException $e) { |
|
1116 | + } catch (PDOException $e) { |
|
1117 | 1117 | return "error (add format_source & source_name column in atc) : ".$e->getMessage()."\n"; |
1118 | 1118 | } |
1119 | 1119 | } |
@@ -1121,7 +1121,7 @@ discard block |
||
1121 | 1121 | try { |
1122 | 1122 | $sth = $Connection->db->prepare($query); |
1123 | 1123 | $sth->execute(); |
1124 | - } catch(PDOException $e) { |
|
1124 | + } catch (PDOException $e) { |
|
1125 | 1125 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1126 | 1126 | } |
1127 | 1127 | return $error; |
@@ -1131,13 +1131,13 @@ discard block |
||
1131 | 1131 | global $globalDBdriver; |
1132 | 1132 | $Connection = new Connection(); |
1133 | 1133 | $error = ''; |
1134 | - if (!$Connection->checkColumnName('stats_pilot','format_source')) { |
|
1134 | + if (!$Connection->checkColumnName('stats_pilot', 'format_source')) { |
|
1135 | 1135 | // Add forsource to airlines |
1136 | 1136 | $query = "ALTER TABLE stats_pilot ADD format_source VARCHAR(255) NULL DEFAULT ''"; |
1137 | 1137 | try { |
1138 | 1138 | $sth = $Connection->db->prepare($query); |
1139 | 1139 | $sth->execute(); |
1140 | - } catch(PDOException $e) { |
|
1140 | + } catch (PDOException $e) { |
|
1141 | 1141 | return "error (add format_source column in stats_pilot) : ".$e->getMessage()."\n"; |
1142 | 1142 | } |
1143 | 1143 | // Add unique key |
@@ -1149,7 +1149,7 @@ discard block |
||
1149 | 1149 | try { |
1150 | 1150 | $sth = $Connection->db->prepare($query); |
1151 | 1151 | $sth->execute(); |
1152 | - } catch(PDOException $e) { |
|
1152 | + } catch (PDOException $e) { |
|
1153 | 1153 | return "error (modify unique key in stats_pilot) : ".$e->getMessage()."\n"; |
1154 | 1154 | } |
1155 | 1155 | } |
@@ -1157,7 +1157,7 @@ discard block |
||
1157 | 1157 | try { |
1158 | 1158 | $sth = $Connection->db->prepare($query); |
1159 | 1159 | $sth->execute(); |
1160 | - } catch(PDOException $e) { |
|
1160 | + } catch (PDOException $e) { |
|
1161 | 1161 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1162 | 1162 | } |
1163 | 1163 | return $error; |
@@ -1167,23 +1167,23 @@ discard block |
||
1167 | 1167 | global $globalDBdriver; |
1168 | 1168 | $Connection = new Connection(); |
1169 | 1169 | $error = ''; |
1170 | - if ($globalDBdriver == 'mysql' && !$Connection->indexExists('spotter_live','latitude')) { |
|
1170 | + if ($globalDBdriver == 'mysql' && !$Connection->indexExists('spotter_live', 'latitude')) { |
|
1171 | 1171 | // Add unique key |
1172 | 1172 | $query = "alter table spotter_live add index(latitude,longitude)"; |
1173 | 1173 | try { |
1174 | 1174 | $sth = $Connection->db->prepare($query); |
1175 | 1175 | $sth->execute(); |
1176 | - } catch(PDOException $e) { |
|
1176 | + } catch (PDOException $e) { |
|
1177 | 1177 | return "error (add index latitude,longitude on spotter_live) : ".$e->getMessage()."\n"; |
1178 | 1178 | } |
1179 | 1179 | } |
1180 | - if (!$Connection->checkColumnName('aircraft','mfr')) { |
|
1180 | + if (!$Connection->checkColumnName('aircraft', 'mfr')) { |
|
1181 | 1181 | // Add mfr to aircraft |
1182 | 1182 | $query = "ALTER TABLE aircraft ADD mfr VARCHAR(255) NULL"; |
1183 | 1183 | try { |
1184 | 1184 | $sth = $Connection->db->prepare($query); |
1185 | 1185 | $sth->execute(); |
1186 | - } catch(PDOException $e) { |
|
1186 | + } catch (PDOException $e) { |
|
1187 | 1187 | return "error (add mfr column in aircraft) : ".$e->getMessage()."\n"; |
1188 | 1188 | } |
1189 | 1189 | } |
@@ -1199,7 +1199,7 @@ discard block |
||
1199 | 1199 | try { |
1200 | 1200 | $sth = $Connection->db->prepare($query); |
1201 | 1201 | $sth->execute(); |
1202 | - } catch(PDOException $e) { |
|
1202 | + } catch (PDOException $e) { |
|
1203 | 1203 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1204 | 1204 | } |
1205 | 1205 | return $error; |
@@ -1209,13 +1209,13 @@ discard block |
||
1209 | 1209 | global $globalDBdriver; |
1210 | 1210 | $Connection = new Connection(); |
1211 | 1211 | $error = ''; |
1212 | - if ($Connection->checkColumnName('aircraft','mfr')) { |
|
1212 | + if ($Connection->checkColumnName('aircraft', 'mfr')) { |
|
1213 | 1213 | // drop mfr to aircraft |
1214 | 1214 | $query = "ALTER TABLE aircraft DROP COLUMN mfr"; |
1215 | 1215 | try { |
1216 | 1216 | $sth = $Connection->db->prepare($query); |
1217 | 1217 | $sth->execute(); |
1218 | - } catch(PDOException $e) { |
|
1218 | + } catch (PDOException $e) { |
|
1219 | 1219 | return "error (drop mfr column in aircraft) : ".$e->getMessage()."\n"; |
1220 | 1220 | } |
1221 | 1221 | } |
@@ -1231,7 +1231,7 @@ discard block |
||
1231 | 1231 | try { |
1232 | 1232 | $sth = $Connection->db->prepare($query); |
1233 | 1233 | $sth->execute(); |
1234 | - } catch(PDOException $e) { |
|
1234 | + } catch (PDOException $e) { |
|
1235 | 1235 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1236 | 1236 | } |
1237 | 1237 | return $error; |
@@ -1241,33 +1241,33 @@ discard block |
||
1241 | 1241 | global $globalDBdriver; |
1242 | 1242 | $Connection = new Connection(); |
1243 | 1243 | $error = ''; |
1244 | - if (!$Connection->indexExists('notam','ref_idx')) { |
|
1244 | + if (!$Connection->indexExists('notam', 'ref_idx')) { |
|
1245 | 1245 | // Add index key |
1246 | 1246 | $query = "create index ref_idx on notam (ref)"; |
1247 | 1247 | try { |
1248 | 1248 | $sth = $Connection->db->prepare($query); |
1249 | 1249 | $sth->execute(); |
1250 | - } catch(PDOException $e) { |
|
1250 | + } catch (PDOException $e) { |
|
1251 | 1251 | return "error (add index ref on notam) : ".$e->getMessage()."\n"; |
1252 | 1252 | } |
1253 | 1253 | } |
1254 | - if (!$Connection->indexExists('accidents','registration_idx')) { |
|
1254 | + if (!$Connection->indexExists('accidents', 'registration_idx')) { |
|
1255 | 1255 | // Add index key |
1256 | 1256 | $query = "create index registration_idx on accidents (registration)"; |
1257 | 1257 | try { |
1258 | 1258 | $sth = $Connection->db->prepare($query); |
1259 | 1259 | $sth->execute(); |
1260 | - } catch(PDOException $e) { |
|
1260 | + } catch (PDOException $e) { |
|
1261 | 1261 | return "error (add index registration on accidents) : ".$e->getMessage()."\n"; |
1262 | 1262 | } |
1263 | 1263 | } |
1264 | - if (!$Connection->indexExists('accidents','rdts')) { |
|
1264 | + if (!$Connection->indexExists('accidents', 'rdts')) { |
|
1265 | 1265 | // Add index key |
1266 | 1266 | $query = "create index rdts on accidents (registration,date,type,source)"; |
1267 | 1267 | try { |
1268 | 1268 | $sth = $Connection->db->prepare($query); |
1269 | 1269 | $sth->execute(); |
1270 | - } catch(PDOException $e) { |
|
1270 | + } catch (PDOException $e) { |
|
1271 | 1271 | return "error (add index registration, date, type & source on accidents) : ".$e->getMessage()."\n"; |
1272 | 1272 | } |
1273 | 1273 | } |
@@ -1276,7 +1276,7 @@ discard block |
||
1276 | 1276 | try { |
1277 | 1277 | $sth = $Connection->db->prepare($query); |
1278 | 1278 | $sth->execute(); |
1279 | - } catch(PDOException $e) { |
|
1279 | + } catch (PDOException $e) { |
|
1280 | 1280 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1281 | 1281 | } |
1282 | 1282 | return $error; |
@@ -1286,23 +1286,23 @@ discard block |
||
1286 | 1286 | global $globalDBdriver; |
1287 | 1287 | $Connection = new Connection(); |
1288 | 1288 | $error = ''; |
1289 | - if (!$Connection->checkColumnName('accidents','airline_name')) { |
|
1289 | + if (!$Connection->checkColumnName('accidents', 'airline_name')) { |
|
1290 | 1290 | // Add airline_name to accidents |
1291 | 1291 | $query = "ALTER TABLE accidents ADD airline_name VARCHAR(255) NULL"; |
1292 | 1292 | try { |
1293 | 1293 | $sth = $Connection->db->prepare($query); |
1294 | 1294 | $sth->execute(); |
1295 | - } catch(PDOException $e) { |
|
1295 | + } catch (PDOException $e) { |
|
1296 | 1296 | return "error (add airline_name column in accidents) : ".$e->getMessage()."\n"; |
1297 | 1297 | } |
1298 | 1298 | } |
1299 | - if (!$Connection->checkColumnName('accidents','airline_icao')) { |
|
1299 | + if (!$Connection->checkColumnName('accidents', 'airline_icao')) { |
|
1300 | 1300 | // Add airline_icao to accidents |
1301 | 1301 | $query = "ALTER TABLE accidents ADD airline_icao VARCHAR(10) NULL"; |
1302 | 1302 | try { |
1303 | 1303 | $sth = $Connection->db->prepare($query); |
1304 | 1304 | $sth->execute(); |
1305 | - } catch(PDOException $e) { |
|
1305 | + } catch (PDOException $e) { |
|
1306 | 1306 | return "error (add airline_icao column in accidents) : ".$e->getMessage()."\n"; |
1307 | 1307 | } |
1308 | 1308 | } |
@@ -1310,7 +1310,7 @@ discard block |
||
1310 | 1310 | try { |
1311 | 1311 | $sth = $Connection->db->prepare($query); |
1312 | 1312 | $sth->execute(); |
1313 | - } catch(PDOException $e) { |
|
1313 | + } catch (PDOException $e) { |
|
1314 | 1314 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1315 | 1315 | } |
1316 | 1316 | return $error; |
@@ -1320,13 +1320,13 @@ discard block |
||
1320 | 1320 | global $globalDBdriver, $globalVATSIM, $globalIVAO; |
1321 | 1321 | $Connection = new Connection(); |
1322 | 1322 | $error = ''; |
1323 | - if (!$Connection->checkColumnName('airlines','alliance')) { |
|
1323 | + if (!$Connection->checkColumnName('airlines', 'alliance')) { |
|
1324 | 1324 | // Add alliance to airlines |
1325 | 1325 | $query = "ALTER TABLE airlines ADD alliance VARCHAR(255) NULL"; |
1326 | 1326 | try { |
1327 | 1327 | $sth = $Connection->db->prepare($query); |
1328 | 1328 | $sth->execute(); |
1329 | - } catch(PDOException $e) { |
|
1329 | + } catch (PDOException $e) { |
|
1330 | 1330 | return "error (add alliance column in airlines) : ".$e->getMessage()."\n"; |
1331 | 1331 | } |
1332 | 1332 | } |
@@ -1353,7 +1353,7 @@ discard block |
||
1353 | 1353 | try { |
1354 | 1354 | $sth = $Connection->db->prepare($query); |
1355 | 1355 | $sth->execute(); |
1356 | - } catch(PDOException $e) { |
|
1356 | + } catch (PDOException $e) { |
|
1357 | 1357 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1358 | 1358 | } |
1359 | 1359 | return $error; |
@@ -1363,13 +1363,13 @@ discard block |
||
1363 | 1363 | global $globalDBdriver, $globalVATSIM, $globalIVAO; |
1364 | 1364 | $Connection = new Connection(); |
1365 | 1365 | $error = ''; |
1366 | - if (!$Connection->checkColumnName('airlines','ban_eu')) { |
|
1366 | + if (!$Connection->checkColumnName('airlines', 'ban_eu')) { |
|
1367 | 1367 | // Add ban_eu to airlines |
1368 | 1368 | $query = "ALTER TABLE airlines ADD ban_eu INTEGER NOT NULL DEFAULT '0'"; |
1369 | 1369 | try { |
1370 | 1370 | $sth = $Connection->db->prepare($query); |
1371 | 1371 | $sth->execute(); |
1372 | - } catch(PDOException $e) { |
|
1372 | + } catch (PDOException $e) { |
|
1373 | 1373 | return "error (add ban_eu column in airlines) : ".$e->getMessage()."\n"; |
1374 | 1374 | } |
1375 | 1375 | } |
@@ -1377,7 +1377,7 @@ discard block |
||
1377 | 1377 | try { |
1378 | 1378 | $sth = $Connection->db->prepare($query); |
1379 | 1379 | $sth->execute(); |
1380 | - } catch(PDOException $e) { |
|
1380 | + } catch (PDOException $e) { |
|
1381 | 1381 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1382 | 1382 | } |
1383 | 1383 | return $error; |
@@ -1388,19 +1388,19 @@ discard block |
||
1388 | 1388 | $Connection = new Connection(); |
1389 | 1389 | $error = ''; |
1390 | 1390 | if ($globalDBdriver == 'mysql') { |
1391 | - if ($Connection->getColumnType('spotter_output','date') == 'TIMESTAMP' && $Connection->getColumnType('spotter_output','last_seen') != 'TIMESTAMP') { |
|
1391 | + if ($Connection->getColumnType('spotter_output', 'date') == 'TIMESTAMP' && $Connection->getColumnType('spotter_output', 'last_seen') != 'TIMESTAMP') { |
|
1392 | 1392 | $query = "ALTER TABLE spotter_output CHANGE date date TIMESTAMP NULL DEFAULT NULL"; |
1393 | 1393 | try { |
1394 | 1394 | $sth = $Connection->db->prepare($query); |
1395 | 1395 | $sth->execute(); |
1396 | - } catch(PDOException $e) { |
|
1396 | + } catch (PDOException $e) { |
|
1397 | 1397 | return "error (delete default timestamp spotter_output) : ".$e->getMessage()."\n"; |
1398 | 1398 | } |
1399 | 1399 | $query = "ALTER TABLE spotter_output MODIFY COLUMN last_seen timestamp not null default current_timestamp()"; |
1400 | 1400 | try { |
1401 | 1401 | $sth = $Connection->db->prepare($query); |
1402 | 1402 | $sth->execute(); |
1403 | - } catch(PDOException $e) { |
|
1403 | + } catch (PDOException $e) { |
|
1404 | 1404 | return "error (convert spotter_output last_seen to timestamp) : ".$e->getMessage()."\n"; |
1405 | 1405 | } |
1406 | 1406 | |
@@ -1408,7 +1408,7 @@ discard block |
||
1408 | 1408 | try { |
1409 | 1409 | $sth = $Connection->db->prepare($query); |
1410 | 1410 | $sth->execute(); |
1411 | - } catch(PDOException $e) { |
|
1411 | + } catch (PDOException $e) { |
|
1412 | 1412 | return "error (delete default timestamp spotter_output) : ".$e->getMessage()."\n"; |
1413 | 1413 | } |
1414 | 1414 | /*$query = "SELECT date,last_seen FROM spotter_output WHERE last_seen < date ORDER BY date DESC LIMIT 150"; |
@@ -1459,7 +1459,7 @@ discard block |
||
1459 | 1459 | try { |
1460 | 1460 | $sth = $Connection->db->prepare($query); |
1461 | 1461 | $sth->execute(); |
1462 | - } catch(PDOException $e) { |
|
1462 | + } catch (PDOException $e) { |
|
1463 | 1463 | return "error (fix date) : ".$e->getMessage()."\n"; |
1464 | 1464 | } |
1465 | 1465 | } |
@@ -1544,7 +1544,7 @@ discard block |
||
1544 | 1544 | try { |
1545 | 1545 | $sth = $Connection->db->prepare($query); |
1546 | 1546 | $sth->execute(); |
1547 | - } catch(PDOException $e) { |
|
1547 | + } catch (PDOException $e) { |
|
1548 | 1548 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1549 | 1549 | } |
1550 | 1550 | return $error; |
@@ -1553,13 +1553,13 @@ discard block |
||
1553 | 1553 | global $globalDBdriver; |
1554 | 1554 | $Connection = new Connection(); |
1555 | 1555 | $error = ''; |
1556 | - if (!$Connection->indexExists('accidents','type')) { |
|
1556 | + if (!$Connection->indexExists('accidents', 'type')) { |
|
1557 | 1557 | // Add index key |
1558 | 1558 | $query = "create index type on accidents (type,date)"; |
1559 | 1559 | try { |
1560 | 1560 | $sth = $Connection->db->prepare($query); |
1561 | 1561 | $sth->execute(); |
1562 | - } catch(PDOException $e) { |
|
1562 | + } catch (PDOException $e) { |
|
1563 | 1563 | return "error (add index type on accidents) : ".$e->getMessage()."\n"; |
1564 | 1564 | } |
1565 | 1565 | } |
@@ -1567,7 +1567,7 @@ discard block |
||
1567 | 1567 | try { |
1568 | 1568 | $sth = $Connection->db->prepare($query); |
1569 | 1569 | $sth->execute(); |
1570 | - } catch(PDOException $e) { |
|
1570 | + } catch (PDOException $e) { |
|
1571 | 1571 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1572 | 1572 | } |
1573 | 1573 | return $error; |
@@ -1577,12 +1577,12 @@ discard block |
||
1577 | 1577 | global $globalDBdriver; |
1578 | 1578 | $Connection = new Connection(); |
1579 | 1579 | $error = ''; |
1580 | - if (!$Connection->checkColumnName('aircraft_modes','source_type')) { |
|
1580 | + if (!$Connection->checkColumnName('aircraft_modes', 'source_type')) { |
|
1581 | 1581 | $query = "ALTER TABLE aircraft_modes ADD source_type VARCHAR(255) DEFAULT 'modes'"; |
1582 | 1582 | try { |
1583 | 1583 | $sth = $Connection->db->prepare($query); |
1584 | 1584 | $sth->execute(); |
1585 | - } catch(PDOException $e) { |
|
1585 | + } catch (PDOException $e) { |
|
1586 | 1586 | return "error (add source_type column in aircraft_modes) : ".$e->getMessage()."\n"; |
1587 | 1587 | } |
1588 | 1588 | } |
@@ -1648,7 +1648,7 @@ discard block |
||
1648 | 1648 | try { |
1649 | 1649 | $sth = $Connection->db->prepare($query); |
1650 | 1650 | $sth->execute(); |
1651 | - } catch(PDOException $e) { |
|
1651 | + } catch (PDOException $e) { |
|
1652 | 1652 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1653 | 1653 | } |
1654 | 1654 | return $error; |
@@ -1700,7 +1700,7 @@ discard block |
||
1700 | 1700 | try { |
1701 | 1701 | $sth = $Connection->db->prepare($query); |
1702 | 1702 | $sth->execute(); |
1703 | - } catch(PDOException $e) { |
|
1703 | + } catch (PDOException $e) { |
|
1704 | 1704 | return "error (problem when select engine for spotter_engine) : ".$e->getMessage()."\n"; |
1705 | 1705 | } |
1706 | 1706 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -1709,18 +1709,18 @@ discard block |
||
1709 | 1709 | try { |
1710 | 1710 | $sth = $Connection->db->prepare($query); |
1711 | 1711 | $sth->execute(); |
1712 | - } catch(PDOException $e) { |
|
1712 | + } catch (PDOException $e) { |
|
1713 | 1713 | return "error (Change table format from archive to InnoDB for spotter_archive) : ".$e->getMessage()."\n"; |
1714 | 1714 | } |
1715 | 1715 | } |
1716 | 1716 | } |
1717 | - if (!$Connection->indexExists('spotter_archive','flightaware_id_date_idx') && !$Connection->indexExists('spotter_archive','flightaware_id')) { |
|
1717 | + if (!$Connection->indexExists('spotter_archive', 'flightaware_id_date_idx') && !$Connection->indexExists('spotter_archive', 'flightaware_id')) { |
|
1718 | 1718 | // Add index key |
1719 | 1719 | $query = "create index flightaware_id_date_idx on spotter_archive (flightaware_id,date)"; |
1720 | 1720 | try { |
1721 | 1721 | $sth = $Connection->db->prepare($query); |
1722 | 1722 | $sth->execute(); |
1723 | - } catch(PDOException $e) { |
|
1723 | + } catch (PDOException $e) { |
|
1724 | 1724 | return "error (add index flightaware_id, date on spotter_archive) : ".$e->getMessage()."\n"; |
1725 | 1725 | } |
1726 | 1726 | } |
@@ -1728,7 +1728,7 @@ discard block |
||
1728 | 1728 | try { |
1729 | 1729 | $sth = $Connection->db->prepare($query); |
1730 | 1730 | $sth->execute(); |
1731 | - } catch(PDOException $e) { |
|
1731 | + } catch (PDOException $e) { |
|
1732 | 1732 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1733 | 1733 | } |
1734 | 1734 | return $error; |
@@ -1739,148 +1739,148 @@ discard block |
||
1739 | 1739 | $Connection = new Connection(); |
1740 | 1740 | $error = ''; |
1741 | 1741 | if ($globalDBdriver == 'mysql') { |
1742 | - if (!$Connection->checkColumnName('marine_output','type_id')) { |
|
1742 | + if (!$Connection->checkColumnName('marine_output', 'type_id')) { |
|
1743 | 1743 | $query = "ALTER TABLE marine_output ADD COLUMN type_id int(11) DEFAULT NULL"; |
1744 | 1744 | try { |
1745 | 1745 | $sth = $Connection->db->prepare($query); |
1746 | 1746 | $sth->execute(); |
1747 | - } catch(PDOException $e) { |
|
1747 | + } catch (PDOException $e) { |
|
1748 | 1748 | return "error (add column type_id in marine_output) : ".$e->getMessage()."\n"; |
1749 | 1749 | } |
1750 | 1750 | } |
1751 | - if (!$Connection->checkColumnName('marine_live','type_id')) { |
|
1751 | + if (!$Connection->checkColumnName('marine_live', 'type_id')) { |
|
1752 | 1752 | $query = "ALTER TABLE marine_live ADD COLUMN type_id int(11) DEFAULT NULL"; |
1753 | 1753 | try { |
1754 | 1754 | $sth = $Connection->db->prepare($query); |
1755 | 1755 | $sth->execute(); |
1756 | - } catch(PDOException $e) { |
|
1756 | + } catch (PDOException $e) { |
|
1757 | 1757 | return "error (add column type_id in marine_live) : ".$e->getMessage()."\n"; |
1758 | 1758 | } |
1759 | 1759 | } |
1760 | - if (!$Connection->checkColumnName('marine_archive','type_id')) { |
|
1760 | + if (!$Connection->checkColumnName('marine_archive', 'type_id')) { |
|
1761 | 1761 | $query = "ALTER TABLE marine_archive ADD COLUMN type_id int(11) DEFAULT NULL"; |
1762 | 1762 | try { |
1763 | 1763 | $sth = $Connection->db->prepare($query); |
1764 | 1764 | $sth->execute(); |
1765 | - } catch(PDOException $e) { |
|
1765 | + } catch (PDOException $e) { |
|
1766 | 1766 | return "error (add column type_id in marine_archive) : ".$e->getMessage()."\n"; |
1767 | 1767 | } |
1768 | 1768 | } |
1769 | - if (!$Connection->checkColumnName('marine_archive_output','type_id')) { |
|
1769 | + if (!$Connection->checkColumnName('marine_archive_output', 'type_id')) { |
|
1770 | 1770 | $query = "ALTER TABLE marine_archive_output ADD COLUMN type_id int(11) DEFAULT NULL"; |
1771 | 1771 | try { |
1772 | 1772 | $sth = $Connection->db->prepare($query); |
1773 | 1773 | $sth->execute(); |
1774 | - } catch(PDOException $e) { |
|
1774 | + } catch (PDOException $e) { |
|
1775 | 1775 | return "error (add column type_id in marine_archive_output) : ".$e->getMessage()."\n"; |
1776 | 1776 | } |
1777 | 1777 | } |
1778 | - if (!$Connection->checkColumnName('marine_output','status_id')) { |
|
1778 | + if (!$Connection->checkColumnName('marine_output', 'status_id')) { |
|
1779 | 1779 | $query = "ALTER TABLE marine_output ADD COLUMN status_id int(11) DEFAULT NULL"; |
1780 | 1780 | try { |
1781 | 1781 | $sth = $Connection->db->prepare($query); |
1782 | 1782 | $sth->execute(); |
1783 | - } catch(PDOException $e) { |
|
1783 | + } catch (PDOException $e) { |
|
1784 | 1784 | return "error (add column status_id in marine_output) : ".$e->getMessage()."\n"; |
1785 | 1785 | } |
1786 | 1786 | } |
1787 | - if (!$Connection->checkColumnName('marine_live','status_id')) { |
|
1787 | + if (!$Connection->checkColumnName('marine_live', 'status_id')) { |
|
1788 | 1788 | $query = "ALTER TABLE marine_live ADD COLUMN status_id int(11) DEFAULT NULL"; |
1789 | 1789 | try { |
1790 | 1790 | $sth = $Connection->db->prepare($query); |
1791 | 1791 | $sth->execute(); |
1792 | - } catch(PDOException $e) { |
|
1792 | + } catch (PDOException $e) { |
|
1793 | 1793 | return "error (add column status_id in marine_live) : ".$e->getMessage()."\n"; |
1794 | 1794 | } |
1795 | 1795 | } |
1796 | - if (!$Connection->checkColumnName('marine_archive','status_id')) { |
|
1796 | + if (!$Connection->checkColumnName('marine_archive', 'status_id')) { |
|
1797 | 1797 | $query = "ALTER TABLE marine_archive ADD COLUMN status_id int(11) DEFAULT NULL"; |
1798 | 1798 | try { |
1799 | 1799 | $sth = $Connection->db->prepare($query); |
1800 | 1800 | $sth->execute(); |
1801 | - } catch(PDOException $e) { |
|
1801 | + } catch (PDOException $e) { |
|
1802 | 1802 | return "error (add column status_id in marine_archive) : ".$e->getMessage()."\n"; |
1803 | 1803 | } |
1804 | 1804 | } |
1805 | - if (!$Connection->checkColumnName('marine_archive_output','status_id')) { |
|
1805 | + if (!$Connection->checkColumnName('marine_archive_output', 'status_id')) { |
|
1806 | 1806 | $query = "ALTER TABLE marine_archive_output ADD COLUMN status_id int(11) DEFAULT NULL"; |
1807 | 1807 | try { |
1808 | 1808 | $sth = $Connection->db->prepare($query); |
1809 | 1809 | $sth->execute(); |
1810 | - } catch(PDOException $e) { |
|
1810 | + } catch (PDOException $e) { |
|
1811 | 1811 | return "error (add column status_id in marine_archive_output) : ".$e->getMessage()."\n"; |
1812 | 1812 | } |
1813 | 1813 | } |
1814 | 1814 | } else { |
1815 | - if (!$Connection->checkColumnName('marine_output','type_id')) { |
|
1815 | + if (!$Connection->checkColumnName('marine_output', 'type_id')) { |
|
1816 | 1816 | $query = "ALTER TABLE marine_output ADD COLUMN type_id integer DEFAULT NULL"; |
1817 | 1817 | try { |
1818 | 1818 | $sth = $Connection->db->prepare($query); |
1819 | 1819 | $sth->execute(); |
1820 | - } catch(PDOException $e) { |
|
1820 | + } catch (PDOException $e) { |
|
1821 | 1821 | return "error (add column type_id in marine_output) : ".$e->getMessage()."\n"; |
1822 | 1822 | } |
1823 | 1823 | } |
1824 | - if (!$Connection->checkColumnName('marine_live','type_id')) { |
|
1824 | + if (!$Connection->checkColumnName('marine_live', 'type_id')) { |
|
1825 | 1825 | $query = "ALTER TABLE marine_live ADD COLUMN type_id integer DEFAULT NULL"; |
1826 | 1826 | try { |
1827 | 1827 | $sth = $Connection->db->prepare($query); |
1828 | 1828 | $sth->execute(); |
1829 | - } catch(PDOException $e) { |
|
1829 | + } catch (PDOException $e) { |
|
1830 | 1830 | return "error (add column type_id in marine_live) : ".$e->getMessage()."\n"; |
1831 | 1831 | } |
1832 | 1832 | } |
1833 | - if (!$Connection->checkColumnName('marine_archive','type_id')) { |
|
1833 | + if (!$Connection->checkColumnName('marine_archive', 'type_id')) { |
|
1834 | 1834 | $query = "ALTER TABLE marine_archive ADD COLUMN type_id integer DEFAULT NULL"; |
1835 | 1835 | try { |
1836 | 1836 | $sth = $Connection->db->prepare($query); |
1837 | 1837 | $sth->execute(); |
1838 | - } catch(PDOException $e) { |
|
1838 | + } catch (PDOException $e) { |
|
1839 | 1839 | return "error (add column type_id in marine_archive) : ".$e->getMessage()."\n"; |
1840 | 1840 | } |
1841 | 1841 | } |
1842 | - if (!$Connection->checkColumnName('marine_archive_output','type_id')) { |
|
1842 | + if (!$Connection->checkColumnName('marine_archive_output', 'type_id')) { |
|
1843 | 1843 | $query = "ALTER TABLE marine_archive_output ADD COLUMN type_id integer DEFAULT NULL"; |
1844 | 1844 | try { |
1845 | 1845 | $sth = $Connection->db->prepare($query); |
1846 | 1846 | $sth->execute(); |
1847 | - } catch(PDOException $e) { |
|
1847 | + } catch (PDOException $e) { |
|
1848 | 1848 | return "error (add column type_id in marine_archive_output) : ".$e->getMessage()."\n"; |
1849 | 1849 | } |
1850 | 1850 | } |
1851 | - if (!$Connection->checkColumnName('marine_output','status_id')) { |
|
1851 | + if (!$Connection->checkColumnName('marine_output', 'status_id')) { |
|
1852 | 1852 | $query = "ALTER TABLE marine_output ADD COLUMN status_id integer DEFAULT NULL"; |
1853 | 1853 | try { |
1854 | 1854 | $sth = $Connection->db->prepare($query); |
1855 | 1855 | $sth->execute(); |
1856 | - } catch(PDOException $e) { |
|
1856 | + } catch (PDOException $e) { |
|
1857 | 1857 | return "error (add column status_id in marine_output) : ".$e->getMessage()."\n"; |
1858 | 1858 | } |
1859 | 1859 | } |
1860 | - if (!$Connection->checkColumnName('marine_live','status_id')) { |
|
1860 | + if (!$Connection->checkColumnName('marine_live', 'status_id')) { |
|
1861 | 1861 | $query = "ALTER TABLE marine_live ADD COLUMN status_id integer DEFAULT NULL"; |
1862 | 1862 | try { |
1863 | 1863 | $sth = $Connection->db->prepare($query); |
1864 | 1864 | $sth->execute(); |
1865 | - } catch(PDOException $e) { |
|
1865 | + } catch (PDOException $e) { |
|
1866 | 1866 | return "error (add column status_id in marine_live) : ".$e->getMessage()."\n"; |
1867 | 1867 | } |
1868 | 1868 | } |
1869 | - if (!$Connection->checkColumnName('marine_archive','status_id')) { |
|
1869 | + if (!$Connection->checkColumnName('marine_archive', 'status_id')) { |
|
1870 | 1870 | $query = "ALTER TABLE marine_archive ADD COLUMN status_id integer DEFAULT NULL"; |
1871 | 1871 | try { |
1872 | 1872 | $sth = $Connection->db->prepare($query); |
1873 | 1873 | $sth->execute(); |
1874 | - } catch(PDOException $e) { |
|
1874 | + } catch (PDOException $e) { |
|
1875 | 1875 | return "error (add column status_id in marine_archive) : ".$e->getMessage()."\n"; |
1876 | 1876 | } |
1877 | 1877 | } |
1878 | - if (!$Connection->checkColumnName('marine_archive_output','status_id')) { |
|
1878 | + if (!$Connection->checkColumnName('marine_archive_output', 'status_id')) { |
|
1879 | 1879 | $query = "ALTER TABLE marine_archive_output ADD COLUMN status_id integer DEFAULT NULL"; |
1880 | 1880 | try { |
1881 | 1881 | $sth = $Connection->db->prepare($query); |
1882 | 1882 | $sth->execute(); |
1883 | - } catch(PDOException $e) { |
|
1883 | + } catch (PDOException $e) { |
|
1884 | 1884 | return "error (add column status_id in marine_archive_output) : ".$e->getMessage()."\n"; |
1885 | 1885 | } |
1886 | 1886 | } |
@@ -1889,7 +1889,7 @@ discard block |
||
1889 | 1889 | try { |
1890 | 1890 | $sth = $Connection->db->prepare($query); |
1891 | 1891 | $sth->execute(); |
1892 | - } catch(PDOException $e) { |
|
1892 | + } catch (PDOException $e) { |
|
1893 | 1893 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1894 | 1894 | } |
1895 | 1895 | return $error; |
@@ -1904,14 +1904,14 @@ discard block |
||
1904 | 1904 | try { |
1905 | 1905 | $sth = $Connection->db->prepare($query); |
1906 | 1906 | $sth->execute(); |
1907 | - } catch(PDOException $e) { |
|
1907 | + } catch (PDOException $e) { |
|
1908 | 1908 | return "error (change pilot_id type to varchar in stats_pilot) : ".$e->getMessage()."\n"; |
1909 | 1909 | } |
1910 | 1910 | $query = "ALTER TABLE marine_identity MODIFY COLUMN mmsi varchar(255) DEFAULT NULL"; |
1911 | 1911 | try { |
1912 | 1912 | $sth = $Connection->db->prepare($query); |
1913 | 1913 | $sth->execute(); |
1914 | - } catch(PDOException $e) { |
|
1914 | + } catch (PDOException $e) { |
|
1915 | 1915 | return "error (change mmsi type to varchar in marine_identity) : ".$e->getMessage()."\n"; |
1916 | 1916 | } |
1917 | 1917 | } else { |
@@ -1919,14 +1919,14 @@ discard block |
||
1919 | 1919 | try { |
1920 | 1920 | $sth = $Connection->db->prepare($query); |
1921 | 1921 | $sth->execute(); |
1922 | - } catch(PDOException $e) { |
|
1922 | + } catch (PDOException $e) { |
|
1923 | 1923 | return "error (change pilot_id type to varchar in stats_pilot) : ".$e->getMessage()."\n"; |
1924 | 1924 | } |
1925 | 1925 | $query = "alter table marine_identity alter column mmsi type varchar(255)"; |
1926 | 1926 | try { |
1927 | 1927 | $sth = $Connection->db->prepare($query); |
1928 | 1928 | $sth->execute(); |
1929 | - } catch(PDOException $e) { |
|
1929 | + } catch (PDOException $e) { |
|
1930 | 1930 | return "error (change mmsi type to varchar in marine_identity) : ".$e->getMessage()."\n"; |
1931 | 1931 | } |
1932 | 1932 | } |
@@ -1934,7 +1934,7 @@ discard block |
||
1934 | 1934 | try { |
1935 | 1935 | $sth = $Connection->db->prepare($query); |
1936 | 1936 | $sth->execute(); |
1937 | - } catch(PDOException $e) { |
|
1937 | + } catch (PDOException $e) { |
|
1938 | 1938 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1939 | 1939 | } |
1940 | 1940 | return $error; |
@@ -1944,32 +1944,32 @@ discard block |
||
1944 | 1944 | global $globalDBdriver; |
1945 | 1945 | $Connection = new Connection(); |
1946 | 1946 | $error = ''; |
1947 | - if (!$Connection->checkColumnName('source_location','last_seen')) { |
|
1947 | + if (!$Connection->checkColumnName('source_location', 'last_seen')) { |
|
1948 | 1948 | $query = "ALTER TABLE source_location ADD COLUMN last_seen timestamp NULL DEFAULT NULL"; |
1949 | 1949 | try { |
1950 | 1950 | $sth = $Connection->db->prepare($query); |
1951 | 1951 | $sth->execute(); |
1952 | - } catch(PDOException $e) { |
|
1952 | + } catch (PDOException $e) { |
|
1953 | 1953 | return "error (add column last_seen in source_location) : ".$e->getMessage()."\n"; |
1954 | 1954 | } |
1955 | 1955 | } |
1956 | 1956 | if ($globalDBdriver == 'mysql') { |
1957 | - if (!$Connection->checkColumnName('source_location','location_id')) { |
|
1957 | + if (!$Connection->checkColumnName('source_location', 'location_id')) { |
|
1958 | 1958 | $query = "ALTER TABLE source_location ADD COLUMN location_id int(11) DEFAULT NULL"; |
1959 | 1959 | try { |
1960 | 1960 | $sth = $Connection->db->prepare($query); |
1961 | 1961 | $sth->execute(); |
1962 | - } catch(PDOException $e) { |
|
1962 | + } catch (PDOException $e) { |
|
1963 | 1963 | return "error (add column location_id in source_location) : ".$e->getMessage()."\n"; |
1964 | 1964 | } |
1965 | 1965 | } |
1966 | 1966 | } else { |
1967 | - if (!$Connection->checkColumnName('source_location','location_id')) { |
|
1967 | + if (!$Connection->checkColumnName('source_location', 'location_id')) { |
|
1968 | 1968 | $query = "ALTER TABLE source_location ADD COLUMN location_id integer DEFAULT NULL"; |
1969 | 1969 | try { |
1970 | 1970 | $sth = $Connection->db->prepare($query); |
1971 | 1971 | $sth->execute(); |
1972 | - } catch(PDOException $e) { |
|
1972 | + } catch (PDOException $e) { |
|
1973 | 1973 | return "error (add column location_id in source_location) : ".$e->getMessage()."\n"; |
1974 | 1974 | } |
1975 | 1975 | } |
@@ -1978,7 +1978,7 @@ discard block |
||
1978 | 1978 | try { |
1979 | 1979 | $sth = $Connection->db->prepare($query); |
1980 | 1980 | $sth->execute(); |
1981 | - } catch(PDOException $e) { |
|
1981 | + } catch (PDOException $e) { |
|
1982 | 1982 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
1983 | 1983 | } |
1984 | 1984 | return $error; |
@@ -1988,12 +1988,12 @@ discard block |
||
1988 | 1988 | global $globalDBdriver; |
1989 | 1989 | $Connection = new Connection(); |
1990 | 1990 | $error = ''; |
1991 | - if (!$Connection->checkColumnName('source_location','description')) { |
|
1991 | + if (!$Connection->checkColumnName('source_location', 'description')) { |
|
1992 | 1992 | $query = "ALTER TABLE source_location ADD COLUMN description text DEFAULT NULL"; |
1993 | 1993 | try { |
1994 | 1994 | $sth = $Connection->db->prepare($query); |
1995 | 1995 | $sth->execute(); |
1996 | - } catch(PDOException $e) { |
|
1996 | + } catch (PDOException $e) { |
|
1997 | 1997 | return "error (add column description in source_location) : ".$e->getMessage()."\n"; |
1998 | 1998 | } |
1999 | 1999 | } |
@@ -2001,7 +2001,7 @@ discard block |
||
2001 | 2001 | try { |
2002 | 2002 | $sth = $Connection->db->prepare($query); |
2003 | 2003 | $sth->execute(); |
2004 | - } catch(PDOException $e) { |
|
2004 | + } catch (PDOException $e) { |
|
2005 | 2005 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
2006 | 2006 | } |
2007 | 2007 | return $error; |
@@ -2011,39 +2011,39 @@ discard block |
||
2011 | 2011 | global $globalDBdriver; |
2012 | 2012 | $Connection = new Connection(); |
2013 | 2013 | $error = ''; |
2014 | - if (!$Connection->checkColumnName('spotter_live','real_altitude')) { |
|
2014 | + if (!$Connection->checkColumnName('spotter_live', 'real_altitude')) { |
|
2015 | 2015 | $query = "ALTER TABLE spotter_live ADD COLUMN real_altitude float DEFAULT NULL"; |
2016 | 2016 | try { |
2017 | 2017 | $sth = $Connection->db->prepare($query); |
2018 | 2018 | $sth->execute(); |
2019 | - } catch(PDOException $e) { |
|
2019 | + } catch (PDOException $e) { |
|
2020 | 2020 | return "error (add column real_altitude in spotter_live) : ".$e->getMessage()."\n"; |
2021 | 2021 | } |
2022 | 2022 | } |
2023 | - if (!$Connection->checkColumnName('spotter_output','real_altitude')) { |
|
2023 | + if (!$Connection->checkColumnName('spotter_output', 'real_altitude')) { |
|
2024 | 2024 | $query = "ALTER TABLE spotter_output ADD COLUMN real_altitude float DEFAULT NULL"; |
2025 | 2025 | try { |
2026 | 2026 | $sth = $Connection->db->prepare($query); |
2027 | 2027 | $sth->execute(); |
2028 | - } catch(PDOException $e) { |
|
2028 | + } catch (PDOException $e) { |
|
2029 | 2029 | return "error (add column real_altitude in spotter_output) : ".$e->getMessage()."\n"; |
2030 | 2030 | } |
2031 | 2031 | } |
2032 | - if (!$Connection->checkColumnName('spotter_archive_output','real_altitude')) { |
|
2032 | + if (!$Connection->checkColumnName('spotter_archive_output', 'real_altitude')) { |
|
2033 | 2033 | $query = "ALTER TABLE spotter_archive_output ADD COLUMN real_altitude float DEFAULT NULL"; |
2034 | 2034 | try { |
2035 | 2035 | $sth = $Connection->db->prepare($query); |
2036 | 2036 | $sth->execute(); |
2037 | - } catch(PDOException $e) { |
|
2037 | + } catch (PDOException $e) { |
|
2038 | 2038 | return "error (add column real_altitude in spotter_archive_output) : ".$e->getMessage()."\n"; |
2039 | 2039 | } |
2040 | 2040 | } |
2041 | - if (!$Connection->checkColumnName('spotter_archive','real_altitude')) { |
|
2041 | + if (!$Connection->checkColumnName('spotter_archive', 'real_altitude')) { |
|
2042 | 2042 | $query = "ALTER TABLE spotter_archive ADD COLUMN real_altitude float DEFAULT NULL"; |
2043 | 2043 | try { |
2044 | 2044 | $sth = $Connection->db->prepare($query); |
2045 | 2045 | $sth->execute(); |
2046 | - } catch(PDOException $e) { |
|
2046 | + } catch (PDOException $e) { |
|
2047 | 2047 | return "error (add column real_altitude in spotter_archive) : ".$e->getMessage()."\n"; |
2048 | 2048 | } |
2049 | 2049 | } |
@@ -2051,7 +2051,7 @@ discard block |
||
2051 | 2051 | try { |
2052 | 2052 | $sth = $Connection->db->prepare($query); |
2053 | 2053 | $sth->execute(); |
2054 | - } catch(PDOException $e) { |
|
2054 | + } catch (PDOException $e) { |
|
2055 | 2055 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
2056 | 2056 | } |
2057 | 2057 | return $error; |
@@ -2073,14 +2073,14 @@ discard block |
||
2073 | 2073 | try { |
2074 | 2074 | $sth = $Connection->db->prepare($query); |
2075 | 2075 | $sth->execute(); |
2076 | - } catch(PDOException $e) { |
|
2076 | + } catch (PDOException $e) { |
|
2077 | 2077 | return "error (modify column altitude in tracker_*) : ".$e->getMessage()."\n"; |
2078 | 2078 | } |
2079 | 2079 | $query = "UPDATE config SET value = '44' WHERE name = 'schema_version'"; |
2080 | 2080 | try { |
2081 | 2081 | $sth = $Connection->db->prepare($query); |
2082 | 2082 | $sth->execute(); |
2083 | - } catch(PDOException $e) { |
|
2083 | + } catch (PDOException $e) { |
|
2084 | 2084 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
2085 | 2085 | } |
2086 | 2086 | return $error; |
@@ -2121,7 +2121,7 @@ discard block |
||
2121 | 2121 | try { |
2122 | 2122 | $sth = $Connection->db->prepare($query); |
2123 | 2123 | $sth->execute(); |
2124 | - } catch(PDOException $e) { |
|
2124 | + } catch (PDOException $e) { |
|
2125 | 2125 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
2126 | 2126 | } |
2127 | 2127 | return $error; |
@@ -2144,7 +2144,7 @@ discard block |
||
2144 | 2144 | try { |
2145 | 2145 | $sth = $Connection->db->prepare($query); |
2146 | 2146 | $sth->execute(); |
2147 | - } catch(PDOException $e) { |
|
2147 | + } catch (PDOException $e) { |
|
2148 | 2148 | return "error (update schema_version) : ".$e->getMessage()."\n"; |
2149 | 2149 | } |
2150 | 2150 | return $error; |
@@ -2167,7 +2167,7 @@ discard block |
||
2167 | 2167 | try { |
2168 | 2168 | $sth = $Connection->db->prepare($query); |
2169 | 2169 | $sth->execute(); |
2170 | - } catch(PDOException $e) { |
|
2170 | + } catch (PDOException $e) { |
|
2171 | 2171 | return "error : ".$e->getMessage()."\n"; |
2172 | 2172 | } |
2173 | 2173 | $result = $sth->fetch(PDO::FETCH_ASSOC); |
@@ -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); |
@@ -1723,7 +1723,7 @@ discard block |
||
1723 | 1723 | } catch(PDOException $e) { |
1724 | 1724 | return "error (add index flightaware_id, date on spotter_archive) : ".$e->getMessage()."\n"; |
1725 | 1725 | } |
1726 | - } |
|
1726 | + } |
|
1727 | 1727 | $query = "UPDATE config SET value = '38' WHERE name = 'schema_version'"; |
1728 | 1728 | try { |
1729 | 1729 | $sth = $Connection->db->prepare($query); |
@@ -2152,211 +2152,211 @@ discard block |
||
2152 | 2152 | |
2153 | 2153 | |
2154 | 2154 | |
2155 | - public static function check_version($update = false) { |
|
2156 | - global $globalDBname; |
|
2157 | - $version = 0; |
|
2158 | - $Connection = new Connection(); |
|
2159 | - if ($Connection->tableExists('aircraft')) { |
|
2160 | - if (!$Connection->tableExists('config')) { |
|
2161 | - $version = '1'; |
|
2162 | - if ($update) return self::update_from_1(); |
|
2163 | - else return $version; |
|
2155 | + public static function check_version($update = false) { |
|
2156 | + global $globalDBname; |
|
2157 | + $version = 0; |
|
2158 | + $Connection = new Connection(); |
|
2159 | + if ($Connection->tableExists('aircraft')) { |
|
2160 | + if (!$Connection->tableExists('config')) { |
|
2161 | + $version = '1'; |
|
2162 | + if ($update) return self::update_from_1(); |
|
2163 | + else return $version; |
|
2164 | 2164 | } else { |
2165 | - $Connection = new Connection(); |
|
2166 | - $query = "SELECT value FROM config WHERE name = 'schema_version' LIMIT 1"; |
|
2167 | - try { |
|
2168 | - $sth = $Connection->db->prepare($query); |
|
2169 | - $sth->execute(); |
|
2170 | - } catch(PDOException $e) { |
|
2165 | + $Connection = new Connection(); |
|
2166 | + $query = "SELECT value FROM config WHERE name = 'schema_version' LIMIT 1"; |
|
2167 | + try { |
|
2168 | + $sth = $Connection->db->prepare($query); |
|
2169 | + $sth->execute(); |
|
2170 | + } catch(PDOException $e) { |
|
2171 | 2171 | return "error : ".$e->getMessage()."\n"; |
2172 | - } |
|
2173 | - $result = $sth->fetch(PDO::FETCH_ASSOC); |
|
2174 | - if ($update) { |
|
2175 | - if ($result['value'] == '2') { |
|
2176 | - $error = self::update_from_2(); |
|
2177 | - if ($error != '') return $error; |
|
2178 | - else return self::check_version(true); |
|
2179 | - } elseif ($result['value'] == '3') { |
|
2180 | - $error = self::update_from_3(); |
|
2181 | - if ($error != '') return $error; |
|
2182 | - else return self::check_version(true); |
|
2183 | - } elseif ($result['value'] == '4') { |
|
2184 | - $error = self::update_from_4(); |
|
2185 | - if ($error != '') return $error; |
|
2186 | - else return self::check_version(true); |
|
2187 | - } elseif ($result['value'] == '5') { |
|
2188 | - $error = self::update_from_5(); |
|
2189 | - if ($error != '') return $error; |
|
2190 | - else return self::check_version(true); |
|
2191 | - } elseif ($result['value'] == '6') { |
|
2192 | - $error = self::update_from_6(); |
|
2193 | - if ($error != '') return $error; |
|
2194 | - else return self::check_version(true); |
|
2195 | - } elseif ($result['value'] == '7') { |
|
2196 | - $error = self::update_from_7(); |
|
2197 | - if ($error != '') return $error; |
|
2198 | - else return self::check_version(true); |
|
2199 | - } elseif ($result['value'] == '8') { |
|
2200 | - $error = self::update_from_8(); |
|
2201 | - if ($error != '') return $error; |
|
2202 | - else return self::check_version(true); |
|
2203 | - } elseif ($result['value'] == '9') { |
|
2204 | - $error = self::update_from_9(); |
|
2205 | - if ($error != '') return $error; |
|
2206 | - else return self::check_version(true); |
|
2207 | - } elseif ($result['value'] == '10') { |
|
2208 | - $error = self::update_from_10(); |
|
2209 | - if ($error != '') return $error; |
|
2210 | - else return self::check_version(true); |
|
2211 | - } elseif ($result['value'] == '11') { |
|
2212 | - $error = self::update_from_11(); |
|
2213 | - if ($error != '') return $error; |
|
2214 | - else return self::check_version(true); |
|
2215 | - } elseif ($result['value'] == '12') { |
|
2216 | - $error = self::update_from_12(); |
|
2217 | - if ($error != '') return $error; |
|
2218 | - else return self::check_version(true); |
|
2219 | - } elseif ($result['value'] == '13') { |
|
2220 | - $error = self::update_from_13(); |
|
2221 | - if ($error != '') return $error; |
|
2222 | - else return self::check_version(true); |
|
2223 | - } elseif ($result['value'] == '14') { |
|
2224 | - $error = self::update_from_14(); |
|
2225 | - if ($error != '') return $error; |
|
2226 | - else return self::check_version(true); |
|
2227 | - } elseif ($result['value'] == '15') { |
|
2228 | - $error = self::update_from_15(); |
|
2229 | - if ($error != '') return $error; |
|
2230 | - else return self::check_version(true); |
|
2231 | - } elseif ($result['value'] == '16') { |
|
2232 | - $error = self::update_from_16(); |
|
2233 | - if ($error != '') return $error; |
|
2234 | - else return self::check_version(true); |
|
2235 | - } elseif ($result['value'] == '17') { |
|
2236 | - $error = self::update_from_17(); |
|
2237 | - if ($error != '') return $error; |
|
2238 | - else return self::check_version(true); |
|
2239 | - } elseif ($result['value'] == '18') { |
|
2240 | - $error = self::update_from_18(); |
|
2241 | - if ($error != '') return $error; |
|
2242 | - else return self::check_version(true); |
|
2243 | - } elseif ($result['value'] == '19') { |
|
2244 | - $error = self::update_from_19(); |
|
2245 | - if ($error != '') return $error; |
|
2246 | - else return self::check_version(true); |
|
2247 | - } elseif ($result['value'] == '20') { |
|
2248 | - $error = self::update_from_20(); |
|
2249 | - if ($error != '') return $error; |
|
2250 | - else return self::check_version(true); |
|
2251 | - } elseif ($result['value'] == '21') { |
|
2252 | - $error = self::update_from_21(); |
|
2253 | - if ($error != '') return $error; |
|
2254 | - else return self::check_version(true); |
|
2255 | - } elseif ($result['value'] == '22') { |
|
2256 | - $error = self::update_from_22(); |
|
2257 | - if ($error != '') return $error; |
|
2258 | - else return self::check_version(true); |
|
2259 | - } elseif ($result['value'] == '23') { |
|
2260 | - $error = self::update_from_23(); |
|
2261 | - if ($error != '') return $error; |
|
2262 | - else return self::check_version(true); |
|
2263 | - } elseif ($result['value'] == '24') { |
|
2264 | - $error = self::update_from_24(); |
|
2265 | - if ($error != '') return $error; |
|
2266 | - else return self::check_version(true); |
|
2267 | - } elseif ($result['value'] == '25') { |
|
2268 | - $error = self::update_from_25(); |
|
2269 | - if ($error != '') return $error; |
|
2270 | - else return self::check_version(true); |
|
2271 | - } elseif ($result['value'] == '26') { |
|
2272 | - $error = self::update_from_26(); |
|
2273 | - if ($error != '') return $error; |
|
2274 | - else return self::check_version(true); |
|
2275 | - } elseif ($result['value'] == '27') { |
|
2276 | - $error = self::update_from_27(); |
|
2277 | - if ($error != '') return $error; |
|
2278 | - else return self::check_version(true); |
|
2279 | - } elseif ($result['value'] == '28') { |
|
2280 | - $error = self::update_from_28(); |
|
2281 | - if ($error != '') return $error; |
|
2282 | - else return self::check_version(true); |
|
2283 | - } elseif ($result['value'] == '29') { |
|
2284 | - $error = self::update_from_29(); |
|
2285 | - if ($error != '') return $error; |
|
2286 | - else return self::check_version(true); |
|
2287 | - } elseif ($result['value'] == '30') { |
|
2288 | - $error = self::update_from_30(); |
|
2289 | - if ($error != '') return $error; |
|
2290 | - else return self::check_version(true); |
|
2291 | - } elseif ($result['value'] == '31') { |
|
2292 | - $error = self::update_from_31(); |
|
2293 | - if ($error != '') return $error; |
|
2294 | - else return self::check_version(true); |
|
2295 | - } elseif ($result['value'] == '32') { |
|
2296 | - $error = self::update_from_32(); |
|
2297 | - if ($error != '') return $error; |
|
2298 | - else return self::check_version(true); |
|
2299 | - } elseif ($result['value'] == '33') { |
|
2300 | - $error = self::update_from_33(); |
|
2301 | - if ($error != '') return $error; |
|
2302 | - else return self::check_version(true); |
|
2303 | - } elseif ($result['value'] == '34') { |
|
2304 | - $error = self::update_from_34(); |
|
2305 | - if ($error != '') return $error; |
|
2306 | - else return self::check_version(true); |
|
2307 | - } elseif ($result['value'] == '35') { |
|
2308 | - $error = self::update_from_35(); |
|
2309 | - if ($error != '') return $error; |
|
2310 | - else return self::check_version(true); |
|
2311 | - } elseif ($result['value'] == '36') { |
|
2312 | - $error = self::update_from_36(); |
|
2313 | - if ($error != '') return $error; |
|
2314 | - else return self::check_version(true); |
|
2315 | - } elseif ($result['value'] == '37') { |
|
2316 | - $error = self::update_from_37(); |
|
2317 | - if ($error != '') return $error; |
|
2318 | - else return self::check_version(true); |
|
2319 | - } elseif ($result['value'] == '38') { |
|
2320 | - $error = self::update_from_38(); |
|
2321 | - if ($error != '') return $error; |
|
2322 | - else return self::check_version(true); |
|
2323 | - } elseif ($result['value'] == '39') { |
|
2324 | - $error = self::update_from_39(); |
|
2325 | - if ($error != '') return $error; |
|
2326 | - else return self::check_version(true); |
|
2327 | - } elseif ($result['value'] == '40') { |
|
2328 | - $error = self::update_from_40(); |
|
2329 | - if ($error != '') return $error; |
|
2330 | - else return self::check_version(true); |
|
2331 | - } elseif ($result['value'] == '41') { |
|
2332 | - $error = self::update_from_41(); |
|
2333 | - if ($error != '') return $error; |
|
2334 | - else return self::check_version(true); |
|
2335 | - } elseif ($result['value'] == '42') { |
|
2336 | - $error = self::update_from_42(); |
|
2337 | - if ($error != '') return $error; |
|
2338 | - else return self::check_version(true); |
|
2339 | - } elseif ($result['value'] == '43') { |
|
2340 | - $error = self::update_from_43(); |
|
2341 | - if ($error != '') return $error; |
|
2342 | - else return self::check_version(true); |
|
2343 | - } elseif ($result['value'] == '44') { |
|
2344 | - $error = self::update_from_44(); |
|
2345 | - if ($error != '') return $error; |
|
2346 | - else return self::check_version(true); |
|
2347 | - } elseif ($result['value'] == '45') { |
|
2348 | - $error = self::update_from_45(); |
|
2349 | - if ($error != '') return $error; |
|
2350 | - else return self::check_version(true); |
|
2351 | - } else return ''; |
|
2352 | - } else { |
|
2353 | - if (isset($result['value']) && $result['value'] != '') return $result['value']; |
|
2354 | - else return 0; |
|
2355 | - } |
|
2172 | + } |
|
2173 | + $result = $sth->fetch(PDO::FETCH_ASSOC); |
|
2174 | + if ($update) { |
|
2175 | + if ($result['value'] == '2') { |
|
2176 | + $error = self::update_from_2(); |
|
2177 | + if ($error != '') return $error; |
|
2178 | + else return self::check_version(true); |
|
2179 | + } elseif ($result['value'] == '3') { |
|
2180 | + $error = self::update_from_3(); |
|
2181 | + if ($error != '') return $error; |
|
2182 | + else return self::check_version(true); |
|
2183 | + } elseif ($result['value'] == '4') { |
|
2184 | + $error = self::update_from_4(); |
|
2185 | + if ($error != '') return $error; |
|
2186 | + else return self::check_version(true); |
|
2187 | + } elseif ($result['value'] == '5') { |
|
2188 | + $error = self::update_from_5(); |
|
2189 | + if ($error != '') return $error; |
|
2190 | + else return self::check_version(true); |
|
2191 | + } elseif ($result['value'] == '6') { |
|
2192 | + $error = self::update_from_6(); |
|
2193 | + if ($error != '') return $error; |
|
2194 | + else return self::check_version(true); |
|
2195 | + } elseif ($result['value'] == '7') { |
|
2196 | + $error = self::update_from_7(); |
|
2197 | + if ($error != '') return $error; |
|
2198 | + else return self::check_version(true); |
|
2199 | + } elseif ($result['value'] == '8') { |
|
2200 | + $error = self::update_from_8(); |
|
2201 | + if ($error != '') return $error; |
|
2202 | + else return self::check_version(true); |
|
2203 | + } elseif ($result['value'] == '9') { |
|
2204 | + $error = self::update_from_9(); |
|
2205 | + if ($error != '') return $error; |
|
2206 | + else return self::check_version(true); |
|
2207 | + } elseif ($result['value'] == '10') { |
|
2208 | + $error = self::update_from_10(); |
|
2209 | + if ($error != '') return $error; |
|
2210 | + else return self::check_version(true); |
|
2211 | + } elseif ($result['value'] == '11') { |
|
2212 | + $error = self::update_from_11(); |
|
2213 | + if ($error != '') return $error; |
|
2214 | + else return self::check_version(true); |
|
2215 | + } elseif ($result['value'] == '12') { |
|
2216 | + $error = self::update_from_12(); |
|
2217 | + if ($error != '') return $error; |
|
2218 | + else return self::check_version(true); |
|
2219 | + } elseif ($result['value'] == '13') { |
|
2220 | + $error = self::update_from_13(); |
|
2221 | + if ($error != '') return $error; |
|
2222 | + else return self::check_version(true); |
|
2223 | + } elseif ($result['value'] == '14') { |
|
2224 | + $error = self::update_from_14(); |
|
2225 | + if ($error != '') return $error; |
|
2226 | + else return self::check_version(true); |
|
2227 | + } elseif ($result['value'] == '15') { |
|
2228 | + $error = self::update_from_15(); |
|
2229 | + if ($error != '') return $error; |
|
2230 | + else return self::check_version(true); |
|
2231 | + } elseif ($result['value'] == '16') { |
|
2232 | + $error = self::update_from_16(); |
|
2233 | + if ($error != '') return $error; |
|
2234 | + else return self::check_version(true); |
|
2235 | + } elseif ($result['value'] == '17') { |
|
2236 | + $error = self::update_from_17(); |
|
2237 | + if ($error != '') return $error; |
|
2238 | + else return self::check_version(true); |
|
2239 | + } elseif ($result['value'] == '18') { |
|
2240 | + $error = self::update_from_18(); |
|
2241 | + if ($error != '') return $error; |
|
2242 | + else return self::check_version(true); |
|
2243 | + } elseif ($result['value'] == '19') { |
|
2244 | + $error = self::update_from_19(); |
|
2245 | + if ($error != '') return $error; |
|
2246 | + else return self::check_version(true); |
|
2247 | + } elseif ($result['value'] == '20') { |
|
2248 | + $error = self::update_from_20(); |
|
2249 | + if ($error != '') return $error; |
|
2250 | + else return self::check_version(true); |
|
2251 | + } elseif ($result['value'] == '21') { |
|
2252 | + $error = self::update_from_21(); |
|
2253 | + if ($error != '') return $error; |
|
2254 | + else return self::check_version(true); |
|
2255 | + } elseif ($result['value'] == '22') { |
|
2256 | + $error = self::update_from_22(); |
|
2257 | + if ($error != '') return $error; |
|
2258 | + else return self::check_version(true); |
|
2259 | + } elseif ($result['value'] == '23') { |
|
2260 | + $error = self::update_from_23(); |
|
2261 | + if ($error != '') return $error; |
|
2262 | + else return self::check_version(true); |
|
2263 | + } elseif ($result['value'] == '24') { |
|
2264 | + $error = self::update_from_24(); |
|
2265 | + if ($error != '') return $error; |
|
2266 | + else return self::check_version(true); |
|
2267 | + } elseif ($result['value'] == '25') { |
|
2268 | + $error = self::update_from_25(); |
|
2269 | + if ($error != '') return $error; |
|
2270 | + else return self::check_version(true); |
|
2271 | + } elseif ($result['value'] == '26') { |
|
2272 | + $error = self::update_from_26(); |
|
2273 | + if ($error != '') return $error; |
|
2274 | + else return self::check_version(true); |
|
2275 | + } elseif ($result['value'] == '27') { |
|
2276 | + $error = self::update_from_27(); |
|
2277 | + if ($error != '') return $error; |
|
2278 | + else return self::check_version(true); |
|
2279 | + } elseif ($result['value'] == '28') { |
|
2280 | + $error = self::update_from_28(); |
|
2281 | + if ($error != '') return $error; |
|
2282 | + else return self::check_version(true); |
|
2283 | + } elseif ($result['value'] == '29') { |
|
2284 | + $error = self::update_from_29(); |
|
2285 | + if ($error != '') return $error; |
|
2286 | + else return self::check_version(true); |
|
2287 | + } elseif ($result['value'] == '30') { |
|
2288 | + $error = self::update_from_30(); |
|
2289 | + if ($error != '') return $error; |
|
2290 | + else return self::check_version(true); |
|
2291 | + } elseif ($result['value'] == '31') { |
|
2292 | + $error = self::update_from_31(); |
|
2293 | + if ($error != '') return $error; |
|
2294 | + else return self::check_version(true); |
|
2295 | + } elseif ($result['value'] == '32') { |
|
2296 | + $error = self::update_from_32(); |
|
2297 | + if ($error != '') return $error; |
|
2298 | + else return self::check_version(true); |
|
2299 | + } elseif ($result['value'] == '33') { |
|
2300 | + $error = self::update_from_33(); |
|
2301 | + if ($error != '') return $error; |
|
2302 | + else return self::check_version(true); |
|
2303 | + } elseif ($result['value'] == '34') { |
|
2304 | + $error = self::update_from_34(); |
|
2305 | + if ($error != '') return $error; |
|
2306 | + else return self::check_version(true); |
|
2307 | + } elseif ($result['value'] == '35') { |
|
2308 | + $error = self::update_from_35(); |
|
2309 | + if ($error != '') return $error; |
|
2310 | + else return self::check_version(true); |
|
2311 | + } elseif ($result['value'] == '36') { |
|
2312 | + $error = self::update_from_36(); |
|
2313 | + if ($error != '') return $error; |
|
2314 | + else return self::check_version(true); |
|
2315 | + } elseif ($result['value'] == '37') { |
|
2316 | + $error = self::update_from_37(); |
|
2317 | + if ($error != '') return $error; |
|
2318 | + else return self::check_version(true); |
|
2319 | + } elseif ($result['value'] == '38') { |
|
2320 | + $error = self::update_from_38(); |
|
2321 | + if ($error != '') return $error; |
|
2322 | + else return self::check_version(true); |
|
2323 | + } elseif ($result['value'] == '39') { |
|
2324 | + $error = self::update_from_39(); |
|
2325 | + if ($error != '') return $error; |
|
2326 | + else return self::check_version(true); |
|
2327 | + } elseif ($result['value'] == '40') { |
|
2328 | + $error = self::update_from_40(); |
|
2329 | + if ($error != '') return $error; |
|
2330 | + else return self::check_version(true); |
|
2331 | + } elseif ($result['value'] == '41') { |
|
2332 | + $error = self::update_from_41(); |
|
2333 | + if ($error != '') return $error; |
|
2334 | + else return self::check_version(true); |
|
2335 | + } elseif ($result['value'] == '42') { |
|
2336 | + $error = self::update_from_42(); |
|
2337 | + if ($error != '') return $error; |
|
2338 | + else return self::check_version(true); |
|
2339 | + } elseif ($result['value'] == '43') { |
|
2340 | + $error = self::update_from_43(); |
|
2341 | + if ($error != '') return $error; |
|
2342 | + else return self::check_version(true); |
|
2343 | + } elseif ($result['value'] == '44') { |
|
2344 | + $error = self::update_from_44(); |
|
2345 | + if ($error != '') return $error; |
|
2346 | + else return self::check_version(true); |
|
2347 | + } elseif ($result['value'] == '45') { |
|
2348 | + $error = self::update_from_45(); |
|
2349 | + if ($error != '') return $error; |
|
2350 | + else return self::check_version(true); |
|
2351 | + } else return ''; |
|
2352 | + } else { |
|
2353 | + if (isset($result['value']) && $result['value'] != '') return $result['value']; |
|
2354 | + else return 0; |
|
2355 | + } |
|
2356 | 2356 | } |
2357 | 2357 | |
2358 | - } else return $version; |
|
2359 | - } |
|
2358 | + } else return $version; |
|
2359 | + } |
|
2360 | 2360 | |
2361 | 2361 | } |
2362 | 2362 | //echo update_schema::check_version(); |
@@ -258,7 +258,9 @@ discard block |
||
258 | 258 | // Update table countries |
259 | 259 | if ($Connection->tableExists('airspace')) { |
260 | 260 | $error .= update_db::update_countries(); |
261 | - if ($error != '') return $error; |
|
261 | + if ($error != '') { |
|
262 | + return $error; |
|
263 | + } |
|
262 | 264 | } |
263 | 265 | // Update schema_version to 7 |
264 | 266 | $query = "UPDATE `config` SET `value` = '7' WHERE `name` = 'schema_version'"; |
@@ -314,7 +316,9 @@ discard block |
||
314 | 316 | $error = ''; |
315 | 317 | // Update table aircraft |
316 | 318 | $error .= create_db::import_file('../db/source_location.sql'); |
317 | - if ($error != '') return $error; |
|
319 | + if ($error != '') { |
|
320 | + return $error; |
|
321 | + } |
|
318 | 322 | // Update schema_version to 6 |
319 | 323 | $query = "UPDATE `config` SET `value` = '8' WHERE `name` = 'schema_version'"; |
320 | 324 | try { |
@@ -331,7 +335,9 @@ discard block |
||
331 | 335 | $error = ''; |
332 | 336 | // Update table aircraft |
333 | 337 | $error .= create_db::import_file('../db/notam.sql'); |
334 | - if ($error != '') return $error; |
|
338 | + if ($error != '') { |
|
339 | + return $error; |
|
340 | + } |
|
335 | 341 | $query = "DELETE FROM config WHERE name = 'last_update_db'; |
336 | 342 | INSERT INTO config (name,value) VALUES ('last_update_db',NOW()); |
337 | 343 | DELETE FROM config WHERE name = 'last_update_notam_db'; |
@@ -365,7 +371,9 @@ discard block |
||
365 | 371 | $error = ''; |
366 | 372 | // Update table atc |
367 | 373 | $error .= create_db::import_file('../db/atc.sql'); |
368 | - if ($error != '') return $error; |
|
374 | + if ($error != '') { |
|
375 | + return $error; |
|
376 | + } |
|
369 | 377 | |
370 | 378 | $query = "UPDATE `config` SET `value` = '10' WHERE `name` = 'schema_version'"; |
371 | 379 | try { |
@@ -389,13 +397,21 @@ discard block |
||
389 | 397 | $error = ''; |
390 | 398 | // Add tables |
391 | 399 | $error .= create_db::import_file('../db/aircraft_owner.sql'); |
392 | - if ($error != '') return $error; |
|
400 | + if ($error != '') { |
|
401 | + return $error; |
|
402 | + } |
|
393 | 403 | $error .= create_db::import_file('../db/metar.sql'); |
394 | - if ($error != '') return $error; |
|
404 | + if ($error != '') { |
|
405 | + return $error; |
|
406 | + } |
|
395 | 407 | $error .= create_db::import_file('../db/taf.sql'); |
396 | - if ($error != '') return $error; |
|
408 | + if ($error != '') { |
|
409 | + return $error; |
|
410 | + } |
|
397 | 411 | $error .= create_db::import_file('../db/airport.sql'); |
398 | - if ($error != '') return $error; |
|
412 | + if ($error != '') { |
|
413 | + return $error; |
|
414 | + } |
|
399 | 415 | |
400 | 416 | $query = "UPDATE `config` SET `value` = '11' WHERE `name` = 'schema_version'"; |
401 | 417 | try { |
@@ -469,19 +485,33 @@ discard block |
||
469 | 485 | $error = ''; |
470 | 486 | // Add tables |
471 | 487 | $error .= create_db::import_file('../db/stats.sql'); |
472 | - if ($error != '') return $error; |
|
488 | + if ($error != '') { |
|
489 | + return $error; |
|
490 | + } |
|
473 | 491 | $error .= create_db::import_file('../db/stats_aircraft.sql'); |
474 | - if ($error != '') return $error; |
|
492 | + if ($error != '') { |
|
493 | + return $error; |
|
494 | + } |
|
475 | 495 | $error .= create_db::import_file('../db/stats_airline.sql'); |
476 | - if ($error != '') return $error; |
|
496 | + if ($error != '') { |
|
497 | + return $error; |
|
498 | + } |
|
477 | 499 | $error .= create_db::import_file('../db/stats_airport.sql'); |
478 | - if ($error != '') return $error; |
|
500 | + if ($error != '') { |
|
501 | + return $error; |
|
502 | + } |
|
479 | 503 | $error .= create_db::import_file('../db/stats_owner.sql'); |
480 | - if ($error != '') return $error; |
|
504 | + if ($error != '') { |
|
505 | + return $error; |
|
506 | + } |
|
481 | 507 | $error .= create_db::import_file('../db/stats_pilot.sql'); |
482 | - if ($error != '') return $error; |
|
508 | + if ($error != '') { |
|
509 | + return $error; |
|
510 | + } |
|
483 | 511 | $error .= create_db::import_file('../db/spotter_archive_output.sql'); |
484 | - if ($error != '') return $error; |
|
512 | + if ($error != '') { |
|
513 | + return $error; |
|
514 | + } |
|
485 | 515 | |
486 | 516 | $query = "UPDATE `config` SET `value` = '13' WHERE `name` = 'schema_version'"; |
487 | 517 | try { |
@@ -521,7 +551,9 @@ discard block |
||
521 | 551 | // Add tables |
522 | 552 | if (!$Connection->tableExists('stats_flight')) { |
523 | 553 | $error .= create_db::import_file('../db/stats_flight.sql'); |
524 | - if ($error != '') return $error; |
|
554 | + if ($error != '') { |
|
555 | + return $error; |
|
556 | + } |
|
525 | 557 | } |
526 | 558 | $query = "UPDATE `config` SET `value` = '15' WHERE `name` = 'schema_version'"; |
527 | 559 | try { |
@@ -545,7 +577,9 @@ discard block |
||
545 | 577 | } catch(PDOException $e) { |
546 | 578 | return "error (update stats) : ".$e->getMessage()."\n"; |
547 | 579 | } |
548 | - if ($error != '') return $error; |
|
580 | + if ($error != '') { |
|
581 | + return $error; |
|
582 | + } |
|
549 | 583 | $query = "UPDATE `config` SET `value` = '16' WHERE `name` = 'schema_version'"; |
550 | 584 | try { |
551 | 585 | $sth = $Connection->db->prepare($query); |
@@ -566,7 +600,9 @@ discard block |
||
566 | 600 | if (!$Connection->tableExists('stats_callsign')) { |
567 | 601 | $error .= create_db::import_file('../db/stats_callsign.sql'); |
568 | 602 | } |
569 | - if ($error != '') return $error; |
|
603 | + if ($error != '') { |
|
604 | + return $error; |
|
605 | + } |
|
570 | 606 | $query = "UPDATE `config` SET `value` = '17' WHERE `name` = 'schema_version'"; |
571 | 607 | try { |
572 | 608 | $sth = $Connection->db->prepare($query); |
@@ -584,7 +620,9 @@ discard block |
||
584 | 620 | if (!$Connection->tableExists('stats_country')) { |
585 | 621 | $error .= create_db::import_file('../db/stats_country.sql'); |
586 | 622 | } |
587 | - if ($error != '') return $error; |
|
623 | + if ($error != '') { |
|
624 | + return $error; |
|
625 | + } |
|
588 | 626 | $query = "UPDATE `config` SET `value` = '18' WHERE `name` = 'schema_version'"; |
589 | 627 | try { |
590 | 628 | $sth = $Connection->db->prepare($query); |
@@ -607,7 +645,9 @@ discard block |
||
607 | 645 | return "error (update stats) : ".$e->getMessage()."\n"; |
608 | 646 | } |
609 | 647 | } |
610 | - if ($error != '') return $error; |
|
648 | + if ($error != '') { |
|
649 | + return $error; |
|
650 | + } |
|
611 | 651 | $query = "UPDATE `config` SET `value` = '19' WHERE `name` = 'schema_version'"; |
612 | 652 | try { |
613 | 653 | $sth = $Connection->db->prepare($query); |
@@ -623,7 +663,9 @@ discard block |
||
623 | 663 | $error = ''; |
624 | 664 | // Update airport table |
625 | 665 | $error .= create_db::import_file('../db/airport.sql'); |
626 | - if ($error != '') return 'Import airport.sql : '.$error; |
|
666 | + if ($error != '') { |
|
667 | + return 'Import airport.sql : '.$error; |
|
668 | + } |
|
627 | 669 | // Remove primary key on Spotter_Archive |
628 | 670 | $query = "alter table spotter_archive drop spotter_archive_id"; |
629 | 671 | try { |
@@ -699,7 +741,9 @@ discard block |
||
699 | 741 | return "error (add source_name column) : ".$e->getMessage()."\n"; |
700 | 742 | } |
701 | 743 | } |
702 | - if ($error != '') return $error; |
|
744 | + if ($error != '') { |
|
745 | + return $error; |
|
746 | + } |
|
703 | 747 | $query = "UPDATE `config` SET `value` = '20' WHERE `name` = 'schema_version'"; |
704 | 748 | try { |
705 | 749 | $sth = $Connection->db->prepare($query); |
@@ -717,7 +761,9 @@ discard block |
||
717 | 761 | // Update airline table |
718 | 762 | if (!$globalIVAO && !$globalVATSIM && !$globalphpVMS) { |
719 | 763 | $error .= create_db::import_file('../db/airlines.sql'); |
720 | - if ($error != '') return 'Import airlines.sql : '.$error; |
|
764 | + if ($error != '') { |
|
765 | + return 'Import airlines.sql : '.$error; |
|
766 | + } |
|
721 | 767 | } |
722 | 768 | if (!$Connection->checkColumnName('aircraft_modes','type_flight')) { |
723 | 769 | // Add column over_country |
@@ -729,7 +775,9 @@ discard block |
||
729 | 775 | return "error (add over_country) : ".$e->getMessage()."\n"; |
730 | 776 | } |
731 | 777 | } |
732 | - if ($error != '') return $error; |
|
778 | + if ($error != '') { |
|
779 | + return $error; |
|
780 | + } |
|
733 | 781 | /* |
734 | 782 | if (!$globalIVAO && !$globalVATSIM && !$globalphpVMS) { |
735 | 783 | // Force update ModeS (this will put type_flight data |
@@ -759,7 +807,9 @@ discard block |
||
759 | 807 | } catch(PDOException $e) { |
760 | 808 | return "error (rename type to stats_type on stats*) : ".$e->getMessage()."\n"; |
761 | 809 | } |
762 | - if ($error != '') return $error; |
|
810 | + if ($error != '') { |
|
811 | + return $error; |
|
812 | + } |
|
763 | 813 | } |
764 | 814 | $query = "UPDATE `config` SET `value` = '22' WHERE `name` = 'schema_version'"; |
765 | 815 | try { |
@@ -782,7 +832,9 @@ discard block |
||
782 | 832 | } else { |
783 | 833 | $error .= create_db::import_file('../db/pgsql/stats_source.sql'); |
784 | 834 | } |
785 | - if ($error != '') return $error; |
|
835 | + if ($error != '') { |
|
836 | + return $error; |
|
837 | + } |
|
786 | 838 | } |
787 | 839 | $query = "UPDATE config SET value = '23' WHERE name = 'schema_version'"; |
788 | 840 | try { |
@@ -804,12 +856,16 @@ discard block |
||
804 | 856 | if ($globalDBdriver == 'mysql') { |
805 | 857 | if (!$Connection->tableExists('tle')) { |
806 | 858 | $error .= create_db::import_file('../db/tle.sql'); |
807 | - if ($error != '') return $error; |
|
859 | + if ($error != '') { |
|
860 | + return $error; |
|
861 | + } |
|
808 | 862 | } |
809 | 863 | } else { |
810 | 864 | if (!$Connection->tableExists('tle')) { |
811 | 865 | $error .= create_db::import_file('../db/pgsql/tle.sql'); |
812 | - if ($error != '') return $error; |
|
866 | + if ($error != '') { |
|
867 | + return $error; |
|
868 | + } |
|
813 | 869 | } |
814 | 870 | $query = "create index flightaware_id_idx ON spotter_archive USING btree(flightaware_id)"; |
815 | 871 | try { |
@@ -849,7 +905,9 @@ discard block |
||
849 | 905 | } else { |
850 | 906 | $error .= create_db::import_file('../db/pgsql/airlines.sql'); |
851 | 907 | } |
852 | - if ($error != '') return 'Import airlines.sql : '.$error; |
|
908 | + if ($error != '') { |
|
909 | + return 'Import airlines.sql : '.$error; |
|
910 | + } |
|
853 | 911 | if (!$Connection->checkColumnName('airlines','forsource')) { |
854 | 912 | // Add forsource to airlines |
855 | 913 | $query = "ALTER TABLE airlines ADD forsource VARCHAR(255) NULL DEFAULT NULL"; |
@@ -1332,20 +1390,28 @@ discard block |
||
1332 | 1390 | } |
1333 | 1391 | if ($globalDBdriver == 'mysql') { |
1334 | 1392 | $error .= create_db::import_file('../db/airlines.sql'); |
1335 | - if ($error != '') return $error; |
|
1393 | + if ($error != '') { |
|
1394 | + return $error; |
|
1395 | + } |
|
1336 | 1396 | } else { |
1337 | 1397 | $error .= create_db::import_file('../db/pgsql/airlines.sql'); |
1338 | - if ($error != '') return $error; |
|
1398 | + if ($error != '') { |
|
1399 | + return $error; |
|
1400 | + } |
|
1339 | 1401 | } |
1340 | 1402 | if ((isset($globalVATSIM) && $globalVATSIM) || (isset($globalIVAO) && $globalIVAO)) { |
1341 | 1403 | include_once(dirname(__FILE__).'/class.update_db.php'); |
1342 | 1404 | if (isset($globalVATSIM) && $globalVATSIM) { |
1343 | 1405 | $error .= update_db::update_vatsim(); |
1344 | - if ($error != '') return $error; |
|
1406 | + if ($error != '') { |
|
1407 | + return $error; |
|
1408 | + } |
|
1345 | 1409 | } |
1346 | 1410 | if (isset($globalIVAO) && $globalIVAO && file_exists('tmp/ivae_feb2013.zip')) { |
1347 | 1411 | $error .= update_db::update_IVAO(); |
1348 | - if ($error != '') return $error; |
|
1412 | + if ($error != '') { |
|
1413 | + return $error; |
|
1414 | + } |
|
1349 | 1415 | } |
1350 | 1416 | } |
1351 | 1417 | |
@@ -1608,41 +1674,65 @@ discard block |
||
1608 | 1674 | if ($globalDBdriver == 'mysql') { |
1609 | 1675 | if (!$Connection->tableExists('tracker_output')) { |
1610 | 1676 | $error .= create_db::import_file('../db/tracker_output.sql'); |
1611 | - if ($error != '') return $error; |
|
1677 | + if ($error != '') { |
|
1678 | + return $error; |
|
1679 | + } |
|
1612 | 1680 | } |
1613 | 1681 | if (!$Connection->tableExists('tracker_live')) { |
1614 | 1682 | $error .= create_db::import_file('../db/tracker_live.sql'); |
1615 | - if ($error != '') return $error; |
|
1683 | + if ($error != '') { |
|
1684 | + return $error; |
|
1685 | + } |
|
1616 | 1686 | } |
1617 | 1687 | if (!$Connection->tableExists('marine_output')) { |
1618 | 1688 | $error .= create_db::import_file('../db/marine_output.sql'); |
1619 | - if ($error != '') return $error; |
|
1689 | + if ($error != '') { |
|
1690 | + return $error; |
|
1691 | + } |
|
1620 | 1692 | } |
1621 | 1693 | if (!$Connection->tableExists('marine_live')) { |
1622 | 1694 | $error .= create_db::import_file('../db/marine_live.sql'); |
1623 | - if ($error != '') return $error; |
|
1695 | + if ($error != '') { |
|
1696 | + return $error; |
|
1697 | + } |
|
1624 | 1698 | } |
1625 | 1699 | if (!$Connection->tableExists('marine_identity')) { |
1626 | 1700 | $error .= create_db::import_file('../db/marine_identity.sql'); |
1627 | - if ($error != '') return $error; |
|
1701 | + if ($error != '') { |
|
1702 | + return $error; |
|
1703 | + } |
|
1628 | 1704 | } |
1629 | 1705 | if (!$Connection->tableExists('marine_mid')) { |
1630 | 1706 | $error .= create_db::import_file('../db/marine_mid.sql'); |
1631 | - if ($error != '') return $error; |
|
1707 | + if ($error != '') { |
|
1708 | + return $error; |
|
1709 | + } |
|
1632 | 1710 | } |
1633 | 1711 | } else { |
1634 | 1712 | $error .= create_db::import_file('../db/pgsql/tracker_output.sql'); |
1635 | - if ($error != '') return $error; |
|
1713 | + if ($error != '') { |
|
1714 | + return $error; |
|
1715 | + } |
|
1636 | 1716 | $error .= create_db::import_file('../db/pgsql/tracker_live.sql'); |
1637 | - if ($error != '') return $error; |
|
1717 | + if ($error != '') { |
|
1718 | + return $error; |
|
1719 | + } |
|
1638 | 1720 | $error .= create_db::import_file('../db/pgsql/marine_output.sql'); |
1639 | - if ($error != '') return $error; |
|
1721 | + if ($error != '') { |
|
1722 | + return $error; |
|
1723 | + } |
|
1640 | 1724 | $error .= create_db::import_file('../db/pgsql/marine_live.sql'); |
1641 | - if ($error != '') return $error; |
|
1725 | + if ($error != '') { |
|
1726 | + return $error; |
|
1727 | + } |
|
1642 | 1728 | $error .= create_db::import_file('../db/pgsql/marine_identity.sql'); |
1643 | - if ($error != '') return $error; |
|
1729 | + if ($error != '') { |
|
1730 | + return $error; |
|
1731 | + } |
|
1644 | 1732 | $error .= create_db::import_file('../db/pgsql/marine_mid.sql'); |
1645 | - if ($error != '') return $error; |
|
1733 | + if ($error != '') { |
|
1734 | + return $error; |
|
1735 | + } |
|
1646 | 1736 | } |
1647 | 1737 | $query = "UPDATE config SET value = '37' WHERE name = 'schema_version'"; |
1648 | 1738 | try { |
@@ -1661,39 +1751,61 @@ discard block |
||
1661 | 1751 | if ($globalDBdriver == 'mysql') { |
1662 | 1752 | if (!$Connection->tableExists('marine_image')) { |
1663 | 1753 | $error .= create_db::import_file('../db/marine_image.sql'); |
1664 | - if ($error != '') return $error; |
|
1754 | + if ($error != '') { |
|
1755 | + return $error; |
|
1756 | + } |
|
1665 | 1757 | } |
1666 | 1758 | if (!$Connection->tableExists('marine_archive')) { |
1667 | 1759 | $error .= create_db::import_file('../db/marine_archive.sql'); |
1668 | - if ($error != '') return $error; |
|
1760 | + if ($error != '') { |
|
1761 | + return $error; |
|
1762 | + } |
|
1669 | 1763 | } |
1670 | 1764 | if (!$Connection->tableExists('marine_archive_output')) { |
1671 | 1765 | $error .= create_db::import_file('../db/marine_archive_output.sql'); |
1672 | - if ($error != '') return $error; |
|
1766 | + if ($error != '') { |
|
1767 | + return $error; |
|
1768 | + } |
|
1673 | 1769 | } |
1674 | 1770 | if (!$Connection->tableExists('tracker_archive')) { |
1675 | 1771 | $error .= create_db::import_file('../db/tracker_archive.sql'); |
1676 | - if ($error != '') return $error; |
|
1772 | + if ($error != '') { |
|
1773 | + return $error; |
|
1774 | + } |
|
1677 | 1775 | } |
1678 | 1776 | if (!$Connection->tableExists('tracker_archive_output')) { |
1679 | 1777 | $error .= create_db::import_file('../db/tracker_archive_output.sql'); |
1680 | - if ($error != '') return $error; |
|
1778 | + if ($error != '') { |
|
1779 | + return $error; |
|
1780 | + } |
|
1681 | 1781 | } |
1682 | 1782 | if (!$Connection->tableExists('marine_archive_output')) { |
1683 | 1783 | $error .= create_db::import_file('../db/tracker_archive_output.sql'); |
1684 | - if ($error != '') return $error; |
|
1784 | + if ($error != '') { |
|
1785 | + return $error; |
|
1786 | + } |
|
1685 | 1787 | } |
1686 | 1788 | } else { |
1687 | 1789 | $error .= create_db::import_file('../db/pgsql/marine_image.sql'); |
1688 | - if ($error != '') return $error; |
|
1790 | + if ($error != '') { |
|
1791 | + return $error; |
|
1792 | + } |
|
1689 | 1793 | $error .= create_db::import_file('../db/pgsql/marine_archive.sql'); |
1690 | - if ($error != '') return $error; |
|
1794 | + if ($error != '') { |
|
1795 | + return $error; |
|
1796 | + } |
|
1691 | 1797 | $error .= create_db::import_file('../db/pgsql/marine_archive_output.sql'); |
1692 | - if ($error != '') return $error; |
|
1798 | + if ($error != '') { |
|
1799 | + return $error; |
|
1800 | + } |
|
1693 | 1801 | $error .= create_db::import_file('../db/pgsql/tracker_archive.sql'); |
1694 | - if ($error != '') return $error; |
|
1802 | + if ($error != '') { |
|
1803 | + return $error; |
|
1804 | + } |
|
1695 | 1805 | $error .= create_db::import_file('../db/pgsql/tracker_archive_output.sql'); |
1696 | - if ($error != '') return $error; |
|
1806 | + if ($error != '') { |
|
1807 | + return $error; |
|
1808 | + } |
|
1697 | 1809 | } |
1698 | 1810 | if ($globalDBdriver == 'mysql') { |
1699 | 1811 | $query = "SELECT ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = '".$globalDBname."' AND TABLE_NAME = 'spotter_archive'"; |
@@ -2064,7 +2176,9 @@ discard block |
||
2064 | 2176 | if ($globalDBdriver == 'mysql') { |
2065 | 2177 | if (!$Connection->tableExists('tracker_archive_output')) { |
2066 | 2178 | $error .= create_db::import_file('../db/tracker_archive_output.sql'); |
2067 | - if ($error != '') return $error; |
|
2179 | + if ($error != '') { |
|
2180 | + return $error; |
|
2181 | + } |
|
2068 | 2182 | } |
2069 | 2183 | $query = "ALTER TABLE tracker_live MODIFY COLUMN altitude float DEFAULT NULL;ALTER TABLE tracker_output MODIFY COLUMN last_altitude float DEFAULT NULL;ALTER TABLE tracker_output MODIFY COLUMN altitude float DEFAULT NULL;ALTER TABLE tracker_archive MODIFY COLUMN altitude float DEFAULT NULL;ALTER TABLE tracker_archive_output MODIFY COLUMN last_altitude float DEFAULT NULL;ALTER TABLE tracker_output MODIFY COLUMN altitude float DEFAULT NULL;"; |
2070 | 2184 | } else { |
@@ -2092,14 +2206,22 @@ discard block |
||
2092 | 2206 | $error = ''; |
2093 | 2207 | if ($globalDBdriver == 'mysql') { |
2094 | 2208 | $error .= create_db::import_file('../db/airport.sql'); |
2095 | - if ($error != '') return $error; |
|
2209 | + if ($error != '') { |
|
2210 | + return $error; |
|
2211 | + } |
|
2096 | 2212 | $error .= create_db::import_file('../db/airlines.sql'); |
2097 | - if ($error != '') return $error; |
|
2213 | + if ($error != '') { |
|
2214 | + return $error; |
|
2215 | + } |
|
2098 | 2216 | } else { |
2099 | 2217 | $error .= create_db::import_file('../db/pgsql/airport.sql'); |
2100 | - if ($error != '') return $error; |
|
2218 | + if ($error != '') { |
|
2219 | + return $error; |
|
2220 | + } |
|
2101 | 2221 | $error .= create_db::import_file('../db/pgsql/airlines.sql'); |
2102 | - if ($error != '') return $error; |
|
2222 | + if ($error != '') { |
|
2223 | + return $error; |
|
2224 | + } |
|
2103 | 2225 | } |
2104 | 2226 | if ((isset($globalVATSIM) && $globalVATSIM) && (isset($globalIVAO) && $globalIVAO)) { |
2105 | 2227 | if (file_exists('tmp/ivae_feb2013.zip')) { |
@@ -2116,7 +2238,9 @@ discard block |
||
2116 | 2238 | $error .= update_db::update_vatsim(); |
2117 | 2239 | } |
2118 | 2240 | } |
2119 | - if ($error != '') return $error; |
|
2241 | + if ($error != '') { |
|
2242 | + return $error; |
|
2243 | + } |
|
2120 | 2244 | $query = "UPDATE config SET value = '45' WHERE name = 'schema_version'"; |
2121 | 2245 | try { |
2122 | 2246 | $sth = $Connection->db->prepare($query); |
@@ -2134,10 +2258,14 @@ discard block |
||
2134 | 2258 | if (!$Connection->tableExists('satellite')) { |
2135 | 2259 | if ($globalDBdriver == 'mysql') { |
2136 | 2260 | $error .= create_db::import_file('../db/satellite.sql'); |
2137 | - if ($error != '') return $error; |
|
2261 | + if ($error != '') { |
|
2262 | + return $error; |
|
2263 | + } |
|
2138 | 2264 | } else { |
2139 | 2265 | $error .= create_db::import_file('../db/pgsql/satellite.sql'); |
2140 | - if ($error != '') return $error; |
|
2266 | + if ($error != '') { |
|
2267 | + return $error; |
|
2268 | + } |
|
2141 | 2269 | } |
2142 | 2270 | } |
2143 | 2271 | $query = "UPDATE config SET value = '46' WHERE name = 'schema_version'"; |
@@ -2159,8 +2287,11 @@ discard block |
||
2159 | 2287 | if ($Connection->tableExists('aircraft')) { |
2160 | 2288 | if (!$Connection->tableExists('config')) { |
2161 | 2289 | $version = '1'; |
2162 | - if ($update) return self::update_from_1(); |
|
2163 | - else return $version; |
|
2290 | + if ($update) { |
|
2291 | + return self::update_from_1(); |
|
2292 | + } else { |
|
2293 | + return $version; |
|
2294 | + } |
|
2164 | 2295 | } else { |
2165 | 2296 | $Connection = new Connection(); |
2166 | 2297 | $query = "SELECT value FROM config WHERE name = 'schema_version' LIMIT 1"; |
@@ -2174,188 +2305,327 @@ discard block |
||
2174 | 2305 | if ($update) { |
2175 | 2306 | if ($result['value'] == '2') { |
2176 | 2307 | $error = self::update_from_2(); |
2177 | - if ($error != '') return $error; |
|
2178 | - else return self::check_version(true); |
|
2308 | + if ($error != '') { |
|
2309 | + return $error; |
|
2310 | + } else { |
|
2311 | + return self::check_version(true); |
|
2312 | + } |
|
2179 | 2313 | } elseif ($result['value'] == '3') { |
2180 | 2314 | $error = self::update_from_3(); |
2181 | - if ($error != '') return $error; |
|
2182 | - else return self::check_version(true); |
|
2315 | + if ($error != '') { |
|
2316 | + return $error; |
|
2317 | + } else { |
|
2318 | + return self::check_version(true); |
|
2319 | + } |
|
2183 | 2320 | } elseif ($result['value'] == '4') { |
2184 | 2321 | $error = self::update_from_4(); |
2185 | - if ($error != '') return $error; |
|
2186 | - else return self::check_version(true); |
|
2322 | + if ($error != '') { |
|
2323 | + return $error; |
|
2324 | + } else { |
|
2325 | + return self::check_version(true); |
|
2326 | + } |
|
2187 | 2327 | } elseif ($result['value'] == '5') { |
2188 | 2328 | $error = self::update_from_5(); |
2189 | - if ($error != '') return $error; |
|
2190 | - else return self::check_version(true); |
|
2329 | + if ($error != '') { |
|
2330 | + return $error; |
|
2331 | + } else { |
|
2332 | + return self::check_version(true); |
|
2333 | + } |
|
2191 | 2334 | } elseif ($result['value'] == '6') { |
2192 | 2335 | $error = self::update_from_6(); |
2193 | - if ($error != '') return $error; |
|
2194 | - else return self::check_version(true); |
|
2336 | + if ($error != '') { |
|
2337 | + return $error; |
|
2338 | + } else { |
|
2339 | + return self::check_version(true); |
|
2340 | + } |
|
2195 | 2341 | } elseif ($result['value'] == '7') { |
2196 | 2342 | $error = self::update_from_7(); |
2197 | - if ($error != '') return $error; |
|
2198 | - else return self::check_version(true); |
|
2343 | + if ($error != '') { |
|
2344 | + return $error; |
|
2345 | + } else { |
|
2346 | + return self::check_version(true); |
|
2347 | + } |
|
2199 | 2348 | } elseif ($result['value'] == '8') { |
2200 | 2349 | $error = self::update_from_8(); |
2201 | - if ($error != '') return $error; |
|
2202 | - else return self::check_version(true); |
|
2350 | + if ($error != '') { |
|
2351 | + return $error; |
|
2352 | + } else { |
|
2353 | + return self::check_version(true); |
|
2354 | + } |
|
2203 | 2355 | } elseif ($result['value'] == '9') { |
2204 | 2356 | $error = self::update_from_9(); |
2205 | - if ($error != '') return $error; |
|
2206 | - else return self::check_version(true); |
|
2357 | + if ($error != '') { |
|
2358 | + return $error; |
|
2359 | + } else { |
|
2360 | + return self::check_version(true); |
|
2361 | + } |
|
2207 | 2362 | } elseif ($result['value'] == '10') { |
2208 | 2363 | $error = self::update_from_10(); |
2209 | - if ($error != '') return $error; |
|
2210 | - else return self::check_version(true); |
|
2364 | + if ($error != '') { |
|
2365 | + return $error; |
|
2366 | + } else { |
|
2367 | + return self::check_version(true); |
|
2368 | + } |
|
2211 | 2369 | } elseif ($result['value'] == '11') { |
2212 | 2370 | $error = self::update_from_11(); |
2213 | - if ($error != '') return $error; |
|
2214 | - else return self::check_version(true); |
|
2371 | + if ($error != '') { |
|
2372 | + return $error; |
|
2373 | + } else { |
|
2374 | + return self::check_version(true); |
|
2375 | + } |
|
2215 | 2376 | } elseif ($result['value'] == '12') { |
2216 | 2377 | $error = self::update_from_12(); |
2217 | - if ($error != '') return $error; |
|
2218 | - else return self::check_version(true); |
|
2378 | + if ($error != '') { |
|
2379 | + return $error; |
|
2380 | + } else { |
|
2381 | + return self::check_version(true); |
|
2382 | + } |
|
2219 | 2383 | } elseif ($result['value'] == '13') { |
2220 | 2384 | $error = self::update_from_13(); |
2221 | - if ($error != '') return $error; |
|
2222 | - else return self::check_version(true); |
|
2385 | + if ($error != '') { |
|
2386 | + return $error; |
|
2387 | + } else { |
|
2388 | + return self::check_version(true); |
|
2389 | + } |
|
2223 | 2390 | } elseif ($result['value'] == '14') { |
2224 | 2391 | $error = self::update_from_14(); |
2225 | - if ($error != '') return $error; |
|
2226 | - else return self::check_version(true); |
|
2392 | + if ($error != '') { |
|
2393 | + return $error; |
|
2394 | + } else { |
|
2395 | + return self::check_version(true); |
|
2396 | + } |
|
2227 | 2397 | } elseif ($result['value'] == '15') { |
2228 | 2398 | $error = self::update_from_15(); |
2229 | - if ($error != '') return $error; |
|
2230 | - else return self::check_version(true); |
|
2399 | + if ($error != '') { |
|
2400 | + return $error; |
|
2401 | + } else { |
|
2402 | + return self::check_version(true); |
|
2403 | + } |
|
2231 | 2404 | } elseif ($result['value'] == '16') { |
2232 | 2405 | $error = self::update_from_16(); |
2233 | - if ($error != '') return $error; |
|
2234 | - else return self::check_version(true); |
|
2406 | + if ($error != '') { |
|
2407 | + return $error; |
|
2408 | + } else { |
|
2409 | + return self::check_version(true); |
|
2410 | + } |
|
2235 | 2411 | } elseif ($result['value'] == '17') { |
2236 | 2412 | $error = self::update_from_17(); |
2237 | - if ($error != '') return $error; |
|
2238 | - else return self::check_version(true); |
|
2413 | + if ($error != '') { |
|
2414 | + return $error; |
|
2415 | + } else { |
|
2416 | + return self::check_version(true); |
|
2417 | + } |
|
2239 | 2418 | } elseif ($result['value'] == '18') { |
2240 | 2419 | $error = self::update_from_18(); |
2241 | - if ($error != '') return $error; |
|
2242 | - else return self::check_version(true); |
|
2420 | + if ($error != '') { |
|
2421 | + return $error; |
|
2422 | + } else { |
|
2423 | + return self::check_version(true); |
|
2424 | + } |
|
2243 | 2425 | } elseif ($result['value'] == '19') { |
2244 | 2426 | $error = self::update_from_19(); |
2245 | - if ($error != '') return $error; |
|
2246 | - else return self::check_version(true); |
|
2427 | + if ($error != '') { |
|
2428 | + return $error; |
|
2429 | + } else { |
|
2430 | + return self::check_version(true); |
|
2431 | + } |
|
2247 | 2432 | } elseif ($result['value'] == '20') { |
2248 | 2433 | $error = self::update_from_20(); |
2249 | - if ($error != '') return $error; |
|
2250 | - else return self::check_version(true); |
|
2434 | + if ($error != '') { |
|
2435 | + return $error; |
|
2436 | + } else { |
|
2437 | + return self::check_version(true); |
|
2438 | + } |
|
2251 | 2439 | } elseif ($result['value'] == '21') { |
2252 | 2440 | $error = self::update_from_21(); |
2253 | - if ($error != '') return $error; |
|
2254 | - else return self::check_version(true); |
|
2441 | + if ($error != '') { |
|
2442 | + return $error; |
|
2443 | + } else { |
|
2444 | + return self::check_version(true); |
|
2445 | + } |
|
2255 | 2446 | } elseif ($result['value'] == '22') { |
2256 | 2447 | $error = self::update_from_22(); |
2257 | - if ($error != '') return $error; |
|
2258 | - else return self::check_version(true); |
|
2448 | + if ($error != '') { |
|
2449 | + return $error; |
|
2450 | + } else { |
|
2451 | + return self::check_version(true); |
|
2452 | + } |
|
2259 | 2453 | } elseif ($result['value'] == '23') { |
2260 | 2454 | $error = self::update_from_23(); |
2261 | - if ($error != '') return $error; |
|
2262 | - else return self::check_version(true); |
|
2455 | + if ($error != '') { |
|
2456 | + return $error; |
|
2457 | + } else { |
|
2458 | + return self::check_version(true); |
|
2459 | + } |
|
2263 | 2460 | } elseif ($result['value'] == '24') { |
2264 | 2461 | $error = self::update_from_24(); |
2265 | - if ($error != '') return $error; |
|
2266 | - else return self::check_version(true); |
|
2462 | + if ($error != '') { |
|
2463 | + return $error; |
|
2464 | + } else { |
|
2465 | + return self::check_version(true); |
|
2466 | + } |
|
2267 | 2467 | } elseif ($result['value'] == '25') { |
2268 | 2468 | $error = self::update_from_25(); |
2269 | - if ($error != '') return $error; |
|
2270 | - else return self::check_version(true); |
|
2469 | + if ($error != '') { |
|
2470 | + return $error; |
|
2471 | + } else { |
|
2472 | + return self::check_version(true); |
|
2473 | + } |
|
2271 | 2474 | } elseif ($result['value'] == '26') { |
2272 | 2475 | $error = self::update_from_26(); |
2273 | - if ($error != '') return $error; |
|
2274 | - else return self::check_version(true); |
|
2476 | + if ($error != '') { |
|
2477 | + return $error; |
|
2478 | + } else { |
|
2479 | + return self::check_version(true); |
|
2480 | + } |
|
2275 | 2481 | } elseif ($result['value'] == '27') { |
2276 | 2482 | $error = self::update_from_27(); |
2277 | - if ($error != '') return $error; |
|
2278 | - else return self::check_version(true); |
|
2483 | + if ($error != '') { |
|
2484 | + return $error; |
|
2485 | + } else { |
|
2486 | + return self::check_version(true); |
|
2487 | + } |
|
2279 | 2488 | } elseif ($result['value'] == '28') { |
2280 | 2489 | $error = self::update_from_28(); |
2281 | - if ($error != '') return $error; |
|
2282 | - else return self::check_version(true); |
|
2490 | + if ($error != '') { |
|
2491 | + return $error; |
|
2492 | + } else { |
|
2493 | + return self::check_version(true); |
|
2494 | + } |
|
2283 | 2495 | } elseif ($result['value'] == '29') { |
2284 | 2496 | $error = self::update_from_29(); |
2285 | - if ($error != '') return $error; |
|
2286 | - else return self::check_version(true); |
|
2497 | + if ($error != '') { |
|
2498 | + return $error; |
|
2499 | + } else { |
|
2500 | + return self::check_version(true); |
|
2501 | + } |
|
2287 | 2502 | } elseif ($result['value'] == '30') { |
2288 | 2503 | $error = self::update_from_30(); |
2289 | - if ($error != '') return $error; |
|
2290 | - else return self::check_version(true); |
|
2504 | + if ($error != '') { |
|
2505 | + return $error; |
|
2506 | + } else { |
|
2507 | + return self::check_version(true); |
|
2508 | + } |
|
2291 | 2509 | } elseif ($result['value'] == '31') { |
2292 | 2510 | $error = self::update_from_31(); |
2293 | - if ($error != '') return $error; |
|
2294 | - else return self::check_version(true); |
|
2511 | + if ($error != '') { |
|
2512 | + return $error; |
|
2513 | + } else { |
|
2514 | + return self::check_version(true); |
|
2515 | + } |
|
2295 | 2516 | } elseif ($result['value'] == '32') { |
2296 | 2517 | $error = self::update_from_32(); |
2297 | - if ($error != '') return $error; |
|
2298 | - else return self::check_version(true); |
|
2518 | + if ($error != '') { |
|
2519 | + return $error; |
|
2520 | + } else { |
|
2521 | + return self::check_version(true); |
|
2522 | + } |
|
2299 | 2523 | } elseif ($result['value'] == '33') { |
2300 | 2524 | $error = self::update_from_33(); |
2301 | - if ($error != '') return $error; |
|
2302 | - else return self::check_version(true); |
|
2525 | + if ($error != '') { |
|
2526 | + return $error; |
|
2527 | + } else { |
|
2528 | + return self::check_version(true); |
|
2529 | + } |
|
2303 | 2530 | } elseif ($result['value'] == '34') { |
2304 | 2531 | $error = self::update_from_34(); |
2305 | - if ($error != '') return $error; |
|
2306 | - else return self::check_version(true); |
|
2532 | + if ($error != '') { |
|
2533 | + return $error; |
|
2534 | + } else { |
|
2535 | + return self::check_version(true); |
|
2536 | + } |
|
2307 | 2537 | } elseif ($result['value'] == '35') { |
2308 | 2538 | $error = self::update_from_35(); |
2309 | - if ($error != '') return $error; |
|
2310 | - else return self::check_version(true); |
|
2539 | + if ($error != '') { |
|
2540 | + return $error; |
|
2541 | + } else { |
|
2542 | + return self::check_version(true); |
|
2543 | + } |
|
2311 | 2544 | } elseif ($result['value'] == '36') { |
2312 | 2545 | $error = self::update_from_36(); |
2313 | - if ($error != '') return $error; |
|
2314 | - else return self::check_version(true); |
|
2546 | + if ($error != '') { |
|
2547 | + return $error; |
|
2548 | + } else { |
|
2549 | + return self::check_version(true); |
|
2550 | + } |
|
2315 | 2551 | } elseif ($result['value'] == '37') { |
2316 | 2552 | $error = self::update_from_37(); |
2317 | - if ($error != '') return $error; |
|
2318 | - else return self::check_version(true); |
|
2553 | + if ($error != '') { |
|
2554 | + return $error; |
|
2555 | + } else { |
|
2556 | + return self::check_version(true); |
|
2557 | + } |
|
2319 | 2558 | } elseif ($result['value'] == '38') { |
2320 | 2559 | $error = self::update_from_38(); |
2321 | - if ($error != '') return $error; |
|
2322 | - else return self::check_version(true); |
|
2560 | + if ($error != '') { |
|
2561 | + return $error; |
|
2562 | + } else { |
|
2563 | + return self::check_version(true); |
|
2564 | + } |
|
2323 | 2565 | } elseif ($result['value'] == '39') { |
2324 | 2566 | $error = self::update_from_39(); |
2325 | - if ($error != '') return $error; |
|
2326 | - else return self::check_version(true); |
|
2567 | + if ($error != '') { |
|
2568 | + return $error; |
|
2569 | + } else { |
|
2570 | + return self::check_version(true); |
|
2571 | + } |
|
2327 | 2572 | } elseif ($result['value'] == '40') { |
2328 | 2573 | $error = self::update_from_40(); |
2329 | - if ($error != '') return $error; |
|
2330 | - else return self::check_version(true); |
|
2574 | + if ($error != '') { |
|
2575 | + return $error; |
|
2576 | + } else { |
|
2577 | + return self::check_version(true); |
|
2578 | + } |
|
2331 | 2579 | } elseif ($result['value'] == '41') { |
2332 | 2580 | $error = self::update_from_41(); |
2333 | - if ($error != '') return $error; |
|
2334 | - else return self::check_version(true); |
|
2581 | + if ($error != '') { |
|
2582 | + return $error; |
|
2583 | + } else { |
|
2584 | + return self::check_version(true); |
|
2585 | + } |
|
2335 | 2586 | } elseif ($result['value'] == '42') { |
2336 | 2587 | $error = self::update_from_42(); |
2337 | - if ($error != '') return $error; |
|
2338 | - else return self::check_version(true); |
|
2588 | + if ($error != '') { |
|
2589 | + return $error; |
|
2590 | + } else { |
|
2591 | + return self::check_version(true); |
|
2592 | + } |
|
2339 | 2593 | } elseif ($result['value'] == '43') { |
2340 | 2594 | $error = self::update_from_43(); |
2341 | - if ($error != '') return $error; |
|
2342 | - else return self::check_version(true); |
|
2595 | + if ($error != '') { |
|
2596 | + return $error; |
|
2597 | + } else { |
|
2598 | + return self::check_version(true); |
|
2599 | + } |
|
2343 | 2600 | } elseif ($result['value'] == '44') { |
2344 | 2601 | $error = self::update_from_44(); |
2345 | - if ($error != '') return $error; |
|
2346 | - else return self::check_version(true); |
|
2602 | + if ($error != '') { |
|
2603 | + return $error; |
|
2604 | + } else { |
|
2605 | + return self::check_version(true); |
|
2606 | + } |
|
2347 | 2607 | } elseif ($result['value'] == '45') { |
2348 | 2608 | $error = self::update_from_45(); |
2349 | - if ($error != '') return $error; |
|
2350 | - else return self::check_version(true); |
|
2351 | - } else return ''; |
|
2609 | + if ($error != '') { |
|
2610 | + return $error; |
|
2611 | + } else { |
|
2612 | + return self::check_version(true); |
|
2613 | + } |
|
2614 | + } else { |
|
2615 | + return ''; |
|
2616 | + } |
|
2352 | 2617 | } else { |
2353 | - if (isset($result['value']) && $result['value'] != '') return $result['value']; |
|
2354 | - else return 0; |
|
2618 | + if (isset($result['value']) && $result['value'] != '') { |
|
2619 | + return $result['value']; |
|
2620 | + } else { |
|
2621 | + return 0; |
|
2622 | + } |
|
2355 | 2623 | } |
2356 | 2624 | } |
2357 | 2625 | |
2358 | - } else return $version; |
|
2626 | + } else { |
|
2627 | + return $version; |
|
2628 | + } |
|
2359 | 2629 | } |
2360 | 2630 | |
2361 | 2631 | } |
@@ -9,7 +9,7 @@ |
||
9 | 9 | if (strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') { |
10 | 10 | exec("ps ux", $output, $result); |
11 | 11 | $j = 0; |
12 | - foreach ($output as $line) if(strpos($line, dirname(__FILE__)."/update_db.php") && !strpos($line, "sh ")) $j++; |
|
12 | + foreach ($output as $line) if (strpos($line, dirname(__FILE__)."/update_db.php") && !strpos($line, "sh ")) $j++; |
|
13 | 13 | if ($j > 1) { |
14 | 14 | echo "Script is already runnning..."; |
15 | 15 | die(); |
@@ -9,7 +9,9 @@ discard block |
||
9 | 9 | if (strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') { |
10 | 10 | exec("ps ux", $output, $result); |
11 | 11 | $j = 0; |
12 | - foreach ($output as $line) if(strpos($line, dirname(__FILE__)."/update_db.php") && !strpos($line, "sh ")) $j++; |
|
12 | + foreach ($output as $line) { |
|
13 | + if(strpos($line, dirname(__FILE__)."/update_db.php") && !strpos($line, "sh ")) $j++; |
|
14 | + } |
|
13 | 15 | if ($j > 1) { |
14 | 16 | echo "Script is already runnning..."; |
15 | 17 | die(); |
@@ -29,14 +31,18 @@ discard block |
||
29 | 31 | $update_db->update_notam(); |
30 | 32 | } |
31 | 33 | $update_db->insert_last_notam_update(); |
32 | - } elseif (isset($globalDebug) && $globalDebug && isset($globalNOTAM) && $globalNOTAM) echo "NOTAM are only updated once a day.\n"; |
|
34 | + } elseif (isset($globalDebug) && $globalDebug && isset($globalNOTAM) && $globalNOTAM) { |
|
35 | + echo "NOTAM are only updated once a day.\n"; |
|
36 | + } |
|
33 | 37 | if ($update_db->check_last_update() && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) { |
34 | 38 | $update_db->update_all(); |
35 | 39 | // require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
36 | 40 | // $Spotter = new Spotter(); |
37 | 41 | // $Spotter->updateFieldsFromOtherTables(); |
38 | 42 | $update_db->insert_last_update(); |
39 | - } elseif (isset($globalDebug) && $globalDebug && (!isset($globalVA) || !$globalVA) && (!isset($globalphpVMS) || !$globalphpVMS) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM)) echo "DB are populated with external data only every 15 days ! Files are not updated more often.\n"; |
|
43 | + } elseif (isset($globalDebug) && $globalDebug && (!isset($globalVA) || !$globalVA) && (!isset($globalphpVMS) || !$globalphpVMS) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM)) { |
|
44 | + echo "DB are populated with external data only every 15 days ! Files are not updated more often.\n"; |
|
45 | + } |
|
40 | 46 | if (isset($globalWaypoints) && $globalWaypoints && $update_db->check_last_airspace_update()) { |
41 | 47 | echo "Check if new airspace version exist..."; |
42 | 48 | echo $update_db->update_airspace_fam(); |
@@ -45,8 +51,11 @@ discard block |
||
45 | 51 | if (isset($globalGeoid) && $globalGeoid && $update_db->check_last_geoid_update()) { |
46 | 52 | echo "Check if new geoid version exist..."; |
47 | 53 | $error = $update_db->update_geoid_fam(); |
48 | - if ($error == '') $update_db->insert_last_geoid_update(); |
|
49 | - else echo $error; |
|
54 | + if ($error == '') { |
|
55 | + $update_db->insert_last_geoid_update(); |
|
56 | + } else { |
|
57 | + echo $error; |
|
58 | + } |
|
50 | 59 | } |
51 | 60 | if (isset($globalMarine) && $globalMarine && $update_db->check_last_marine_identity_update()) { |
52 | 61 | echo "Check if new marine identity version exist..."; |
@@ -64,7 +73,9 @@ discard block |
||
64 | 73 | //echo "Done"; |
65 | 74 | } |
66 | 75 | $update_db->insert_last_owner_update(); |
67 | - } elseif (isset($globalDebug) && $globalDebug && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) echo "Owner are only updated every 15 days.\n"; |
|
76 | + } elseif (isset($globalDebug) && $globalDebug && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) { |
|
77 | + echo "Owner are only updated every 15 days.\n"; |
|
78 | + } |
|
68 | 79 | |
69 | 80 | if (isset($globalAccidents) && $globalAccidents && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) { |
70 | 81 | require_once(dirname(__FILE__).'/../require/class.Accident.php'); |
@@ -73,7 +84,9 @@ discard block |
||
73 | 84 | if ($Accident->check_last_accidents_update()) { |
74 | 85 | $Accident->download_update(); |
75 | 86 | $Accident->insert_last_accidents_update(); |
76 | - } else echo "Accidents are updated once a day.\n"; |
|
87 | + } else { |
|
88 | + echo "Accidents are updated once a day.\n"; |
|
89 | + } |
|
77 | 90 | } |
78 | 91 | |
79 | 92 | } |
@@ -86,15 +99,19 @@ discard block |
||
86 | 99 | if ($METAR->check_last_update()) { |
87 | 100 | $METAR->addMETARCycle(); |
88 | 101 | $METAR->insert_last_update(); |
89 | - } else echo "METAR are only updated every 30 minutes.\n"; |
|
90 | -} |
|
102 | + } else { |
|
103 | + echo "METAR are only updated every 30 minutes.\n"; |
|
104 | + } |
|
105 | + } |
|
91 | 106 | |
92 | 107 | if (isset($globalSchedules) && $globalSchedules && $update_db->check_last_schedules_update() && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) { |
93 | 108 | echo "Updating schedules..."; |
94 | 109 | //$update_db->update_oneworld(); |
95 | 110 | $update_db->update_skyteam(); |
96 | 111 | $update_db->insert_last_schedules_update(); |
97 | -} elseif (isset($globalDebug) && $globalDebug && isset($globalOwner) && $globalOwner && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) echo "Schedules are only updated every 15 days.\n"; |
|
112 | +} elseif (isset($globalDebug) && $globalDebug && isset($globalOwner) && $globalOwner && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) { |
|
113 | + echo "Schedules are only updated every 15 days.\n"; |
|
114 | +} |
|
98 | 115 | |
99 | 116 | if (isset($globalArchiveMonths) && $globalArchiveMonths > 0) { |
100 | 117 | echo "Updating statistics and archive old data..."; |
@@ -19,11 +19,11 @@ discard block |
||
19 | 19 | } |
20 | 20 | } |
21 | 21 | /** |
22 | - * Change IATA to ICAO value for ident |
|
23 | - * |
|
24 | - * @param String $ident ident |
|
25 | - * @return String the icao |
|
26 | - */ |
|
22 | + * Change IATA to ICAO value for ident |
|
23 | + * |
|
24 | + * @param String $ident ident |
|
25 | + * @return String the icao |
|
26 | + */ |
|
27 | 27 | public function ident2icao($ident) { |
28 | 28 | if (substr($ident,0,2) == 'AF') { |
29 | 29 | if (filter_var(substr($ident,2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) $icao = $ident; |
@@ -39,11 +39,11 @@ discard block |
||
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | - * Deletes all info in the live table |
|
43 | - * |
|
44 | - * @return String success or false |
|
45 | - * |
|
46 | - */ |
|
42 | + * Deletes all info in the live table |
|
43 | + * |
|
44 | + * @return String success or false |
|
45 | + * |
|
46 | + */ |
|
47 | 47 | public function deleteLiveAcarsData() |
48 | 48 | { |
49 | 49 | global $globalDBdriver; |
@@ -63,11 +63,11 @@ discard block |
||
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
66 | - * Deletes all info in the archive table |
|
67 | - * |
|
68 | - * @return String success or false |
|
69 | - * |
|
70 | - */ |
|
66 | + * Deletes all info in the archive table |
|
67 | + * |
|
68 | + * @return String success or false |
|
69 | + * |
|
70 | + */ |
|
71 | 71 | public function deleteArchiveAcarsData() |
72 | 72 | { |
73 | 73 | global $globalACARSArchiveKeepMonths, $globalDBdriver; |
@@ -88,11 +88,11 @@ discard block |
||
88 | 88 | |
89 | 89 | |
90 | 90 | /** |
91 | - * Parse ACARS data |
|
92 | - * |
|
93 | - * @param String ACARS data in acarsdec data |
|
94 | - * |
|
95 | - */ |
|
91 | + * Parse ACARS data |
|
92 | + * |
|
93 | + * @param String ACARS data in acarsdec data |
|
94 | + * |
|
95 | + */ |
|
96 | 96 | public function parse($data) { |
97 | 97 | global $globalDebug, $globalACARSArchive; |
98 | 98 | //$Image = new Image($this->db); |
@@ -722,11 +722,11 @@ discard block |
||
722 | 722 | } |
723 | 723 | |
724 | 724 | /** |
725 | - * Add ACARS data |
|
726 | - * |
|
727 | - * @param String ACARS data in acarsdec data |
|
728 | - * |
|
729 | - */ |
|
725 | + * Add ACARS data |
|
726 | + * |
|
727 | + * @param String ACARS data in acarsdec data |
|
728 | + * |
|
729 | + */ |
|
730 | 730 | function add($data) { |
731 | 731 | global $globalDebug, $globalACARSArchive; |
732 | 732 | $Image = new Image($this->db); |
@@ -773,15 +773,15 @@ discard block |
||
773 | 773 | } |
774 | 774 | |
775 | 775 | /** |
776 | - * Add Live ACARS data in DB |
|
777 | - * |
|
778 | - * @param String $ident ident |
|
779 | - * @param String $registration Registration of the aircraft |
|
780 | - * @param String $label Label of the ACARS message |
|
781 | - * @param String $block_id Block id of the ACARS message |
|
782 | - * @param String $msg_no Number of the ACARS message |
|
783 | - * @param String $message ACARS message |
|
784 | - */ |
|
776 | + * Add Live ACARS data in DB |
|
777 | + * |
|
778 | + * @param String $ident ident |
|
779 | + * @param String $registration Registration of the aircraft |
|
780 | + * @param String $label Label of the ACARS message |
|
781 | + * @param String $block_id Block id of the ACARS message |
|
782 | + * @param String $msg_no Number of the ACARS message |
|
783 | + * @param String $message ACARS message |
|
784 | + */ |
|
785 | 785 | public function addLiveAcarsData($ident,$registration,$label,$block_id,$msg_no,$message,$decode = '') { |
786 | 786 | global $globalDebug; |
787 | 787 | date_default_timezone_set('UTC'); |
@@ -817,15 +817,15 @@ discard block |
||
817 | 817 | } |
818 | 818 | |
819 | 819 | /** |
820 | - * Add Archive ACARS data in DB |
|
821 | - * |
|
822 | - * @param String $ident ident |
|
823 | - * @param String $registration Registration of the aircraft |
|
824 | - * @param String $label Label of the ACARS message |
|
825 | - * @param String $block_id Block id of the ACARS message |
|
826 | - * @param String $msg_no Number of the ACARS message |
|
827 | - * @param String $message ACARS message |
|
828 | - */ |
|
820 | + * Add Archive ACARS data in DB |
|
821 | + * |
|
822 | + * @param String $ident ident |
|
823 | + * @param String $registration Registration of the aircraft |
|
824 | + * @param String $label Label of the ACARS message |
|
825 | + * @param String $block_id Block id of the ACARS message |
|
826 | + * @param String $msg_no Number of the ACARS message |
|
827 | + * @param String $message ACARS message |
|
828 | + */ |
|
829 | 829 | public function addArchiveAcarsData($ident,$registration,$label,$block_id,$msg_no,$message,$decode = '') { |
830 | 830 | global $globalDebug; |
831 | 831 | date_default_timezone_set('UTC'); |
@@ -856,11 +856,11 @@ discard block |
||
856 | 856 | } |
857 | 857 | |
858 | 858 | /** |
859 | - * Get Message title from label from DB |
|
860 | - * |
|
861 | - * @param String $label |
|
862 | - * @return String Return ACARS title |
|
863 | - */ |
|
859 | + * Get Message title from label from DB |
|
860 | + * |
|
861 | + * @param String $label |
|
862 | + * @return String Return ACARS title |
|
863 | + */ |
|
864 | 864 | public function getTitlefromLabel($label) { |
865 | 865 | $Connection = new Connection($this->db); |
866 | 866 | $this->db = $Connection->db; |
@@ -879,10 +879,10 @@ discard block |
||
879 | 879 | } |
880 | 880 | |
881 | 881 | /** |
882 | - * List all Message title & label from DB |
|
883 | - * |
|
884 | - * @return Array Return ACARS data in array |
|
885 | - */ |
|
882 | + * List all Message title & label from DB |
|
883 | + * |
|
884 | + * @return Array Return ACARS data in array |
|
885 | + */ |
|
886 | 886 | public function getAllTitleLabel() { |
887 | 887 | $query = "SELECT * FROM acars_label ORDER BY title"; |
888 | 888 | $query_values = array(); |
@@ -899,11 +899,11 @@ discard block |
||
899 | 899 | } |
900 | 900 | |
901 | 901 | /** |
902 | - * Get Live ACARS data from DB |
|
903 | - * |
|
904 | - * @param String $ident |
|
905 | - * @return Array Return ACARS data in array |
|
906 | - */ |
|
902 | + * Get Live ACARS data from DB |
|
903 | + * |
|
904 | + * @param String $ident |
|
905 | + * @return Array Return ACARS data in array |
|
906 | + */ |
|
907 | 907 | public function getLiveAcarsData($ident) { |
908 | 908 | $query = "SELECT * FROM acars_live WHERE ident = :ident ORDER BY acars_live_id DESC"; |
909 | 909 | $query_values = array(':ident' => $ident); |
@@ -920,10 +920,10 @@ discard block |
||
920 | 920 | } |
921 | 921 | |
922 | 922 | /** |
923 | - * Get Latest ACARS data from DB |
|
924 | - * |
|
925 | - * @return Array Return ACARS data in array |
|
926 | - */ |
|
923 | + * Get Latest ACARS data from DB |
|
924 | + * |
|
925 | + * @return Array Return ACARS data in array |
|
926 | + */ |
|
927 | 927 | public function getLatestAcarsData($limit = '',$label = '') { |
928 | 928 | global $globalURL, $globalDBdriver; |
929 | 929 | $Image = new Image($this->db); |
@@ -1011,10 +1011,10 @@ discard block |
||
1011 | 1011 | } |
1012 | 1012 | |
1013 | 1013 | /** |
1014 | - * Get Archive ACARS data from DB |
|
1015 | - * |
|
1016 | - * @return Array Return ACARS data in array |
|
1017 | - */ |
|
1014 | + * Get Archive ACARS data from DB |
|
1015 | + * |
|
1016 | + * @return Array Return ACARS data in array |
|
1017 | + */ |
|
1018 | 1018 | public function getArchiveAcarsData($limit = '',$label = '') { |
1019 | 1019 | global $globalURL, $globalDBdriver; |
1020 | 1020 | $Image = new Image($this->db); |
@@ -1102,13 +1102,13 @@ discard block |
||
1102 | 1102 | } |
1103 | 1103 | |
1104 | 1104 | /** |
1105 | - * Add ModeS data to DB |
|
1106 | - * |
|
1107 | - * @param String $ident ident |
|
1108 | - * @param String $registration Registration of the aircraft |
|
1109 | - * @param String $icao |
|
1110 | - * @param String $ICAOTypeCode |
|
1111 | - */ |
|
1105 | + * Add ModeS data to DB |
|
1106 | + * |
|
1107 | + * @param String $ident ident |
|
1108 | + * @param String $registration Registration of the aircraft |
|
1109 | + * @param String $icao |
|
1110 | + * @param String $ICAOTypeCode |
|
1111 | + */ |
|
1112 | 1112 | public function addModeSData($ident,$registration,$icao = '',$ICAOTypeCode = '',$latitude = '', $longitude = '') { |
1113 | 1113 | global $globalDebug, $globalDBdriver; |
1114 | 1114 | $ident = trim($ident); |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | public $db; |
11 | 11 | public $SI; |
12 | 12 | private $fromACARSscript = false; |
13 | - public function __construct($dbc = null,$fromACARSscript = false) { |
|
13 | + public function __construct($dbc = null, $fromACARSscript = false) { |
|
14 | 14 | $Connection = new Connection($dbc); |
15 | 15 | $this->db = $Connection->db(); |
16 | 16 | if ($fromACARSscript) { |
@@ -25,14 +25,14 @@ discard block |
||
25 | 25 | * @return String the icao |
26 | 26 | */ |
27 | 27 | public function ident2icao($ident) { |
28 | - if (substr($ident,0,2) == 'AF') { |
|
29 | - if (filter_var(substr($ident,2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) $icao = $ident; |
|
30 | - else $icao = 'AFR'.ltrim(substr($ident,2),'0'); |
|
28 | + if (substr($ident, 0, 2) == 'AF') { |
|
29 | + if (filter_var(substr($ident, 2), FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) $icao = $ident; |
|
30 | + else $icao = 'AFR'.ltrim(substr($ident, 2), '0'); |
|
31 | 31 | } else { |
32 | 32 | $Spotter = new Spotter($this->db); |
33 | - $identicao = $Spotter->getAllAirlineInfo(substr($ident,0,2)); |
|
33 | + $identicao = $Spotter->getAllAirlineInfo(substr($ident, 0, 2)); |
|
34 | 34 | if (isset($identicao[0])) { |
35 | - $icao = $identicao[0]['icao'].ltrim(substr($ident,2),'0'); |
|
35 | + $icao = $identicao[0]['icao'].ltrim(substr($ident, 2), '0'); |
|
36 | 36 | } else $icao = $ident; |
37 | 37 | } |
38 | 38 | return $icao; |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | |
57 | 57 | $sth = $this->db->prepare($query); |
58 | 58 | $sth->execute(); |
59 | - } catch(PDOException $e) { |
|
59 | + } catch (PDOException $e) { |
|
60 | 60 | return "error"; |
61 | 61 | } |
62 | 62 | return "success"; |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | |
81 | 81 | $sth = $this->db->prepare($query); |
82 | 82 | $sth->execute(); |
83 | - } catch(PDOException $e) { |
|
83 | + } catch (PDOException $e) { |
|
84 | 84 | return "error"; |
85 | 85 | } |
86 | 86 | return "success"; |
@@ -105,13 +105,13 @@ discard block |
||
105 | 105 | $ident = ''; |
106 | 106 | $message = ''; |
107 | 107 | $result = array(); |
108 | - $n = sscanf($data,'(null) %*d %*02d/%*02d/%*04d %*02d:%*02d:%*02d %*d %*[0-9-] %*[A-Z0-9] %7s %*c %2[0-9a-zA-Z_] %d %4[0-9A-Z] %6[0-9A-Z] %[^\r\n]',$registration,$label,$block_id,$msg_no,$ident,$message); |
|
109 | - if ($n == 0) $n = sscanf($data,'AC%*c %7s %*c %2[0-9a-zA-Z_] %d %4[0-9A-Z] %6[0-9A-Z] %[^\r\n]',$registration,$label,$block_id,$msg_no,$ident,$message); |
|
110 | - if ($n == 0) $n = sscanf($data,'%*04d-%*02d-%*02d,%*02d:%*02d:%*02d,%*7s,%*c,%6[0-9A-Z-],%*c,%2[0-9a-zA-Z_],%d,%4[0-9A-Z],%6[0-9A-Z],%[^\r\n]',$registration,$label,$block_id,$msg_no,$ident,$message); |
|
111 | - if ($n == 0) $n = sscanf($data,'%*04d-%*02d-%*02d,%*02d:%*02d:%*02d,%*7s,%*c,%5[0-9A-Z],%*c,%2[0-9a-zA-Z_],%d,%4[0-9A-Z],%6[0-9A-Z],%[^\r\n]',$registration,$label,$block_id,$msg_no,$ident,$message); |
|
108 | + $n = sscanf($data, '(null) %*d %*02d/%*02d/%*04d %*02d:%*02d:%*02d %*d %*[0-9-] %*[A-Z0-9] %7s %*c %2[0-9a-zA-Z_] %d %4[0-9A-Z] %6[0-9A-Z] %[^\r\n]', $registration, $label, $block_id, $msg_no, $ident, $message); |
|
109 | + if ($n == 0) $n = sscanf($data, 'AC%*c %7s %*c %2[0-9a-zA-Z_] %d %4[0-9A-Z] %6[0-9A-Z] %[^\r\n]', $registration, $label, $block_id, $msg_no, $ident, $message); |
|
110 | + if ($n == 0) $n = sscanf($data, '%*04d-%*02d-%*02d,%*02d:%*02d:%*02d,%*7s,%*c,%6[0-9A-Z-],%*c,%2[0-9a-zA-Z_],%d,%4[0-9A-Z],%6[0-9A-Z],%[^\r\n]', $registration, $label, $block_id, $msg_no, $ident, $message); |
|
111 | + if ($n == 0) $n = sscanf($data, '%*04d-%*02d-%*02d,%*02d:%*02d:%*02d,%*7s,%*c,%5[0-9A-Z],%*c,%2[0-9a-zA-Z_],%d,%4[0-9A-Z],%6[0-9A-Z],%[^\r\n]', $registration, $label, $block_id, $msg_no, $ident, $message); |
|
112 | 112 | if ($n != 0) { |
113 | - $registration = str_replace('.','',$registration); |
|
114 | - $result = array('registration' => $registration, 'ident' => $ident,'label' => $label, 'block_id' => $block_id,'msg_no' => $msg_no,'message' => $message); |
|
113 | + $registration = str_replace('.', '', $registration); |
|
114 | + $result = array('registration' => $registration, 'ident' => $ident, 'label' => $label, 'block_id' => $block_id, 'msg_no' => $msg_no, 'message' => $message); |
|
115 | 115 | if ($globalDebug) echo "Reg. : ".$registration." - Ident : ".$ident." - Label : ".$label." - Message : ".$message."\n"; |
116 | 116 | } else $message = $data; |
117 | 117 | $decode = array(); |
@@ -131,14 +131,14 @@ discard block |
||
131 | 131 | $temp = ''; |
132 | 132 | $n = sscanf($message, "FST01%4c%4c%c%06d%c%07d%03d%*8[0-9a-zA-Z ]-%02dC", $dair, $darr, $lac, $la, $lnc, $ln, $alt, $temp); |
133 | 133 | if ($n > 5 && ($lac == 'N' || $lac == 'S') && ($lnc == 'E' || $lnc == 'W')) { |
134 | - $latitude = $la / 10000.0; |
|
135 | - $longitude = $ln / 10000.0; |
|
134 | + $latitude = $la/10000.0; |
|
135 | + $longitude = $ln/10000.0; |
|
136 | 136 | if ($lac == 'S') $latitude = '-'.$latitude; |
137 | 137 | if ($lnc == 'W') $longitude = '-'.$longitude; |
138 | 138 | // Temp not always available |
139 | 139 | if ($globalDebug) echo 'latitude : '.$latitude.' - longitude : '.$longitude.' - airport depart : '.$dair.' - airport arrival : '.$darr.' - température : '.$temp."°C\n"; |
140 | - if ($temp == '') $decode = array('Latitude' => $latitude, 'Longitude' => $longitude, 'Departure airport' => $dair, 'Arrival airport' => $darr,'Altitude' => $alt); |
|
141 | - else $decode = array('Latitude' => $latitude, 'Longitude' => $longitude, 'Departure airport' => $dair, 'Arrival airport' => $darr, 'Altitude' => 'FL'.$alt,'Temperature' => $temp.'°C'); |
|
140 | + if ($temp == '') $decode = array('Latitude' => $latitude, 'Longitude' => $longitude, 'Departure airport' => $dair, 'Arrival airport' => $darr, 'Altitude' => $alt); |
|
141 | + else $decode = array('Latitude' => $latitude, 'Longitude' => $longitude, 'Departure airport' => $dair, 'Arrival airport' => $darr, 'Altitude' => 'FL'.$alt, 'Temperature' => $temp.'°C'); |
|
142 | 142 | |
143 | 143 | //$icao = $Translation->checkTranslation($ident); |
144 | 144 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
@@ -150,19 +150,19 @@ discard block |
||
150 | 150 | $dhour = ''; |
151 | 151 | $darr = ''; |
152 | 152 | $ahour = ''; |
153 | - $n = sscanf($message, "ARR01 %4[A-Z]%4d %4[A-Z]%4d", $dair, $dhour, $darr,$ahour); |
|
153 | + $n = sscanf($message, "ARR01 %4[A-Z]%4d %4[A-Z]%4d", $dair, $dhour, $darr, $ahour); |
|
154 | 154 | if ($n == 4 && strlen($darr) == 4) { |
155 | - if ($dhour != '') $dhour = substr(sprintf('%04d',$dhour),0,2).':'.substr(sprintf('%04d',$dhour),2); |
|
156 | - if ($ahour != '') $ahour = substr(sprintf('%04d',$ahour),0,2).':'.substr(sprintf('%04d',$ahour),2); |
|
157 | - if ($globalDebug) echo 'departure airport : '.$dair.' - arrival airport : '. $darr.' - departure hour : '. $dhour.' - arrival hour : '.$ahour."\n"; |
|
155 | + if ($dhour != '') $dhour = substr(sprintf('%04d', $dhour), 0, 2).':'.substr(sprintf('%04d', $dhour), 2); |
|
156 | + if ($ahour != '') $ahour = substr(sprintf('%04d', $ahour), 0, 2).':'.substr(sprintf('%04d', $ahour), 2); |
|
157 | + if ($globalDebug) echo 'departure airport : '.$dair.' - arrival airport : '.$darr.' - departure hour : '.$dhour.' - arrival hour : '.$ahour."\n"; |
|
158 | 158 | //$icao = ACARS->ident2icao($ident); |
159 | 159 | //$icao = $Translation->checkTranslation($ident); |
160 | 160 | //$Schedule->addSchedule($icao,$dair,$dhour,$darr,$ahour,'ACARS'); |
161 | 161 | $decode = array('Departure airport' => $dair, 'Departure hour' => $dhour, 'Arrival airport' => $darr, 'Arrival hour' => $ahour); |
162 | 162 | $found = true; |
163 | 163 | } |
164 | - elseif ($n == 2 || $n == 4) { |
|
165 | - if ($dhour != '') $dhour = substr(sprintf('%04d',$dhour),0,2).':'.substr(sprintf('%04d',$dhour),2); |
|
164 | + elseif ($n == 2 || $n == 4) { |
|
165 | + if ($dhour != '') $dhour = substr(sprintf('%04d', $dhour), 0, 2).':'.substr(sprintf('%04d', $dhour), 2); |
|
166 | 166 | if ($globalDebug) echo 'airport arrival : '.$dair.' - arrival hour : '.$dhour."\n"; |
167 | 167 | //$icao = ACARS->ident2icao($ident); |
168 | 168 | //$icao = $Translation->checkTranslation($ident); |
@@ -220,11 +220,11 @@ discard block |
||
220 | 220 | $ahour = ''; |
221 | 221 | $aair = ''; |
222 | 222 | $apiste = ''; |
223 | - $n = sscanf(str_replace(array("\r\n", "\n", "\r"),'',$message), "%*[0-9A-Z]/%*3d/%4s/%*cSCH/%6[0-9A-Z ]/%4c/%4c/%5s/%4d%*3c/%4d/%4c/%[0-9A-Z ]/", $airicao,$aident,$dair, $darr, $ddate, $dhour,$ahour, $aair, $apiste); |
|
223 | + $n = sscanf(str_replace(array("\r\n", "\n", "\r"), '', $message), "%*[0-9A-Z]/%*3d/%4s/%*cSCH/%6[0-9A-Z ]/%4c/%4c/%5s/%4d%*3c/%4d/%4c/%[0-9A-Z ]/", $airicao, $aident, $dair, $darr, $ddate, $dhour, $ahour, $aair, $apiste); |
|
224 | 224 | if ($n > 8) { |
225 | - if ($globalDebug) echo 'airicao : '. $airicao.' - ident : '.$aident.' - departure airport : '.$dair.' - arrival airport : '. $darr.' - date depart : '.$ddate.' - departure hour : '. $dhour.' - arrival hour : '.$ahour.' - arrival airport : '.$aair.' - arrival piste : '.$apiste."\n"; |
|
226 | - if ($dhour != '') $dhour = substr(sprintf('%04d',$dhour),0,2).':'.substr(sprintf('%04d',$dhour),2); |
|
227 | - if ($ahour != '') $ahour = substr(sprintf('%04d',$ahour),0,2).':'.substr(sprintf('%04d',$ahour),2); |
|
225 | + if ($globalDebug) echo 'airicao : '.$airicao.' - ident : '.$aident.' - departure airport : '.$dair.' - arrival airport : '.$darr.' - date depart : '.$ddate.' - departure hour : '.$dhour.' - arrival hour : '.$ahour.' - arrival airport : '.$aair.' - arrival piste : '.$apiste."\n"; |
|
226 | + if ($dhour != '') $dhour = substr(sprintf('%04d', $dhour), 0, 2).':'.substr(sprintf('%04d', $dhour), 2); |
|
227 | + if ($ahour != '') $ahour = substr(sprintf('%04d', $ahour), 0, 2).':'.substr(sprintf('%04d', $ahour), 2); |
|
228 | 228 | $icao = trim($aident); |
229 | 229 | |
230 | 230 | //$decode = 'Departure airport : '.$dair.' ('.$ddate.' at '.$dhour.') - Arrival Airport : '.$aair.' (at '.$ahour.') way '.$apiste; |
@@ -249,8 +249,8 @@ discard block |
||
249 | 249 | if ($n == 10 && ($lac == 'N' || $lac == 'S') && ($lnc == 'E' || $lnc == 'W')) { |
250 | 250 | $las = $las.'.'.$lass; |
251 | 251 | $lns = $lns.'.'.$lns; |
252 | - $latitude = $las / 1000.0; |
|
253 | - $longitude = $lns / 1000.0; |
|
252 | + $latitude = $las/1000.0; |
|
253 | + $longitude = $lns/1000.0; |
|
254 | 254 | if ($lac == 'S') $latitude = '-'.$latitude; |
255 | 255 | if ($lnc == 'W') $longitude = '-'.$longitude; |
256 | 256 | if ($globalDebug) echo 'latitude : '.$latitude.' - longitude : '.$longitude."\n"; |
@@ -345,17 +345,17 @@ discard block |
||
345 | 345 | $alt = ''; |
346 | 346 | $fuel = ''; |
347 | 347 | $speed = ''; |
348 | - $n = sscanf(str_replace(array("\r\n", "\n", "\r"),'',$message), "#DFB(POS-%s -%4d%c%5d%c/%*d F%dRMK/FUEL %f M%f", $aident, $las, $lac, $lns, $lnc, $alt, $fuel, $speed); |
|
348 | + $n = sscanf(str_replace(array("\r\n", "\n", "\r"), '', $message), "#DFB(POS-%s -%4d%c%5d%c/%*d F%dRMK/FUEL %f M%f", $aident, $las, $lac, $lns, $lnc, $alt, $fuel, $speed); |
|
349 | 349 | if ($n == 9) { |
350 | 350 | //if (self->$debug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
351 | 351 | $icao = trim($aident); |
352 | 352 | $decode['icao'] = $icao; |
353 | - $latitude = $las / 100.0; |
|
354 | - $longitude = $lns / 100.0; |
|
353 | + $latitude = $las/100.0; |
|
354 | + $longitude = $lns/100.0; |
|
355 | 355 | if ($lac == 'S') $latitude = '-'.$latitude; |
356 | 356 | if ($lnc == 'W') $longitude = '-'.$longitude; |
357 | 357 | |
358 | - $decode = array('Latitude' => $latitude,'Longitude' => $longitude,'Altitude' => 'FL'.$alt,'Fuel' => $fuel,'speed' => $speed); |
|
358 | + $decode = array('Latitude' => $latitude, 'Longitude' => $longitude, 'Altitude' => 'FL'.$alt, 'Fuel' => $fuel, 'speed' => $speed); |
|
359 | 359 | $found = true; |
360 | 360 | } |
361 | 361 | } |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | if ($lac == 'S') $latitude = '-'.$latitude; |
375 | 375 | if ($lnc == 'W') $longitude = '-'.$longitude; |
376 | 376 | |
377 | - $decode = array('Latitude' => $latitude,'Longitude' => $longitude); |
|
377 | + $decode = array('Latitude' => $latitude, 'Longitude' => $longitude); |
|
378 | 378 | $found = true; |
379 | 379 | } |
380 | 380 | } |
@@ -407,7 +407,7 @@ discard block |
||
407 | 407 | $dair = ''; |
408 | 408 | $darr = ''; |
409 | 409 | $aident = ''; |
410 | - $n = sscanf(str_replace(array("\r\n", "\n", "\r"),'',$message), "%*[0-9A-Z],,%*[0-9A-Z],%*[0-9A-Z],%4s,%4s,.%*6s,%*4[A-Z],%[0-9A-Z],", $dair, $darr, $aident); |
|
410 | + $n = sscanf(str_replace(array("\r\n", "\n", "\r"), '', $message), "%*[0-9A-Z],,%*[0-9A-Z],%*[0-9A-Z],%4s,%4s,.%*6s,%*4[A-Z],%[0-9A-Z],", $dair, $darr, $aident); |
|
411 | 411 | if ($n == 8) { |
412 | 412 | if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
413 | 413 | $icao = trim($aident); |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | */ |
440 | 440 | $dair = ''; |
441 | 441 | $darr = ''; |
442 | - $n = sscanf($message,'%4[A-Z]%4[A-Z]%*4d',$dair,$darr); |
|
442 | + $n = sscanf($message, '%4[A-Z]%4[A-Z]%*4d', $dair, $darr); |
|
443 | 443 | if ($n == 3) { |
444 | 444 | if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
445 | 445 | //$icao = $Translation->checkTranslation($ident); |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | */ |
455 | 455 | $dair = ''; |
456 | 456 | $darr = ''; |
457 | - $n = sscanf($message,'3J01 DSPTCH %*d/%*d %4s/%4s .%*6s',$dair,$darr); |
|
457 | + $n = sscanf($message, '3J01 DSPTCH %*d/%*d %4s/%4s .%*6s', $dair, $darr); |
|
458 | 458 | if ($n == 3) { |
459 | 459 | if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
460 | 460 | //$icao = $Translation->checkTranslation($ident); |
@@ -464,7 +464,7 @@ discard block |
||
464 | 464 | } |
465 | 465 | } |
466 | 466 | if (!$found) { |
467 | - $n = sscanf($message,'MET01%4c',$airport); |
|
467 | + $n = sscanf($message, 'MET01%4c', $airport); |
|
468 | 468 | if ($n == 1) { |
469 | 469 | if ($globalDebug) echo 'airport name : '.$airport; |
470 | 470 | $decode = array('Airport/Waypoint name' => $airport); |
@@ -472,241 +472,241 @@ discard block |
||
472 | 472 | } |
473 | 473 | } |
474 | 474 | if ($label == 'H1') { |
475 | - if (preg_match('/^#CFBFLR/',$message) || preg_match('/^#CFBWRN/',$message)) { |
|
476 | - $decode = array_merge(array('Message nature' => 'Equipment failure'),$decode); |
|
475 | + if (preg_match('/^#CFBFLR/', $message) || preg_match('/^#CFBWRN/', $message)) { |
|
476 | + $decode = array_merge(array('Message nature' => 'Equipment failure'), $decode); |
|
477 | 477 | } |
478 | - elseif (preg_match('/^#DFB\*TKO/',$message) || preg_match('/^#DFBTKO/',$message)) { |
|
479 | - $decode = array_merge(array('Message nature' => 'Take off performance data'),$decode); |
|
478 | + elseif (preg_match('/^#DFB\*TKO/', $message) || preg_match('/^#DFBTKO/', $message)) { |
|
479 | + $decode = array_merge(array('Message nature' => 'Take off performance data'), $decode); |
|
480 | 480 | } |
481 | - elseif (preg_match('/^#DFB\*CRZ/',$message) || preg_match('/^#DFBCRZ/',$message)) { |
|
482 | - $decode = array_merge(array('Message nature' => 'Cruise performance data'),$decode); |
|
481 | + elseif (preg_match('/^#DFB\*CRZ/', $message) || preg_match('/^#DFBCRZ/', $message)) { |
|
482 | + $decode = array_merge(array('Message nature' => 'Cruise performance data'), $decode); |
|
483 | 483 | } |
484 | - elseif (preg_match('/^#DFB\*WOB/',$message) || preg_match('/^#DFBWOB/',$message)) { |
|
485 | - $decode = array_merge(array('Message nature' => 'Weather observation'),$decode); |
|
484 | + elseif (preg_match('/^#DFB\*WOB/', $message) || preg_match('/^#DFBWOB/', $message)) { |
|
485 | + $decode = array_merge(array('Message nature' => 'Weather observation'), $decode); |
|
486 | 486 | } |
487 | - elseif (preg_match(':^#DFB/PIREP:',$message)) { |
|
488 | - $decode = array_merge(array('Message nature' => 'Pilot Report'),$decode); |
|
487 | + elseif (preg_match(':^#DFB/PIREP:', $message)) { |
|
488 | + $decode = array_merge(array('Message nature' => 'Pilot Report'), $decode); |
|
489 | 489 | } |
490 | - elseif (preg_match('/^#DFBEDA/',$message) || preg_match('/^#DFBENG/',$message)) { |
|
491 | - $decode = array_merge(array('Message nature' => 'Engine Data'),$decode); |
|
490 | + elseif (preg_match('/^#DFBEDA/', $message) || preg_match('/^#DFBENG/', $message)) { |
|
491 | + $decode = array_merge(array('Message nature' => 'Engine Data'), $decode); |
|
492 | 492 | } |
493 | - elseif (preg_match(':^#M1AAEP:',$message)) { |
|
494 | - $decode = array_merge(array('Message nature' => 'Position/Weather Report'),$decode); |
|
493 | + elseif (preg_match(':^#M1AAEP:', $message)) { |
|
494 | + $decode = array_merge(array('Message nature' => 'Position/Weather Report'), $decode); |
|
495 | 495 | } |
496 | - elseif (preg_match(':^#M2APWD:',$message)) { |
|
497 | - $decode = array_merge(array('Message nature' => 'Flight plan predicted wind data'),$decode); |
|
496 | + elseif (preg_match(':^#M2APWD:', $message)) { |
|
497 | + $decode = array_merge(array('Message nature' => 'Flight plan predicted wind data'), $decode); |
|
498 | 498 | } |
499 | - elseif (preg_match(':^#M1BREQPWI:',$message)) { |
|
500 | - $decode = array_merge(array('Message nature' => 'Predicted wind info request'),$decode); |
|
499 | + elseif (preg_match(':^#M1BREQPWI:', $message)) { |
|
500 | + $decode = array_merge(array('Message nature' => 'Predicted wind info request'), $decode); |
|
501 | 501 | } |
502 | - elseif (preg_match(':^#CF:',$message)) { |
|
503 | - $decode = array_merge(array('Message nature' => 'Central Fault Display'),$decode); |
|
502 | + elseif (preg_match(':^#CF:', $message)) { |
|
503 | + $decode = array_merge(array('Message nature' => 'Central Fault Display'), $decode); |
|
504 | 504 | } |
505 | - elseif (preg_match(':^#DF:',$message)) { |
|
506 | - $decode = array_merge(array('Message nature' => 'Digital Flight Data Acquisition Unit'),$decode); |
|
505 | + elseif (preg_match(':^#DF:', $message)) { |
|
506 | + $decode = array_merge(array('Message nature' => 'Digital Flight Data Acquisition Unit'), $decode); |
|
507 | 507 | } |
508 | - elseif (preg_match(':^#EC:',$message)) { |
|
509 | - $decode = array_merge(array('Message nature' => 'Engine Display System'),$decode); |
|
508 | + elseif (preg_match(':^#EC:', $message)) { |
|
509 | + $decode = array_merge(array('Message nature' => 'Engine Display System'), $decode); |
|
510 | 510 | } |
511 | - elseif (preg_match(':^#EI:',$message)) { |
|
512 | - $decode = array_merge(array('Message nature' => 'Engine Report'),$decode); |
|
511 | + elseif (preg_match(':^#EI:', $message)) { |
|
512 | + $decode = array_merge(array('Message nature' => 'Engine Report'), $decode); |
|
513 | 513 | } |
514 | - elseif (preg_match(':^#H1:',$message)) { |
|
515 | - $decode = array_merge(array('Message nature' => 'HF Data Radio - Left'),$decode); |
|
514 | + elseif (preg_match(':^#H1:', $message)) { |
|
515 | + $decode = array_merge(array('Message nature' => 'HF Data Radio - Left'), $decode); |
|
516 | 516 | } |
517 | - elseif (preg_match(':^#H2:',$message)) { |
|
518 | - $decode = array_merge(array('Message nature' => 'HF Data Radio - Right'),$decode); |
|
517 | + elseif (preg_match(':^#H2:', $message)) { |
|
518 | + $decode = array_merge(array('Message nature' => 'HF Data Radio - Right'), $decode); |
|
519 | 519 | } |
520 | - elseif (preg_match(':^#HD:',$message)) { |
|
521 | - $decode = array_merge(array('Message nature' => 'HF Data Radio - Selected'),$decode); |
|
520 | + elseif (preg_match(':^#HD:', $message)) { |
|
521 | + $decode = array_merge(array('Message nature' => 'HF Data Radio - Selected'), $decode); |
|
522 | 522 | } |
523 | - elseif (preg_match(':^#M1:',$message)) { |
|
524 | - $decode = array_merge(array('Message nature' => 'Flight Management Computer - Left'),$decode); |
|
523 | + elseif (preg_match(':^#M1:', $message)) { |
|
524 | + $decode = array_merge(array('Message nature' => 'Flight Management Computer - Left'), $decode); |
|
525 | 525 | } |
526 | - elseif (preg_match(':^#M2:',$message)) { |
|
527 | - $decode = array_merge(array('Message nature' => 'Flight Management Computer - Right'),$decode); |
|
526 | + elseif (preg_match(':^#M2:', $message)) { |
|
527 | + $decode = array_merge(array('Message nature' => 'Flight Management Computer - Right'), $decode); |
|
528 | 528 | } |
529 | - elseif (preg_match(':^#M3:',$message)) { |
|
530 | - $decode = array_merge(array('Message nature' => 'Flight Management Computer - Center'),$decode); |
|
529 | + elseif (preg_match(':^#M3:', $message)) { |
|
530 | + $decode = array_merge(array('Message nature' => 'Flight Management Computer - Center'), $decode); |
|
531 | 531 | } |
532 | - elseif (preg_match(':^#MD:',$message)) { |
|
533 | - $decode = array_merge(array('Message nature' => 'Flight Management Computer - Selected'),$decode); |
|
532 | + elseif (preg_match(':^#MD:', $message)) { |
|
533 | + $decode = array_merge(array('Message nature' => 'Flight Management Computer - Selected'), $decode); |
|
534 | 534 | } |
535 | - elseif (preg_match(':^#PS:',$message)) { |
|
536 | - $decode = array_merge(array('Message nature' => 'Keyboard/Display Unit'),$decode); |
|
535 | + elseif (preg_match(':^#PS:', $message)) { |
|
536 | + $decode = array_merge(array('Message nature' => 'Keyboard/Display Unit'), $decode); |
|
537 | 537 | } |
538 | - elseif (preg_match(':^#S1:',$message)) { |
|
539 | - $decode = array_merge(array('Message nature' => 'SDU - Left'),$decode); |
|
538 | + elseif (preg_match(':^#S1:', $message)) { |
|
539 | + $decode = array_merge(array('Message nature' => 'SDU - Left'), $decode); |
|
540 | 540 | } |
541 | - elseif (preg_match(':^#S2:',$message)) { |
|
542 | - $decode = array_merge(array('Message nature' => 'SDU - Right'),$decode); |
|
541 | + elseif (preg_match(':^#S2:', $message)) { |
|
542 | + $decode = array_merge(array('Message nature' => 'SDU - Right'), $decode); |
|
543 | 543 | } |
544 | - elseif (preg_match(':^#SD:',$message)) { |
|
545 | - $decode = array_merge(array('Message nature' => 'SDU - Selected'),$decode); |
|
544 | + elseif (preg_match(':^#SD:', $message)) { |
|
545 | + $decode = array_merge(array('Message nature' => 'SDU - Selected'), $decode); |
|
546 | 546 | } |
547 | - elseif (preg_match(':^#T[0-8]:',$message)) { |
|
548 | - $decode = array_merge(array('Message nature' => 'Cabin Terminal Messages'),$decode); |
|
547 | + elseif (preg_match(':^#T[0-8]:', $message)) { |
|
548 | + $decode = array_merge(array('Message nature' => 'Cabin Terminal Messages'), $decode); |
|
549 | 549 | } |
550 | - elseif (preg_match(':^#WO:',$message)) { |
|
551 | - $decode = array_merge(array('Message nature' => 'Weather Observation Report'),$decode); |
|
550 | + elseif (preg_match(':^#WO:', $message)) { |
|
551 | + $decode = array_merge(array('Message nature' => 'Weather Observation Report'), $decode); |
|
552 | 552 | } |
553 | - elseif (preg_match(':^#A1:',$message)) { |
|
554 | - $decode = array_merge(array('Message nature' => 'Oceanic Clearance'),$decode); |
|
553 | + elseif (preg_match(':^#A1:', $message)) { |
|
554 | + $decode = array_merge(array('Message nature' => 'Oceanic Clearance'), $decode); |
|
555 | 555 | } |
556 | - elseif (preg_match(':^#A3:',$message)) { |
|
557 | - $decode = array_merge(array('Message nature' => 'Departure Clearance Response'),$decode); |
|
556 | + elseif (preg_match(':^#A3:', $message)) { |
|
557 | + $decode = array_merge(array('Message nature' => 'Departure Clearance Response'), $decode); |
|
558 | 558 | } |
559 | - elseif (preg_match(':^#A4:',$message)) { |
|
560 | - $decode = array_merge(array('Message nature' => 'Flight Systems Message'),$decode); |
|
559 | + elseif (preg_match(':^#A4:', $message)) { |
|
560 | + $decode = array_merge(array('Message nature' => 'Flight Systems Message'), $decode); |
|
561 | 561 | } |
562 | - elseif (preg_match(':^#A6:',$message)) { |
|
563 | - $decode = array_merge(array('Message nature' => 'Request ADS Reports'),$decode); |
|
562 | + elseif (preg_match(':^#A6:', $message)) { |
|
563 | + $decode = array_merge(array('Message nature' => 'Request ADS Reports'), $decode); |
|
564 | 564 | } |
565 | - elseif (preg_match(':^#A8:',$message)) { |
|
566 | - $decode = array_merge(array('Message nature' => 'Deliver Departure Slot'),$decode); |
|
565 | + elseif (preg_match(':^#A8:', $message)) { |
|
566 | + $decode = array_merge(array('Message nature' => 'Deliver Departure Slot'), $decode); |
|
567 | 567 | } |
568 | - elseif (preg_match(':^#A9:',$message)) { |
|
569 | - $decode = array_merge(array('Message nature' => 'ATIS report'),$decode); |
|
568 | + elseif (preg_match(':^#A9:', $message)) { |
|
569 | + $decode = array_merge(array('Message nature' => 'ATIS report'), $decode); |
|
570 | 570 | } |
571 | - elseif (preg_match(':^#A0:',$message)) { |
|
572 | - $decode = array_merge(array('Message nature' => 'ATIS Facility Notification (AFN)'),$decode); |
|
571 | + elseif (preg_match(':^#A0:', $message)) { |
|
572 | + $decode = array_merge(array('Message nature' => 'ATIS Facility Notification (AFN)'), $decode); |
|
573 | 573 | } |
574 | - elseif (preg_match(':^#AA:',$message)) { |
|
575 | - $decode = array_merge(array('Message nature' => 'ATCComm'),$decode); |
|
574 | + elseif (preg_match(':^#AA:', $message)) { |
|
575 | + $decode = array_merge(array('Message nature' => 'ATCComm'), $decode); |
|
576 | 576 | } |
577 | - elseif (preg_match(':^#AB:',$message)) { |
|
578 | - $decode = array_merge(array('Message nature' => 'TWIP Report'),$decode); |
|
577 | + elseif (preg_match(':^#AB:', $message)) { |
|
578 | + $decode = array_merge(array('Message nature' => 'TWIP Report'), $decode); |
|
579 | 579 | } |
580 | - elseif (preg_match(':^#AC:',$message)) { |
|
581 | - $decode = array_merge(array('Message nature' => 'Pushback Clearance'),$decode); |
|
580 | + elseif (preg_match(':^#AC:', $message)) { |
|
581 | + $decode = array_merge(array('Message nature' => 'Pushback Clearance'), $decode); |
|
582 | 582 | } |
583 | - elseif (preg_match(':^#AD:',$message)) { |
|
584 | - $decode = array_merge(array('Message nature' => 'Expected Taxi Clearance'),$decode); |
|
583 | + elseif (preg_match(':^#AD:', $message)) { |
|
584 | + $decode = array_merge(array('Message nature' => 'Expected Taxi Clearance'), $decode); |
|
585 | 585 | } |
586 | - elseif (preg_match(':^#AF:',$message)) { |
|
587 | - $decode = array_merge(array('Message nature' => 'CPC Command/Response'),$decode); |
|
586 | + elseif (preg_match(':^#AF:', $message)) { |
|
587 | + $decode = array_merge(array('Message nature' => 'CPC Command/Response'), $decode); |
|
588 | 588 | } |
589 | - elseif (preg_match(':^#B1:',$message)) { |
|
590 | - $decode = array_merge(array('Message nature' => 'Request Oceanic Clearance'),$decode); |
|
589 | + elseif (preg_match(':^#B1:', $message)) { |
|
590 | + $decode = array_merge(array('Message nature' => 'Request Oceanic Clearance'), $decode); |
|
591 | 591 | } |
592 | - elseif (preg_match(':^#B2:',$message)) { |
|
593 | - $decode = array_merge(array('Message nature' => 'Oceanic Clearance Readback'),$decode); |
|
592 | + elseif (preg_match(':^#B2:', $message)) { |
|
593 | + $decode = array_merge(array('Message nature' => 'Oceanic Clearance Readback'), $decode); |
|
594 | 594 | } |
595 | - elseif (preg_match(':^#B3:',$message)) { |
|
596 | - $decode = array_merge(array('Message nature' => 'Request Departure Clearance'),$decode); |
|
595 | + elseif (preg_match(':^#B3:', $message)) { |
|
596 | + $decode = array_merge(array('Message nature' => 'Request Departure Clearance'), $decode); |
|
597 | 597 | } |
598 | - elseif (preg_match(':^#B4:',$message)) { |
|
599 | - $decode = array_merge(array('Message nature' => 'Departure Clearance Readback'),$decode); |
|
598 | + elseif (preg_match(':^#B4:', $message)) { |
|
599 | + $decode = array_merge(array('Message nature' => 'Departure Clearance Readback'), $decode); |
|
600 | 600 | } |
601 | - elseif (preg_match(':^#B6:',$message)) { |
|
602 | - $decode = array_merge(array('Message nature' => 'Provide ADS Report'),$decode); |
|
601 | + elseif (preg_match(':^#B6:', $message)) { |
|
602 | + $decode = array_merge(array('Message nature' => 'Provide ADS Report'), $decode); |
|
603 | 603 | } |
604 | - elseif (preg_match(':^#B8:',$message)) { |
|
605 | - $decode = array_merge(array('Message nature' => 'Request Departure Slot'),$decode); |
|
604 | + elseif (preg_match(':^#B8:', $message)) { |
|
605 | + $decode = array_merge(array('Message nature' => 'Request Departure Slot'), $decode); |
|
606 | 606 | } |
607 | - elseif (preg_match(':^#B9:',$message)) { |
|
608 | - $decode = array_merge(array('Message nature' => 'Request ATIS Report'),$decode); |
|
607 | + elseif (preg_match(':^#B9:', $message)) { |
|
608 | + $decode = array_merge(array('Message nature' => 'Request ATIS Report'), $decode); |
|
609 | 609 | } |
610 | - elseif (preg_match(':^#B0:',$message)) { |
|
611 | - $decode = array_merge(array('Message nature' => 'ATS Facility Notification'),$decode); |
|
610 | + elseif (preg_match(':^#B0:', $message)) { |
|
611 | + $decode = array_merge(array('Message nature' => 'ATS Facility Notification'), $decode); |
|
612 | 612 | } |
613 | - elseif (preg_match(':^#BA:',$message)) { |
|
614 | - $decode = array_merge(array('Message nature' => 'ATCComm'),$decode); |
|
613 | + elseif (preg_match(':^#BA:', $message)) { |
|
614 | + $decode = array_merge(array('Message nature' => 'ATCComm'), $decode); |
|
615 | 615 | } |
616 | - elseif (preg_match(':^#BB:',$message)) { |
|
617 | - $decode = array_merge(array('Message nature' => 'Request TWIP Report'),$decode); |
|
616 | + elseif (preg_match(':^#BB:', $message)) { |
|
617 | + $decode = array_merge(array('Message nature' => 'Request TWIP Report'), $decode); |
|
618 | 618 | } |
619 | - elseif (preg_match(':^#BC:',$message)) { |
|
620 | - $decode = array_merge(array('Message nature' => 'Pushback Clearance Request'),$decode); |
|
619 | + elseif (preg_match(':^#BC:', $message)) { |
|
620 | + $decode = array_merge(array('Message nature' => 'Pushback Clearance Request'), $decode); |
|
621 | 621 | } |
622 | - elseif (preg_match(':^#BD:',$message)) { |
|
623 | - $decode = array_merge(array('Message nature' => 'Expected Taxi Clearance Request'),$decode); |
|
622 | + elseif (preg_match(':^#BD:', $message)) { |
|
623 | + $decode = array_merge(array('Message nature' => 'Expected Taxi Clearance Request'), $decode); |
|
624 | 624 | } |
625 | - elseif (preg_match(':^#BE:',$message)) { |
|
626 | - $decode = array_merge(array('Message nature' => 'CPC Aircraft Log-On/Off Request'),$decode); |
|
625 | + elseif (preg_match(':^#BE:', $message)) { |
|
626 | + $decode = array_merge(array('Message nature' => 'CPC Aircraft Log-On/Off Request'), $decode); |
|
627 | 627 | } |
628 | - elseif (preg_match(':^#BF:',$message)) { |
|
629 | - $decode = array_merge(array('Message nature' => 'CPC WILCO/UNABLE Response'),$decode); |
|
628 | + elseif (preg_match(':^#BF:', $message)) { |
|
629 | + $decode = array_merge(array('Message nature' => 'CPC WILCO/UNABLE Response'), $decode); |
|
630 | 630 | } |
631 | - elseif (preg_match(':^#H3:',$message)) { |
|
632 | - $decode = array_merge(array('Message nature' => 'Icing Report'),$decode); |
|
631 | + elseif (preg_match(':^#H3:', $message)) { |
|
632 | + $decode = array_merge(array('Message nature' => 'Icing Report'), $decode); |
|
633 | 633 | } |
634 | 634 | } |
635 | 635 | if ($label == '10') { |
636 | - if (preg_match(':^DTO01:',$message)) { |
|
637 | - $decode = array_merge(array('Message nature' => 'Delayed Takeoff Report'),$decode); |
|
636 | + if (preg_match(':^DTO01:', $message)) { |
|
637 | + $decode = array_merge(array('Message nature' => 'Delayed Takeoff Report'), $decode); |
|
638 | 638 | } |
639 | - elseif (preg_match(':^AIS01:',$message)) { |
|
640 | - $decode = array_merge(array('Message nature' => 'AIS Request'),$decode); |
|
639 | + elseif (preg_match(':^AIS01:', $message)) { |
|
640 | + $decode = array_merge(array('Message nature' => 'AIS Request'), $decode); |
|
641 | 641 | } |
642 | - elseif (preg_match(':^FTX01:',$message)) { |
|
643 | - $decode = array_merge(array('Message nature' => 'Free Text Downlink'),$decode); |
|
642 | + elseif (preg_match(':^FTX01:', $message)) { |
|
643 | + $decode = array_merge(array('Message nature' => 'Free Text Downlink'), $decode); |
|
644 | 644 | } |
645 | - elseif (preg_match(':^FPL01:',$message)) { |
|
646 | - $decode = array_merge(array('Message nature' => 'Flight Plan Request'),$decode); |
|
645 | + elseif (preg_match(':^FPL01:', $message)) { |
|
646 | + $decode = array_merge(array('Message nature' => 'Flight Plan Request'), $decode); |
|
647 | 647 | } |
648 | - elseif (preg_match(':^WAB01:',$message)) { |
|
649 | - $decode = array_merge(array('Message nature' => 'Weight & Balance Request'),$decode); |
|
648 | + elseif (preg_match(':^WAB01:', $message)) { |
|
649 | + $decode = array_merge(array('Message nature' => 'Weight & Balance Request'), $decode); |
|
650 | 650 | } |
651 | - elseif (preg_match(':^MET01:',$message)) { |
|
652 | - $decode = array_merge(array('Message nature' => 'Weather Data Request'),$decode); |
|
651 | + elseif (preg_match(':^MET01:', $message)) { |
|
652 | + $decode = array_merge(array('Message nature' => 'Weather Data Request'), $decode); |
|
653 | 653 | } |
654 | - elseif (preg_match(':^WAB02:',$message)) { |
|
655 | - $decode = array_merge(array('Message nature' => 'Weight and Balance Acknowledgement'),$decode); |
|
654 | + elseif (preg_match(':^WAB02:', $message)) { |
|
655 | + $decode = array_merge(array('Message nature' => 'Weight and Balance Acknowledgement'), $decode); |
|
656 | 656 | } |
657 | 657 | } |
658 | 658 | if ($label == '15') { |
659 | - if (preg_match(':^FST01:',$message)) { |
|
660 | - $decode = array_merge(array('Message nature' => 'Flight Status Report'),$decode); |
|
659 | + if (preg_match(':^FST01:', $message)) { |
|
660 | + $decode = array_merge(array('Message nature' => 'Flight Status Report'), $decode); |
|
661 | 661 | } |
662 | 662 | } |
663 | 663 | if (!$found && $label == 'SA') { |
664 | - $n = sscanf($message, "%d%c%c%6[0-9]", $version,$state,$type,$at); |
|
664 | + $n = sscanf($message, "%d%c%c%6[0-9]", $version, $state, $type, $at); |
|
665 | 665 | if ($n == 4) { |
666 | 666 | $vsta = array('Version' => $version); |
667 | 667 | if ($state == 'E') { |
668 | - $vsta = array_merge($vsta,array('Link state' => 'Established')); |
|
668 | + $vsta = array_merge($vsta, array('Link state' => 'Established')); |
|
669 | 669 | } |
670 | 670 | elseif ($state == 'L') { |
671 | - $vsta = array_merge($vsta,array('Link state' => 'Lost')); |
|
671 | + $vsta = array_merge($vsta, array('Link state' => 'Lost')); |
|
672 | 672 | } |
673 | 673 | else { |
674 | - $vsta = array_merge($vsta,array('Link state' => 'Unknown')); |
|
674 | + $vsta = array_merge($vsta, array('Link state' => 'Unknown')); |
|
675 | 675 | } |
676 | 676 | if ($type == 'V') { |
677 | - $vsta = array_merge($vsta,array('Link type' => 'VHF ACARS')); |
|
677 | + $vsta = array_merge($vsta, array('Link type' => 'VHF ACARS')); |
|
678 | 678 | } |
679 | 679 | elseif ($type == 'S') { |
680 | - $vsta = array_merge($vsta,array('Link type' => 'Generic SATCOM')); |
|
680 | + $vsta = array_merge($vsta, array('Link type' => 'Generic SATCOM')); |
|
681 | 681 | } |
682 | 682 | elseif ($type == 'H') { |
683 | - $vsta = array_merge($vsta,array('Link type' => 'HF')); |
|
683 | + $vsta = array_merge($vsta, array('Link type' => 'HF')); |
|
684 | 684 | } |
685 | 685 | elseif ($type == 'G') { |
686 | - $vsta = array_merge($vsta,array('Link type' => 'GlobalStar SATCOM')); |
|
686 | + $vsta = array_merge($vsta, array('Link type' => 'GlobalStar SATCOM')); |
|
687 | 687 | } |
688 | 688 | elseif ($type == 'C') { |
689 | - $vsta = array_merge($vsta,array('Link type' => 'ICO SATCOM')); |
|
689 | + $vsta = array_merge($vsta, array('Link type' => 'ICO SATCOM')); |
|
690 | 690 | } |
691 | 691 | elseif ($type == '2') { |
692 | - $vsta = array_merge($vsta,array('Link type' => 'VDL Mode 2')); |
|
692 | + $vsta = array_merge($vsta, array('Link type' => 'VDL Mode 2')); |
|
693 | 693 | } |
694 | 694 | elseif ($type == 'X') { |
695 | - $vsta = array_merge($vsta,array('Link type' => 'Inmarsat Aero')); |
|
695 | + $vsta = array_merge($vsta, array('Link type' => 'Inmarsat Aero')); |
|
696 | 696 | } |
697 | 697 | elseif ($type == 'I') { |
698 | - $vsta = array_merge($vsta,array('Link type' => 'Irridium SATCOM')); |
|
698 | + $vsta = array_merge($vsta, array('Link type' => 'Irridium SATCOM')); |
|
699 | 699 | } |
700 | 700 | else { |
701 | - $vsta = array_merge($vsta,array('Link type' => 'Unknown')); |
|
701 | + $vsta = array_merge($vsta, array('Link type' => 'Unknown')); |
|
702 | 702 | } |
703 | - $vsta = array_merge($vsta,array('Event occured at' => implode(':',str_split($at,2)))); |
|
704 | - $decode = array_merge($vsta,$decode); |
|
703 | + $vsta = array_merge($vsta, array('Event occured at' => implode(':', str_split($at, 2)))); |
|
704 | + $decode = array_merge($vsta, $decode); |
|
705 | 705 | } |
706 | 706 | } |
707 | 707 | |
708 | 708 | $title = $this->getTitlefromLabel($label); |
709 | - if ($title != '') $decode = array_merge(array('Message title' => $title),$decode); |
|
709 | + if ($title != '') $decode = array_merge(array('Message title' => $title), $decode); |
|
710 | 710 | /* |
711 | 711 | // Business jets always use GS0001 |
712 | 712 | if ($ident != 'GS0001') $info = $this->addModeSData($ident,$registration,$icao,$airicao,$latitude,$longitude); |
@@ -734,13 +734,13 @@ discard block |
||
734 | 734 | $Translation = new Translation($this->db); |
735 | 735 | $message = $this->parse($data); |
736 | 736 | if (isset($message['registration']) && $message['registration'] != '' && $message['ident'] != '' && $message['registration'] != '!') { |
737 | - $ident = (string)$message['ident']; |
|
737 | + $ident = (string) $message['ident']; |
|
738 | 738 | $label = $message['label']; |
739 | 739 | $block_id = $message['block_id']; |
740 | 740 | $msg_no = $message['msg_no']; |
741 | 741 | $msg = $message['message']; |
742 | 742 | $decode = $message['decode']; |
743 | - $registration = (string)$message['registration']; |
|
743 | + $registration = (string) $message['registration']; |
|
744 | 744 | if (isset($decode['latitude'])) $latitude = $decode['latitude']; |
745 | 745 | else $latitude = ''; |
746 | 746 | if (isset($decode['longitude'])) $longitude = $decode['longitude']; |
@@ -754,20 +754,20 @@ discard block |
||
754 | 754 | $Image->addSpotterImage($registration); |
755 | 755 | } |
756 | 756 | // Business jets always use GS0001 |
757 | - if ($ident != 'GS0001') $info = $this->addModeSData($ident,$registration,$icao,$airicao,$latitude,$longitude); |
|
757 | + if ($ident != 'GS0001') $info = $this->addModeSData($ident, $registration, $icao, $airicao, $latitude, $longitude); |
|
758 | 758 | if ($globalDebug && isset($info) && $info != '') echo $info; |
759 | 759 | if (count($decode) > 0) $decode_json = json_encode($decode); |
760 | 760 | else $decode_json = ''; |
761 | 761 | if (isset($decode['Departure airport']) && isset($decode['Departure hour']) && isset($decode['Arrival airport']) && isset($decode['Arrival hour'])) { |
762 | - $Schedule->addSchedule($icao,$decode['Departure airport'],$decode['Departure hour'],$decode['Arrival airport'],$decode['Arrival hour'],'ACARS'); |
|
762 | + $Schedule->addSchedule($icao, $decode['Departure airport'], $decode['Departure hour'], $decode['Arrival airport'], $decode['Arrival hour'], 'ACARS'); |
|
763 | 763 | } elseif (isset($decode['Departure airport']) && isset($decode['Arrival airport'])) { |
764 | - $Schedule->addSchedule($icao,$decode['Departure airport'],'',$decode['Arrival airport'],'','ACARS'); |
|
764 | + $Schedule->addSchedule($icao, $decode['Departure airport'], '', $decode['Arrival airport'], '', 'ACARS'); |
|
765 | 765 | } |
766 | - $result = $this->addLiveAcarsData($ident,$registration,$label,$block_id,$msg_no,$msg,$decode_json); |
|
767 | - if (!isset($globalACARSArchive)) $globalACARSArchive = array('10','80','81','82','3F'); |
|
768 | - if ($result && in_array($label,$globalACARSArchive)) $this->addArchiveAcarsData($ident,$registration,$label,$block_id,$msg_no,$msg,$decode_json); |
|
766 | + $result = $this->addLiveAcarsData($ident, $registration, $label, $block_id, $msg_no, $msg, $decode_json); |
|
767 | + if (!isset($globalACARSArchive)) $globalACARSArchive = array('10', '80', '81', '82', '3F'); |
|
768 | + if ($result && in_array($label, $globalACARSArchive)) $this->addArchiveAcarsData($ident, $registration, $label, $block_id, $msg_no, $msg, $decode_json); |
|
769 | 769 | if ($globalDebug && count($decode) > 0) { |
770 | - echo "Human readable data : ".implode(' - ',$decode)."\n"; |
|
770 | + echo "Human readable data : ".implode(' - ', $decode)."\n"; |
|
771 | 771 | } |
772 | 772 | } |
773 | 773 | } |
@@ -782,7 +782,7 @@ discard block |
||
782 | 782 | * @param String $msg_no Number of the ACARS message |
783 | 783 | * @param String $message ACARS message |
784 | 784 | */ |
785 | - public function addLiveAcarsData($ident,$registration,$label,$block_id,$msg_no,$message,$decode = '') { |
|
785 | + public function addLiveAcarsData($ident, $registration, $label, $block_id, $msg_no, $message, $decode = '') { |
|
786 | 786 | global $globalDebug; |
787 | 787 | date_default_timezone_set('UTC'); |
788 | 788 | if ($label != 'SQ' && $label != 'Q0' && $label != '_d' && $message != '') { |
@@ -790,21 +790,21 @@ discard block |
||
790 | 790 | $this->db = $Connection->db; |
791 | 791 | if ($globalDebug) echo "Test if not already in Live ACARS table..."; |
792 | 792 | $query_test = "SELECT COUNT(*) as nb FROM acars_live WHERE ident = :ident AND registration = :registration AND message = :message"; |
793 | - $query_test_values = array(':ident' => $ident,':registration' => $registration, ':message' => $message); |
|
793 | + $query_test_values = array(':ident' => $ident, ':registration' => $registration, ':message' => $message); |
|
794 | 794 | try { |
795 | 795 | $stht = $this->db->prepare($query_test); |
796 | 796 | $stht->execute($query_test_values); |
797 | - } catch(PDOException $e) { |
|
797 | + } catch (PDOException $e) { |
|
798 | 798 | return "error : ".$e->getMessage(); |
799 | 799 | } |
800 | 800 | if ($stht->fetchColumn() == 0) { |
801 | 801 | if ($globalDebug) echo "Add Live ACARS data..."; |
802 | 802 | $query = "INSERT INTO acars_live (ident,registration,label,block_id,msg_no,message,decode,date) VALUES (:ident,:registration,:label,:block_id,:msg_no,:message,:decode,:date)"; |
803 | - $query_values = array(':ident' => $ident,':registration' => $registration, ':label' => $label,':block_id' => $block_id, ':msg_no' => $msg_no, ':message' => $message, ':decode' => $decode,':date' => date("Y-m-d H:i:s")); |
|
803 | + $query_values = array(':ident' => $ident, ':registration' => $registration, ':label' => $label, ':block_id' => $block_id, ':msg_no' => $msg_no, ':message' => $message, ':decode' => $decode, ':date' => date("Y-m-d H:i:s")); |
|
804 | 804 | try { |
805 | 805 | $sth = $this->db->prepare($query); |
806 | 806 | $sth->execute($query_values); |
807 | - } catch(PDOException $e) { |
|
807 | + } catch (PDOException $e) { |
|
808 | 808 | return "error : ".$e->getMessage(); |
809 | 809 | } |
810 | 810 | } else { |
@@ -826,10 +826,10 @@ discard block |
||
826 | 826 | * @param String $msg_no Number of the ACARS message |
827 | 827 | * @param String $message ACARS message |
828 | 828 | */ |
829 | - public function addArchiveAcarsData($ident,$registration,$label,$block_id,$msg_no,$message,$decode = '') { |
|
829 | + public function addArchiveAcarsData($ident, $registration, $label, $block_id, $msg_no, $message, $decode = '') { |
|
830 | 830 | global $globalDebug; |
831 | 831 | date_default_timezone_set('UTC'); |
832 | - if ($label != 'SQ' && $label != 'Q0' && $label != '_d' && $message != '' && preg_match('/^MET0/',$message) === 0 && preg_match('/^ARR0/',$message) === 0 && preg_match('/^ETA/',$message) === 0 && preg_match('/^WXR/',$message) === 0 && preg_match('/^FTX01.FIC/',$message) === 0) { |
|
832 | + if ($label != 'SQ' && $label != 'Q0' && $label != '_d' && $message != '' && preg_match('/^MET0/', $message) === 0 && preg_match('/^ARR0/', $message) === 0 && preg_match('/^ETA/', $message) === 0 && preg_match('/^WXR/', $message) === 0 && preg_match('/^FTX01.FIC/', $message) === 0) { |
|
833 | 833 | /* |
834 | 834 | if ($globalDebug) echo "Test if not already in Archive ACARS table..."; |
835 | 835 | $query_test = "SELECT COUNT(*) as nb FROM acars_archive WHERE ident = :ident AND registration = :registration AND message = :message"; |
@@ -844,11 +844,11 @@ discard block |
||
844 | 844 | */ |
845 | 845 | if ($globalDebug) echo "Add Live ACARS data..."; |
846 | 846 | $query = "INSERT INTO acars_archive (ident,registration,label,block_id,msg_no,message,decode) VALUES (:ident,:registration,:label,:block_id,:msg_no,:message,:decode)"; |
847 | - $query_values = array(':ident' => $ident,':registration' => $registration, ':label' => $label,':block_id' => $block_id, ':msg_no' => $msg_no, ':message' => $message, ':decode' => $decode); |
|
847 | + $query_values = array(':ident' => $ident, ':registration' => $registration, ':label' => $label, ':block_id' => $block_id, ':msg_no' => $msg_no, ':message' => $message, ':decode' => $decode); |
|
848 | 848 | try { |
849 | 849 | $sth = $this->db->prepare($query); |
850 | 850 | $sth->execute($query_values); |
851 | - } catch(PDOException $e) { |
|
851 | + } catch (PDOException $e) { |
|
852 | 852 | return "error : ".$e->getMessage(); |
853 | 853 | } |
854 | 854 | if ($globalDebug) echo "Done\n"; |
@@ -869,7 +869,7 @@ discard block |
||
869 | 869 | try { |
870 | 870 | $sth = $this->db->prepare($query); |
871 | 871 | $sth->execute($query_values); |
872 | - } catch(PDOException $e) { |
|
872 | + } catch (PDOException $e) { |
|
873 | 873 | echo "error : ".$e->getMessage(); |
874 | 874 | return ''; |
875 | 875 | } |
@@ -889,7 +889,7 @@ discard block |
||
889 | 889 | try { |
890 | 890 | $sth = $this->db->prepare($query); |
891 | 891 | $sth->execute($query_values); |
892 | - } catch(PDOException $e) { |
|
892 | + } catch (PDOException $e) { |
|
893 | 893 | echo "error : ".$e->getMessage(); |
894 | 894 | return array(); |
895 | 895 | } |
@@ -910,7 +910,7 @@ discard block |
||
910 | 910 | try { |
911 | 911 | $sth = $this->db->prepare($query); |
912 | 912 | $sth->execute($query_values); |
913 | - } catch(PDOException $e) { |
|
913 | + } catch (PDOException $e) { |
|
914 | 914 | echo "error : ".$e->getMessage(); |
915 | 915 | return array(); |
916 | 916 | } |
@@ -924,7 +924,7 @@ discard block |
||
924 | 924 | * |
925 | 925 | * @return Array Return ACARS data in array |
926 | 926 | */ |
927 | - public function getLatestAcarsData($limit = '',$label = '') { |
|
927 | + public function getLatestAcarsData($limit = '', $label = '') { |
|
928 | 928 | global $globalURL, $globalDBdriver; |
929 | 929 | $Image = new Image($this->db); |
930 | 930 | $Spotter = new Spotter($this->db); |
@@ -935,8 +935,8 @@ discard block |
||
935 | 935 | if ($limit != "") |
936 | 936 | { |
937 | 937 | $limit_array = explode(",", $limit); |
938 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
939 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
938 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
939 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
940 | 940 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
941 | 941 | { |
942 | 942 | $limit_query = " LIMIT ".$limit_array[1]." OFFSET ".$limit_array[0]; |
@@ -952,46 +952,46 @@ discard block |
||
952 | 952 | try { |
953 | 953 | $sth = $this->db->prepare($query); |
954 | 954 | $sth->execute($query_values); |
955 | - } catch(PDOException $e) { |
|
955 | + } catch (PDOException $e) { |
|
956 | 956 | return "error : ".$e->getMessage(); |
957 | 957 | } |
958 | 958 | $i = 0; |
959 | 959 | while ($row = $sth->fetch(PDO::FETCH_ASSOC)) { |
960 | 960 | $data = array(); |
961 | 961 | if ($row['registration'] != '') { |
962 | - $row['registration'] = str_replace('.','',$row['registration']); |
|
962 | + $row['registration'] = str_replace('.', '', $row['registration']); |
|
963 | 963 | $image_array = $Image->getSpotterImage($row['registration']); |
964 | - if (count($image_array) > 0) $data = array_merge($data,array('image' => $image_array[0]['image'],'image_thumbnail' => $image_array[0]['image_thumbnail'],'image_copyright' => $image_array[0]['image_copyright'],'image_source' => $image_array[0]['image_source'],'image_source_website' => $image_array[0]['image_source_website'])); |
|
965 | - else $data = array_merge($data,array('image' => '','image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
966 | - } else $data = array_merge($data,array('image' => '','image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
964 | + if (count($image_array) > 0) $data = array_merge($data, array('image' => $image_array[0]['image'], 'image_thumbnail' => $image_array[0]['image_thumbnail'], 'image_copyright' => $image_array[0]['image_copyright'], 'image_source' => $image_array[0]['image_source'], 'image_source_website' => $image_array[0]['image_source_website'])); |
|
965 | + else $data = array_merge($data, array('image' => '', 'image_thumbnail' => '', 'image_copyright' => '', 'image_source' => '', 'image_source_website' => '')); |
|
966 | + } else $data = array_merge($data, array('image' => '', 'image_thumbnail' => '', 'image_copyright' => '', 'image_source' => '', 'image_source_website' => '')); |
|
967 | 967 | if ($row['registration'] == '') $row['registration'] = 'NA'; |
968 | 968 | if ($row['ident'] == '') $row['ident'] = 'NA'; |
969 | - $identicao = $Spotter->getAllAirlineInfo(substr($row['ident'],0,2)); |
|
969 | + $identicao = $Spotter->getAllAirlineInfo(substr($row['ident'], 0, 2)); |
|
970 | 970 | if (isset($identicao[0])) { |
971 | - if (substr($row['ident'],0,2) == 'AF') { |
|
972 | - if (filter_var(substr($row['ident'],2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) $icao = $row['ident']; |
|
973 | - else $icao = 'AFR'.ltrim(substr($row['ident'],2),'0'); |
|
974 | - } else $icao = $identicao[0]['icao'].ltrim(substr($row['ident'],2),'0'); |
|
975 | - $data = array_merge($data,array('airline_icao' => $identicao[0]['icao'],'airline_name' => $identicao[0]['name'])); |
|
971 | + if (substr($row['ident'], 0, 2) == 'AF') { |
|
972 | + if (filter_var(substr($row['ident'], 2), FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) $icao = $row['ident']; |
|
973 | + else $icao = 'AFR'.ltrim(substr($row['ident'], 2), '0'); |
|
974 | + } else $icao = $identicao[0]['icao'].ltrim(substr($row['ident'], 2), '0'); |
|
975 | + $data = array_merge($data, array('airline_icao' => $identicao[0]['icao'], 'airline_name' => $identicao[0]['name'])); |
|
976 | 976 | } else $icao = $row['ident']; |
977 | - $icao = $Translation->checkTranslation($icao,false); |
|
978 | - $decode = json_decode($row['decode'],true); |
|
977 | + $icao = $Translation->checkTranslation($icao, false); |
|
978 | + $decode = json_decode($row['decode'], true); |
|
979 | 979 | $found = false; |
980 | - if ($decode != '' && array_key_exists('Departure airport',$decode)) { |
|
980 | + if ($decode != '' && array_key_exists('Departure airport', $decode)) { |
|
981 | 981 | $airport_info = $Spotter->getAllAirportInfo($decode['Departure airport']); |
982 | 982 | if (isset($airport_info[0]['icao'])) { |
983 | 983 | $decode['Departure airport'] = '<a href="'.$globalURL.'/airport/'.$airport_info[0]['icao'].'">'.$airport_info[0]['city'].','.$airport_info[0]['country'].' ('.$airport_info[0]['icao'].')</a>'; |
984 | 984 | $found = true; |
985 | 985 | } |
986 | 986 | } |
987 | - if ($decode != '' && array_key_exists('Arrival airport',$decode)) { |
|
987 | + if ($decode != '' && array_key_exists('Arrival airport', $decode)) { |
|
988 | 988 | $airport_info = $Spotter->getAllAirportInfo($decode['Arrival airport']); |
989 | 989 | if (isset($airport_info[0]['icao'])) { |
990 | 990 | $decode['Arrival airport'] = '<a href="'.$globalURL.'/airport/'.$airport_info[0]['icao'].'">'.$airport_info[0]['city'].','.$airport_info[0]['country'].' ('.$airport_info[0]['icao'].')</a>'; |
991 | 991 | $found = true; |
992 | 992 | } |
993 | 993 | } |
994 | - if ($decode != '' && array_key_exists('Airport/Waypoint name',$decode)) { |
|
994 | + if ($decode != '' && array_key_exists('Airport/Waypoint name', $decode)) { |
|
995 | 995 | $airport_info = $Spotter->getAllAirportInfo($decode['Airport/Waypoint name']); |
996 | 996 | if (isset($airport_info[0]['icao'])) { |
997 | 997 | $decode['Airport/Waypoint name'] = '<a href="'.$globalURL.'/airport/'.$airport_info[0]['icao'].'">'.$airport_info[0]['city'].','.$airport_info[0]['country'].' ('.$airport_info[0]['icao'].')</a>'; |
@@ -999,7 +999,7 @@ discard block |
||
999 | 999 | } |
1000 | 1000 | } |
1001 | 1001 | if ($found) $row['decode'] = json_encode($decode); |
1002 | - $data = array_merge($data,array('registration' => $row['registration'],'message' => $row['message'], 'date' => $row['date'], 'ident' => $icao, 'decode' => $row['decode'])); |
|
1002 | + $data = array_merge($data, array('registration' => $row['registration'], 'message' => $row['message'], 'date' => $row['date'], 'ident' => $icao, 'decode' => $row['decode'])); |
|
1003 | 1003 | $result[] = $data; |
1004 | 1004 | $i++; |
1005 | 1005 | } |
@@ -1015,7 +1015,7 @@ discard block |
||
1015 | 1015 | * |
1016 | 1016 | * @return Array Return ACARS data in array |
1017 | 1017 | */ |
1018 | - public function getArchiveAcarsData($limit = '',$label = '') { |
|
1018 | + public function getArchiveAcarsData($limit = '', $label = '') { |
|
1019 | 1019 | global $globalURL, $globalDBdriver; |
1020 | 1020 | $Image = new Image($this->db); |
1021 | 1021 | $Spotter = new Spotter($this->db); |
@@ -1025,8 +1025,8 @@ discard block |
||
1025 | 1025 | if ($limit != "") |
1026 | 1026 | { |
1027 | 1027 | $limit_array = explode(",", $limit); |
1028 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1029 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1028 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
1029 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1030 | 1030 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
1031 | 1031 | { |
1032 | 1032 | $limit_query = " LIMIT ".$limit_array[1]." OFFSET ".$limit_array[0]; |
@@ -1047,43 +1047,43 @@ discard block |
||
1047 | 1047 | try { |
1048 | 1048 | $sth = $this->db->prepare($query); |
1049 | 1049 | $sth->execute($query_values); |
1050 | - } catch(PDOException $e) { |
|
1050 | + } catch (PDOException $e) { |
|
1051 | 1051 | return "error : ".$e->getMessage(); |
1052 | 1052 | } |
1053 | - $i=0; |
|
1053 | + $i = 0; |
|
1054 | 1054 | while ($row = $sth->fetch(PDO::FETCH_ASSOC)) { |
1055 | 1055 | $data = array(); |
1056 | 1056 | if ($row['registration'] != '') { |
1057 | - $row['registration'] = str_replace('.','',$row['registration']); |
|
1057 | + $row['registration'] = str_replace('.', '', $row['registration']); |
|
1058 | 1058 | $image_array = $Image->getSpotterImage($row['registration']); |
1059 | - if (count($image_array) > 0) $data = array_merge($data,array('image_thumbnail' => $image_array[0]['image_thumbnail'],'image_copyright' => $image_array[0]['image_copyright'],'image_source' => $image_array[0]['image_source'],'image_source_website' => $image_array[0]['image_source_website'])); |
|
1060 | - else $data = array_merge($data,array('image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
1061 | - } else $data = array_merge($data,array('image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
1059 | + if (count($image_array) > 0) $data = array_merge($data, array('image_thumbnail' => $image_array[0]['image_thumbnail'], 'image_copyright' => $image_array[0]['image_copyright'], 'image_source' => $image_array[0]['image_source'], 'image_source_website' => $image_array[0]['image_source_website'])); |
|
1060 | + else $data = array_merge($data, array('image_thumbnail' => '', 'image_copyright' => '', 'image_source' => '', 'image_source_website' => '')); |
|
1061 | + } else $data = array_merge($data, array('image_thumbnail' => '', 'image_copyright' => '', 'image_source' => '', 'image_source_website' => '')); |
|
1062 | 1062 | $icao = ''; |
1063 | 1063 | if ($row['registration'] == '') $row['registration'] = 'NA'; |
1064 | 1064 | if ($row['ident'] == '') $row['ident'] = 'NA'; |
1065 | - $identicao = $Spotter->getAllAirlineInfo(substr($row['ident'],0,2)); |
|
1065 | + $identicao = $Spotter->getAllAirlineInfo(substr($row['ident'], 0, 2)); |
|
1066 | 1066 | if (isset($identicao[0])) { |
1067 | - if (substr($row['ident'],0,2) == 'AF') { |
|
1068 | - if (filter_var(substr($row['ident'],2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) $icao = $row['ident']; |
|
1069 | - else $icao = 'AFR'.ltrim(substr($row['ident'],2),'0'); |
|
1070 | - } else $icao = $identicao[0]['icao'].ltrim(substr($row['ident'],2),'0'); |
|
1071 | - $data = array_merge($data,array('airline_icao' => $identicao[0]['icao'],'airline_name' => $identicao[0]['name'])); |
|
1067 | + if (substr($row['ident'], 0, 2) == 'AF') { |
|
1068 | + if (filter_var(substr($row['ident'], 2), FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) $icao = $row['ident']; |
|
1069 | + else $icao = 'AFR'.ltrim(substr($row['ident'], 2), '0'); |
|
1070 | + } else $icao = $identicao[0]['icao'].ltrim(substr($row['ident'], 2), '0'); |
|
1071 | + $data = array_merge($data, array('airline_icao' => $identicao[0]['icao'], 'airline_name' => $identicao[0]['name'])); |
|
1072 | 1072 | } else $icao = $row['ident']; |
1073 | 1073 | $icao = $Translation->checkTranslation($icao); |
1074 | - $decode = json_decode($row['decode'],true); |
|
1074 | + $decode = json_decode($row['decode'], true); |
|
1075 | 1075 | $found = false; |
1076 | - if ($decode != '' && array_key_exists('Departure airport',$decode)) { |
|
1076 | + if ($decode != '' && array_key_exists('Departure airport', $decode)) { |
|
1077 | 1077 | $airport_info = $Spotter->getAllAirportInfo($decode['Departure airport']); |
1078 | 1078 | if (isset($airport_info[0]['icao'])) $decode['Departure airport'] = '<a href="'.$globalURL.'/airport/'.$airport_info[0]['icao'].'">'.$airport_info[0]['city'].','.$airport_info[0]['country'].' ('.$airport_info[0]['icao'].')</a>'; |
1079 | 1079 | $found = true; |
1080 | 1080 | } |
1081 | - if ($decode != '' && array_key_exists('Arrival airport',$decode)) { |
|
1081 | + if ($decode != '' && array_key_exists('Arrival airport', $decode)) { |
|
1082 | 1082 | $airport_info = $Spotter->getAllAirportInfo($decode['Arrival airport']); |
1083 | 1083 | if (isset($airport_info[0]['icao'])) $decode['Arrival airport'] = '<a href="'.$globalURL.'/airport/'.$airport_info[0]['icao'].'">'.$airport_info[0]['city'].','.$airport_info[0]['country'].' ('.$airport_info[0]['icao'].')</a>'; |
1084 | 1084 | $found = true; |
1085 | 1085 | } |
1086 | - if ($decode != '' && array_key_exists('Airport/Waypoint name',$decode)) { |
|
1086 | + if ($decode != '' && array_key_exists('Airport/Waypoint name', $decode)) { |
|
1087 | 1087 | $airport_info = $Spotter->getAllAirportInfo($decode['Airport/Waypoint name']); |
1088 | 1088 | if (isset($airport_info[0]['icao'])) { |
1089 | 1089 | $decode['Airport/Waypoint name'] = '<a href="'.$globalURL.'/airport/'.$airport_info[0]['icao'].'">'.$airport_info[0]['city'].','.$airport_info[0]['country'].' ('.$airport_info[0]['icao'].')</a>'; |
@@ -1091,7 +1091,7 @@ discard block |
||
1091 | 1091 | } |
1092 | 1092 | } |
1093 | 1093 | if ($found) $row['decode'] = json_encode($decode); |
1094 | - $data = array_merge($data,array('registration' => $row['registration'],'message' => $row['message'], 'date' => $row['date'], 'ident' => $icao, 'decode' => $row['decode'])); |
|
1094 | + $data = array_merge($data, array('registration' => $row['registration'], 'message' => $row['message'], 'date' => $row['date'], 'ident' => $icao, 'decode' => $row['decode'])); |
|
1095 | 1095 | $result[] = $data; |
1096 | 1096 | $i++; |
1097 | 1097 | } |
@@ -1109,7 +1109,7 @@ discard block |
||
1109 | 1109 | * @param String $icao |
1110 | 1110 | * @param String $ICAOTypeCode |
1111 | 1111 | */ |
1112 | - public function addModeSData($ident,$registration,$icao = '',$ICAOTypeCode = '',$latitude = '', $longitude = '') { |
|
1112 | + public function addModeSData($ident, $registration, $icao = '', $ICAOTypeCode = '', $latitude = '', $longitude = '') { |
|
1113 | 1113 | global $globalDebug, $globalDBdriver; |
1114 | 1114 | $ident = trim($ident); |
1115 | 1115 | $Translation = new Translation($this->db); |
@@ -1122,7 +1122,7 @@ discard block |
||
1122 | 1122 | if ($globalDebug) echo "Ident or registration null, exit\n"; |
1123 | 1123 | return ''; |
1124 | 1124 | } |
1125 | - $registration = str_replace('.','',$registration); |
|
1125 | + $registration = str_replace('.', '', $registration); |
|
1126 | 1126 | $ident = $Translation->ident2icao($ident); |
1127 | 1127 | // Check if a flight with same registration is flying now, if ok check if callsign = name in ACARS, else add it to translation |
1128 | 1128 | if ($globalDebug) echo "Check if needed to add translation ".$ident.'... '; |
@@ -1131,7 +1131,7 @@ discard block |
||
1131 | 1131 | try { |
1132 | 1132 | $sthsi = $this->db->prepare($querysi); |
1133 | 1133 | $sthsi->execute($querysi_values); |
1134 | - } catch(PDOException $e) { |
|
1134 | + } catch (PDOException $e) { |
|
1135 | 1135 | if ($globalDebug) echo $e->getMessage(); |
1136 | 1136 | return "error : ".$e->getMessage(); |
1137 | 1137 | } |
@@ -1141,8 +1141,8 @@ discard block |
||
1141 | 1141 | $Translation = new Translation($this->db); |
1142 | 1142 | $trans_ident = $Translation->getOperator($resultsi['ident']); |
1143 | 1143 | if ($globalDebug) echo 'Add translation to table : '.$ident.' -> '.$resultsi['ident'].' '; |
1144 | - if ($ident != $trans_ident) $Translation->addOperator($resultsi['ident'],$ident,'ACARS'); |
|
1145 | - elseif ($trans_ident == $ident) $Translation->updateOperator($resultsi['ident'],$ident,'ACARS'); |
|
1144 | + if ($ident != $trans_ident) $Translation->addOperator($resultsi['ident'], $ident, 'ACARS'); |
|
1145 | + elseif ($trans_ident == $ident) $Translation->updateOperator($resultsi['ident'], $ident, 'ACARS'); |
|
1146 | 1146 | } else { |
1147 | 1147 | if ($registration != '' && $latitude != '' && $longitude != '') { |
1148 | 1148 | $query = "SELECT ModeS FROM aircraft_modes WHERE Registration = :registration LIMIT 1"; |
@@ -1150,7 +1150,7 @@ discard block |
||
1150 | 1150 | try { |
1151 | 1151 | $sth = $this->db->prepare($query); |
1152 | 1152 | $sth->execute($query_values); |
1153 | - } catch(PDOException $e) { |
|
1153 | + } catch (PDOException $e) { |
|
1154 | 1154 | if ($globalDebug) echo $e->getMessage(); |
1155 | 1155 | return "error : ".$e->getMessage(); |
1156 | 1156 | } |
@@ -1158,7 +1158,7 @@ discard block |
||
1158 | 1158 | $sth->closeCursor(); |
1159 | 1159 | if (isset($result['modes'])) $hex = $result['modes']; |
1160 | 1160 | else $hex = ''; |
1161 | - $SI_data = array('hex' => $hex,'ident' => $ident,'aircraft_icao' => $ICAOTypeCode,'registration' => $registration,'latitude' => $latitude,'$longitude' => $longitude,'format_source' => 'ACARS'); |
|
1161 | + $SI_data = array('hex' => $hex, 'ident' => $ident, 'aircraft_icao' => $ICAOTypeCode, 'registration' => $registration, 'latitude' => $latitude, '$longitude' => $longitude, 'format_source' => 'ACARS'); |
|
1162 | 1162 | if ($this->fromACARSscript) $this->SI->add($SI_data); |
1163 | 1163 | } |
1164 | 1164 | } |
@@ -1168,7 +1168,7 @@ discard block |
||
1168 | 1168 | try { |
1169 | 1169 | $sth = $this->db->prepare($query); |
1170 | 1170 | $sth->execute($query_values); |
1171 | - } catch(PDOException $e) { |
|
1171 | + } catch (PDOException $e) { |
|
1172 | 1172 | if ($globalDebug) echo $e->getMessage(); |
1173 | 1173 | return "error : ".$e->getMessage(); |
1174 | 1174 | } |
@@ -1178,7 +1178,7 @@ discard block |
||
1178 | 1178 | if (isset($result['ModeS'])) $ModeS = $result['ModeS']; |
1179 | 1179 | else $ModeS = ''; |
1180 | 1180 | if ($ModeS == '') { |
1181 | - $id = explode('-',$result['flightaware_id']); |
|
1181 | + $id = explode('-', $result['flightaware_id']); |
|
1182 | 1182 | $ModeS = $id[0]; |
1183 | 1183 | } |
1184 | 1184 | if ($ModeS != '') { |
@@ -1188,20 +1188,20 @@ discard block |
||
1188 | 1188 | try { |
1189 | 1189 | $sthc = $this->db->prepare($queryc); |
1190 | 1190 | $sthc->execute($queryc_values); |
1191 | - } catch(PDOException $e) { |
|
1191 | + } catch (PDOException $e) { |
|
1192 | 1192 | if ($globalDebug) echo $e->getMessage(); |
1193 | 1193 | return "error : ".$e->getMessage(); |
1194 | 1194 | } |
1195 | 1195 | $row = $sthc->fetch(PDO::FETCH_ASSOC); |
1196 | 1196 | $sthc->closeCursor(); |
1197 | - if (count($row) == 0) { |
|
1197 | + if (count($row) == 0) { |
|
1198 | 1198 | if ($globalDebug) echo " Add to ModeS table - "; |
1199 | 1199 | $queryi = "INSERT INTO aircraft_modes (ModeS,ModeSCountry,Registration,ICAOTypeCode,Source) VALUES (:ModeS,:ModeSCountry,:Registration, :ICAOTypeCode,'ACARS')"; |
1200 | - $queryi_values = array(':ModeS' => $ModeS,':ModeSCountry' => $country,':Registration' => $registration, ':ICAOTypeCode' => $ICAOTypeCode); |
|
1200 | + $queryi_values = array(':ModeS' => $ModeS, ':ModeSCountry' => $country, ':Registration' => $registration, ':ICAOTypeCode' => $ICAOTypeCode); |
|
1201 | 1201 | try { |
1202 | 1202 | $sthi = $this->db->prepare($queryi); |
1203 | 1203 | $sthi->execute($queryi_values); |
1204 | - } catch(PDOException $e) { |
|
1204 | + } catch (PDOException $e) { |
|
1205 | 1205 | if ($globalDebug) echo $e->getMessage(); |
1206 | 1206 | return "error : ".$e->getMessage(); |
1207 | 1207 | } |
@@ -1209,15 +1209,15 @@ discard block |
||
1209 | 1209 | if ($globalDebug) echo " Update ModeS table - "; |
1210 | 1210 | if ($ICAOTypeCode != '') { |
1211 | 1211 | $queryi = "UPDATE aircraft_modes SET ModeSCountry = :ModeSCountry,Registration = :Registration,ICAOTypeCode = :ICAOTypeCode,Source = 'ACARS',LastModified = NOW() WHERE ModeS = :ModeS"; |
1212 | - $queryi_values = array(':ModeS' => $ModeS,':ModeSCountry' => $country,':Registration' => $registration, ':ICAOTypeCode' => $ICAOTypeCode); |
|
1212 | + $queryi_values = array(':ModeS' => $ModeS, ':ModeSCountry' => $country, ':Registration' => $registration, ':ICAOTypeCode' => $ICAOTypeCode); |
|
1213 | 1213 | } else { |
1214 | 1214 | $queryi = "UPDATE aircraft_modes SET ModeSCountry = :ModeSCountry,Registration = :Registration,Source = 'ACARS',LastModified = NOW() WHERE ModeS = :ModeS"; |
1215 | - $queryi_values = array(':ModeS' => $ModeS,':ModeSCountry' => $country,':Registration' => $registration); |
|
1215 | + $queryi_values = array(':ModeS' => $ModeS, ':ModeSCountry' => $country, ':Registration' => $registration); |
|
1216 | 1216 | } |
1217 | 1217 | try { |
1218 | 1218 | $sthi = $this->db->prepare($queryi); |
1219 | 1219 | $sthi->execute($queryi_values); |
1220 | - } catch(PDOException $e) { |
|
1220 | + } catch (PDOException $e) { |
|
1221 | 1221 | if ($globalDebug) echo $e->getMessage(); |
1222 | 1222 | return "error : ".$e->getMessage(); |
1223 | 1223 | } |
@@ -1254,12 +1254,12 @@ discard block |
||
1254 | 1254 | elseif ($globalDBdriver == 'pgsql') { |
1255 | 1255 | $queryi = "UPDATE spotter_output SET registration = :Registration WHERE ident = :ident AND date >= NOW() AT TIME ZONE 'UTC' - INTERVAL '1 HOUR'"; |
1256 | 1256 | } |
1257 | - $queryi_values = array(':Registration' => $registration,':ident' => $icao); |
|
1257 | + $queryi_values = array(':Registration' => $registration, ':ident' => $icao); |
|
1258 | 1258 | } |
1259 | 1259 | try { |
1260 | 1260 | $sthi = $this->db->prepare($queryi); |
1261 | 1261 | $sthi->execute($queryi_values); |
1262 | - } catch(PDOException $e) { |
|
1262 | + } catch (PDOException $e) { |
|
1263 | 1263 | if ($globalDebug) echo $e->getMessage(); |
1264 | 1264 | return "error : ".$e->getMessage(); |
1265 | 1265 | } |
@@ -26,14 +26,19 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function ident2icao($ident) { |
28 | 28 | if (substr($ident,0,2) == 'AF') { |
29 | - if (filter_var(substr($ident,2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) $icao = $ident; |
|
30 | - else $icao = 'AFR'.ltrim(substr($ident,2),'0'); |
|
29 | + if (filter_var(substr($ident,2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) { |
|
30 | + $icao = $ident; |
|
31 | + } else { |
|
32 | + $icao = 'AFR'.ltrim(substr($ident,2),'0'); |
|
33 | + } |
|
31 | 34 | } else { |
32 | 35 | $Spotter = new Spotter($this->db); |
33 | 36 | $identicao = $Spotter->getAllAirlineInfo(substr($ident,0,2)); |
34 | 37 | if (isset($identicao[0])) { |
35 | 38 | $icao = $identicao[0]['icao'].ltrim(substr($ident,2),'0'); |
36 | - } else $icao = $ident; |
|
39 | + } else { |
|
40 | + $icao = $ident; |
|
41 | + } |
|
37 | 42 | } |
38 | 43 | return $icao; |
39 | 44 | } |
@@ -106,14 +111,24 @@ discard block |
||
106 | 111 | $message = ''; |
107 | 112 | $result = array(); |
108 | 113 | $n = sscanf($data,'(null) %*d %*02d/%*02d/%*04d %*02d:%*02d:%*02d %*d %*[0-9-] %*[A-Z0-9] %7s %*c %2[0-9a-zA-Z_] %d %4[0-9A-Z] %6[0-9A-Z] %[^\r\n]',$registration,$label,$block_id,$msg_no,$ident,$message); |
109 | - if ($n == 0) $n = sscanf($data,'AC%*c %7s %*c %2[0-9a-zA-Z_] %d %4[0-9A-Z] %6[0-9A-Z] %[^\r\n]',$registration,$label,$block_id,$msg_no,$ident,$message); |
|
110 | - if ($n == 0) $n = sscanf($data,'%*04d-%*02d-%*02d,%*02d:%*02d:%*02d,%*7s,%*c,%6[0-9A-Z-],%*c,%2[0-9a-zA-Z_],%d,%4[0-9A-Z],%6[0-9A-Z],%[^\r\n]',$registration,$label,$block_id,$msg_no,$ident,$message); |
|
111 | - if ($n == 0) $n = sscanf($data,'%*04d-%*02d-%*02d,%*02d:%*02d:%*02d,%*7s,%*c,%5[0-9A-Z],%*c,%2[0-9a-zA-Z_],%d,%4[0-9A-Z],%6[0-9A-Z],%[^\r\n]',$registration,$label,$block_id,$msg_no,$ident,$message); |
|
114 | + if ($n == 0) { |
|
115 | + $n = sscanf($data,'AC%*c %7s %*c %2[0-9a-zA-Z_] %d %4[0-9A-Z] %6[0-9A-Z] %[^\r\n]',$registration,$label,$block_id,$msg_no,$ident,$message); |
|
116 | + } |
|
117 | + if ($n == 0) { |
|
118 | + $n = sscanf($data,'%*04d-%*02d-%*02d,%*02d:%*02d:%*02d,%*7s,%*c,%6[0-9A-Z-],%*c,%2[0-9a-zA-Z_],%d,%4[0-9A-Z],%6[0-9A-Z],%[^\r\n]',$registration,$label,$block_id,$msg_no,$ident,$message); |
|
119 | + } |
|
120 | + if ($n == 0) { |
|
121 | + $n = sscanf($data,'%*04d-%*02d-%*02d,%*02d:%*02d:%*02d,%*7s,%*c,%5[0-9A-Z],%*c,%2[0-9a-zA-Z_],%d,%4[0-9A-Z],%6[0-9A-Z],%[^\r\n]',$registration,$label,$block_id,$msg_no,$ident,$message); |
|
122 | + } |
|
112 | 123 | if ($n != 0) { |
113 | 124 | $registration = str_replace('.','',$registration); |
114 | 125 | $result = array('registration' => $registration, 'ident' => $ident,'label' => $label, 'block_id' => $block_id,'msg_no' => $msg_no,'message' => $message); |
115 | - if ($globalDebug) echo "Reg. : ".$registration." - Ident : ".$ident." - Label : ".$label." - Message : ".$message."\n"; |
|
116 | - } else $message = $data; |
|
126 | + if ($globalDebug) { |
|
127 | + echo "Reg. : ".$registration." - Ident : ".$ident." - Label : ".$label." - Message : ".$message."\n"; |
|
128 | + } |
|
129 | + } else { |
|
130 | + $message = $data; |
|
131 | + } |
|
117 | 132 | $decode = array(); |
118 | 133 | $found = false; |
119 | 134 | // if ($registration != '' && $ident != '' && $registration != '!') { |
@@ -133,12 +148,21 @@ discard block |
||
133 | 148 | if ($n > 5 && ($lac == 'N' || $lac == 'S') && ($lnc == 'E' || $lnc == 'W')) { |
134 | 149 | $latitude = $la / 10000.0; |
135 | 150 | $longitude = $ln / 10000.0; |
136 | - if ($lac == 'S') $latitude = '-'.$latitude; |
|
137 | - if ($lnc == 'W') $longitude = '-'.$longitude; |
|
151 | + if ($lac == 'S') { |
|
152 | + $latitude = '-'.$latitude; |
|
153 | + } |
|
154 | + if ($lnc == 'W') { |
|
155 | + $longitude = '-'.$longitude; |
|
156 | + } |
|
138 | 157 | // Temp not always available |
139 | - if ($globalDebug) echo 'latitude : '.$latitude.' - longitude : '.$longitude.' - airport depart : '.$dair.' - airport arrival : '.$darr.' - température : '.$temp."°C\n"; |
|
140 | - if ($temp == '') $decode = array('Latitude' => $latitude, 'Longitude' => $longitude, 'Departure airport' => $dair, 'Arrival airport' => $darr,'Altitude' => $alt); |
|
141 | - else $decode = array('Latitude' => $latitude, 'Longitude' => $longitude, 'Departure airport' => $dair, 'Arrival airport' => $darr, 'Altitude' => 'FL'.$alt,'Temperature' => $temp.'°C'); |
|
158 | + if ($globalDebug) { |
|
159 | + echo 'latitude : '.$latitude.' - longitude : '.$longitude.' - airport depart : '.$dair.' - airport arrival : '.$darr.' - température : '.$temp."°C\n"; |
|
160 | + } |
|
161 | + if ($temp == '') { |
|
162 | + $decode = array('Latitude' => $latitude, 'Longitude' => $longitude, 'Departure airport' => $dair, 'Arrival airport' => $darr,'Altitude' => $alt); |
|
163 | + } else { |
|
164 | + $decode = array('Latitude' => $latitude, 'Longitude' => $longitude, 'Departure airport' => $dair, 'Arrival airport' => $darr, 'Altitude' => 'FL'.$alt,'Temperature' => $temp.'°C'); |
|
165 | + } |
|
142 | 166 | |
143 | 167 | //$icao = $Translation->checkTranslation($ident); |
144 | 168 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
@@ -152,25 +176,35 @@ discard block |
||
152 | 176 | $ahour = ''; |
153 | 177 | $n = sscanf($message, "ARR01 %4[A-Z]%4d %4[A-Z]%4d", $dair, $dhour, $darr,$ahour); |
154 | 178 | if ($n == 4 && strlen($darr) == 4) { |
155 | - if ($dhour != '') $dhour = substr(sprintf('%04d',$dhour),0,2).':'.substr(sprintf('%04d',$dhour),2); |
|
156 | - if ($ahour != '') $ahour = substr(sprintf('%04d',$ahour),0,2).':'.substr(sprintf('%04d',$ahour),2); |
|
157 | - if ($globalDebug) echo 'departure airport : '.$dair.' - arrival airport : '. $darr.' - departure hour : '. $dhour.' - arrival hour : '.$ahour."\n"; |
|
179 | + if ($dhour != '') { |
|
180 | + $dhour = substr(sprintf('%04d',$dhour),0,2).':'.substr(sprintf('%04d',$dhour),2); |
|
181 | + } |
|
182 | + if ($ahour != '') { |
|
183 | + $ahour = substr(sprintf('%04d',$ahour),0,2).':'.substr(sprintf('%04d',$ahour),2); |
|
184 | + } |
|
185 | + if ($globalDebug) { |
|
186 | + echo 'departure airport : '.$dair.' - arrival airport : '. $darr.' - departure hour : '. $dhour.' - arrival hour : '.$ahour."\n"; |
|
187 | + } |
|
158 | 188 | //$icao = ACARS->ident2icao($ident); |
159 | 189 | //$icao = $Translation->checkTranslation($ident); |
160 | 190 | //$Schedule->addSchedule($icao,$dair,$dhour,$darr,$ahour,'ACARS'); |
161 | 191 | $decode = array('Departure airport' => $dair, 'Departure hour' => $dhour, 'Arrival airport' => $darr, 'Arrival hour' => $ahour); |
162 | 192 | $found = true; |
163 | - } |
|
164 | - elseif ($n == 2 || $n == 4) { |
|
165 | - if ($dhour != '') $dhour = substr(sprintf('%04d',$dhour),0,2).':'.substr(sprintf('%04d',$dhour),2); |
|
166 | - if ($globalDebug) echo 'airport arrival : '.$dair.' - arrival hour : '.$dhour."\n"; |
|
193 | + } elseif ($n == 2 || $n == 4) { |
|
194 | + if ($dhour != '') { |
|
195 | + $dhour = substr(sprintf('%04d',$dhour),0,2).':'.substr(sprintf('%04d',$dhour),2); |
|
196 | + } |
|
197 | + if ($globalDebug) { |
|
198 | + echo 'airport arrival : '.$dair.' - arrival hour : '.$dhour."\n"; |
|
199 | + } |
|
167 | 200 | //$icao = ACARS->ident2icao($ident); |
168 | 201 | //$icao = $Translation->checkTranslation($ident); |
169 | 202 | $decode = array('Arrival airport' => $dair, 'Arrival hour' => $dhour); |
170 | 203 | $found = true; |
171 | - } |
|
172 | - elseif ($n == 1) { |
|
173 | - if ($globalDebug) echo 'airport arrival : '.$darr."\n"; |
|
204 | + } elseif ($n == 1) { |
|
205 | + if ($globalDebug) { |
|
206 | + echo 'airport arrival : '.$darr."\n"; |
|
207 | + } |
|
174 | 208 | //$icao = ACARS->ident2icao($ident); |
175 | 209 | //$icao = $Translation->checkTranslation($ident); |
176 | 210 | $decode = array('Arrival airport' => $darr); |
@@ -188,7 +222,9 @@ discard block |
||
188 | 222 | $darr = ''; |
189 | 223 | $n = sscanf($message, "%4c,%4c,%*7s,%*d", $dair, $darr); |
190 | 224 | if ($n == 4) { |
191 | - if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
225 | + if ($globalDebug) { |
|
226 | + echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
227 | + } |
|
192 | 228 | //$icao = ACARS->ident2icao($ident); |
193 | 229 | //$icao = $Translation->checkTranslation($ident); |
194 | 230 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
@@ -222,14 +258,23 @@ discard block |
||
222 | 258 | $apiste = ''; |
223 | 259 | $n = sscanf(str_replace(array("\r\n", "\n", "\r"),'',$message), "%*[0-9A-Z]/%*3d/%4s/%*cSCH/%6[0-9A-Z ]/%4c/%4c/%5s/%4d%*3c/%4d/%4c/%[0-9A-Z ]/", $airicao,$aident,$dair, $darr, $ddate, $dhour,$ahour, $aair, $apiste); |
224 | 260 | if ($n > 8) { |
225 | - if ($globalDebug) echo 'airicao : '. $airicao.' - ident : '.$aident.' - departure airport : '.$dair.' - arrival airport : '. $darr.' - date depart : '.$ddate.' - departure hour : '. $dhour.' - arrival hour : '.$ahour.' - arrival airport : '.$aair.' - arrival piste : '.$apiste."\n"; |
|
226 | - if ($dhour != '') $dhour = substr(sprintf('%04d',$dhour),0,2).':'.substr(sprintf('%04d',$dhour),2); |
|
227 | - if ($ahour != '') $ahour = substr(sprintf('%04d',$ahour),0,2).':'.substr(sprintf('%04d',$ahour),2); |
|
261 | + if ($globalDebug) { |
|
262 | + echo 'airicao : '. $airicao.' - ident : '.$aident.' - departure airport : '.$dair.' - arrival airport : '. $darr.' - date depart : '.$ddate.' - departure hour : '. $dhour.' - arrival hour : '.$ahour.' - arrival airport : '.$aair.' - arrival piste : '.$apiste."\n"; |
|
263 | + } |
|
264 | + if ($dhour != '') { |
|
265 | + $dhour = substr(sprintf('%04d',$dhour),0,2).':'.substr(sprintf('%04d',$dhour),2); |
|
266 | + } |
|
267 | + if ($ahour != '') { |
|
268 | + $ahour = substr(sprintf('%04d',$ahour),0,2).':'.substr(sprintf('%04d',$ahour),2); |
|
269 | + } |
|
228 | 270 | $icao = trim($aident); |
229 | 271 | |
230 | 272 | //$decode = 'Departure airport : '.$dair.' ('.$ddate.' at '.$dhour.') - Arrival Airport : '.$aair.' (at '.$ahour.') way '.$apiste; |
231 | - if ($ahour == '') $decode = array('Departure airport' => $dair, 'Departure date' => $ddate, 'Departure hour' => $dhour, 'Arrival airport' => $darr); |
|
232 | - else $decode = array('Departure airport' => $dair, 'Departure date' => $ddate, 'Departure hour' => $dhour, 'Arrival airport' => $darr, 'Arrival hour' => $ahour, 'Arrival way' => $apiste); |
|
273 | + if ($ahour == '') { |
|
274 | + $decode = array('Departure airport' => $dair, 'Departure date' => $ddate, 'Departure hour' => $dhour, 'Arrival airport' => $darr); |
|
275 | + } else { |
|
276 | + $decode = array('Departure airport' => $dair, 'Departure date' => $ddate, 'Departure hour' => $dhour, 'Arrival airport' => $darr, 'Arrival hour' => $ahour, 'Arrival way' => $apiste); |
|
277 | + } |
|
233 | 278 | //$Schedule->addSchedule($icao,$dair,$dhour,$darr,$ahour,'ACARS'); |
234 | 279 | $decode['icao'] = $icao; |
235 | 280 | $found = true; |
@@ -251,9 +296,15 @@ discard block |
||
251 | 296 | $lns = $lns.'.'.$lns; |
252 | 297 | $latitude = $las / 1000.0; |
253 | 298 | $longitude = $lns / 1000.0; |
254 | - if ($lac == 'S') $latitude = '-'.$latitude; |
|
255 | - if ($lnc == 'W') $longitude = '-'.$longitude; |
|
256 | - if ($globalDebug) echo 'latitude : '.$latitude.' - longitude : '.$longitude."\n"; |
|
299 | + if ($lac == 'S') { |
|
300 | + $latitude = '-'.$latitude; |
|
301 | + } |
|
302 | + if ($lnc == 'W') { |
|
303 | + $longitude = '-'.$longitude; |
|
304 | + } |
|
305 | + if ($globalDebug) { |
|
306 | + echo 'latitude : '.$latitude.' - longitude : '.$longitude."\n"; |
|
307 | + } |
|
257 | 308 | $decode = array('Latitude' => $latitude, 'Longitude' => $longitude); |
258 | 309 | $found = true; |
259 | 310 | } |
@@ -271,7 +322,9 @@ discard block |
||
271 | 322 | $darr = ''; |
272 | 323 | $n = sscanf($message, "%*[0-9A-Z ]/%*s %4c/%4c .", $dair, $darr); |
273 | 324 | if ($n == 4) { |
274 | - if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
325 | + if ($globalDebug) { |
|
326 | + echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
327 | + } |
|
275 | 328 | //$icao = $Translation->checkTranslation($ident); |
276 | 329 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
277 | 330 | $decode = array('Departure airport' => $dair, 'Arrival airport' => $darr); |
@@ -284,7 +337,9 @@ discard block |
||
284 | 337 | $darr = ''; |
285 | 338 | $n = sscanf($message, "%*[0-9],%4c,%4c,", $dair, $darr); |
286 | 339 | if ($n == 4) { |
287 | - if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
340 | + if ($globalDebug) { |
|
341 | + echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
342 | + } |
|
288 | 343 | //$icao = $Translation->checkTranslation($ident); |
289 | 344 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
290 | 345 | $decode = array('Departure airport' => $dair, 'Arrival airport' => $darr); |
@@ -297,7 +352,9 @@ discard block |
||
297 | 352 | $darr = ''; |
298 | 353 | $n = sscanf($message, "002AF %4c %4c ", $dair, $darr); |
299 | 354 | if ($n == 2) { |
300 | - if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
355 | + if ($globalDebug) { |
|
356 | + echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
357 | + } |
|
301 | 358 | //$icao = $Translation->checkTranslation($ident); |
302 | 359 | $decode = array('Departure airport' => $dair, 'Arrival airport' => $darr); |
303 | 360 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
@@ -311,7 +368,9 @@ discard block |
||
311 | 368 | $darr = ''; |
312 | 369 | $n = sscanf($message, "#DFBA%*02d/%*[A-Z-],%*[0-9A-Z],%*d,%4c,%4c", $dair, $darr); |
313 | 370 | if ($n == 6) { |
314 | - if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
371 | + if ($globalDebug) { |
|
372 | + echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
373 | + } |
|
315 | 374 | //$icao = $Translation->checkTranslation($ident); |
316 | 375 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
317 | 376 | $decode = array('Departure airport' => $dair, 'Arrival airport' => $darr); |
@@ -324,7 +383,9 @@ discard block |
||
324 | 383 | $darr = ''; |
325 | 384 | $n = sscanf($message, "#DFBA%*02d/%*[0-9A-Z,]/%*[A-Z-],%*[0-9A-Z],%*d,%4c,%4c", $dair, $darr); |
326 | 385 | if ($n == 7) { |
327 | - if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
386 | + if ($globalDebug) { |
|
387 | + echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
388 | + } |
|
328 | 389 | //$icao = $Translation->checkTranslation($ident); |
329 | 390 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
330 | 391 | $decode = array('Departure airport' => $dair, 'Arrival airport' => $darr); |
@@ -352,8 +413,12 @@ discard block |
||
352 | 413 | $decode['icao'] = $icao; |
353 | 414 | $latitude = $las / 100.0; |
354 | 415 | $longitude = $lns / 100.0; |
355 | - if ($lac == 'S') $latitude = '-'.$latitude; |
|
356 | - if ($lnc == 'W') $longitude = '-'.$longitude; |
|
416 | + if ($lac == 'S') { |
|
417 | + $latitude = '-'.$latitude; |
|
418 | + } |
|
419 | + if ($lnc == 'W') { |
|
420 | + $longitude = '-'.$longitude; |
|
421 | + } |
|
357 | 422 | |
358 | 423 | $decode = array('Latitude' => $latitude,'Longitude' => $longitude,'Altitude' => 'FL'.$alt,'Fuel' => $fuel,'speed' => $speed); |
359 | 424 | $found = true; |
@@ -371,8 +436,12 @@ discard block |
||
371 | 436 | if ($n == 4) { |
372 | 437 | $latitude = $las; |
373 | 438 | $longitude = $lns; |
374 | - if ($lac == 'S') $latitude = '-'.$latitude; |
|
375 | - if ($lnc == 'W') $longitude = '-'.$longitude; |
|
439 | + if ($lac == 'S') { |
|
440 | + $latitude = '-'.$latitude; |
|
441 | + } |
|
442 | + if ($lnc == 'W') { |
|
443 | + $longitude = '-'.$longitude; |
|
444 | + } |
|
376 | 445 | |
377 | 446 | $decode = array('Latitude' => $latitude,'Longitude' => $longitude); |
378 | 447 | $found = true; |
@@ -388,7 +457,9 @@ discard block |
||
388 | 457 | $darr = ''; |
389 | 458 | $n = sscanf($message, "%*[0-9A-Z] NLINFO %*d/%*d %4c/%4c .", $dair, $darr); |
390 | 459 | if ($n == 5) { |
391 | - if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
460 | + if ($globalDebug) { |
|
461 | + echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
462 | + } |
|
392 | 463 | //$icao = $Translation->checkTranslation($ident); |
393 | 464 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
394 | 465 | $decode = array('Departure airport' => $dair, 'Arrival airport' => $darr); |
@@ -409,7 +480,9 @@ discard block |
||
409 | 480 | $aident = ''; |
410 | 481 | $n = sscanf(str_replace(array("\r\n", "\n", "\r"),'',$message), "%*[0-9A-Z],,%*[0-9A-Z],%*[0-9A-Z],%4s,%4s,.%*6s,%*4[A-Z],%[0-9A-Z],", $dair, $darr, $aident); |
411 | 482 | if ($n == 8) { |
412 | - if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
483 | + if ($globalDebug) { |
|
484 | + echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
485 | + } |
|
413 | 486 | $icao = trim($aident); |
414 | 487 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
415 | 488 | $decode['icao'] = $icao; |
@@ -426,7 +499,9 @@ discard block |
||
426 | 499 | $darr = ''; |
427 | 500 | $n = sscanf($message, "%*d/%*d %4s/%4s .%*6s", $dair, $darr); |
428 | 501 | if ($n == 5) { |
429 | - if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
502 | + if ($globalDebug) { |
|
503 | + echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
504 | + } |
|
430 | 505 | //$icao = $Translation->checkTranslation($ident); |
431 | 506 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
432 | 507 | $decode = array('Departure airport' => $dair, 'Arrival airport' => $darr); |
@@ -441,7 +516,9 @@ discard block |
||
441 | 516 | $darr = ''; |
442 | 517 | $n = sscanf($message,'%4[A-Z]%4[A-Z]%*4d',$dair,$darr); |
443 | 518 | if ($n == 3) { |
444 | - if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
519 | + if ($globalDebug) { |
|
520 | + echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
521 | + } |
|
445 | 522 | //$icao = $Translation->checkTranslation($ident); |
446 | 523 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
447 | 524 | $decode = array('Departure airport' => $dair, 'Arrival airport' => $darr); |
@@ -456,7 +533,9 @@ discard block |
||
456 | 533 | $darr = ''; |
457 | 534 | $n = sscanf($message,'3J01 DSPTCH %*d/%*d %4s/%4s .%*6s',$dair,$darr); |
458 | 535 | if ($n == 3) { |
459 | - if ($globalDebug) echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
536 | + if ($globalDebug) { |
|
537 | + echo 'airport depart : '.$dair.' - airport arrival : '.$darr."\n"; |
|
538 | + } |
|
460 | 539 | //$icao = $Translation->checkTranslation($ident); |
461 | 540 | //$Schedule->addSchedule($icao,$dair,'',$darr,'','ACARS'); |
462 | 541 | $decode = array('Departure airport' => $dair, 'Arrival airport' => $darr); |
@@ -466,7 +545,9 @@ discard block |
||
466 | 545 | if (!$found) { |
467 | 546 | $n = sscanf($message,'MET01%4c',$airport); |
468 | 547 | if ($n == 1) { |
469 | - if ($globalDebug) echo 'airport name : '.$airport; |
|
548 | + if ($globalDebug) { |
|
549 | + echo 'airport name : '.$airport; |
|
550 | + } |
|
470 | 551 | $decode = array('Airport/Waypoint name' => $airport); |
471 | 552 | $found = true; |
472 | 553 | } |
@@ -474,184 +555,126 @@ discard block |
||
474 | 555 | if ($label == 'H1') { |
475 | 556 | if (preg_match('/^#CFBFLR/',$message) || preg_match('/^#CFBWRN/',$message)) { |
476 | 557 | $decode = array_merge(array('Message nature' => 'Equipment failure'),$decode); |
477 | - } |
|
478 | - elseif (preg_match('/^#DFB\*TKO/',$message) || preg_match('/^#DFBTKO/',$message)) { |
|
558 | + } elseif (preg_match('/^#DFB\*TKO/',$message) || preg_match('/^#DFBTKO/',$message)) { |
|
479 | 559 | $decode = array_merge(array('Message nature' => 'Take off performance data'),$decode); |
480 | - } |
|
481 | - elseif (preg_match('/^#DFB\*CRZ/',$message) || preg_match('/^#DFBCRZ/',$message)) { |
|
560 | + } elseif (preg_match('/^#DFB\*CRZ/',$message) || preg_match('/^#DFBCRZ/',$message)) { |
|
482 | 561 | $decode = array_merge(array('Message nature' => 'Cruise performance data'),$decode); |
483 | - } |
|
484 | - elseif (preg_match('/^#DFB\*WOB/',$message) || preg_match('/^#DFBWOB/',$message)) { |
|
562 | + } elseif (preg_match('/^#DFB\*WOB/',$message) || preg_match('/^#DFBWOB/',$message)) { |
|
485 | 563 | $decode = array_merge(array('Message nature' => 'Weather observation'),$decode); |
486 | - } |
|
487 | - elseif (preg_match(':^#DFB/PIREP:',$message)) { |
|
564 | + } elseif (preg_match(':^#DFB/PIREP:',$message)) { |
|
488 | 565 | $decode = array_merge(array('Message nature' => 'Pilot Report'),$decode); |
489 | - } |
|
490 | - elseif (preg_match('/^#DFBEDA/',$message) || preg_match('/^#DFBENG/',$message)) { |
|
566 | + } elseif (preg_match('/^#DFBEDA/',$message) || preg_match('/^#DFBENG/',$message)) { |
|
491 | 567 | $decode = array_merge(array('Message nature' => 'Engine Data'),$decode); |
492 | - } |
|
493 | - elseif (preg_match(':^#M1AAEP:',$message)) { |
|
568 | + } elseif (preg_match(':^#M1AAEP:',$message)) { |
|
494 | 569 | $decode = array_merge(array('Message nature' => 'Position/Weather Report'),$decode); |
495 | - } |
|
496 | - elseif (preg_match(':^#M2APWD:',$message)) { |
|
570 | + } elseif (preg_match(':^#M2APWD:',$message)) { |
|
497 | 571 | $decode = array_merge(array('Message nature' => 'Flight plan predicted wind data'),$decode); |
498 | - } |
|
499 | - elseif (preg_match(':^#M1BREQPWI:',$message)) { |
|
572 | + } elseif (preg_match(':^#M1BREQPWI:',$message)) { |
|
500 | 573 | $decode = array_merge(array('Message nature' => 'Predicted wind info request'),$decode); |
501 | - } |
|
502 | - elseif (preg_match(':^#CF:',$message)) { |
|
574 | + } elseif (preg_match(':^#CF:',$message)) { |
|
503 | 575 | $decode = array_merge(array('Message nature' => 'Central Fault Display'),$decode); |
504 | - } |
|
505 | - elseif (preg_match(':^#DF:',$message)) { |
|
576 | + } elseif (preg_match(':^#DF:',$message)) { |
|
506 | 577 | $decode = array_merge(array('Message nature' => 'Digital Flight Data Acquisition Unit'),$decode); |
507 | - } |
|
508 | - elseif (preg_match(':^#EC:',$message)) { |
|
578 | + } elseif (preg_match(':^#EC:',$message)) { |
|
509 | 579 | $decode = array_merge(array('Message nature' => 'Engine Display System'),$decode); |
510 | - } |
|
511 | - elseif (preg_match(':^#EI:',$message)) { |
|
580 | + } elseif (preg_match(':^#EI:',$message)) { |
|
512 | 581 | $decode = array_merge(array('Message nature' => 'Engine Report'),$decode); |
513 | - } |
|
514 | - elseif (preg_match(':^#H1:',$message)) { |
|
582 | + } elseif (preg_match(':^#H1:',$message)) { |
|
515 | 583 | $decode = array_merge(array('Message nature' => 'HF Data Radio - Left'),$decode); |
516 | - } |
|
517 | - elseif (preg_match(':^#H2:',$message)) { |
|
584 | + } elseif (preg_match(':^#H2:',$message)) { |
|
518 | 585 | $decode = array_merge(array('Message nature' => 'HF Data Radio - Right'),$decode); |
519 | - } |
|
520 | - elseif (preg_match(':^#HD:',$message)) { |
|
586 | + } elseif (preg_match(':^#HD:',$message)) { |
|
521 | 587 | $decode = array_merge(array('Message nature' => 'HF Data Radio - Selected'),$decode); |
522 | - } |
|
523 | - elseif (preg_match(':^#M1:',$message)) { |
|
588 | + } elseif (preg_match(':^#M1:',$message)) { |
|
524 | 589 | $decode = array_merge(array('Message nature' => 'Flight Management Computer - Left'),$decode); |
525 | - } |
|
526 | - elseif (preg_match(':^#M2:',$message)) { |
|
590 | + } elseif (preg_match(':^#M2:',$message)) { |
|
527 | 591 | $decode = array_merge(array('Message nature' => 'Flight Management Computer - Right'),$decode); |
528 | - } |
|
529 | - elseif (preg_match(':^#M3:',$message)) { |
|
592 | + } elseif (preg_match(':^#M3:',$message)) { |
|
530 | 593 | $decode = array_merge(array('Message nature' => 'Flight Management Computer - Center'),$decode); |
531 | - } |
|
532 | - elseif (preg_match(':^#MD:',$message)) { |
|
594 | + } elseif (preg_match(':^#MD:',$message)) { |
|
533 | 595 | $decode = array_merge(array('Message nature' => 'Flight Management Computer - Selected'),$decode); |
534 | - } |
|
535 | - elseif (preg_match(':^#PS:',$message)) { |
|
596 | + } elseif (preg_match(':^#PS:',$message)) { |
|
536 | 597 | $decode = array_merge(array('Message nature' => 'Keyboard/Display Unit'),$decode); |
537 | - } |
|
538 | - elseif (preg_match(':^#S1:',$message)) { |
|
598 | + } elseif (preg_match(':^#S1:',$message)) { |
|
539 | 599 | $decode = array_merge(array('Message nature' => 'SDU - Left'),$decode); |
540 | - } |
|
541 | - elseif (preg_match(':^#S2:',$message)) { |
|
600 | + } elseif (preg_match(':^#S2:',$message)) { |
|
542 | 601 | $decode = array_merge(array('Message nature' => 'SDU - Right'),$decode); |
543 | - } |
|
544 | - elseif (preg_match(':^#SD:',$message)) { |
|
602 | + } elseif (preg_match(':^#SD:',$message)) { |
|
545 | 603 | $decode = array_merge(array('Message nature' => 'SDU - Selected'),$decode); |
546 | - } |
|
547 | - elseif (preg_match(':^#T[0-8]:',$message)) { |
|
604 | + } elseif (preg_match(':^#T[0-8]:',$message)) { |
|
548 | 605 | $decode = array_merge(array('Message nature' => 'Cabin Terminal Messages'),$decode); |
549 | - } |
|
550 | - elseif (preg_match(':^#WO:',$message)) { |
|
606 | + } elseif (preg_match(':^#WO:',$message)) { |
|
551 | 607 | $decode = array_merge(array('Message nature' => 'Weather Observation Report'),$decode); |
552 | - } |
|
553 | - elseif (preg_match(':^#A1:',$message)) { |
|
608 | + } elseif (preg_match(':^#A1:',$message)) { |
|
554 | 609 | $decode = array_merge(array('Message nature' => 'Oceanic Clearance'),$decode); |
555 | - } |
|
556 | - elseif (preg_match(':^#A3:',$message)) { |
|
610 | + } elseif (preg_match(':^#A3:',$message)) { |
|
557 | 611 | $decode = array_merge(array('Message nature' => 'Departure Clearance Response'),$decode); |
558 | - } |
|
559 | - elseif (preg_match(':^#A4:',$message)) { |
|
612 | + } elseif (preg_match(':^#A4:',$message)) { |
|
560 | 613 | $decode = array_merge(array('Message nature' => 'Flight Systems Message'),$decode); |
561 | - } |
|
562 | - elseif (preg_match(':^#A6:',$message)) { |
|
614 | + } elseif (preg_match(':^#A6:',$message)) { |
|
563 | 615 | $decode = array_merge(array('Message nature' => 'Request ADS Reports'),$decode); |
564 | - } |
|
565 | - elseif (preg_match(':^#A8:',$message)) { |
|
616 | + } elseif (preg_match(':^#A8:',$message)) { |
|
566 | 617 | $decode = array_merge(array('Message nature' => 'Deliver Departure Slot'),$decode); |
567 | - } |
|
568 | - elseif (preg_match(':^#A9:',$message)) { |
|
618 | + } elseif (preg_match(':^#A9:',$message)) { |
|
569 | 619 | $decode = array_merge(array('Message nature' => 'ATIS report'),$decode); |
570 | - } |
|
571 | - elseif (preg_match(':^#A0:',$message)) { |
|
620 | + } elseif (preg_match(':^#A0:',$message)) { |
|
572 | 621 | $decode = array_merge(array('Message nature' => 'ATIS Facility Notification (AFN)'),$decode); |
573 | - } |
|
574 | - elseif (preg_match(':^#AA:',$message)) { |
|
622 | + } elseif (preg_match(':^#AA:',$message)) { |
|
575 | 623 | $decode = array_merge(array('Message nature' => 'ATCComm'),$decode); |
576 | - } |
|
577 | - elseif (preg_match(':^#AB:',$message)) { |
|
624 | + } elseif (preg_match(':^#AB:',$message)) { |
|
578 | 625 | $decode = array_merge(array('Message nature' => 'TWIP Report'),$decode); |
579 | - } |
|
580 | - elseif (preg_match(':^#AC:',$message)) { |
|
626 | + } elseif (preg_match(':^#AC:',$message)) { |
|
581 | 627 | $decode = array_merge(array('Message nature' => 'Pushback Clearance'),$decode); |
582 | - } |
|
583 | - elseif (preg_match(':^#AD:',$message)) { |
|
628 | + } elseif (preg_match(':^#AD:',$message)) { |
|
584 | 629 | $decode = array_merge(array('Message nature' => 'Expected Taxi Clearance'),$decode); |
585 | - } |
|
586 | - elseif (preg_match(':^#AF:',$message)) { |
|
630 | + } elseif (preg_match(':^#AF:',$message)) { |
|
587 | 631 | $decode = array_merge(array('Message nature' => 'CPC Command/Response'),$decode); |
588 | - } |
|
589 | - elseif (preg_match(':^#B1:',$message)) { |
|
632 | + } elseif (preg_match(':^#B1:',$message)) { |
|
590 | 633 | $decode = array_merge(array('Message nature' => 'Request Oceanic Clearance'),$decode); |
591 | - } |
|
592 | - elseif (preg_match(':^#B2:',$message)) { |
|
634 | + } elseif (preg_match(':^#B2:',$message)) { |
|
593 | 635 | $decode = array_merge(array('Message nature' => 'Oceanic Clearance Readback'),$decode); |
594 | - } |
|
595 | - elseif (preg_match(':^#B3:',$message)) { |
|
636 | + } elseif (preg_match(':^#B3:',$message)) { |
|
596 | 637 | $decode = array_merge(array('Message nature' => 'Request Departure Clearance'),$decode); |
597 | - } |
|
598 | - elseif (preg_match(':^#B4:',$message)) { |
|
638 | + } elseif (preg_match(':^#B4:',$message)) { |
|
599 | 639 | $decode = array_merge(array('Message nature' => 'Departure Clearance Readback'),$decode); |
600 | - } |
|
601 | - elseif (preg_match(':^#B6:',$message)) { |
|
640 | + } elseif (preg_match(':^#B6:',$message)) { |
|
602 | 641 | $decode = array_merge(array('Message nature' => 'Provide ADS Report'),$decode); |
603 | - } |
|
604 | - elseif (preg_match(':^#B8:',$message)) { |
|
642 | + } elseif (preg_match(':^#B8:',$message)) { |
|
605 | 643 | $decode = array_merge(array('Message nature' => 'Request Departure Slot'),$decode); |
606 | - } |
|
607 | - elseif (preg_match(':^#B9:',$message)) { |
|
644 | + } elseif (preg_match(':^#B9:',$message)) { |
|
608 | 645 | $decode = array_merge(array('Message nature' => 'Request ATIS Report'),$decode); |
609 | - } |
|
610 | - elseif (preg_match(':^#B0:',$message)) { |
|
646 | + } elseif (preg_match(':^#B0:',$message)) { |
|
611 | 647 | $decode = array_merge(array('Message nature' => 'ATS Facility Notification'),$decode); |
612 | - } |
|
613 | - elseif (preg_match(':^#BA:',$message)) { |
|
648 | + } elseif (preg_match(':^#BA:',$message)) { |
|
614 | 649 | $decode = array_merge(array('Message nature' => 'ATCComm'),$decode); |
615 | - } |
|
616 | - elseif (preg_match(':^#BB:',$message)) { |
|
650 | + } elseif (preg_match(':^#BB:',$message)) { |
|
617 | 651 | $decode = array_merge(array('Message nature' => 'Request TWIP Report'),$decode); |
618 | - } |
|
619 | - elseif (preg_match(':^#BC:',$message)) { |
|
652 | + } elseif (preg_match(':^#BC:',$message)) { |
|
620 | 653 | $decode = array_merge(array('Message nature' => 'Pushback Clearance Request'),$decode); |
621 | - } |
|
622 | - elseif (preg_match(':^#BD:',$message)) { |
|
654 | + } elseif (preg_match(':^#BD:',$message)) { |
|
623 | 655 | $decode = array_merge(array('Message nature' => 'Expected Taxi Clearance Request'),$decode); |
624 | - } |
|
625 | - elseif (preg_match(':^#BE:',$message)) { |
|
656 | + } elseif (preg_match(':^#BE:',$message)) { |
|
626 | 657 | $decode = array_merge(array('Message nature' => 'CPC Aircraft Log-On/Off Request'),$decode); |
627 | - } |
|
628 | - elseif (preg_match(':^#BF:',$message)) { |
|
658 | + } elseif (preg_match(':^#BF:',$message)) { |
|
629 | 659 | $decode = array_merge(array('Message nature' => 'CPC WILCO/UNABLE Response'),$decode); |
630 | - } |
|
631 | - elseif (preg_match(':^#H3:',$message)) { |
|
660 | + } elseif (preg_match(':^#H3:',$message)) { |
|
632 | 661 | $decode = array_merge(array('Message nature' => 'Icing Report'),$decode); |
633 | 662 | } |
634 | 663 | } |
635 | 664 | if ($label == '10') { |
636 | 665 | if (preg_match(':^DTO01:',$message)) { |
637 | 666 | $decode = array_merge(array('Message nature' => 'Delayed Takeoff Report'),$decode); |
638 | - } |
|
639 | - elseif (preg_match(':^AIS01:',$message)) { |
|
667 | + } elseif (preg_match(':^AIS01:',$message)) { |
|
640 | 668 | $decode = array_merge(array('Message nature' => 'AIS Request'),$decode); |
641 | - } |
|
642 | - elseif (preg_match(':^FTX01:',$message)) { |
|
669 | + } elseif (preg_match(':^FTX01:',$message)) { |
|
643 | 670 | $decode = array_merge(array('Message nature' => 'Free Text Downlink'),$decode); |
644 | - } |
|
645 | - elseif (preg_match(':^FPL01:',$message)) { |
|
671 | + } elseif (preg_match(':^FPL01:',$message)) { |
|
646 | 672 | $decode = array_merge(array('Message nature' => 'Flight Plan Request'),$decode); |
647 | - } |
|
648 | - elseif (preg_match(':^WAB01:',$message)) { |
|
673 | + } elseif (preg_match(':^WAB01:',$message)) { |
|
649 | 674 | $decode = array_merge(array('Message nature' => 'Weight & Balance Request'),$decode); |
650 | - } |
|
651 | - elseif (preg_match(':^MET01:',$message)) { |
|
675 | + } elseif (preg_match(':^MET01:',$message)) { |
|
652 | 676 | $decode = array_merge(array('Message nature' => 'Weather Data Request'),$decode); |
653 | - } |
|
654 | - elseif (preg_match(':^WAB02:',$message)) { |
|
677 | + } elseif (preg_match(':^WAB02:',$message)) { |
|
655 | 678 | $decode = array_merge(array('Message nature' => 'Weight and Balance Acknowledgement'),$decode); |
656 | 679 | } |
657 | 680 | } |
@@ -666,38 +689,28 @@ discard block |
||
666 | 689 | $vsta = array('Version' => $version); |
667 | 690 | if ($state == 'E') { |
668 | 691 | $vsta = array_merge($vsta,array('Link state' => 'Established')); |
669 | - } |
|
670 | - elseif ($state == 'L') { |
|
692 | + } elseif ($state == 'L') { |
|
671 | 693 | $vsta = array_merge($vsta,array('Link state' => 'Lost')); |
672 | - } |
|
673 | - else { |
|
694 | + } else { |
|
674 | 695 | $vsta = array_merge($vsta,array('Link state' => 'Unknown')); |
675 | 696 | } |
676 | 697 | if ($type == 'V') { |
677 | 698 | $vsta = array_merge($vsta,array('Link type' => 'VHF ACARS')); |
678 | - } |
|
679 | - elseif ($type == 'S') { |
|
699 | + } elseif ($type == 'S') { |
|
680 | 700 | $vsta = array_merge($vsta,array('Link type' => 'Generic SATCOM')); |
681 | - } |
|
682 | - elseif ($type == 'H') { |
|
701 | + } elseif ($type == 'H') { |
|
683 | 702 | $vsta = array_merge($vsta,array('Link type' => 'HF')); |
684 | - } |
|
685 | - elseif ($type == 'G') { |
|
703 | + } elseif ($type == 'G') { |
|
686 | 704 | $vsta = array_merge($vsta,array('Link type' => 'GlobalStar SATCOM')); |
687 | - } |
|
688 | - elseif ($type == 'C') { |
|
705 | + } elseif ($type == 'C') { |
|
689 | 706 | $vsta = array_merge($vsta,array('Link type' => 'ICO SATCOM')); |
690 | - } |
|
691 | - elseif ($type == '2') { |
|
707 | + } elseif ($type == '2') { |
|
692 | 708 | $vsta = array_merge($vsta,array('Link type' => 'VDL Mode 2')); |
693 | - } |
|
694 | - elseif ($type == 'X') { |
|
709 | + } elseif ($type == 'X') { |
|
695 | 710 | $vsta = array_merge($vsta,array('Link type' => 'Inmarsat Aero')); |
696 | - } |
|
697 | - elseif ($type == 'I') { |
|
711 | + } elseif ($type == 'I') { |
|
698 | 712 | $vsta = array_merge($vsta,array('Link type' => 'Irridium SATCOM')); |
699 | - } |
|
700 | - else { |
|
713 | + } else { |
|
701 | 714 | $vsta = array_merge($vsta,array('Link type' => 'Unknown')); |
702 | 715 | } |
703 | 716 | $vsta = array_merge($vsta,array('Event occured at' => implode(':',str_split($at,2)))); |
@@ -706,7 +719,9 @@ discard block |
||
706 | 719 | } |
707 | 720 | |
708 | 721 | $title = $this->getTitlefromLabel($label); |
709 | - if ($title != '') $decode = array_merge(array('Message title' => $title),$decode); |
|
722 | + if ($title != '') { |
|
723 | + $decode = array_merge(array('Message title' => $title),$decode); |
|
724 | + } |
|
710 | 725 | /* |
711 | 726 | // Business jets always use GS0001 |
712 | 727 | if ($ident != 'GS0001') $info = $this->addModeSData($ident,$registration,$icao,$airicao,$latitude,$longitude); |
@@ -741,31 +756,54 @@ discard block |
||
741 | 756 | $msg = $message['message']; |
742 | 757 | $decode = $message['decode']; |
743 | 758 | $registration = (string)$message['registration']; |
744 | - if (isset($decode['latitude'])) $latitude = $decode['latitude']; |
|
745 | - else $latitude = ''; |
|
746 | - if (isset($decode['longitude'])) $longitude = $decode['longitude']; |
|
747 | - else $longitude = ''; |
|
748 | - if (isset($decode['airicao'])) $airicao = $decode['airicao']; |
|
749 | - else $airicao = ''; |
|
750 | - if (isset($decode['icao'])) $icao = $decode['icao']; |
|
751 | - else $icao = $Translation->checkTranslation($ident); |
|
759 | + if (isset($decode['latitude'])) { |
|
760 | + $latitude = $decode['latitude']; |
|
761 | + } else { |
|
762 | + $latitude = ''; |
|
763 | + } |
|
764 | + if (isset($decode['longitude'])) { |
|
765 | + $longitude = $decode['longitude']; |
|
766 | + } else { |
|
767 | + $longitude = ''; |
|
768 | + } |
|
769 | + if (isset($decode['airicao'])) { |
|
770 | + $airicao = $decode['airicao']; |
|
771 | + } else { |
|
772 | + $airicao = ''; |
|
773 | + } |
|
774 | + if (isset($decode['icao'])) { |
|
775 | + $icao = $decode['icao']; |
|
776 | + } else { |
|
777 | + $icao = $Translation->checkTranslation($ident); |
|
778 | + } |
|
752 | 779 | $image_array = $Image->getSpotterImage($registration); |
753 | 780 | if (!isset($image_array[0]['registration'])) { |
754 | 781 | $Image->addSpotterImage($registration); |
755 | 782 | } |
756 | 783 | // Business jets always use GS0001 |
757 | - if ($ident != 'GS0001') $info = $this->addModeSData($ident,$registration,$icao,$airicao,$latitude,$longitude); |
|
758 | - if ($globalDebug && isset($info) && $info != '') echo $info; |
|
759 | - if (count($decode) > 0) $decode_json = json_encode($decode); |
|
760 | - else $decode_json = ''; |
|
784 | + if ($ident != 'GS0001') { |
|
785 | + $info = $this->addModeSData($ident,$registration,$icao,$airicao,$latitude,$longitude); |
|
786 | + } |
|
787 | + if ($globalDebug && isset($info) && $info != '') { |
|
788 | + echo $info; |
|
789 | + } |
|
790 | + if (count($decode) > 0) { |
|
791 | + $decode_json = json_encode($decode); |
|
792 | + } else { |
|
793 | + $decode_json = ''; |
|
794 | + } |
|
761 | 795 | if (isset($decode['Departure airport']) && isset($decode['Departure hour']) && isset($decode['Arrival airport']) && isset($decode['Arrival hour'])) { |
762 | 796 | $Schedule->addSchedule($icao,$decode['Departure airport'],$decode['Departure hour'],$decode['Arrival airport'],$decode['Arrival hour'],'ACARS'); |
763 | 797 | } elseif (isset($decode['Departure airport']) && isset($decode['Arrival airport'])) { |
764 | 798 | $Schedule->addSchedule($icao,$decode['Departure airport'],'',$decode['Arrival airport'],'','ACARS'); |
765 | 799 | } |
766 | 800 | $result = $this->addLiveAcarsData($ident,$registration,$label,$block_id,$msg_no,$msg,$decode_json); |
767 | - if (!isset($globalACARSArchive)) $globalACARSArchive = array('10','80','81','82','3F'); |
|
768 | - if ($result && in_array($label,$globalACARSArchive)) $this->addArchiveAcarsData($ident,$registration,$label,$block_id,$msg_no,$msg,$decode_json); |
|
801 | + if (!isset($globalACARSArchive)) { |
|
802 | + $globalACARSArchive = array('10','80','81','82','3F'); |
|
803 | + } |
|
804 | + if ($result && in_array($label,$globalACARSArchive)) { |
|
805 | + $this->addArchiveAcarsData($ident,$registration,$label,$block_id,$msg_no,$msg,$decode_json); |
|
806 | + } |
|
769 | 807 | if ($globalDebug && count($decode) > 0) { |
770 | 808 | echo "Human readable data : ".implode(' - ',$decode)."\n"; |
771 | 809 | } |
@@ -788,7 +826,9 @@ discard block |
||
788 | 826 | if ($label != 'SQ' && $label != 'Q0' && $label != '_d' && $message != '') { |
789 | 827 | $Connection = new Connection($this->db); |
790 | 828 | $this->db = $Connection->db; |
791 | - if ($globalDebug) echo "Test if not already in Live ACARS table..."; |
|
829 | + if ($globalDebug) { |
|
830 | + echo "Test if not already in Live ACARS table..."; |
|
831 | + } |
|
792 | 832 | $query_test = "SELECT COUNT(*) as nb FROM acars_live WHERE ident = :ident AND registration = :registration AND message = :message"; |
793 | 833 | $query_test_values = array(':ident' => $ident,':registration' => $registration, ':message' => $message); |
794 | 834 | try { |
@@ -798,7 +838,9 @@ discard block |
||
798 | 838 | return "error : ".$e->getMessage(); |
799 | 839 | } |
800 | 840 | if ($stht->fetchColumn() == 0) { |
801 | - if ($globalDebug) echo "Add Live ACARS data..."; |
|
841 | + if ($globalDebug) { |
|
842 | + echo "Add Live ACARS data..."; |
|
843 | + } |
|
802 | 844 | $query = "INSERT INTO acars_live (ident,registration,label,block_id,msg_no,message,decode,date) VALUES (:ident,:registration,:label,:block_id,:msg_no,:message,:decode,:date)"; |
803 | 845 | $query_values = array(':ident' => $ident,':registration' => $registration, ':label' => $label,':block_id' => $block_id, ':msg_no' => $msg_no, ':message' => $message, ':decode' => $decode,':date' => date("Y-m-d H:i:s")); |
804 | 846 | try { |
@@ -808,10 +850,14 @@ discard block |
||
808 | 850 | return "error : ".$e->getMessage(); |
809 | 851 | } |
810 | 852 | } else { |
811 | - if ($globalDebug) echo "Data already in DB...\n"; |
|
853 | + if ($globalDebug) { |
|
854 | + echo "Data already in DB...\n"; |
|
855 | + } |
|
812 | 856 | return false; |
813 | 857 | } |
814 | - if ($globalDebug) echo "Done\n"; |
|
858 | + if ($globalDebug) { |
|
859 | + echo "Done\n"; |
|
860 | + } |
|
815 | 861 | return true; |
816 | 862 | } |
817 | 863 | } |
@@ -842,7 +888,9 @@ discard block |
||
842 | 888 | } |
843 | 889 | if ($stht->fetchColumn() == 0) { |
844 | 890 | */ |
845 | - if ($globalDebug) echo "Add Live ACARS data..."; |
|
891 | + if ($globalDebug) { |
|
892 | + echo "Add Live ACARS data..."; |
|
893 | + } |
|
846 | 894 | $query = "INSERT INTO acars_archive (ident,registration,label,block_id,msg_no,message,decode) VALUES (:ident,:registration,:label,:block_id,:msg_no,:message,:decode)"; |
847 | 895 | $query_values = array(':ident' => $ident,':registration' => $registration, ':label' => $label,':block_id' => $block_id, ':msg_no' => $msg_no, ':message' => $message, ':decode' => $decode); |
848 | 896 | try { |
@@ -851,7 +899,9 @@ discard block |
||
851 | 899 | } catch(PDOException $e) { |
852 | 900 | return "error : ".$e->getMessage(); |
853 | 901 | } |
854 | - if ($globalDebug) echo "Done\n"; |
|
902 | + if ($globalDebug) { |
|
903 | + echo "Done\n"; |
|
904 | + } |
|
855 | 905 | } |
856 | 906 | } |
857 | 907 | |
@@ -874,8 +924,11 @@ discard block |
||
874 | 924 | return ''; |
875 | 925 | } |
876 | 926 | $row = $sth->fetchAll(PDO::FETCH_ASSOC); |
877 | - if (count($row) > 0) return $row[0]['title']; |
|
878 | - else return ''; |
|
927 | + if (count($row) > 0) { |
|
928 | + return $row[0]['title']; |
|
929 | + } else { |
|
930 | + return ''; |
|
931 | + } |
|
879 | 932 | } |
880 | 933 | |
881 | 934 | /** |
@@ -894,8 +947,11 @@ discard block |
||
894 | 947 | return array(); |
895 | 948 | } |
896 | 949 | $row = $sth->fetchAll(PDO::FETCH_ASSOC); |
897 | - if (count($row) > 0) return $row; |
|
898 | - else return array(); |
|
950 | + if (count($row) > 0) { |
|
951 | + return $row; |
|
952 | + } else { |
|
953 | + return array(); |
|
954 | + } |
|
899 | 955 | } |
900 | 956 | |
901 | 957 | /** |
@@ -915,8 +971,11 @@ discard block |
||
915 | 971 | return array(); |
916 | 972 | } |
917 | 973 | $row = $sth->fetchAll(PDO::FETCH_ASSOC); |
918 | - if (count($row) > 0) return $row[0]; |
|
919 | - else return array(); |
|
974 | + if (count($row) > 0) { |
|
975 | + return $row[0]; |
|
976 | + } else { |
|
977 | + return array(); |
|
978 | + } |
|
920 | 979 | } |
921 | 980 | |
922 | 981 | /** |
@@ -961,19 +1020,35 @@ discard block |
||
961 | 1020 | if ($row['registration'] != '') { |
962 | 1021 | $row['registration'] = str_replace('.','',$row['registration']); |
963 | 1022 | $image_array = $Image->getSpotterImage($row['registration']); |
964 | - if (count($image_array) > 0) $data = array_merge($data,array('image' => $image_array[0]['image'],'image_thumbnail' => $image_array[0]['image_thumbnail'],'image_copyright' => $image_array[0]['image_copyright'],'image_source' => $image_array[0]['image_source'],'image_source_website' => $image_array[0]['image_source_website'])); |
|
965 | - else $data = array_merge($data,array('image' => '','image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
966 | - } else $data = array_merge($data,array('image' => '','image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
967 | - if ($row['registration'] == '') $row['registration'] = 'NA'; |
|
968 | - if ($row['ident'] == '') $row['ident'] = 'NA'; |
|
1023 | + if (count($image_array) > 0) { |
|
1024 | + $data = array_merge($data,array('image' => $image_array[0]['image'],'image_thumbnail' => $image_array[0]['image_thumbnail'],'image_copyright' => $image_array[0]['image_copyright'],'image_source' => $image_array[0]['image_source'],'image_source_website' => $image_array[0]['image_source_website'])); |
|
1025 | + } else { |
|
1026 | + $data = array_merge($data,array('image' => '','image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
1027 | + } |
|
1028 | + } else { |
|
1029 | + $data = array_merge($data,array('image' => '','image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
1030 | + } |
|
1031 | + if ($row['registration'] == '') { |
|
1032 | + $row['registration'] = 'NA'; |
|
1033 | + } |
|
1034 | + if ($row['ident'] == '') { |
|
1035 | + $row['ident'] = 'NA'; |
|
1036 | + } |
|
969 | 1037 | $identicao = $Spotter->getAllAirlineInfo(substr($row['ident'],0,2)); |
970 | 1038 | if (isset($identicao[0])) { |
971 | 1039 | if (substr($row['ident'],0,2) == 'AF') { |
972 | - if (filter_var(substr($row['ident'],2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) $icao = $row['ident']; |
|
973 | - else $icao = 'AFR'.ltrim(substr($row['ident'],2),'0'); |
|
974 | - } else $icao = $identicao[0]['icao'].ltrim(substr($row['ident'],2),'0'); |
|
1040 | + if (filter_var(substr($row['ident'],2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) { |
|
1041 | + $icao = $row['ident']; |
|
1042 | + } else { |
|
1043 | + $icao = 'AFR'.ltrim(substr($row['ident'],2),'0'); |
|
1044 | + } |
|
1045 | + } else { |
|
1046 | + $icao = $identicao[0]['icao'].ltrim(substr($row['ident'],2),'0'); |
|
1047 | + } |
|
975 | 1048 | $data = array_merge($data,array('airline_icao' => $identicao[0]['icao'],'airline_name' => $identicao[0]['name'])); |
976 | - } else $icao = $row['ident']; |
|
1049 | + } else { |
|
1050 | + $icao = $row['ident']; |
|
1051 | + } |
|
977 | 1052 | $icao = $Translation->checkTranslation($icao,false); |
978 | 1053 | $decode = json_decode($row['decode'],true); |
979 | 1054 | $found = false; |
@@ -998,7 +1073,9 @@ discard block |
||
998 | 1073 | $found = true; |
999 | 1074 | } |
1000 | 1075 | } |
1001 | - if ($found) $row['decode'] = json_encode($decode); |
|
1076 | + if ($found) { |
|
1077 | + $row['decode'] = json_encode($decode); |
|
1078 | + } |
|
1002 | 1079 | $data = array_merge($data,array('registration' => $row['registration'],'message' => $row['message'], 'date' => $row['date'], 'ident' => $icao, 'decode' => $row['decode'])); |
1003 | 1080 | $result[] = $data; |
1004 | 1081 | $i++; |
@@ -1006,8 +1083,9 @@ discard block |
||
1006 | 1083 | if (isset($result)) { |
1007 | 1084 | $result[0]['query_number_rows'] = $i; |
1008 | 1085 | return $result; |
1086 | + } else { |
|
1087 | + return array(); |
|
1009 | 1088 | } |
1010 | - else return array(); |
|
1011 | 1089 | } |
1012 | 1090 | |
1013 | 1091 | /** |
@@ -1056,31 +1134,51 @@ discard block |
||
1056 | 1134 | if ($row['registration'] != '') { |
1057 | 1135 | $row['registration'] = str_replace('.','',$row['registration']); |
1058 | 1136 | $image_array = $Image->getSpotterImage($row['registration']); |
1059 | - if (count($image_array) > 0) $data = array_merge($data,array('image_thumbnail' => $image_array[0]['image_thumbnail'],'image_copyright' => $image_array[0]['image_copyright'],'image_source' => $image_array[0]['image_source'],'image_source_website' => $image_array[0]['image_source_website'])); |
|
1060 | - else $data = array_merge($data,array('image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
1061 | - } else $data = array_merge($data,array('image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
1137 | + if (count($image_array) > 0) { |
|
1138 | + $data = array_merge($data,array('image_thumbnail' => $image_array[0]['image_thumbnail'],'image_copyright' => $image_array[0]['image_copyright'],'image_source' => $image_array[0]['image_source'],'image_source_website' => $image_array[0]['image_source_website'])); |
|
1139 | + } else { |
|
1140 | + $data = array_merge($data,array('image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
1141 | + } |
|
1142 | + } else { |
|
1143 | + $data = array_merge($data,array('image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
1144 | + } |
|
1062 | 1145 | $icao = ''; |
1063 | - if ($row['registration'] == '') $row['registration'] = 'NA'; |
|
1064 | - if ($row['ident'] == '') $row['ident'] = 'NA'; |
|
1146 | + if ($row['registration'] == '') { |
|
1147 | + $row['registration'] = 'NA'; |
|
1148 | + } |
|
1149 | + if ($row['ident'] == '') { |
|
1150 | + $row['ident'] = 'NA'; |
|
1151 | + } |
|
1065 | 1152 | $identicao = $Spotter->getAllAirlineInfo(substr($row['ident'],0,2)); |
1066 | 1153 | if (isset($identicao[0])) { |
1067 | 1154 | if (substr($row['ident'],0,2) == 'AF') { |
1068 | - if (filter_var(substr($row['ident'],2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) $icao = $row['ident']; |
|
1069 | - else $icao = 'AFR'.ltrim(substr($row['ident'],2),'0'); |
|
1070 | - } else $icao = $identicao[0]['icao'].ltrim(substr($row['ident'],2),'0'); |
|
1155 | + if (filter_var(substr($row['ident'],2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) { |
|
1156 | + $icao = $row['ident']; |
|
1157 | + } else { |
|
1158 | + $icao = 'AFR'.ltrim(substr($row['ident'],2),'0'); |
|
1159 | + } |
|
1160 | + } else { |
|
1161 | + $icao = $identicao[0]['icao'].ltrim(substr($row['ident'],2),'0'); |
|
1162 | + } |
|
1071 | 1163 | $data = array_merge($data,array('airline_icao' => $identicao[0]['icao'],'airline_name' => $identicao[0]['name'])); |
1072 | - } else $icao = $row['ident']; |
|
1164 | + } else { |
|
1165 | + $icao = $row['ident']; |
|
1166 | + } |
|
1073 | 1167 | $icao = $Translation->checkTranslation($icao); |
1074 | 1168 | $decode = json_decode($row['decode'],true); |
1075 | 1169 | $found = false; |
1076 | 1170 | if ($decode != '' && array_key_exists('Departure airport',$decode)) { |
1077 | 1171 | $airport_info = $Spotter->getAllAirportInfo($decode['Departure airport']); |
1078 | - if (isset($airport_info[0]['icao'])) $decode['Departure airport'] = '<a href="'.$globalURL.'/airport/'.$airport_info[0]['icao'].'">'.$airport_info[0]['city'].','.$airport_info[0]['country'].' ('.$airport_info[0]['icao'].')</a>'; |
|
1172 | + if (isset($airport_info[0]['icao'])) { |
|
1173 | + $decode['Departure airport'] = '<a href="'.$globalURL.'/airport/'.$airport_info[0]['icao'].'">'.$airport_info[0]['city'].','.$airport_info[0]['country'].' ('.$airport_info[0]['icao'].')</a>'; |
|
1174 | + } |
|
1079 | 1175 | $found = true; |
1080 | 1176 | } |
1081 | 1177 | if ($decode != '' && array_key_exists('Arrival airport',$decode)) { |
1082 | 1178 | $airport_info = $Spotter->getAllAirportInfo($decode['Arrival airport']); |
1083 | - if (isset($airport_info[0]['icao'])) $decode['Arrival airport'] = '<a href="'.$globalURL.'/airport/'.$airport_info[0]['icao'].'">'.$airport_info[0]['city'].','.$airport_info[0]['country'].' ('.$airport_info[0]['icao'].')</a>'; |
|
1179 | + if (isset($airport_info[0]['icao'])) { |
|
1180 | + $decode['Arrival airport'] = '<a href="'.$globalURL.'/airport/'.$airport_info[0]['icao'].'">'.$airport_info[0]['city'].','.$airport_info[0]['country'].' ('.$airport_info[0]['icao'].')</a>'; |
|
1181 | + } |
|
1084 | 1182 | $found = true; |
1085 | 1183 | } |
1086 | 1184 | if ($decode != '' && array_key_exists('Airport/Waypoint name',$decode)) { |
@@ -1090,7 +1188,9 @@ discard block |
||
1090 | 1188 | $found = true; |
1091 | 1189 | } |
1092 | 1190 | } |
1093 | - if ($found) $row['decode'] = json_encode($decode); |
|
1191 | + if ($found) { |
|
1192 | + $row['decode'] = json_encode($decode); |
|
1193 | + } |
|
1094 | 1194 | $data = array_merge($data,array('registration' => $row['registration'],'message' => $row['message'], 'date' => $row['date'], 'ident' => $icao, 'decode' => $row['decode'])); |
1095 | 1195 | $result[] = $data; |
1096 | 1196 | $i++; |
@@ -1098,7 +1198,9 @@ discard block |
||
1098 | 1198 | if (isset($result)) { |
1099 | 1199 | $result[0]['query_number_rows'] = $i; |
1100 | 1200 | return $result; |
1101 | - } else return array(); |
|
1201 | + } else { |
|
1202 | + return array(); |
|
1203 | + } |
|
1102 | 1204 | } |
1103 | 1205 | |
1104 | 1206 | /** |
@@ -1114,25 +1216,37 @@ discard block |
||
1114 | 1216 | $ident = trim($ident); |
1115 | 1217 | $Translation = new Translation($this->db); |
1116 | 1218 | $Spotter = new Spotter($this->db); |
1117 | - if ($globalDebug) echo "Test if we add ModeS data..."; |
|
1219 | + if ($globalDebug) { |
|
1220 | + echo "Test if we add ModeS data..."; |
|
1221 | + } |
|
1118 | 1222 | //if ($icao == '') $icao = ACARS->ident2icao($ident); |
1119 | - if ($icao == '') $icao = $Translation->checkTranslation($ident); |
|
1120 | - if ($globalDebug) echo '- Ident : '.$icao.' - '; |
|
1223 | + if ($icao == '') { |
|
1224 | + $icao = $Translation->checkTranslation($ident); |
|
1225 | + } |
|
1226 | + if ($globalDebug) { |
|
1227 | + echo '- Ident : '.$icao.' - '; |
|
1228 | + } |
|
1121 | 1229 | if ($ident == '' || $registration == '') { |
1122 | - if ($globalDebug) echo "Ident or registration null, exit\n"; |
|
1230 | + if ($globalDebug) { |
|
1231 | + echo "Ident or registration null, exit\n"; |
|
1232 | + } |
|
1123 | 1233 | return ''; |
1124 | 1234 | } |
1125 | 1235 | $registration = str_replace('.','',$registration); |
1126 | 1236 | $ident = $Translation->ident2icao($ident); |
1127 | 1237 | // Check if a flight with same registration is flying now, if ok check if callsign = name in ACARS, else add it to translation |
1128 | - if ($globalDebug) echo "Check if needed to add translation ".$ident.'... '; |
|
1238 | + if ($globalDebug) { |
|
1239 | + echo "Check if needed to add translation ".$ident.'... '; |
|
1240 | + } |
|
1129 | 1241 | $querysi = "SELECT ident FROM spotter_live s,aircraft_modes a WHERE a.ModeS = s.ModeS AND a.Registration = :registration AND s.format_source <> 'ACARS' LIMIT 1"; |
1130 | 1242 | $querysi_values = array(':registration' => $registration); |
1131 | 1243 | try { |
1132 | 1244 | $sthsi = $this->db->prepare($querysi); |
1133 | 1245 | $sthsi->execute($querysi_values); |
1134 | 1246 | } catch(PDOException $e) { |
1135 | - if ($globalDebug) echo $e->getMessage(); |
|
1247 | + if ($globalDebug) { |
|
1248 | + echo $e->getMessage(); |
|
1249 | + } |
|
1136 | 1250 | return "error : ".$e->getMessage(); |
1137 | 1251 | } |
1138 | 1252 | $resultsi = $sthsi->fetch(PDO::FETCH_ASSOC); |
@@ -1140,9 +1254,14 @@ discard block |
||
1140 | 1254 | if (count($resultsi) > 0 && $resultsi['ident'] != $ident && $resultsi['ident'] != '') { |
1141 | 1255 | $Translation = new Translation($this->db); |
1142 | 1256 | $trans_ident = $Translation->getOperator($resultsi['ident']); |
1143 | - if ($globalDebug) echo 'Add translation to table : '.$ident.' -> '.$resultsi['ident'].' '; |
|
1144 | - if ($ident != $trans_ident) $Translation->addOperator($resultsi['ident'],$ident,'ACARS'); |
|
1145 | - elseif ($trans_ident == $ident) $Translation->updateOperator($resultsi['ident'],$ident,'ACARS'); |
|
1257 | + if ($globalDebug) { |
|
1258 | + echo 'Add translation to table : '.$ident.' -> '.$resultsi['ident'].' '; |
|
1259 | + } |
|
1260 | + if ($ident != $trans_ident) { |
|
1261 | + $Translation->addOperator($resultsi['ident'],$ident,'ACARS'); |
|
1262 | + } elseif ($trans_ident == $ident) { |
|
1263 | + $Translation->updateOperator($resultsi['ident'],$ident,'ACARS'); |
|
1264 | + } |
|
1146 | 1265 | } else { |
1147 | 1266 | if ($registration != '' && $latitude != '' && $longitude != '') { |
1148 | 1267 | $query = "SELECT ModeS FROM aircraft_modes WHERE Registration = :registration LIMIT 1"; |
@@ -1151,32 +1270,46 @@ discard block |
||
1151 | 1270 | $sth = $this->db->prepare($query); |
1152 | 1271 | $sth->execute($query_values); |
1153 | 1272 | } catch(PDOException $e) { |
1154 | - if ($globalDebug) echo $e->getMessage(); |
|
1273 | + if ($globalDebug) { |
|
1274 | + echo $e->getMessage(); |
|
1275 | + } |
|
1155 | 1276 | return "error : ".$e->getMessage(); |
1156 | 1277 | } |
1157 | 1278 | $result = $sth->fetch(PDO::FETCH_ASSOC); |
1158 | 1279 | $sth->closeCursor(); |
1159 | - if (isset($result['modes'])) $hex = $result['modes']; |
|
1160 | - else $hex = ''; |
|
1280 | + if (isset($result['modes'])) { |
|
1281 | + $hex = $result['modes']; |
|
1282 | + } else { |
|
1283 | + $hex = ''; |
|
1284 | + } |
|
1161 | 1285 | $SI_data = array('hex' => $hex,'ident' => $ident,'aircraft_icao' => $ICAOTypeCode,'registration' => $registration,'latitude' => $latitude,'$longitude' => $longitude,'format_source' => 'ACARS'); |
1162 | - if ($this->fromACARSscript) $this->SI->add($SI_data); |
|
1286 | + if ($this->fromACARSscript) { |
|
1287 | + $this->SI->add($SI_data); |
|
1288 | + } |
|
1163 | 1289 | } |
1164 | 1290 | } |
1165 | - if ($globalDebug) echo 'Done'."\n"; |
|
1291 | + if ($globalDebug) { |
|
1292 | + echo 'Done'."\n"; |
|
1293 | + } |
|
1166 | 1294 | $query = "SELECT flightaware_id, ModeS FROM spotter_output WHERE ident = :ident AND format_source <> 'ACARS' ORDER BY spotter_id DESC LIMIT 1"; |
1167 | 1295 | $query_values = array(':ident' => $icao); |
1168 | 1296 | try { |
1169 | 1297 | $sth = $this->db->prepare($query); |
1170 | 1298 | $sth->execute($query_values); |
1171 | 1299 | } catch(PDOException $e) { |
1172 | - if ($globalDebug) echo $e->getMessage(); |
|
1300 | + if ($globalDebug) { |
|
1301 | + echo $e->getMessage(); |
|
1302 | + } |
|
1173 | 1303 | return "error : ".$e->getMessage(); |
1174 | 1304 | } |
1175 | 1305 | $result = $sth->fetch(PDO::FETCH_ASSOC); |
1176 | 1306 | $sth->closeCursor(); |
1177 | 1307 | if (isset($result['flightaware_id'])) { |
1178 | - if (isset($result['ModeS'])) $ModeS = $result['ModeS']; |
|
1179 | - else $ModeS = ''; |
|
1308 | + if (isset($result['ModeS'])) { |
|
1309 | + $ModeS = $result['ModeS']; |
|
1310 | + } else { |
|
1311 | + $ModeS = ''; |
|
1312 | + } |
|
1180 | 1313 | if ($ModeS == '') { |
1181 | 1314 | $id = explode('-',$result['flightaware_id']); |
1182 | 1315 | $ModeS = $id[0]; |
@@ -1189,24 +1322,32 @@ discard block |
||
1189 | 1322 | $sthc = $this->db->prepare($queryc); |
1190 | 1323 | $sthc->execute($queryc_values); |
1191 | 1324 | } catch(PDOException $e) { |
1192 | - if ($globalDebug) echo $e->getMessage(); |
|
1325 | + if ($globalDebug) { |
|
1326 | + echo $e->getMessage(); |
|
1327 | + } |
|
1193 | 1328 | return "error : ".$e->getMessage(); |
1194 | 1329 | } |
1195 | 1330 | $row = $sthc->fetch(PDO::FETCH_ASSOC); |
1196 | 1331 | $sthc->closeCursor(); |
1197 | 1332 | if (count($row) == 0) { |
1198 | - if ($globalDebug) echo " Add to ModeS table - "; |
|
1333 | + if ($globalDebug) { |
|
1334 | + echo " Add to ModeS table - "; |
|
1335 | + } |
|
1199 | 1336 | $queryi = "INSERT INTO aircraft_modes (ModeS,ModeSCountry,Registration,ICAOTypeCode,Source) VALUES (:ModeS,:ModeSCountry,:Registration, :ICAOTypeCode,'ACARS')"; |
1200 | 1337 | $queryi_values = array(':ModeS' => $ModeS,':ModeSCountry' => $country,':Registration' => $registration, ':ICAOTypeCode' => $ICAOTypeCode); |
1201 | 1338 | try { |
1202 | 1339 | $sthi = $this->db->prepare($queryi); |
1203 | 1340 | $sthi->execute($queryi_values); |
1204 | 1341 | } catch(PDOException $e) { |
1205 | - if ($globalDebug) echo $e->getMessage(); |
|
1342 | + if ($globalDebug) { |
|
1343 | + echo $e->getMessage(); |
|
1344 | + } |
|
1206 | 1345 | return "error : ".$e->getMessage(); |
1207 | 1346 | } |
1208 | 1347 | } else { |
1209 | - if ($globalDebug) echo " Update ModeS table - "; |
|
1348 | + if ($globalDebug) { |
|
1349 | + echo " Update ModeS table - "; |
|
1350 | + } |
|
1210 | 1351 | if ($ICAOTypeCode != '') { |
1211 | 1352 | $queryi = "UPDATE aircraft_modes SET ModeSCountry = :ModeSCountry,Registration = :Registration,ICAOTypeCode = :ICAOTypeCode,Source = 'ACARS',LastModified = NOW() WHERE ModeS = :ModeS"; |
1212 | 1353 | $queryi_values = array(':ModeS' => $ModeS,':ModeSCountry' => $country,':Registration' => $registration, ':ICAOTypeCode' => $ICAOTypeCode); |
@@ -1218,7 +1359,9 @@ discard block |
||
1218 | 1359 | $sthi = $this->db->prepare($queryi); |
1219 | 1360 | $sthi->execute($queryi_values); |
1220 | 1361 | } catch(PDOException $e) { |
1221 | - if ($globalDebug) echo $e->getMessage(); |
|
1362 | + if ($globalDebug) { |
|
1363 | + echo $e->getMessage(); |
|
1364 | + } |
|
1222 | 1365 | return "error : ".$e->getMessage(); |
1223 | 1366 | } |
1224 | 1367 | } |
@@ -1239,7 +1382,9 @@ discard block |
||
1239 | 1382 | return "error : ".$e->getMessage(); |
1240 | 1383 | } |
1241 | 1384 | */ |
1242 | - if ($globalDebug) echo " Update Spotter_output table - "; |
|
1385 | + if ($globalDebug) { |
|
1386 | + echo " Update Spotter_output table - "; |
|
1387 | + } |
|
1243 | 1388 | if ($ICAOTypeCode != '') { |
1244 | 1389 | if ($globalDBdriver == 'mysql') { |
1245 | 1390 | $queryi = "UPDATE spotter_output SET registration = :Registration,aircraft_icao = :ICAOTypeCode WHERE ident = :ident AND date >= date_sub(UTC_TIMESTAMP(), INTERVAL 1 HOUR)"; |
@@ -1250,8 +1395,7 @@ discard block |
||
1250 | 1395 | } else { |
1251 | 1396 | if ($globalDBdriver == 'mysql') { |
1252 | 1397 | $queryi = "UPDATE spotter_output SET registration = :Registration WHERE ident = :ident AND date >= date_sub(UTC_TIMESTAMP(), INTERVAL 1 HOUR)"; |
1253 | - } |
|
1254 | - elseif ($globalDBdriver == 'pgsql') { |
|
1398 | + } elseif ($globalDBdriver == 'pgsql') { |
|
1255 | 1399 | $queryi = "UPDATE spotter_output SET registration = :Registration WHERE ident = :ident AND date >= NOW() AT TIME ZONE 'UTC' - INTERVAL '1 HOUR'"; |
1256 | 1400 | } |
1257 | 1401 | $queryi_values = array(':Registration' => $registration,':ident' => $icao); |
@@ -1260,14 +1404,20 @@ discard block |
||
1260 | 1404 | $sthi = $this->db->prepare($queryi); |
1261 | 1405 | $sthi->execute($queryi_values); |
1262 | 1406 | } catch(PDOException $e) { |
1263 | - if ($globalDebug) echo $e->getMessage(); |
|
1407 | + if ($globalDebug) { |
|
1408 | + echo $e->getMessage(); |
|
1409 | + } |
|
1264 | 1410 | return "error : ".$e->getMessage(); |
1265 | 1411 | } |
1266 | 1412 | } |
1267 | 1413 | } else { |
1268 | - if ($globalDebug) echo " Can't find ModeS in spotter_output - "; |
|
1414 | + if ($globalDebug) { |
|
1415 | + echo " Can't find ModeS in spotter_output - "; |
|
1416 | + } |
|
1417 | + } |
|
1418 | + if ($globalDebug) { |
|
1419 | + echo "Done\n"; |
|
1269 | 1420 | } |
1270 | - if ($globalDebug) echo "Done\n"; |
|
1271 | 1421 | } |
1272 | 1422 | } |
1273 | 1423 | ?> |