Completed
Push — master ( e83874...2a1823 )
by Yannick
76:17 queued 48:09
created
require/class.MarineImport.php 1 patch
Braces   +193 added lines, -66 removed lines patch added patch discarded remove patch
@@ -54,7 +54,9 @@  discard block
 block discarded – undo
54 54
     public function checkAll() {
55 55
 	global $globalDebug, $globalNoDB;
56 56
 	if (!isset($globalNoDB) || $globalNoDB !== TRUE) {
57
-	    if ($globalDebug) echo "Update last seen tracked data...\n";
57
+	    if ($globalDebug) {
58
+	    	echo "Update last seen tracked data...\n";
59
+	    }
58 60
 	    foreach ($this->all_tracked as $key => $flight) {
59 61
 		if (isset($this->all_tracked[$key]['id'])) {
60 62
 		    //echo $this->all_tracked[$key]['id'].' - '.$this->all_tracked[$key]['latitude'].'  '.$this->all_tracked[$key]['longitude']."\n";
@@ -68,13 +70,17 @@  discard block
 block discarded – undo
68 70
     public function del() {
69 71
 	global $globalDebug, $globalNoDB, $globalNoImport;
70 72
 	// Delete old infos
71
-	if ($globalDebug) echo 'Delete old values and update latest data...'."\n";
73
+	if ($globalDebug) {
74
+		echo 'Delete old values and update latest data...'."\n";
75
+	}
72 76
 	foreach ($this->all_tracked as $key => $flight) {
73 77
     	    if (isset($flight['lastupdate'])) {
74 78
         	if ($flight['lastupdate'] < (time()-3000)) {
75 79
             	    if ((!isset($globalNoImport) || $globalNoImport !== TRUE) && (!isset($globalNoDB) || $globalNoDB !== TRUE)) {
76 80
             		if (isset($this->all_tracked[$key]['id'])) {
77
-            		    if ($globalDebug) echo "--- Delete old values with id ".$this->all_tracked[$key]['id']."\n";
81
+            		    if ($globalDebug) {
82
+            		    	echo "--- Delete old values with id ".$this->all_tracked[$key]['id']."\n";
83
+            		    }
78 84
 			    /*
79 85
 			    $MarineLive = new MarineLive();
80 86
             		    $MarineLive->deleteLiveMarineDataById($this->all_tracked[$key]['id']);
@@ -84,7 +90,9 @@  discard block
 block discarded – undo
84 90
             		    $Marine = new Marine($this->db);
85 91
             		    if ($this->all_tracked[$key]['latitude'] != '' && $this->all_tracked[$key]['longitude'] != '') {
86 92
 				$result = $Marine->updateLatestMarineData($this->all_tracked[$key]['id'],$this->all_tracked[$key]['ident'],$this->all_tracked[$key]['latitude'],$this->all_tracked[$key]['longitude'],$this->all_tracked[$key]['speed'],$this->all_tracked[$key]['datetime']);
87
-				if ($globalDebug && $result != 'success') echo '!!! ERROR : '.$result."\n";
93
+				if ($globalDebug && $result != 'success') {
94
+					echo '!!! ERROR : '.$result."\n";
95
+				}
88 96
 			    }
89 97
 			    // Put in archive
90 98
 //				$Marine->db = null;
@@ -98,7 +106,9 @@  discard block
 block discarded – undo
98 106
 
99 107
     public function add($line) {
100 108
 	global $globalFork, $globalDistanceIgnore, $globalDaemon, $globalDebug, $globalCoordMinChange, $globalDebugTimeElapsed, $globalCenterLatitude, $globalCenterLongitude, $globalBeta, $globalSourcesupdate, $globalAllTracked, $globalNoImport, $globalNoDB, $globalServerAPRS,$APRSMarine;
101
-	if (!isset($globalCoordMinChange) || $globalCoordMinChange == '') $globalCoordMinChange = '0.02';
109
+	if (!isset($globalCoordMinChange) || $globalCoordMinChange == '') {
110
+		$globalCoordMinChange = '0.02';
111
+	}
102 112
 	date_default_timezone_set('UTC');
103 113
 	$dataFound = false;
104 114
 	$send = false;
@@ -112,20 +122,30 @@  discard block
 block discarded – undo
112 122
 		// Increment message number
113 123
 		if (isset($line['sourcestats']) && $line['sourcestats'] == TRUE) {
114 124
 		    $current_date = date('Y-m-d');
115
-		    if (isset($line['source_name'])) $source = $line['source_name'];
116
-		    else $source = '';
117
-		    if ($source == '' || $line['format_source'] == 'aprs') $source = $line['format_source'];
125
+		    if (isset($line['source_name'])) {
126
+		    	$source = $line['source_name'];
127
+		    } else {
128
+		    	$source = '';
129
+		    }
130
+		    if ($source == '' || $line['format_source'] == 'aprs') {
131
+		    	$source = $line['format_source'];
132
+		    }
118 133
 		    if (!isset($this->stats[$current_date][$source]['msg'])) {
119 134
 		    	$this->stats[$current_date][$source]['msg']['date'] = time();
120 135
 		    	$this->stats[$current_date][$source]['msg']['nb'] = 1;
121
-		    } else $this->stats[$current_date][$source]['msg']['nb'] += 1;
136
+		    } else {
137
+		    	$this->stats[$current_date][$source]['msg']['nb'] += 1;
138
+		    }
122 139
 		}
123 140
 		
124 141
 		
125 142
 		$Common = new Common();
126 143
 		$AIS = new AIS();
127
-	        if (!isset($line['id'])) $id = trim($line['mmsi']);
128
-	        else $id = trim($line['id']);
144
+	        if (!isset($line['id'])) {
145
+	        	$id = trim($line['mmsi']);
146
+	        } else {
147
+	        	$id = trim($line['id']);
148
+	        }
129 149
 		
130 150
 		if (!isset($this->all_tracked[$id])) {
131 151
 		    $this->all_tracked[$id] = array();
@@ -133,10 +153,16 @@  discard block
 block discarded – undo
133 153
 		    $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('ident' => '','latitude' => '', 'longitude' => '', 'speed' => '0', 'heading' => '', 'format_source' => '','source_name' => '','comment'=> '','type' => '','typeid' => '','noarchive' => false,'putinarchive' => true,'over_country' => '','mmsi' => '','status' => '','status_id' => '','imo' => '','callsign' => '','arrival_code' => '','arrival_date' => '','mmsi_type' => ''));
134 154
 		    $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('lastupdate' => time()));
135 155
 		    if (!isset($line['id'])) {
136
-			if (!isset($globalDaemon)) $globalDaemon = TRUE;
156
+			if (!isset($globalDaemon)) {
157
+				$globalDaemon = TRUE;
158
+			}
137 159
 			$this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('id' => $id.'-'.date('YmdHi')));
138
-		     } else $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('id' => $line['id']));
139
-		    if ($globalAllTracked !== FALSE) $dataFound = true;
160
+		     } else {
161
+		     	$this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('id' => $line['id']));
162
+		     }
163
+		    if ($globalAllTracked !== FALSE) {
164
+		    	$dataFound = true;
165
+		    }
140 166
 		}
141 167
 		
142 168
 		if (isset($line['mmsi']) && $line['mmsi'] != '' && $line['mmsi'] != $this->all_tracked[$id]['mmsi']) {
@@ -186,35 +212,50 @@  discard block
 block discarded – undo
186 212
 				$Marine = new Marine($this->db);
187 213
 				$fromsource = NULL;
188 214
 				$result = $Marine->updateIdentMarineData($this->all_tracked[$id]['id'],$this->all_tracked[$id]['ident'],$fromsource);
189
-				if ($globalDebug && $result != 'success') echo '!!! ERROR : '.$result."\n";
215
+				if ($globalDebug && $result != 'success') {
216
+					echo '!!! ERROR : '.$result."\n";
217
+				}
190 218
 				$Marine->addIdentity($this->all_tracked[$id]['mmsi'],$this->all_tracked[$id]['imo'],$this->all_tracked[$id]['ident'],$this->all_tracked[$id]['callsign'],$this->all_tracked[$id]['type']);
191 219
 				$Marine->db = null;
192
-				if ($globalDebugTimeElapsed) echo 'Time elapsed for update identspotterdata : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
220
+				if ($globalDebugTimeElapsed) {
221
+					echo 'Time elapsed for update identspotterdata : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
222
+				}
193 223
 			    }
194 224
 			}
195 225
 		    }
196
-		    if (!isset($this->all_tracked[$id]['id'])) $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('id' => $this->all_tracked[$id]['ident']));
226
+		    if (!isset($this->all_tracked[$id]['id'])) {
227
+		    	$this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('id' => $this->all_tracked[$id]['ident']));
228
+		    }
197 229
 		}
198 230
 
199 231
 		if (isset($line['datetime']) && strtotime($line['datetime']) > time()-30*60 && strtotime($line['datetime']) < time()+20*60) {
200 232
 		    if (!isset($this->all_tracked[$id]['datetime']) || strtotime($line['datetime']) > strtotime($this->all_tracked[$id]['datetime'])) {
201 233
 			$this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('datetime' => $line['datetime']));
202 234
 		    } else {
203
-				if (strtotime($line['datetime']) == strtotime($this->all_tracked[$id]['datetime']) && $globalDebug) echo "!!! Date is the same as previous data for ".$this->all_tracked[$id]['mmsi']."\n";
204
-				elseif (strtotime($line['datetime']) > strtotime($this->all_tracked[$id]['datetime']) && $globalDebug) echo "!!! Date previous latest data (".$line['datetime']." > ".$this->all_tracked[$id]['datetime'].") !!! for ".$this->all_tracked[$id]['hex']." - format : ".$line['format_source']."\n";
235
+				if (strtotime($line['datetime']) == strtotime($this->all_tracked[$id]['datetime']) && $globalDebug) {
236
+					echo "!!! Date is the same as previous data for ".$this->all_tracked[$id]['mmsi']."\n";
237
+				} elseif (strtotime($line['datetime']) > strtotime($this->all_tracked[$id]['datetime']) && $globalDebug) {
238
+					echo "!!! Date previous latest data (".$line['datetime']." > ".$this->all_tracked[$id]['datetime'].") !!! for ".$this->all_tracked[$id]['hex']." - format : ".$line['format_source']."\n";
239
+				}
205 240
 				return '';
206 241
 		    }
207 242
 		} elseif (isset($line['datetime']) && strtotime($line['datetime']) <= time()-30*60) {
208
-			if ($globalDebug) echo "!!! Date is too old ".$this->all_tracked[$id]['mmsi']." - format : ".$line['format_source']."!!!";
243
+			if ($globalDebug) {
244
+				echo "!!! Date is too old ".$this->all_tracked[$id]['mmsi']." - format : ".$line['format_source']."!!!";
245
+			}
209 246
 			return '';
210 247
 		} elseif (isset($line['datetime']) && strtotime($line['datetime']) >= time()+20*60) {
211
-			if ($globalDebug) echo "!!! Date is in the future ".$this->all_tracked[$id]['mmsi']." - format : ".$line['format_source']."!!!";
248
+			if ($globalDebug) {
249
+				echo "!!! Date is in the future ".$this->all_tracked[$id]['mmsi']." - format : ".$line['format_source']."!!!";
250
+			}
212 251
 			return '';
213 252
 		} elseif (!isset($line['datetime'])) {
214 253
 			date_default_timezone_set('UTC');
215 254
 			$this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('datetime' => date('Y-m-d H:i:s')));
216 255
 		} else {
217
-			if ($globalDebug) echo "!!! Unknow date error ".$this->all_tracked[$id]['mmsi']." date: ".$line['datetime']." - format : ".$line['format_source']."!!!";
256
+			if ($globalDebug) {
257
+				echo "!!! Unknow date error ".$this->all_tracked[$id]['mmsi']." date: ".$line['datetime']." - format : ".$line['format_source']."!!!";
258
+			}
218 259
 			return '';
219 260
 		}
220 261
 
@@ -227,14 +268,21 @@  discard block
 block discarded – undo
227 268
 		    if ($distance > 1000 && $distance < 10000) {
228 269
 			$speed = $distance/(time() - $this->all_tracked[$id]['time_last_coord']);
229 270
 			$speed = $speed*3.6;
230
-			if ($speed < 1000) $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('speed' => round($speed)));
231
-  			if ($globalDebug) echo "ø Calculated Speed for ".$this->all_tracked[$id]['hex']." : ".$speed." - distance : ".$distance."\n";
271
+			if ($speed < 1000) {
272
+				$this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('speed' => round($speed)));
273
+			}
274
+  			if ($globalDebug) {
275
+  				echo "ø Calculated Speed for ".$this->all_tracked[$id]['hex']." : ".$speed." - distance : ".$distance."\n";
276
+  			}
232 277
 		    }
233 278
 		}
234 279
 
235 280
 	        if (isset($line['latitude']) && isset($line['longitude']) && $line['latitude'] != '' && $line['longitude'] != '' && is_numeric($line['latitude']) && is_numeric($line['longitude'])) {
236
-	    	    if (isset($this->all_tracked[$id]['time_last_coord'])) $timediff = round(time()-$this->all_tracked[$id]['time_last_coord']);
237
-	    	    else unset($timediff);
281
+	    	    if (isset($this->all_tracked[$id]['time_last_coord'])) {
282
+	    	    	$timediff = round(time()-$this->all_tracked[$id]['time_last_coord']);
283
+	    	    } else {
284
+	    	    	unset($timediff);
285
+	    	    }
238 286
 	    	    if ($this->tmd > 5 || !isset($timediff) || $timediff > 2000 || ($timediff > 30 && isset($this->all_tracked[$id]['latitude']) && isset($this->all_tracked[$id]['longitude']) && $Common->withinThreshold($timediff,$Common->distance($line['latitude'],$line['longitude'],$this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],'m')))) {
239 287
 			if (isset($this->all_tracked[$id]['archive_latitude']) && isset($this->all_tracked[$id]['archive_longitude']) && isset($this->all_tracked[$id]['livedb_latitude']) && isset($this->all_tracked[$id]['livedb_longitude'])) {
240 288
 			    if (!$Common->checkLine($this->all_tracked[$id]['archive_latitude'],$this->all_tracked[$id]['archive_longitude'],$this->all_tracked[$id]['livedb_latitude'],$this->all_tracked[$id]['livedb_longitude'],$line['latitude'],$line['longitude'])) {
@@ -242,22 +290,32 @@  discard block
 block discarded – undo
242 290
 				$this->all_tracked[$id]['archive_longitude'] = $line['longitude'];
243 291
 				$this->all_tracked[$id]['putinarchive'] = true;
244 292
 				
245
-				if ($globalDebug) echo "\n".' ------- Check Country for '.$this->all_tracked[$id]['ident'].' with latitude : '.$line['latitude'].' and longitude : '.$line['longitude'].'.... ';
293
+				if ($globalDebug) {
294
+					echo "\n".' ------- Check Country for '.$this->all_tracked[$id]['ident'].' with latitude : '.$line['latitude'].' and longitude : '.$line['longitude'].'.... ';
295
+				}
246 296
 				$timeelapsed = microtime(true);
247 297
 				if (!isset($globalNoDB) || $globalNoDB !== TRUE) {
248 298
 				    $Marine = new Marine($this->db);
249 299
 				    $all_country = $Marine->getCountryFromLatitudeLongitude($line['latitude'],$line['longitude']);
250
-				    if (!empty($all_country)) $this->all_tracked[$id]['over_country'] = $all_country['iso2'];
300
+				    if (!empty($all_country)) {
301
+				    	$this->all_tracked[$id]['over_country'] = $all_country['iso2'];
302
+				    }
251 303
 				    $Marine->db = null;
252
-				    if ($globalDebugTimeElapsed) echo 'Time elapsed for update getCountryFromlatitudeLongitude : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
304
+				    if ($globalDebugTimeElapsed) {
305
+				    	echo 'Time elapsed for update getCountryFromlatitudeLongitude : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
306
+				    }
253 307
 				}
254 308
 				$this->tmd = 0;
255
-				if ($globalDebug) echo 'FOUND : '.$this->all_tracked[$id]['over_country'].' ---------------'."\n";
309
+				if ($globalDebug) {
310
+					echo 'FOUND : '.$this->all_tracked[$id]['over_country'].' ---------------'."\n";
311
+				}
256 312
 			    }
257 313
 			}
258 314
 
259 315
 			if (isset($line['latitude']) && $line['latitude'] != '' && $line['latitude'] != 0 && $line['latitude'] < 91 && $line['latitude'] > -90) {
260
-				if (!isset($this->all_tracked[$id]['archive_latitude'])) $this->all_tracked[$id]['archive_latitude'] = $line['latitude'];
316
+				if (!isset($this->all_tracked[$id]['archive_latitude'])) {
317
+					$this->all_tracked[$id]['archive_latitude'] = $line['latitude'];
318
+				}
261 319
 				if (!isset($this->all_tracked[$id]['livedb_latitude']) || abs($this->all_tracked[$id]['livedb_latitude']-$line['latitude']) > $globalCoordMinChange || $this->all_tracked[$id]['format_source'] == 'aprs') {
262 320
 				    $this->all_tracked[$id]['livedb_latitude'] = $line['latitude'];
263 321
 				    $dataFound = true;
@@ -266,8 +324,12 @@  discard block
 block discarded – undo
266 324
 				$this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('latitude' => $line['latitude']));
267 325
 			}
268 326
 			if (isset($line['longitude']) && $line['longitude'] != '' && $line['longitude'] != 0 && $line['longitude'] < 360 && $line['longitude'] > -180) {
269
-			    if ($line['longitude'] > 180) $line['longitude'] = $line['longitude'] - 360;
270
-				if (!isset($this->all_tracked[$id]['archive_longitude'])) $this->all_tracked[$id]['archive_longitude'] = $line['longitude'];
327
+			    if ($line['longitude'] > 180) {
328
+			    	$line['longitude'] = $line['longitude'] - 360;
329
+			    }
330
+				if (!isset($this->all_tracked[$id]['archive_longitude'])) {
331
+					$this->all_tracked[$id]['archive_longitude'] = $line['longitude'];
332
+				}
271 333
 				if (!isset($this->all_tracked[$id]['livedb_longitude']) || abs($this->all_tracked[$id]['livedb_longitude']-$line['longitude']) > $globalCoordMinChange || $this->all_tracked[$id]['format_source'] == 'aprs') {
272 334
 				    $this->all_tracked[$id]['livedb_longitude'] = $line['longitude'];
273 335
 				    $dataFound = true;
@@ -285,7 +347,9 @@  discard block
 block discarded – undo
285 347
 		    }
286 348
 		}
287 349
 		if (isset($line['last_update']) && $line['last_update'] != '') {
288
-		    if (isset($this->all_tracked[$id]['last_update']) && $this->all_tracked[$id]['last_update'] != $line['last_update']) $dataFound = true;
350
+		    if (isset($this->all_tracked[$id]['last_update']) && $this->all_tracked[$id]['last_update'] != $line['last_update']) {
351
+		    	$dataFound = true;
352
+		    }
289 353
 		    $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('last_update' => $line['last_update']));
290 354
 		}
291 355
 		if (isset($line['format_source']) && $line['format_source'] != '') {
@@ -315,15 +379,21 @@  discard block
 block discarded – undo
315 379
 		}
316 380
 		
317 381
 		if (isset($line['heading']) && $line['heading'] != '') {
318
-		    if (is_int($this->all_tracked[$id]['heading']) && abs($this->all_tracked[$id]['heading']-round($line['heading'])) > 10) $this->all_tracked[$id]['putinarchive'] = true;
382
+		    if (is_int($this->all_tracked[$id]['heading']) && abs($this->all_tracked[$id]['heading']-round($line['heading'])) > 10) {
383
+		    	$this->all_tracked[$id]['putinarchive'] = true;
384
+		    }
319 385
 		    $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('heading' => round($line['heading'])));
320 386
 		    $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('heading_fromsrc' => true));
321 387
 		    //$dataFound = true;
322 388
   		} elseif (!isset($this->all_tracked[$id]['heading_fromsrc']) && isset($this->all_tracked[$id]['archive_latitude']) && $this->all_tracked[$id]['archive_latitude'] != $this->all_tracked[$id]['latitude'] && isset($this->all_tracked[$id]['archive_longitude']) && $this->all_tracked[$id]['archive_longitude'] != $this->all_tracked[$id]['longitude']) {
323 389
   		    $heading = $Common->getHeading($this->all_tracked[$id]['archive_latitude'],$this->all_tracked[$id]['archive_longitude'],$this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude']);
324 390
 		    $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('heading' => round($heading)));
325
-		    if (abs($this->all_tracked[$id]['heading']-round($heading)) > 10) $this->all_tracked[$id]['putinarchive'] = true;
326
-  		    if ($globalDebug) echo "ø Calculated Heading for ".$this->all_tracked[$id]['ident']." : ".$heading."\n";
391
+		    if (abs($this->all_tracked[$id]['heading']-round($heading)) > 10) {
392
+		    	$this->all_tracked[$id]['putinarchive'] = true;
393
+		    }
394
+  		    if ($globalDebug) {
395
+  		    	echo "ø Calculated Heading for ".$this->all_tracked[$id]['ident']." : ".$heading."\n";
396
+  		    }
327 397
   		}
328 398
 		//if (isset($globalSourcesupdate) && $globalSourcesupdate != '' && isset($this->all_tracked[$id]['lastupdate']) && time()-$this->all_tracked[$id]['lastupdate'] < $globalSourcesupdate) $dataFound = false;
329 399
 
@@ -335,23 +405,38 @@  discard block
 block discarded – undo
335 405
 		        if (!isset($globalDistanceIgnore['latitude']) || $this->all_tracked[$id]['longitude'] == ''  || $this->all_tracked[$id]['latitude'] == '' || (isset($globalDistanceIgnore['latitude']) && $Common->distance($this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],$globalDistanceIgnore['latitude'],$globalDistanceIgnore['longitude']) < $globalDistanceIgnore['distance'])) {
336 406
 			    if (!isset($this->all_tracked[$id]['forcenew']) || $this->all_tracked[$id]['forcenew'] == 0) {
337 407
 				if (!isset($globalNoDB) || $globalNoDB !== TRUE) {
338
-				    if ($globalDebug) echo "Check if vessel is already in DB...";
408
+				    if ($globalDebug) {
409
+				    	echo "Check if vessel is already in DB...";
410
+				    }
339 411
 				    $timeelapsed = microtime(true);
340 412
 				    $MarineLive = new MarineLive($this->db);
341 413
 				    if (isset($line['id'])) {
342 414
 					$recent_ident = $MarineLive->checkIdRecent($line['id']);
343
-					if ($globalDebugTimeElapsed) echo 'Time elapsed for update checkIdRecent : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
415
+					if ($globalDebugTimeElapsed) {
416
+						echo 'Time elapsed for update checkIdRecent : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
417
+					}
344 418
 				    } elseif (isset($this->all_tracked[$id]['mmsi']) && $this->all_tracked[$id]['mmsi'] != '') {
345 419
 					$recent_ident = $MarineLive->checkMMSIRecent($this->all_tracked[$id]['mmsi']);
346
-					if ($globalDebugTimeElapsed) echo 'Time elapsed for update checkIdentRecent : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
420
+					if ($globalDebugTimeElapsed) {
421
+						echo 'Time elapsed for update checkIdentRecent : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
422
+					}
347 423
 				    } elseif (isset($this->all_tracked[$id]['ident']) && $this->all_tracked[$id]['ident'] != '') {
348 424
 					$recent_ident = $MarineLive->checkIdentRecent($this->all_tracked[$id]['ident']);
349
-					if ($globalDebugTimeElapsed) echo 'Time elapsed for update checkIdentRecent : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
350
-				    } else $recent_ident = '';
425
+					if ($globalDebugTimeElapsed) {
426
+						echo 'Time elapsed for update checkIdentRecent : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
427
+					}
428
+				    } else {
429
+				    	$recent_ident = '';
430
+				    }
351 431
 				    $MarineLive->db=null;
352
-				    if ($globalDebug && $recent_ident == '') echo " Not in DB.\n";
353
-				    elseif ($globalDebug && $recent_ident != '') echo " Already in DB.\n";
354
-				} else $recent_ident = '';
432
+				    if ($globalDebug && $recent_ident == '') {
433
+				    	echo " Not in DB.\n";
434
+				    } elseif ($globalDebug && $recent_ident != '') {
435
+				    	echo " Already in DB.\n";
436
+				    }
437
+				} else {
438
+					$recent_ident = '';
439
+				}
355 440
 			    } else {
356 441
 				$recent_ident = '';
357 442
 				$this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('forcenew' => 0));
@@ -359,30 +444,44 @@  discard block
 block discarded – undo
359 444
 			    //if there was no vessel with the same callsign within the last hour and go post it into the archive
360 445
 			    if($recent_ident == "" && $this->all_tracked[$id]['latitude'] != '' && $this->all_tracked[$id]['longitude'] != '')
361 446
 			    {
362
-				if ($globalDebug) echo "\o/ Add ".$this->all_tracked[$id]['mmsi']." in archive DB : ";
447
+				if ($globalDebug) {
448
+					echo "\o/ Add ".$this->all_tracked[$id]['mmsi']." in archive DB : ";
449
+				}
363 450
 				//adds the spotter data for the archive
364 451
 				    $highlight = '';
365
-				    if (!isset($this->all_tracked[$id]['id'])) $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('id' => $this->all_tracked[$id]['mmsi'].'-'.date('YmdHi')));
452
+				    if (!isset($this->all_tracked[$id]['id'])) {
453
+				    	$this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('id' => $this->all_tracked[$id]['mmsi'].'-'.date('YmdHi')));
454
+				    }
366 455
 				    if (!isset($globalNoImport) || $globalNoImport !== TRUE) {
367 456
 					if (!isset($globalNoDB) || $globalNoDB !== TRUE) {
368 457
 					    $timeelapsed = microtime(true);
369 458
 					    $Marine = new Marine($this->db);
370 459
 					    $result = $Marine->addMarineData($this->all_tracked[$id]['id'], $this->all_tracked[$id]['ident'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], $this->all_tracked[$id]['heading'], $this->all_tracked[$id]['speed'], $this->all_tracked[$id]['datetime'], $this->all_tracked[$id]['mmsi'], $this->all_tracked[$id]['type'],$this->all_tracked[$id]['typeid'],$this->all_tracked[$id]['imo'],$this->all_tracked[$id]['callsign'],$this->all_tracked[$id]['arrival_code'],$this->all_tracked[$id]['arrival_date'], $this->all_tracked[$id]['status'], $this->all_tracked[$id]['status_id'],$this->all_tracked[$id]['format_source'],$this->all_tracked[$id]['source_name']);
371 460
 					    $Marine->db = null;
372
-					    if ($globalDebug && isset($result)) echo $result."\n";
373
-					    if ($globalDebugTimeElapsed) echo 'Time elapsed for update addspotterdata : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
461
+					    if ($globalDebug && isset($result)) {
462
+					    	echo $result."\n";
463
+					    }
464
+					    if ($globalDebugTimeElapsed) {
465
+					    	echo 'Time elapsed for update addspotterdata : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
466
+					    }
374 467
 					}
375 468
 				    }
376 469
 				    if (isset($line['sourcestats']) && $line['sourcestats'] == TRUE && $this->all_tracked[$id]['latitude'] != '' && $this->all_tracked[$id]['longitude'] != '') {
377 470
 					// Add source stat in DB
378 471
 					$Stats = new Stats($this->db);
379 472
 					if (!empty($this->stats)) {
380
-					    if ($globalDebug) echo 'Add source stats : ';
473
+					    if ($globalDebug) {
474
+					    	echo 'Add source stats : ';
475
+					    }
381 476
 				    	    foreach($this->stats as $date => $data) {
382 477
 						foreach($data as $source => $sourced) {
383 478
 					    	    //print_r($sourced);
384
-				    	    	    if (isset($sourced['polar'])) echo $Stats->addStatSource(json_encode($sourced['polar']),$source,'polar_marine',$date);
385
-				    	    	    if (isset($sourced['hist'])) echo $Stats->addStatSource(json_encode($sourced['hist']),$source,'hist_marine',$date);
479
+				    	    	    if (isset($sourced['polar'])) {
480
+				    	    	    	echo $Stats->addStatSource(json_encode($sourced['polar']),$source,'polar_marine',$date);
481
+				    	    	    }
482
+				    	    	    if (isset($sourced['hist'])) {
483
+				    	    	    	echo $Stats->addStatSource(json_encode($sourced['hist']),$source,'hist_marine',$date);
484
+				    	    	    }
386 485
 				    		    if (isset($sourced['msg'])) {
387 486
 				    			if (time() - $sourced['msg']['date'] > 10) {
388 487
 				    		    	    $nbmsg = round($sourced['msg']['nb']/(time() - $sourced['msg']['date']));
@@ -395,7 +494,9 @@  discard block
 block discarded – undo
395 494
 			    			    unset($this->stats[$date]);
396 495
 			    			}
397 496
 				    	    }
398
-				    	    if ($globalDebug) echo 'Done'."\n";
497
+				    	    if ($globalDebug) {
498
+				    	    	echo 'Done'."\n";
499
+				    	    }
399 500
 					}
400 501
 					$Stats->db = null;
401 502
 				    }
@@ -405,13 +506,17 @@  discard block
 block discarded – undo
405 506
 				$this->all_tracked[$id]['addedMarine'] = 1;
406 507
 				//print_r($this->all_tracked[$id]);
407 508
 				if ($this->last_delete == 0 || time() - $this->last_delete > 1800) {
408
-				    if ($globalDebug) echo "---- Deleting Live Marine data older than 9 hours...";
509
+				    if ($globalDebug) {
510
+				    	echo "---- Deleting Live Marine data older than 9 hours...";
511
+				    }
409 512
 				    //MarineLive->deleteLiveMarineDataNotUpdated();
410 513
 				    if (!isset($globalNoDB) || $globalNoDB !== TRUE) {
411 514
 					$MarineLive = new MarineLive($this->db);
412 515
 					$MarineLive->deleteLiveMarineData();
413 516
 					$MarineLive->db=null;
414
-					if ($globalDebug) echo " Done\n";
517
+					if ($globalDebug) {
518
+						echo " Done\n";
519
+					}
415 520
 				    }
416 521
 				    $this->last_delete = time();
417 522
 				}
@@ -437,15 +542,21 @@  discard block
 block discarded – undo
437 542
 
438 543
 		    if (!$ignoreImport) {
439 544
 			if (!isset($globalDistanceIgnore['latitude']) || (isset($globalDistanceIgnore['latitude']) && $Common->distance($this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],$globalDistanceIgnore['latitude'],$globalDistanceIgnore['longitude']) < $globalDistanceIgnore['distance'])) {
440
-				if ($globalDebug) echo "\o/ Add ".$this->all_tracked[$id]['ident']." from ".$this->all_tracked[$id]['format_source']." in Live DB : ";
545
+				if ($globalDebug) {
546
+					echo "\o/ Add ".$this->all_tracked[$id]['ident']." from ".$this->all_tracked[$id]['format_source']." in Live DB : ";
547
+				}
441 548
 				if (!isset($globalNoImport) || $globalNoImport !== TRUE) {
442 549
 				    if (!isset($globalNoDB) || $globalNoDB !== TRUE) {
443 550
 					$timeelapsed = microtime(true);
444 551
 					$MarineLive = new MarineLive($this->db);
445 552
 					$result = $MarineLive->addLiveMarineData($this->all_tracked[$id]['id'], $this->all_tracked[$id]['ident'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], $this->all_tracked[$id]['heading'], $this->all_tracked[$id]['speed'],$this->all_tracked[$id]['datetime'], $this->all_tracked[$id]['putinarchive'],$this->all_tracked[$id]['mmsi'],$this->all_tracked[$id]['type'],$this->all_tracked[$id]['typeid'],$this->all_tracked[$id]['imo'],$this->all_tracked[$id]['callsign'],$this->all_tracked[$id]['arrival_code'],$this->all_tracked[$id]['arrival_date'],$this->all_tracked[$id]['status'],$this->all_tracked[$id]['status_id'],$this->all_tracked[$id]['noarchive'],$this->all_tracked[$id]['format_source'],$this->all_tracked[$id]['source_name'],$this->all_tracked[$id]['over_country']);
446 553
 					$MarineLive->db = null;
447
-					if ($globalDebug) echo $result."\n";
448
-					if ($globalDebugTimeElapsed) echo 'Time elapsed for update addlivespotterdata : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
554
+					if ($globalDebug) {
555
+						echo $result."\n";
556
+					}
557
+					if ($globalDebugTimeElapsed) {
558
+						echo 'Time elapsed for update addlivespotterdata : '.round(microtime(true)-$timeelapsed,2).'s'."\n";
559
+					}
449 560
 				    }
450 561
 				}
451 562
 				if (isset($globalServerAPRS) && $globalServerAPRS && $this->all_tracked[$id]['putinarchive']) {
@@ -457,7 +568,9 @@  discard block
 block discarded – undo
457 568
 				
458 569
 				if (isset($line['sourcestats']) && $line['sourcestats'] == TRUE && $line['format_source'] != 'aprs' && $this->all_tracked[$id]['latitude'] != '' && $this->all_tracked[$id]['longitude'] != '') {
459 570
 					$source = $this->all_tracked[$id]['source_name'];
460
-					if ($source == '') $source = $this->all_tracked[$id]['format_source'];
571
+					if ($source == '') {
572
+						$source = $this->all_tracked[$id]['format_source'];
573
+					}
461 574
 					if (!isset($this->source_location[$source])) {
462 575
 						$Location = new Source($this->db);
463 576
 						$coord = $Location->getLocationInfobySourceName($source);
@@ -478,7 +591,9 @@  discard block
 block discarded – undo
478 591
 					$stats_heading = round($stats_heading/22.5);
479 592
 					$stats_distance = $Common->distance($latitude,$longitude,$this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude']);
480 593
 					$current_date = date('Y-m-d');
481
-					if ($stats_heading == 16) $stats_heading = 0;
594
+					if ($stats_heading == 16) {
595
+						$stats_heading = 0;
596
+					}
482 597
 					if (!isset($this->stats[$current_date][$source]['polar'][1])) {
483 598
 						for ($i=0;$i<=15;$i++) {
484 599
 						    $this->stats[$current_date][$source]['polar'][$i] = 0;
@@ -496,7 +611,9 @@  discard block
 block discarded – undo
496 611
 						if (isset($this->stats[$current_date][$source]['hist'][0])) {
497 612
 						    end($this->stats[$current_date][$source]['hist']);
498 613
 						    $mini = key($this->stats[$current_date][$source]['hist'])+10;
499
-						} else $mini = 0;
614
+						} else {
615
+							$mini = 0;
616
+						}
500 617
 						for ($i=$mini;$i<=$distance;$i+=10) {
501 618
 						    $this->stats[$current_date][$source]['hist'][$i] = 0;
502 619
 						}
@@ -508,19 +625,27 @@  discard block
 block discarded – undo
508 625
 				
509 626
 
510 627
 				$this->all_tracked[$id]['lastupdate'] = time();
511
-				if ($this->all_tracked[$id]['putinarchive']) $send = true;
512
-			} elseif (isset($this->all_tracked[$id]['latitude']) && isset($globalDistanceIgnore['latitude']) && $globalDebug) echo "!! Too far -> Distance : ".$Common->distance($this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],$globalDistanceIgnore['latitude'],$globalDistanceIgnore['longitude'])."\n";
628
+				if ($this->all_tracked[$id]['putinarchive']) {
629
+					$send = true;
630
+				}
631
+			} elseif (isset($this->all_tracked[$id]['latitude']) && isset($globalDistanceIgnore['latitude']) && $globalDebug) {
632
+				echo "!! Too far -> Distance : ".$Common->distance($this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],$globalDistanceIgnore['latitude'],$globalDistanceIgnore['longitude'])."\n";
633
+			}
513 634
 			//$this->del();
514 635
 			
515 636
 			
516 637
 			if ($this->last_delete_hourly == 0 || time() - $this->last_delete_hourly > 900) {
517 638
 			    if (!isset($globalNoDB) || $globalNoDB !== TRUE) {
518
-				if ($globalDebug) echo "---- Deleting Live Marine data Not updated since 2 hour...";
639
+				if ($globalDebug) {
640
+					echo "---- Deleting Live Marine data Not updated since 2 hour...";
641
+				}
519 642
 				$MarineLive = new MarineLive($this->db);
520 643
 				$MarineLive->deleteLiveMarineDataNotUpdated();
521 644
 				$MarineLive->db = null;
522 645
 				//MarineLive->deleteLiveMarineData();
523
-				if ($globalDebug) echo " Done\n";
646
+				if ($globalDebug) {
647
+					echo " Done\n";
648
+				}
524 649
 			    }
525 650
 			    $this->last_delete_hourly = time();
526 651
 			}
@@ -529,7 +654,9 @@  discard block
 block discarded – undo
529 654
 		    //$ignoreImport = false;
530 655
 		}
531 656
 		//if (function_exists('pcntl_fork') && $globalFork) pcntl_signal(SIGCHLD, SIG_IGN);
532
-		if ($send) return $this->all_tracked[$id];
657
+		if ($send) {
658
+			return $this->all_tracked[$id];
659
+		}
533 660
 	    }
534 661
 	}
535 662
     }
Please login to merge, or discard this patch.