@@ -5,14 +5,14 @@ discard block |
||
| 5 | 5 | require_once('require/class.Language.php'); |
| 6 | 6 | require_once('require/class.MarineArchive.php'); |
| 7 | 7 | |
| 8 | -if (!isset($_GET['captain'])){ |
|
| 8 | +if (!isset($_GET['captain'])) { |
|
| 9 | 9 | header('Location: '.$globalURL.'/'); |
| 10 | 10 | } else { |
| 11 | 11 | $type = 'marine'; |
| 12 | 12 | $Marine = new Marine(); |
| 13 | 13 | $MarineArchive = new MarineArchive(); |
| 14 | 14 | //calculuation for the pagination |
| 15 | - if(!isset($_GET['limit'])) |
|
| 15 | + if (!isset($_GET['limit'])) |
|
| 16 | 16 | { |
| 17 | 17 | $limit_start = 0; |
| 18 | 18 | $limit_end = 25; |
@@ -33,29 +33,29 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | $page_url = $globalURL.'/captain/'.$_GET['captain']; |
| 35 | 35 | |
| 36 | - $captain = filter_input(INPUT_GET,'captain',FILTER_SANITIZE_STRING); |
|
| 37 | - $sort = filter_input(INPUT_GET,'sort',FILTER_SANITIZE_STRING); |
|
| 38 | - $year = filter_input(INPUT_GET,'year',FILTER_SANITIZE_NUMBER_INT); |
|
| 39 | - $month = filter_input(INPUT_GET,'month',FILTER_SANITIZE_NUMBER_INT); |
|
| 36 | + $captain = filter_input(INPUT_GET, 'captain', FILTER_SANITIZE_STRING); |
|
| 37 | + $sort = filter_input(INPUT_GET, 'sort', FILTER_SANITIZE_STRING); |
|
| 38 | + $year = filter_input(INPUT_GET, 'year', FILTER_SANITIZE_NUMBER_INT); |
|
| 39 | + $month = filter_input(INPUT_GET, 'month', FILTER_SANITIZE_NUMBER_INT); |
|
| 40 | 40 | $filter = array(); |
| 41 | - if ($year != '') $filter = array_merge($filter,array('year' => $year)); |
|
| 42 | - if ($month != '') $filter = array_merge($filter,array('month' => $month)); |
|
| 41 | + if ($year != '') $filter = array_merge($filter, array('year' => $year)); |
|
| 42 | + if ($month != '') $filter = array_merge($filter, array('month' => $month)); |
|
| 43 | 43 | if ($sort != '') |
| 44 | 44 | { |
| 45 | - $spotter_array = $Marine->getMarineDataByCaptain($captain,$limit_start.",".$absolute_difference, $sort,$filter); |
|
| 45 | + $spotter_array = $Marine->getMarineDataByCaptain($captain, $limit_start.",".$absolute_difference, $sort, $filter); |
|
| 46 | 46 | if (empty($spotter_array) && isset($globalArchiveResults) && $globalArchiveResults) { |
| 47 | - $spotter_array = $MarineArchive->getMarineDataByCaptain($captain,$limit_start.",".$absolute_difference, $sort,$filter); |
|
| 47 | + $spotter_array = $MarineArchive->getMarineDataByCaptain($captain, $limit_start.",".$absolute_difference, $sort, $filter); |
|
| 48 | 48 | } |
| 49 | 49 | } else { |
| 50 | - $spotter_array = $Marine->getMarineDataByCaptain($captain,$limit_start.",".$absolute_difference,'',$filter); |
|
| 50 | + $spotter_array = $Marine->getMarineDataByCaptain($captain, $limit_start.",".$absolute_difference, '', $filter); |
|
| 51 | 51 | if (empty($spotter_array) && isset($globalArchiveResults) && $globalArchiveResults) { |
| 52 | - $spotter_array = $MarineArchive->getMarineDataByCaptain($captain,$limit_start.",".$absolute_difference,'',$filter); |
|
| 52 | + $spotter_array = $MarineArchive->getMarineDataByCaptain($captain, $limit_start.",".$absolute_difference, '', $filter); |
|
| 53 | 53 | } |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | if (!empty($spotter_array)) |
| 57 | 57 | { |
| 58 | - $title = sprintf(_("Detailed View for %s"),$spotter_array[0]['captain_name']); |
|
| 58 | + $title = sprintf(_("Detailed View for %s"), $spotter_array[0]['captain_name']); |
|
| 59 | 59 | $ident = $spotter_array[0]['ident']; |
| 60 | 60 | if (isset($spotter_array[0]['latitude'])) $latitude = $spotter_array[0]['latitude']; |
| 61 | 61 | if (isset($spotter_array[0]['longitude'])) $longitude = $spotter_array[0]['longitude']; |
@@ -119,9 +119,9 @@ discard block |
||
| 119 | 119 | } else $flights = 0; |
| 120 | 120 | if ($flights == 0) |
| 121 | 121 | */ |
| 122 | - $flights = $Marine->countRacesByCaptain($captain,$filter); |
|
| 122 | + $flights = $Marine->countRacesByCaptain($captain, $filter); |
|
| 123 | 123 | print '<div><span class="label">'._("Races").'</span>'.$flights.'</div>'; |
| 124 | - $aircraft_type = count($Marine->countAllBoatTypesByCaptain($captain,$filter)); |
|
| 124 | + $aircraft_type = count($Marine->countAllBoatTypesByCaptain($captain, $filter)); |
|
| 125 | 125 | print '<div><span class="label">'._("Boat type").'</span>'.$aircraft_type.'</div>'; |
| 126 | 126 | //$aircraft_registration = count($Marine->countAllAircraftRegistrationByCaptain($captain,$filter)); |
| 127 | 127 | //print '<div><span class="label">'._("Aircraft").'</span>'.$aircraft_registration.'</div>'; |
@@ -129,13 +129,13 @@ discard block |
||
| 129 | 129 | //print '<div><span class="label">'._("Manufacturers").'</span>'.$aircraft_manufacturer.'</div>'; |
| 130 | 130 | //$airlines = count($Marine->countAllAirlinesByCaptain($captain,$filter)); |
| 131 | 131 | //print '<div><span class="label">'._("Airlines").'</span>'.$airlines.'</div>'; |
| 132 | - $duration = $Marine->getRaceDurationByCaptain($captain,$filter); |
|
| 132 | + $duration = $Marine->getRaceDurationByCaptain($captain, $filter); |
|
| 133 | 133 | if ($duration != '0') print '<div><span class="label">'._("Total races spotted duration").'</span>'.$duration.'</div>'; |
| 134 | 134 | print '</div>'; |
| 135 | 135 | |
| 136 | 136 | //include('captain-sub-menu.php'); |
| 137 | 137 | print '<div class="table column">'; |
| 138 | - print '<p>'.sprintf(_("The table below shows the detailed information of all races with the captain <strong>%s</strong>."),$spotter_array[0]['captain_name']).'</p>'; |
|
| 138 | + print '<p>'.sprintf(_("The table below shows the detailed information of all races with the captain <strong>%s</strong>."), $spotter_array[0]['captain_name']).'</p>'; |
|
| 139 | 139 | |
| 140 | 140 | include('table-output.php'); |
| 141 | 141 | print '<div class="pagination">'; |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | |
| 8 | 8 | if (isset($_POST['captain'])) |
| 9 | 9 | { |
| 10 | - header('Location: '.$globalURL.'/captain/'.filter_input(INPUT_POST,'captain',FILTER_SANITIZE_STRING)); |
|
| 10 | + header('Location: '.$globalURL.'/captain/'.filter_input(INPUT_POST, 'captain', FILTER_SANITIZE_STRING)); |
|
| 11 | 11 | //} else if (isset($_GET['airport'])){ |
| 12 | 12 | } else { |
| 13 | 13 | $Marine = new Marine(); |
@@ -24,11 +24,11 @@ discard block |
||
| 24 | 24 | //ksort($captain_names); |
| 25 | 25 | $previous = null; |
| 26 | 26 | print '<div class="alphabet-legend">'; |
| 27 | - foreach($captain_names as $value) { |
|
| 27 | + foreach ($captain_names as $value) { |
|
| 28 | 28 | $firstLetter = strtoupper($Common->replace_mb_substr($value['captain_name'], 0, 1)); |
| 29 | - if($previous !== $firstLetter && $firstLetter != "'") |
|
| 29 | + if ($previous !== $firstLetter && $firstLetter != "'") |
|
| 30 | 30 | { |
| 31 | - if ($previous !== null){ |
|
| 31 | + if ($previous !== null) { |
|
| 32 | 32 | print ' | '; |
| 33 | 33 | } |
| 34 | 34 | print '<a href="#'.$firstLetter.'">'.$firstLetter.'</a>'; |
@@ -37,13 +37,13 @@ discard block |
||
| 37 | 37 | } |
| 38 | 38 | print '</div>'; |
| 39 | 39 | $previous = null; |
| 40 | - foreach($captain_names as $value) { |
|
| 40 | + foreach ($captain_names as $value) { |
|
| 41 | 41 | $firstLetter = strtoupper($Common->replace_mb_substr($value['captain_name'], 0, 1)); |
| 42 | 42 | if ($firstLetter != "") |
| 43 | 43 | { |
| 44 | - if($previous !== $firstLetter && $firstLetter != "'") |
|
| 44 | + if ($previous !== $firstLetter && $firstLetter != "'") |
|
| 45 | 45 | { |
| 46 | - if ($previous !== null){ |
|
| 46 | + if ($previous !== null) { |
|
| 47 | 47 | print '</div>'; |
| 48 | 48 | } |
| 49 | 49 | print '<a name="'.$firstLetter.'"></a><h4 class="alphabet-header">'.$firstLetter.'</h4><div class="alphabet">'; |
@@ -50,20 +50,20 @@ discard block |
||
| 50 | 50 | die; |
| 51 | 51 | } |
| 52 | 52 | //$hosts = array($globalSBS1Host.':'.$globalSBS1Port); |
| 53 | - $globalSources[] = array('host' => $globalSBS1Host,'port' => $globalSBS1Port); |
|
| 53 | + $globalSources[] = array('host' => $globalSBS1Host, 'port' => $globalSBS1Port); |
|
| 54 | 54 | } |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | -$options = getopt('s::',array('source::','server','nodaemon','idsource::','aprsserverssid::','aprsserverpass::','aprsserverhost::','aprsserverport::','format::','noaprsserver','enable-aircraft','disable-aircraft','enable-tracker','disable-tracker','enable-marine','disable-marine')); |
|
| 57 | +$options = getopt('s::', array('source::', 'server', 'nodaemon', 'idsource::', 'aprsserverssid::', 'aprsserverpass::', 'aprsserverhost::', 'aprsserverport::', 'format::', 'noaprsserver', 'enable-aircraft', 'disable-aircraft', 'enable-tracker', 'disable-tracker', 'enable-marine', 'disable-marine')); |
|
| 58 | 58 | //if (isset($options['s'])) $hosts = array($options['s']); |
| 59 | 59 | //elseif (isset($options['source'])) $hosts = array($options['source']); |
| 60 | 60 | if (isset($options['s'])) { |
| 61 | 61 | $globalSources = array(); |
| 62 | - if (isset($options['format'])) $globalSources[] = array('host' => $options['s'],'format' => $options['format']); |
|
| 62 | + if (isset($options['format'])) $globalSources[] = array('host' => $options['s'], 'format' => $options['format']); |
|
| 63 | 63 | else $globalSources[] = array('host' => $options['s']); |
| 64 | 64 | } elseif (isset($options['source'])) { |
| 65 | 65 | $globalSources = array(); |
| 66 | - if (isset($options['format'])) $globalSources[] = array('host' => $options['source'],'format' => $options['format']); |
|
| 66 | + if (isset($options['format'])) $globalSources[] = array('host' => $options['source'], 'format' => $options['format']); |
|
| 67 | 67 | else $globalSources[] = array('host' => $options['source']); |
| 68 | 68 | } |
| 69 | 69 | if (isset($options['aprsserverhost'])) { |
@@ -104,13 +104,13 @@ discard block |
||
| 104 | 104 | else $id_source = 1; |
| 105 | 105 | if (isset($globalServer) && $globalServer) { |
| 106 | 106 | if ($globalDebug) echo "Using Server Mode\n"; |
| 107 | - $SI=new SpotterServer(); |
|
| 107 | + $SI = new SpotterServer(); |
|
| 108 | 108 | /* |
| 109 | 109 | require_once(dirname(__FILE__).'/../require/class.APRS.php'); |
| 110 | 110 | $SI = new adsb2aprs(); |
| 111 | 111 | $SI->connect(); |
| 112 | 112 | */ |
| 113 | -} else $SI=new SpotterImport($Connection->db); |
|
| 113 | +} else $SI = new SpotterImport($Connection->db); |
|
| 114 | 114 | |
| 115 | 115 | if (isset($globalTracker) && $globalTracker) require_once(dirname(__FILE__).'/../require/class.TrackerImport.php'); |
| 116 | 116 | if (isset($globalMarine) && $globalMarine) { |
@@ -124,17 +124,17 @@ discard block |
||
| 124 | 124 | $MI = new MarineImport($Connection->db); |
| 125 | 125 | } |
| 126 | 126 | //$APRS=new APRS($Connection->db); |
| 127 | -$SBS=new SBS(); |
|
| 127 | +$SBS = new SBS(); |
|
| 128 | 128 | if (!isset($globalNoDB) || $globalNoDB !== TRUE) { |
| 129 | - $ACARS=new ACARS($Connection->db,true); |
|
| 130 | - $Source=new Source($Connection->db); |
|
| 129 | + $ACARS = new ACARS($Connection->db, true); |
|
| 130 | + $Source = new Source($Connection->db); |
|
| 131 | 131 | } |
| 132 | -$Common=new Common(); |
|
| 132 | +$Common = new Common(); |
|
| 133 | 133 | date_default_timezone_set('UTC'); |
| 134 | 134 | //$servertz = system('date +%Z'); |
| 135 | 135 | // signal handler - playing nice with sockets and dump1090 |
| 136 | 136 | if (function_exists('pcntl_fork')) { |
| 137 | - pcntl_signal(SIGINT, function() { |
|
| 137 | + pcntl_signal(SIGINT, function() { |
|
| 138 | 138 | global $sockets; |
| 139 | 139 | echo "\n\nctrl-c or kill signal received. Tidying up ... "; |
| 140 | 140 | die("Bye!\n"); |
@@ -150,40 +150,40 @@ discard block |
||
| 150 | 150 | |
| 151 | 151 | function connect_all($hosts) { |
| 152 | 152 | //global $sockets, $formats, $globalDebug,$aprs_connect,$last_exec, $globalSourcesRights, $use_aprs; |
| 153 | - global $sockets,$httpfeeds, $globalSources, $globalDebug,$aprs_connect,$last_exec, $globalSourcesRights, $use_aprs, $reset,$context; |
|
| 153 | + global $sockets, $httpfeeds, $globalSources, $globalDebug, $aprs_connect, $last_exec, $globalSourcesRights, $use_aprs, $reset, $context; |
|
| 154 | 154 | $reset++; |
| 155 | 155 | if ($globalDebug) echo 'Connect to all...'."\n"; |
| 156 | 156 | foreach ($hosts as $id => $value) { |
| 157 | 157 | $host = $value['host']; |
| 158 | 158 | $globalSources[$id]['last_exec'] = 0; |
| 159 | 159 | // Here we check type of source(s) |
| 160 | - if (filter_var($host,FILTER_VALIDATE_URL) && (!isset($globalSources[$id]['format']) || strtolower($globalSources[$id]['format']) == 'auto')) { |
|
| 161 | - if (preg_match('/deltadb.txt$/i',$host)) { |
|
| 160 | + if (filter_var($host, FILTER_VALIDATE_URL) && (!isset($globalSources[$id]['format']) || strtolower($globalSources[$id]['format']) == 'auto')) { |
|
| 161 | + if (preg_match('/deltadb.txt$/i', $host)) { |
|
| 162 | 162 | //$formats[$id] = 'deltadbtxt'; |
| 163 | 163 | $globalSources[$id]['format'] = 'deltadbtxt'; |
| 164 | 164 | //$last_exec['deltadbtxt'] = 0; |
| 165 | 165 | if ($globalDebug) echo "Connect to deltadb source (".$host.")...\n"; |
| 166 | - } else if (preg_match('/vatsim-data.txt$/i',$host)) { |
|
| 166 | + } else if (preg_match('/vatsim-data.txt$/i', $host)) { |
|
| 167 | 167 | //$formats[$id] = 'vatsimtxt'; |
| 168 | 168 | $globalSources[$id]['format'] = 'vatsimtxt'; |
| 169 | 169 | //$last_exec['vatsimtxt'] = 0; |
| 170 | 170 | if ($globalDebug) echo "Connect to vatsim source (".$host.")...\n"; |
| 171 | - } else if (preg_match('/aircraftlist.json$/i',$host)) { |
|
| 171 | + } else if (preg_match('/aircraftlist.json$/i', $host)) { |
|
| 172 | 172 | //$formats[$id] = 'aircraftlistjson'; |
| 173 | 173 | $globalSources[$id]['format'] = 'aircraftlistjson'; |
| 174 | 174 | //$last_exec['aircraftlistjson'] = 0; |
| 175 | 175 | if ($globalDebug) echo "Connect to aircraftlist.json source (".$host.")...\n"; |
| 176 | - } else if (preg_match('/aircraft.json$/i',$host)) { |
|
| 176 | + } else if (preg_match('/aircraft.json$/i', $host)) { |
|
| 177 | 177 | //$formats[$id] = 'aircraftjson'; |
| 178 | 178 | $globalSources[$id]['format'] = 'aircraftjson'; |
| 179 | 179 | //$last_exec['aircraftlistjson'] = 0; |
| 180 | 180 | if ($globalDebug) echo "Connect to aircraft.json source (".$host.")...\n"; |
| 181 | - } else if (preg_match('/aircraft$/i',$host)) { |
|
| 181 | + } else if (preg_match('/aircraft$/i', $host)) { |
|
| 182 | 182 | //$formats[$id] = 'planefinderclient'; |
| 183 | 183 | $globalSources[$id]['format'] = 'planefinderclient'; |
| 184 | 184 | //$last_exec['aircraftlistjson'] = 0; |
| 185 | 185 | if ($globalDebug) echo "Connect to planefinderclient source (".$host.")...\n"; |
| 186 | - } else if (preg_match('/opensky/i',$host)) { |
|
| 186 | + } else if (preg_match('/opensky/i', $host)) { |
|
| 187 | 187 | //$formats[$id] = 'aircraftlistjson'; |
| 188 | 188 | $globalSources[$id]['format'] = 'opensky'; |
| 189 | 189 | //$last_exec['aircraftlistjson'] = 0; |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | exit(0); |
| 201 | 201 | } |
| 202 | 202 | */ |
| 203 | - } else if (preg_match('/planeUpdateFAA.php$/i',$host)) { |
|
| 203 | + } else if (preg_match('/planeUpdateFAA.php$/i', $host)) { |
|
| 204 | 204 | //$formats[$id] = 'planeupdatefaa'; |
| 205 | 205 | $globalSources[$id]['format'] = 'planeupdatefaa'; |
| 206 | 206 | //$last_exec['planeupdatefaa'] = 0; |
@@ -209,37 +209,37 @@ discard block |
||
| 209 | 209 | echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
| 210 | 210 | exit(0); |
| 211 | 211 | } |
| 212 | - } else if (preg_match('/\/action.php\/acars\/data$/i',$host)) { |
|
| 212 | + } else if (preg_match('/\/action.php\/acars\/data$/i', $host)) { |
|
| 213 | 213 | //$formats[$id] = 'phpvmacars'; |
| 214 | 214 | $globalSources[$id]['format'] = 'phpvmacars'; |
| 215 | 215 | //$last_exec['phpvmacars'] = 0; |
| 216 | 216 | if ($globalDebug) echo "Connect to phpvmacars source (".$host.")...\n"; |
| 217 | - } else if (preg_match('/\/api\/v1\/acars\/data$/i',$host)) { |
|
| 217 | + } else if (preg_match('/\/api\/v1\/acars\/data$/i', $host)) { |
|
| 218 | 218 | //$formats[$id] = 'phpvmacars'; |
| 219 | 219 | $globalSources[$id]['format'] = 'vaos'; |
| 220 | 220 | //$last_exec['phpvmacars'] = 0; |
| 221 | 221 | if ($globalDebug) echo "Connect to vaos source (".$host.")...\n"; |
| 222 | - } else if (preg_match('/VAM-json.php$/i',$host)) { |
|
| 222 | + } else if (preg_match('/VAM-json.php$/i', $host)) { |
|
| 223 | 223 | //$formats[$id] = 'phpvmacars'; |
| 224 | 224 | $globalSources[$id]['format'] = 'vam'; |
| 225 | 225 | if ($globalDebug) echo "Connect to Vam source (".$host.")...\n"; |
| 226 | - } else if (preg_match('/whazzup/i',$host)) { |
|
| 226 | + } else if (preg_match('/whazzup/i', $host)) { |
|
| 227 | 227 | //$formats[$id] = 'whazzup'; |
| 228 | 228 | $globalSources[$id]['format'] = 'whazzup'; |
| 229 | 229 | //$last_exec['whazzup'] = 0; |
| 230 | 230 | if ($globalDebug) echo "Connect to whazzup source (".$host.")...\n"; |
| 231 | - } else if (preg_match('/blitzortung/i',$host)) { |
|
| 231 | + } else if (preg_match('/blitzortung/i', $host)) { |
|
| 232 | 232 | $globalSources[$id]['format'] = 'blitzortung'; |
| 233 | 233 | if ($globalDebug) echo "Connect to blitzortung source (".$host.")...\n"; |
| 234 | - } else if (preg_match('/airwhere/i',$host)) { |
|
| 234 | + } else if (preg_match('/airwhere/i', $host)) { |
|
| 235 | 235 | $globalSources[$id]['format'] = 'airwhere'; |
| 236 | 236 | if ($globalDebug) echo "Connect to airwhere source (".$host.")...\n"; |
| 237 | - } else if (preg_match('/recentpireps/i',$host)) { |
|
| 237 | + } else if (preg_match('/recentpireps/i', $host)) { |
|
| 238 | 238 | //$formats[$id] = 'pirepsjson'; |
| 239 | 239 | $globalSources[$id]['format'] = 'pirepsjson'; |
| 240 | 240 | //$last_exec['pirepsjson'] = 0; |
| 241 | 241 | if ($globalDebug) echo "Connect to pirepsjson source (".$host.")...\n"; |
| 242 | - } else if (preg_match(':data.fr24.com/zones/fcgi/feed.js:i',$host)) { |
|
| 242 | + } else if (preg_match(':data.fr24.com/zones/fcgi/feed.js:i', $host)) { |
|
| 243 | 243 | //$formats[$id] = 'fr24json'; |
| 244 | 244 | $globalSources[$id]['format'] = 'fr24json'; |
| 245 | 245 | //$last_exec['fr24json'] = 0; |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | echo '!!! You MUST set $globalSourcesRights = TRUE in settings.php if you have the right to use this feed !!!'."\n"; |
| 249 | 249 | exit(0); |
| 250 | 250 | } |
| 251 | - } else if (preg_match(':myshiptracking.com/:i',$host)) { |
|
| 251 | + } else if (preg_match(':myshiptracking.com/:i', $host)) { |
|
| 252 | 252 | //$formats[$id] = 'fr24json'; |
| 253 | 253 | $globalSources[$id]['format'] = 'myshiptracking'; |
| 254 | 254 | //$last_exec['fr24json'] = 0; |
@@ -258,22 +258,22 @@ discard block |
||
| 258 | 258 | exit(0); |
| 259 | 259 | } |
| 260 | 260 | //} else if (preg_match('/10001/',$host)) { |
| 261 | - } else if (preg_match('/10001/',$host) || (isset($globalSources[$id]['port']) && $globalSources[$id]['port'] == '10001')) { |
|
| 261 | + } else if (preg_match('/10001/', $host) || (isset($globalSources[$id]['port']) && $globalSources[$id]['port'] == '10001')) { |
|
| 262 | 262 | //$formats[$id] = 'tsv'; |
| 263 | 263 | $globalSources[$id]['format'] = 'tsv'; |
| 264 | 264 | if ($globalDebug) echo "Connect to tsv source (".$host.")...\n"; |
| 265 | 265 | } |
| 266 | - } elseif (filter_var($host,FILTER_VALIDATE_URL) || (isset($globalSources[$id]['format']) && $globalSources[$id]['format'] == 'sailaway')) { |
|
| 266 | + } elseif (filter_var($host, FILTER_VALIDATE_URL) || (isset($globalSources[$id]['format']) && $globalSources[$id]['format'] == 'sailaway')) { |
|
| 267 | 267 | if ($globalSources[$id]['format'] == 'aisnmeahttp') { |
| 268 | - $idf = fopen($globalSources[$id]['host'],'r',false,$context); |
|
| 268 | + $idf = fopen($globalSources[$id]['host'], 'r', false, $context); |
|
| 269 | 269 | if ($idf !== false) { |
| 270 | 270 | $httpfeeds[$id] = $idf; |
| 271 | 271 | if ($globalDebug) echo "Connected to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
| 272 | 272 | } elseif ($globalDebug) echo "Can't connect to ".$globalSources[$id]['host']."\n"; |
| 273 | 273 | } elseif ($globalDebug && isset($globalSources[$id]['format']) && $globalSources[$id]['format'] == 'sailaway') echo "Connect to ".$globalSources[$id]['format']." source (sailaway)...\n"; |
| 274 | 274 | elseif ($globalDebug) echo "Connect to ".$globalSources[$id]['format']." source (".$host.")...\n"; |
| 275 | - } elseif (!filter_var($host,FILTER_VALIDATE_URL)) { |
|
| 276 | - $hostport = explode(':',$host); |
|
| 275 | + } elseif (!filter_var($host, FILTER_VALIDATE_URL)) { |
|
| 276 | + $hostport = explode(':', $host); |
|
| 277 | 277 | if (isset($hostport[1])) { |
| 278 | 278 | $port = $hostport[1]; |
| 279 | 279 | $hostn = $hostport[0]; |
@@ -283,19 +283,19 @@ discard block |
||
| 283 | 283 | } |
| 284 | 284 | $Common = new Common(); |
| 285 | 285 | if (!isset($globalSources[$id]['format']) || ($globalSources[$id]['format'] != 'acars' && $globalSources[$id]['format'] != 'flightgearsp')) { |
| 286 | - $s = $Common->create_socket($hostn,$port, $errno, $errstr); |
|
| 286 | + $s = $Common->create_socket($hostn, $port, $errno, $errstr); |
|
| 287 | 287 | } else { |
| 288 | - $s = $Common->create_socket_udp($hostn,$port, $errno, $errstr); |
|
| 288 | + $s = $Common->create_socket_udp($hostn, $port, $errno, $errstr); |
|
| 289 | 289 | } |
| 290 | 290 | if ($s) { |
| 291 | 291 | $sockets[$id] = $s; |
| 292 | 292 | if (!isset($globalSources[$id]['format']) || strtolower($globalSources[$id]['format']) == 'auto') { |
| 293 | - if (preg_match('/aprs/',$hostn) || $port == '10152' || $port == '14580') { |
|
| 293 | + if (preg_match('/aprs/', $hostn) || $port == '10152' || $port == '14580') { |
|
| 294 | 294 | //$formats[$id] = 'aprs'; |
| 295 | 295 | $globalSources[$id]['format'] = 'aprs'; |
| 296 | 296 | //$aprs_connect = 0; |
| 297 | 297 | //$use_aprs = true; |
| 298 | - } elseif (preg_match('/pub-vrs/',$hostn) || $port == '32001' || $port == '32005' || $port == '32010' || $port == '32015' || $port == '32030') { |
|
| 298 | + } elseif (preg_match('/pub-vrs/', $hostn) || $port == '32001' || $port == '32005' || $port == '32010' || $port == '32015' || $port == '32030') { |
|
| 299 | 299 | $globalSources[$id]['format'] = 'vrstcp'; |
| 300 | 300 | } elseif ($port == '10001') { |
| 301 | 301 | //$formats[$id] = 'tsv'; |
@@ -336,7 +336,7 @@ discard block |
||
| 336 | 336 | else if (isset($globalSBS1TimeOut)) $timeout = $globalSBS1TimeOut; |
| 337 | 337 | else $timeout = 20; |
| 338 | 338 | $errno = ''; |
| 339 | -$errstr=''; |
|
| 339 | +$errstr = ''; |
|
| 340 | 340 | |
| 341 | 341 | if (!isset($globalDaemon)) $globalDaemon = TRUE; |
| 342 | 342 | /* Initiate connections to all the hosts simultaneously */ |
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | //connect_all($globalSources); |
| 345 | 345 | |
| 346 | 346 | if (isset($globalProxy) && $globalProxy) { |
| 347 | - $context = stream_context_create(array('http' => array('timeout' => $timeout,'proxy' => $globalProxy,'request_fulluri' => true))); |
|
| 347 | + $context = stream_context_create(array('http' => array('timeout' => $timeout, 'proxy' => $globalProxy, 'request_fulluri' => true))); |
|
| 348 | 348 | } else { |
| 349 | 349 | $context = stream_context_create(array('http' => array('timeout' => $timeout))); |
| 350 | 350 | } |
@@ -374,16 +374,16 @@ discard block |
||
| 374 | 374 | |
| 375 | 375 | if ($use_aprs) { |
| 376 | 376 | require_once(dirname(__FILE__).'/../require/class.APRS.php'); |
| 377 | - $APRS=new APRS(); |
|
| 377 | + $APRS = new APRS(); |
|
| 378 | 378 | $aprs_connect = 0; |
| 379 | 379 | $aprs_keep = 120; |
| 380 | 380 | $aprs_last_tx = time(); |
| 381 | 381 | if (isset($globalAPRSversion)) $aprs_version = $globalAPRSversion; |
| 382 | - else $aprs_version = 'FlightAirMap '.str_replace(' ','_',$globalName); |
|
| 382 | + else $aprs_version = 'FlightAirMap '.str_replace(' ', '_', $globalName); |
|
| 383 | 383 | if (isset($globalAPRSssid)) $aprs_ssid = $globalAPRSssid; |
| 384 | - else $aprs_ssid = substr('FAM'.strtoupper(str_replace(' ','_',$globalName)),0,8); |
|
| 384 | + else $aprs_ssid = substr('FAM'.strtoupper(str_replace(' ', '_', $globalName)), 0, 8); |
|
| 385 | 385 | if (isset($globalAPRSfilter)) $aprs_filter = $globalAPRSfilter; |
| 386 | - else $aprs_filter = 'r/'.$globalCenterLatitude.'/'.$globalCenterLongitude.'/250.0'; |
|
| 386 | + else $aprs_filter = 'r/'.$globalCenterLatitude.'/'.$globalCenterLongitude.'/250.0'; |
|
| 387 | 387 | if ($aprs_full) $aprs_filter = ''; |
| 388 | 388 | if (isset($globalAPRSpass)) $aprs_pass = $globalAPRSpass; |
| 389 | 389 | else $aprs_pass = '-1'; |
@@ -397,12 +397,12 @@ discard block |
||
| 397 | 397 | sleep(1); |
| 398 | 398 | if ($globalDebug) echo "SCAN MODE \n\n"; |
| 399 | 399 | if (!isset($globalCronEnd)) $globalCronEnd = 60; |
| 400 | -$endtime = time()+$globalCronEnd; |
|
| 400 | +$endtime = time() + $globalCronEnd; |
|
| 401 | 401 | $i = 1; |
| 402 | 402 | $tt = array(); |
| 403 | 403 | // Delete all ATC |
| 404 | 404 | if ((isset($globalVA) && $globalVA) || (isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM)) { |
| 405 | - $ATC=new ATC($Connection->db); |
|
| 405 | + $ATC = new ATC($Connection->db); |
|
| 406 | 406 | } |
| 407 | 407 | if (!$globalDaemon && ((isset($globalVA) && $globalVA) || (isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM))) { |
| 408 | 408 | $ATC->deleteAll(); |
@@ -412,7 +412,7 @@ discard block |
||
| 412 | 412 | while ($i > 0) { |
| 413 | 413 | if (function_exists('pcntl_fork')) pcntl_signal_dispatch(); |
| 414 | 414 | |
| 415 | - if (!$globalDaemon) $i = $endtime-time(); |
|
| 415 | + if (!$globalDaemon) $i = $endtime - time(); |
|
| 416 | 416 | // Delete old ATC |
| 417 | 417 | if ($globalDaemon && ((isset($globalVA) && $globalVA) || (isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM))) { |
| 418 | 418 | if ($globalDebug) echo 'Delete old ATC...'."\n"; |
@@ -426,7 +426,7 @@ discard block |
||
| 426 | 426 | } |
| 427 | 427 | if ($max < $globalMinFetch) { |
| 428 | 428 | if ($globalDebug) echo 'Sleeping...'."\n"; |
| 429 | - sleep($globalMinFetch-$max+2); |
|
| 429 | + sleep($globalMinFetch - $max + 2); |
|
| 430 | 430 | } |
| 431 | 431 | } |
| 432 | 432 | |
@@ -445,8 +445,8 @@ discard block |
||
| 445 | 445 | //$buffer = $Common->getData($hosts[$id]); |
| 446 | 446 | $buffer = $Common->getData($value['host']); |
| 447 | 447 | if ($buffer != '') $reset = 0; |
| 448 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 449 | - $buffer = explode('\n',$buffer); |
|
| 448 | + $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '\n', $buffer)); |
|
| 449 | + $buffer = explode('\n', $buffer); |
|
| 450 | 450 | foreach ($buffer as $line) { |
| 451 | 451 | if ($line != '' && count($line) > 7) { |
| 452 | 452 | $line = explode(',', $line); |
@@ -479,11 +479,11 @@ discard block |
||
| 479 | 479 | ) |
| 480 | 480 | ) { |
| 481 | 481 | date_default_timezone_set('CET'); |
| 482 | - $buffer = $Common->getData(str_replace('{date}',date('Ymd'),$value['host'])); |
|
| 482 | + $buffer = $Common->getData(str_replace('{date}', date('Ymd'), $value['host'])); |
|
| 483 | 483 | date_default_timezone_set('UTC'); |
| 484 | 484 | if ($buffer != '') $reset = 0; |
| 485 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 486 | - $buffer = explode('\n',$buffer); |
|
| 485 | + $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '\n', $buffer)); |
|
| 486 | + $buffer = explode('\n', $buffer); |
|
| 487 | 487 | foreach ($buffer as $line) { |
| 488 | 488 | if ($line != '') { |
| 489 | 489 | //echo "'".$line."'\n"; |
@@ -491,7 +491,7 @@ discard block |
||
| 491 | 491 | $ais_data = $AIS->parse_line(trim($line)); |
| 492 | 492 | $data = array(); |
| 493 | 493 | if (isset($ais_data['ident'])) $data['ident'] = $ais_data['ident']; |
| 494 | - if (isset($ais_data['mmsi'])) $data['mmsi'] = substr($ais_data['mmsi'],-9); |
|
| 494 | + if (isset($ais_data['mmsi'])) $data['mmsi'] = substr($ais_data['mmsi'], -9); |
|
| 495 | 495 | if (isset($ais_data['speed'])) $data['speed'] = $ais_data['speed']; |
| 496 | 496 | if (isset($ais_data['heading'])) $data['heading'] = $ais_data['heading']; |
| 497 | 497 | if (isset($ais_data['latitude'])) $data['latitude'] = $ais_data['latitude']; |
@@ -503,7 +503,7 @@ discard block |
||
| 503 | 503 | if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
| 504 | 504 | if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
| 505 | 505 | if (isset($ais_data['timestamp'])) { |
| 506 | - $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
|
| 506 | + $data['datetime'] = date('Y-m-d H:i:s', $ais_data['timestamp']); |
|
| 507 | 507 | if (!isset($last_exec[$id]['timestamp']) || $ais_data['timestamp'] >= $last_exec[$id]['timestamp']) { |
| 508 | 508 | $last_exec[$id]['timestamp'] = $ais_data['timestamp']; |
| 509 | 509 | $add = true; |
@@ -526,21 +526,21 @@ discard block |
||
| 526 | 526 | $w = $e = null; |
| 527 | 527 | |
| 528 | 528 | if (isset($arr[$id])) { |
| 529 | - $nn = stream_select($arr,$w,$e,$timeout); |
|
| 529 | + $nn = stream_select($arr, $w, $e, $timeout); |
|
| 530 | 530 | if ($nn > 0) { |
| 531 | 531 | foreach ($httpfeeds as $feed) { |
| 532 | - $buffer = stream_get_line($feed,2000,"\n"); |
|
| 532 | + $buffer = stream_get_line($feed, 2000, "\n"); |
|
| 533 | 533 | if ($buffer === FALSE) { |
| 534 | 534 | connect_all($globalSources); |
| 535 | 535 | } |
| 536 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 537 | - $buffer = explode('\n',$buffer); |
|
| 536 | + $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '\n', $buffer)); |
|
| 537 | + $buffer = explode('\n', $buffer); |
|
| 538 | 538 | foreach ($buffer as $line) { |
| 539 | 539 | if ($line != '') { |
| 540 | 540 | $ais_data = $AIS->parse_line(trim($line)); |
| 541 | 541 | $data = array(); |
| 542 | 542 | if (isset($ais_data['ident'])) $data['ident'] = $ais_data['ident']; |
| 543 | - if (isset($ais_data['mmsi'])) $data['mmsi'] = substr($ais_data['mmsi'],-9); |
|
| 543 | + if (isset($ais_data['mmsi'])) $data['mmsi'] = substr($ais_data['mmsi'], -9); |
|
| 544 | 544 | if (isset($ais_data['speed'])) $data['speed'] = $ais_data['speed']; |
| 545 | 545 | if (isset($ais_data['heading'])) $data['heading'] = $ais_data['heading']; |
| 546 | 546 | if (isset($ais_data['latitude'])) $data['latitude'] = $ais_data['latitude']; |
@@ -552,9 +552,9 @@ discard block |
||
| 552 | 552 | if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
| 553 | 553 | if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
| 554 | 554 | if (isset($ais_data['destination'])) $data['arrival_code'] = $ais_data['destination']; |
| 555 | - if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s',$ais_data['eta_ts']); |
|
| 555 | + if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s', $ais_data['eta_ts']); |
|
| 556 | 556 | if (isset($ais_data['timestamp'])) { |
| 557 | - $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
|
| 557 | + $data['datetime'] = date('Y-m-d H:i:s', $ais_data['timestamp']); |
|
| 558 | 558 | } else { |
| 559 | 559 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 560 | 560 | } |
@@ -586,10 +586,10 @@ discard block |
||
| 586 | 586 | (!isset($globalSources[$id]['minfetch']) && (time() - $last_exec[$id]['last'] > $globalMinFetch*3)) |
| 587 | 587 | ) |
| 588 | 588 | ) { |
| 589 | - $buffer = $Common->getData($value['host'],'get','','','','','20'); |
|
| 589 | + $buffer = $Common->getData($value['host'], 'get', '', '', '', '', '20'); |
|
| 590 | 590 | if ($buffer != '') { |
| 591 | 591 | //echo $buffer; |
| 592 | - $all_data = json_decode($buffer,true); |
|
| 592 | + $all_data = json_decode($buffer, true); |
|
| 593 | 593 | //print_r($all_data); |
| 594 | 594 | if (isset($all_data[0]['DATA'])) { |
| 595 | 595 | foreach ($all_data[0]['DATA'] as $line) { |
@@ -598,7 +598,7 @@ discard block |
||
| 598 | 598 | $data['ident'] = $line['NAME']; |
| 599 | 599 | $data['mmsi'] = $line['MMSI']; |
| 600 | 600 | if (strlen($data['mmsi']) > 9) { |
| 601 | - $data['mmsi'] = substr($data['mmsi'],-9); |
|
| 601 | + $data['mmsi'] = substr($data['mmsi'], -9); |
|
| 602 | 602 | } |
| 603 | 603 | $data['speed'] = $line['SOG']; |
| 604 | 604 | $data['heading'] = $line['COG']; |
@@ -608,8 +608,8 @@ discard block |
||
| 608 | 608 | //$data['type_id'] = $line['TYPE']; |
| 609 | 609 | $data['imo'] = $line['IMO']; |
| 610 | 610 | if ($line['DEST'] != '') $data['arrival_code'] = $line['DEST']; |
| 611 | - if ($line['ARV'] != '') $data['arrival_time'] = date('Y-m-d H:i:s',strtotime($line['ARV'])); |
|
| 612 | - $data['datetime'] = date('Y-m-d H:i:s',$line['T']); |
|
| 611 | + if ($line['ARV'] != '') $data['arrival_time'] = date('Y-m-d H:i:s', strtotime($line['ARV'])); |
|
| 612 | + $data['datetime'] = date('Y-m-d H:i:s', $line['T']); |
|
| 613 | 613 | $data['format_source'] = 'myshiptracking'; |
| 614 | 614 | $data['id_source'] = $id_source; |
| 615 | 615 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
@@ -626,16 +626,16 @@ discard block |
||
| 626 | 626 | (!isset($globalSources[$id]['minfetch']) && (time() - $last_exec[$id]['last'] > $globalMinFetch*3)) |
| 627 | 627 | ) |
| 628 | 628 | ) { |
| 629 | - $buffer = $Common->getData(str_replace('{timestamp}',time(),$value['host'])); |
|
| 629 | + $buffer = $Common->getData(str_replace('{timestamp}', time(), $value['host'])); |
|
| 630 | 630 | if ($buffer != '') { |
| 631 | - $all_data = json_decode($buffer,true); |
|
| 631 | + $all_data = json_decode($buffer, true); |
|
| 632 | 632 | if (isset($all_data[0]['mmsi'])) { |
| 633 | 633 | foreach ($all_data as $line) { |
| 634 | 634 | if ($line != '') { |
| 635 | 635 | $data = array(); |
| 636 | 636 | $data['ident'] = $line['shipname']; |
| 637 | 637 | $data['callsign'] = $line['callsign']; |
| 638 | - $data['mmsi'] = substr($line['mmsi'],-9); |
|
| 638 | + $data['mmsi'] = substr($line['mmsi'], -9); |
|
| 639 | 639 | $data['speed'] = $line['sog']; |
| 640 | 640 | if ($line['heading'] != '511') $data['heading'] = $line['heading']; |
| 641 | 641 | $data['latitude'] = $line['latitude']; |
@@ -662,14 +662,14 @@ discard block |
||
| 662 | 662 | ) { |
| 663 | 663 | $buffer = $Common->getData($value['host']); |
| 664 | 664 | if ($buffer != '') { |
| 665 | - $all_data = json_decode($buffer,true); |
|
| 665 | + $all_data = json_decode($buffer, true); |
|
| 666 | 666 | if (isset($all_data['features'][0]['id'])) { |
| 667 | 667 | foreach ($all_data['features'] as $line) { |
| 668 | 668 | print_r($line); |
| 669 | 669 | $data = array(); |
| 670 | 670 | if (isset($line['properties']['name'])) $data['ident'] = $line['properties']['name']; |
| 671 | 671 | if (isset($line['properties']['callsign'])) $data['callsign'] = $line['properties']['callsign']; |
| 672 | - if (isset($line['properties']['mmsi'])) $data['mmsi'] = substr($line['properties']['mmsi'],-9); |
|
| 672 | + if (isset($line['properties']['mmsi'])) $data['mmsi'] = substr($line['properties']['mmsi'], -9); |
|
| 673 | 673 | if (isset($line['properties']['imo'])) $data['imo'] = $line['properties']['imo']; |
| 674 | 674 | if (isset($line['properties']['speed'])) $data['speed'] = $line['properties']['speed']; |
| 675 | 675 | if (isset($line['properties']['heading']) && $line['properties']['heading'] != 0) $data['heading'] = $line['properties']['heading']; |
@@ -696,31 +696,31 @@ discard block |
||
| 696 | 696 | ) |
| 697 | 697 | ) { |
| 698 | 698 | if ($globalDebug) echo 'download...'; |
| 699 | - $buffer = $Common->getData($value['host'],'post',$value['post'],'','','','','ShipPlotter'); |
|
| 699 | + $buffer = $Common->getData($value['host'], 'post', $value['post'], '', '', '', '', 'ShipPlotter'); |
|
| 700 | 700 | if ($globalDebug) echo 'done !'."\n"; |
| 701 | 701 | // FIXME: Need more work |
| 702 | 702 | if ($buffer != '') $reset = 0; |
| 703 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 704 | - $buffer = explode('\n',$buffer); |
|
| 703 | + $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '\n', $buffer)); |
|
| 704 | + $buffer = explode('\n', $buffer); |
|
| 705 | 705 | foreach ($buffer as $line) { |
| 706 | 706 | if ($line != '') { |
| 707 | 707 | $data = array(); |
| 708 | 708 | //echo $line."\n"; |
| 709 | - $data['mmsi'] = (int)substr($line,0,9); |
|
| 710 | - $data['datetime'] = date('Y-m-d H:i:s',substr($line,10,10)); |
|
| 711 | - $data['status_id'] = substr($line,21,2); |
|
| 712 | - $data['type_id'] = substr($line,24,3); |
|
| 713 | - $data['latitude'] = substr($line,29,9); |
|
| 714 | - $data['longitude'] = substr($line,41,9); |
|
| 715 | - $data['speed'] = round(substr($line,51,5)); |
|
| 709 | + $data['mmsi'] = (int) substr($line, 0, 9); |
|
| 710 | + $data['datetime'] = date('Y-m-d H:i:s', substr($line, 10, 10)); |
|
| 711 | + $data['status_id'] = substr($line, 21, 2); |
|
| 712 | + $data['type_id'] = substr($line, 24, 3); |
|
| 713 | + $data['latitude'] = substr($line, 29, 9); |
|
| 714 | + $data['longitude'] = substr($line, 41, 9); |
|
| 715 | + $data['speed'] = round(substr($line, 51, 5)); |
|
| 716 | 716 | //$data['course'] = substr($line,57,5); |
| 717 | - $data['heading'] = round(substr($line,63,3)); |
|
| 717 | + $data['heading'] = round(substr($line, 63, 3)); |
|
| 718 | 718 | //$data['draft'] = substr($line,67,4); |
| 719 | 719 | //$data['length'] = substr($line,72,3); |
| 720 | 720 | //$data['beam'] = substr($line,76,2); |
| 721 | - $data['ident'] = trim(utf8_encode(substr($line,78,20))); |
|
| 721 | + $data['ident'] = trim(utf8_encode(substr($line, 78, 20))); |
|
| 722 | 722 | //$data['callsign'] = trim(substr($line,100,7); |
| 723 | - $data['arrival_code'] = substr($line,108,20); |
|
| 723 | + $data['arrival_code'] = substr($line, 108, 20); |
|
| 724 | 724 | //$data['etaDate'] = substr($line,129,5); |
| 725 | 725 | //$data['etaTime'] = substr($line,135,5); |
| 726 | 726 | $data['format_source'] = 'shipplotter'; |
@@ -740,21 +740,21 @@ discard block |
||
| 740 | 740 | ) |
| 741 | 741 | ) { |
| 742 | 742 | if ($globalDebug) echo '! Download... '; |
| 743 | - for ($i =0; $i <= 1; $i++) { |
|
| 743 | + for ($i = 0; $i <= 1; $i++) { |
|
| 744 | 744 | if ($globalDebug) echo 'Racetype: '.$i.' '; |
| 745 | 745 | $buffer = $Common->getData('https://sailaway.world/cgi-bin/sailaway/GetMissions.pl?race=1&tutorial=0&hist=1&racetype='.$i); |
| 746 | 746 | if ($globalDebug) echo 'done'."\n"; |
| 747 | 747 | if ($buffer != '') { |
| 748 | - $all_data = json_decode($buffer,true); |
|
| 748 | + $all_data = json_decode($buffer, true); |
|
| 749 | 749 | if (isset($all_data['missions'])) { |
| 750 | 750 | foreach ($all_data['missions'] as $mission) { |
| 751 | 751 | $mission_user = $mission['usrname']; |
| 752 | - $mission_name = preg_replace('/[\x00-\x1F\x7F-\xFF]/', '',$mission['mistitle']); |
|
| 753 | - if (!isset($globalFilter['sailway']['race']) || (isset($globalFilter['sailway']['race']) && in_array($mission['misnr'],$globalFilter['sailway']['race']))) { |
|
| 752 | + $mission_name = preg_replace('/[\x00-\x1F\x7F-\xFF]/', '', $mission['mistitle']); |
|
| 753 | + if (!isset($globalFilter['sailway']['race']) || (isset($globalFilter['sailway']['race']) && in_array($mission['misnr'], $globalFilter['sailway']['race']))) { |
|
| 754 | 754 | $bufferm = $Common->getData('https://sailaway.world/cgi-bin/sailaway/GetLeaderboard.pl?misnr='.$mission['misnr']); |
| 755 | 755 | } else $bufferm = ''; |
| 756 | 756 | if ($bufferm != '') { |
| 757 | - $mission_data = json_decode($bufferm,true); |
|
| 757 | + $mission_data = json_decode($bufferm, true); |
|
| 758 | 758 | if (isset($mission_data['leaderboard'][0]['results'])) { |
| 759 | 759 | foreach ($mission_data['leaderboard'][0]['results'] as $sail) { |
| 760 | 760 | //print_r($bufferm); |
@@ -771,13 +771,13 @@ discard block |
||
| 771 | 771 | $pos = $Common->convertDecLatLong($sail['pos']); |
| 772 | 772 | $data['latitude'] = $pos['latitude']; |
| 773 | 773 | $data['longitude'] = $pos['longitude']; |
| 774 | - $resultdescr = explode(',',$sail['resultdescr']); |
|
| 775 | - $data['speed'] = round(str_replace(array('Spd: ','kn.'),'',trim($resultdescr[2]))*1.852,2); |
|
| 776 | - $data['heading'] = str_replace(array('Hdg: ','°'),'',trim($resultdescr[1])); |
|
| 774 | + $resultdescr = explode(',', $sail['resultdescr']); |
|
| 775 | + $data['speed'] = round(str_replace(array('Spd: ', 'kn.'), '', trim($resultdescr[2]))*1.852, 2); |
|
| 776 | + $data['heading'] = str_replace(array('Hdg: ', '°'), '', trim($resultdescr[1])); |
|
| 777 | 777 | if (isset($resultdescr[3])) { |
| 778 | - $data['distance'] = round(str_replace('nm.','',trim(explode(' ',$resultdescr[3])[1]))*1.852,3); |
|
| 778 | + $data['distance'] = round(str_replace('nm.', '', trim(explode(' ', $resultdescr[3])[1]))*1.852, 3); |
|
| 779 | 779 | } |
| 780 | - $data['ident'] = trim(preg_replace('/[\x00-\x1F\x7F-\xFF]/', '',$sail['ubtname'])); |
|
| 780 | + $data['ident'] = trim(preg_replace('/[\x00-\x1F\x7F-\xFF]/', '', $sail['ubtname'])); |
|
| 781 | 781 | $data['captain_id'] = $sail['usrnr']; |
| 782 | 782 | $data['captain_name'] = $sail['usrname']; |
| 783 | 783 | $data['race_id'] = $sail['misnr']; |
@@ -824,8 +824,8 @@ discard block |
||
| 824 | 824 | ) { |
| 825 | 825 | //$buffer = $Common->getData($hosts[$id]); |
| 826 | 826 | $buffer = $Common->getData($value['host']); |
| 827 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 828 | - $buffer = explode('\n',$buffer); |
|
| 827 | + $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '\n', $buffer)); |
|
| 828 | + $buffer = explode('\n', $buffer); |
|
| 829 | 829 | $reset = 0; |
| 830 | 830 | foreach ($buffer as $line) { |
| 831 | 831 | if ($line != '') { |
@@ -836,7 +836,7 @@ discard block |
||
| 836 | 836 | else $data['id'] = $value['format'].'-'.$line[1].'-'.$line[0]; |
| 837 | 837 | $data['pilot_id'] = $line[1]; |
| 838 | 838 | $data['pilot_name'] = $line[2]; |
| 839 | - $data['hex'] = str_pad(dechex($Common->str2int($line[1])),6,'000000',STR_PAD_LEFT); |
|
| 839 | + $data['hex'] = str_pad(dechex($Common->str2int($line[1])), 6, '000000', STR_PAD_LEFT); |
|
| 840 | 840 | $data['ident'] = $line[0]; // ident |
| 841 | 841 | if ($line[7] != '' && $line[7] != 0) $data['altitude'] = $line[7]; // altitude |
| 842 | 842 | $data['speed'] = $line[8]; // speed |
@@ -852,7 +852,7 @@ discard block |
||
| 852 | 852 | //$data['datetime'] = date('Y-m-d H:i:s',strtotime($line[37])); |
| 853 | 853 | //if (isset($line[37])) $data['last_update'] = $line[37]; |
| 854 | 854 | $data['departure_airport_icao'] = $line[11]; |
| 855 | - $data['departure_airport_time'] = rtrim(chunk_split($line[22],2,':'),':'); |
|
| 855 | + $data['departure_airport_time'] = rtrim(chunk_split($line[22], 2, ':'), ':'); |
|
| 856 | 856 | $data['arrival_airport_icao'] = $line[13]; |
| 857 | 857 | $data['frequency'] = $line[4]; |
| 858 | 858 | $data['type'] = $line[18]; |
@@ -861,7 +861,7 @@ discard block |
||
| 861 | 861 | $data['id_source'] = $id_source; |
| 862 | 862 | //$data['arrival_airport_time'] = ; |
| 863 | 863 | if ($line[9] != '') { |
| 864 | - $aircraft_data = explode('/',$line[9]); |
|
| 864 | + $aircraft_data = explode('/', $line[9]); |
|
| 865 | 865 | if (isset($aircraft_data[1])) { |
| 866 | 866 | $data['aircraft_icao'] = $aircraft_data[1]; |
| 867 | 867 | } |
@@ -876,9 +876,9 @@ discard block |
||
| 876 | 876 | if ($line[3] === 'PILOT') $SI->add($data); |
| 877 | 877 | elseif ($line[3] === 'ATC') { |
| 878 | 878 | //print_r($data); |
| 879 | - $data['info'] = str_replace('^§','<br />',$data['info']); |
|
| 880 | - $data['info'] = str_replace('&sect;','',$data['info']); |
|
| 881 | - $typec = substr($data['ident'],-3); |
|
| 879 | + $data['info'] = str_replace('^§', '<br />', $data['info']); |
|
| 880 | + $data['info'] = str_replace('&sect;', '', $data['info']); |
|
| 881 | + $typec = substr($data['ident'], -3); |
|
| 882 | 882 | if ($typec === 'APP') $data['type'] = 'Approach'; |
| 883 | 883 | elseif ($typec === 'TWR') $data['type'] = 'Tower'; |
| 884 | 884 | elseif ($typec === 'OBS') $data['type'] = 'Observer'; |
@@ -890,8 +890,8 @@ discard block |
||
| 890 | 890 | elseif ($data['type'] === '') $data['type'] = 'Observer'; |
| 891 | 891 | if (!isset($data['source_name'])) $data['source_name'] = ''; |
| 892 | 892 | if (isset($ATC)) { |
| 893 | - if (count($ATC->getByIdent($data['ident'],$data['format_source'])) > 0) echo $ATC->update($data['ident'],$data['frequency'],$data['latitude'],$data['longitude'],$data['range'],$data['info'],$data['datetime'],$data['type'],$data['pilot_id'],$data['pilot_name'],$data['format_source'],$data['source_name']); |
|
| 894 | - else echo $ATC->add($data['ident'],$data['frequency'],$data['latitude'],$data['longitude'],$data['range'],$data['info'],$data['datetime'],$data['type'],$data['pilot_id'],$data['pilot_name'],$data['format_source'],$data['source_name']); |
|
| 893 | + if (count($ATC->getByIdent($data['ident'], $data['format_source'])) > 0) echo $ATC->update($data['ident'], $data['frequency'], $data['latitude'], $data['longitude'], $data['range'], $data['info'], $data['datetime'], $data['type'], $data['pilot_id'], $data['pilot_name'], $data['format_source'], $data['source_name']); |
|
| 894 | + else echo $ATC->add($data['ident'], $data['frequency'], $data['latitude'], $data['longitude'], $data['range'], $data['info'], $data['datetime'], $data['type'], $data['pilot_id'], $data['pilot_name'], $data['format_source'], $data['source_name']); |
|
| 895 | 895 | } |
| 896 | 896 | } |
| 897 | 897 | unset($data); |
@@ -907,24 +907,24 @@ discard block |
||
| 907 | 907 | (!isset($globalSources[$id]['minfetch']) && (time() - $last_exec[$id]['last'] > $globalMinFetch)) |
| 908 | 908 | ) |
| 909 | 909 | ) { |
| 910 | - $buffer = $Common->getData('http://www.airwhere.co.uk/pilots.php','get','','','','','20'); |
|
| 910 | + $buffer = $Common->getData('http://www.airwhere.co.uk/pilots.php', 'get', '', '', '', '', '20'); |
|
| 911 | 911 | if ($buffer != '') { |
| 912 | 912 | $all_data = simplexml_load_string($buffer); |
| 913 | - foreach($all_data->children() as $childdata) { |
|
| 913 | + foreach ($all_data->children() as $childdata) { |
|
| 914 | 914 | $data = array(); |
| 915 | 915 | $line = $childdata; |
| 916 | 916 | //$data['hex'] = str_pad(dechex((int)$line['pktPilotID']),6,'000000',STR_PAD_LEFT); |
| 917 | - $data['id'] = date('Ymd').(int)$line['pktPilotID']; |
|
| 918 | - $data['datetime'] = date('Y-m-d H:i:s',strtotime((string)$line['entryTime'].' BST')); |
|
| 919 | - $data['latitude'] = (float)$line['pktLatitude']; |
|
| 920 | - $data['longitude'] = (float)$line['pktLongitude']; |
|
| 921 | - if ((float)$line['pktTrack'] != 0) $data['heading'] = (float)$line['pktTrack']; |
|
| 922 | - if ((int)$line['pktSpeed'] != 0) $data['speed'] = (int)$line['pktSpeed']; |
|
| 923 | - $data['altitude'] = round((int)$line['pktAltitude']*3.28084); |
|
| 917 | + $data['id'] = date('Ymd').(int) $line['pktPilotID']; |
|
| 918 | + $data['datetime'] = date('Y-m-d H:i:s', strtotime((string) $line['entryTime'].' BST')); |
|
| 919 | + $data['latitude'] = (float) $line['pktLatitude']; |
|
| 920 | + $data['longitude'] = (float) $line['pktLongitude']; |
|
| 921 | + if ((float) $line['pktTrack'] != 0) $data['heading'] = (float) $line['pktTrack']; |
|
| 922 | + if ((int) $line['pktSpeed'] != 0) $data['speed'] = (int) $line['pktSpeed']; |
|
| 923 | + $data['altitude'] = round((int) $line['pktAltitude']*3.28084); |
|
| 924 | 924 | $data['altitude_relative'] = 'AMSL'; |
| 925 | - $data['pilot_id'] = (int)$line['pktPilotID']; |
|
| 925 | + $data['pilot_id'] = (int) $line['pktPilotID']; |
|
| 926 | 926 | $data['aircraft_icao'] = 'PARAGLIDER'; |
| 927 | - $pilot_data = explode(',',$Common->getData('http://www.airwhere.co.uk/pilotdetails.php?pilot='.$data['pilot_id'])); |
|
| 927 | + $pilot_data = explode(',', $Common->getData('http://www.airwhere.co.uk/pilotdetails.php?pilot='.$data['pilot_id'])); |
|
| 928 | 928 | if (isset($pilot_data[4])) $data['pilot_name'] = $pilot_data[4]; |
| 929 | 929 | $data['format_source'] = $value['format']; |
| 930 | 930 | $SI->add($data); |
@@ -932,22 +932,22 @@ discard block |
||
| 932 | 932 | } |
| 933 | 933 | } |
| 934 | 934 | $Source->deleteOldLocationByType('gs'); |
| 935 | - $buffer = $Common->getData('http://www.airwhere.co.uk/gspositions.php','get','','','','','20'); |
|
| 935 | + $buffer = $Common->getData('http://www.airwhere.co.uk/gspositions.php', 'get', '', '', '', '', '20'); |
|
| 936 | 936 | if ($buffer != '') { |
| 937 | 937 | $all_data = simplexml_load_string($buffer); |
| 938 | - foreach($all_data->children() as $childdata) { |
|
| 938 | + foreach ($all_data->children() as $childdata) { |
|
| 939 | 939 | $data = array(); |
| 940 | 940 | $line = $childdata; |
| 941 | - $data['id'] = (int)$line['gsID']; |
|
| 942 | - $data['latitude'] = (float)$line['gsLatitude']; |
|
| 943 | - $data['longitude'] = (float)$line['gsLongitude']; |
|
| 944 | - $data['altitude'] = round((int)$line['gsHeight']*3.28084); |
|
| 941 | + $data['id'] = (int) $line['gsID']; |
|
| 942 | + $data['latitude'] = (float) $line['gsLatitude']; |
|
| 943 | + $data['longitude'] = (float) $line['gsLongitude']; |
|
| 944 | + $data['altitude'] = round((int) $line['gsHeight']*3.28084); |
|
| 945 | 945 | $data['altitude_relative'] = 'AMSL'; |
| 946 | - $data['datetime'] = date('Y-m-d H:i:s',strtotime((string)$line['gsLastUpdate'].' BST')); |
|
| 946 | + $data['datetime'] = date('Y-m-d H:i:s', strtotime((string) $line['gsLastUpdate'].' BST')); |
|
| 947 | 947 | if (count($Source->getLocationInfoByLocationID($data['id'])) > 0) { |
| 948 | - $Source->updateLocationByLocationID('',$data['latitude'],$data['longitude'],$data['altitude'],'','','airwhere','antenna.png','gs',$id,$data['id'],$data['datetime']); |
|
| 948 | + $Source->updateLocationByLocationID('', $data['latitude'], $data['longitude'], $data['altitude'], '', '', 'airwhere', 'antenna.png', 'gs', $id, $data['id'], $data['datetime']); |
|
| 949 | 949 | } else { |
| 950 | - $Source->addLocation('',$data['latitude'],$data['longitude'],$data['altitude'],'','','airwhere','antenna.png','gs',$id,$data['id'],$data['datetime']); |
|
| 950 | + $Source->addLocation('', $data['latitude'], $data['longitude'], $data['altitude'], '', '', 'airwhere', 'antenna.png', 'gs', $id, $data['id'], $data['datetime']); |
|
| 951 | 951 | } |
| 952 | 952 | unset($data); |
| 953 | 953 | } |
@@ -965,9 +965,9 @@ discard block |
||
| 965 | 965 | (!isset($globalSources[$id]['minfetch']) && (time() - $last_exec[$id]['last'] > $globalMinFetch)) |
| 966 | 966 | ) |
| 967 | 967 | ) { |
| 968 | - $buffer = $Common->getData($value['host'],'get','','','','','20'); |
|
| 968 | + $buffer = $Common->getData($value['host'], 'get', '', '', '', '', '20'); |
|
| 969 | 969 | if ($buffer != '') { |
| 970 | - $all_data = json_decode($buffer,true); |
|
| 970 | + $all_data = json_decode($buffer, true); |
|
| 971 | 971 | if (isset($all_data['acList'])) { |
| 972 | 972 | $reset = 0; |
| 973 | 973 | foreach ($all_data['acList'] as $line) { |
@@ -983,7 +983,7 @@ discard block |
||
| 983 | 983 | if (isset($line['Sqk'])) $data['squawk'] = $line['Sqk']; // squawk |
| 984 | 984 | $data['emergency'] = ''; // emergency |
| 985 | 985 | if (isset($line['Reg'])) $data['registration'] = $line['Reg']; |
| 986 | - if (isset($line['PosTime'])) $data['datetime'] = date('Y-m-d H:i:s',round($line['PosTime']/1000)); |
|
| 986 | + if (isset($line['PosTime'])) $data['datetime'] = date('Y-m-d H:i:s', round($line['PosTime']/1000)); |
|
| 987 | 987 | else $data['datetime'] = date('Y-m-d H:i:s'); |
| 988 | 988 | //$data['datetime'] = date('Y-m-d H:i:s'); |
| 989 | 989 | if (isset($line['Type'])) $data['aircraft_icao'] = $line['Type']; |
@@ -1008,7 +1008,7 @@ discard block |
||
| 1008 | 1008 | $data['verticalrate'] = $line['vrt']; // verticale rate |
| 1009 | 1009 | $data['squawk'] = $line['squawk']; // squawk |
| 1010 | 1010 | $data['emergency'] = ''; // emergency |
| 1011 | - if (isset($line['PosTime'])) $data['datetime'] = date('Y-m-d H:i:s',round($line['PosTime']/1000)); |
|
| 1011 | + if (isset($line['PosTime'])) $data['datetime'] = date('Y-m-d H:i:s', round($line['PosTime']/1000)); |
|
| 1012 | 1012 | else $data['datetime'] = date('Y-m-d H:i:s'); |
| 1013 | 1013 | $data['format_source'] = 'aircraftlistjson'; |
| 1014 | 1014 | $data['id_source'] = $id_source; |
@@ -1029,7 +1029,7 @@ discard block |
||
| 1029 | 1029 | ) |
| 1030 | 1030 | ) { |
| 1031 | 1031 | $buffer = $Common->getData($value['host']); |
| 1032 | - $all_data = json_decode($buffer,true); |
|
| 1032 | + $all_data = json_decode($buffer, true); |
|
| 1033 | 1033 | if (isset($all_data['planes'])) { |
| 1034 | 1034 | $reset = 0; |
| 1035 | 1035 | foreach ($all_data['planes'] as $key => $line) { |
@@ -1046,12 +1046,12 @@ discard block |
||
| 1046 | 1046 | $data['emergency'] = ''; // emergency |
| 1047 | 1047 | $data['registration'] = $line[2]; |
| 1048 | 1048 | $data['aircraft_icao'] = $line[0]; |
| 1049 | - $deparr = explode('-',$line[1]); |
|
| 1049 | + $deparr = explode('-', $line[1]); |
|
| 1050 | 1050 | if (count($deparr) === 2) { |
| 1051 | 1051 | $data['departure_airport_icao'] = $deparr[0]; |
| 1052 | 1052 | $data['arrival_airport_icao'] = $deparr[1]; |
| 1053 | 1053 | } |
| 1054 | - $data['datetime'] = date('Y-m-d H:i:s',$line[9]); |
|
| 1054 | + $data['datetime'] = date('Y-m-d H:i:s', $line[9]); |
|
| 1055 | 1055 | $data['format_source'] = 'planeupdatefaa'; |
| 1056 | 1056 | $data['id_source'] = $id_source; |
| 1057 | 1057 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
@@ -1069,7 +1069,7 @@ discard block |
||
| 1069 | 1069 | ) |
| 1070 | 1070 | ) { |
| 1071 | 1071 | $buffer = $Common->getData($value['host']); |
| 1072 | - $all_data = json_decode($buffer,true); |
|
| 1072 | + $all_data = json_decode($buffer, true); |
|
| 1073 | 1073 | if (isset($all_data['states'])) { |
| 1074 | 1074 | $reset = 0; |
| 1075 | 1075 | foreach ($all_data['states'] as $key => $line) { |
@@ -1086,7 +1086,7 @@ discard block |
||
| 1086 | 1086 | //$data['emergency'] = ''; // emergency |
| 1087 | 1087 | //$data['registration'] = $line[2]; |
| 1088 | 1088 | //$data['aircraft_icao'] = $line[0]; |
| 1089 | - $data['datetime'] = date('Y-m-d H:i:s',$line[3]); |
|
| 1089 | + $data['datetime'] = date('Y-m-d H:i:s', $line[3]); |
|
| 1090 | 1090 | $data['format_source'] = 'opensky'; |
| 1091 | 1091 | $data['id_source'] = $id_source; |
| 1092 | 1092 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
@@ -1103,8 +1103,8 @@ discard block |
||
| 1103 | 1103 | ) |
| 1104 | 1104 | ) { |
| 1105 | 1105 | $buffer = $Common->getData($value['host']); |
| 1106 | - $all_data = json_decode($buffer,true); |
|
| 1107 | - if (isset($all_data['aircraft']) && isset($all_data['now']) && $all_data['now'] > time()-1800) { |
|
| 1106 | + $all_data = json_decode($buffer, true); |
|
| 1107 | + if (isset($all_data['aircraft']) && isset($all_data['now']) && $all_data['now'] > time() - 1800) { |
|
| 1108 | 1108 | $reset = 0; |
| 1109 | 1109 | foreach ($all_data['aircraft'] as $key => $line) { |
| 1110 | 1110 | $data = array(); |
@@ -1142,7 +1142,7 @@ discard block |
||
| 1142 | 1142 | ) |
| 1143 | 1143 | ) { |
| 1144 | 1144 | $buffer = $Common->getData($value['host']); |
| 1145 | - $all_data = json_decode($buffer,true); |
|
| 1145 | + $all_data = json_decode($buffer, true); |
|
| 1146 | 1146 | if (isset($all_data['aircraft'])) { |
| 1147 | 1147 | $reset = 0; |
| 1148 | 1148 | foreach ($all_data['aircraft'] as $key => $line) { |
@@ -1159,7 +1159,7 @@ discard block |
||
| 1159 | 1159 | //$data['emergency'] = ''; // emergency |
| 1160 | 1160 | if (isset($line['reg'])) $data['registration'] = $line['reg']; |
| 1161 | 1161 | if (isset($line['type'])) $data['aircraft_icao'] = $line['type']; |
| 1162 | - $data['datetime'] = date('Y-m-d H:i:s',$line['pos_update_time']); |
|
| 1162 | + $data['datetime'] = date('Y-m-d H:i:s', $line['pos_update_time']); |
|
| 1163 | 1163 | $data['format_source'] = 'planefinderclient'; |
| 1164 | 1164 | $data['id_source'] = $id_source; |
| 1165 | 1165 | if (isset($value['name']) && $value['name'] != '') $data['source_name'] = $value['name']; |
@@ -1178,7 +1178,7 @@ discard block |
||
| 1178 | 1178 | ) { |
| 1179 | 1179 | //$buffer = $Common->getData($hosts[$id]); |
| 1180 | 1180 | $buffer = $Common->getData($value['host']); |
| 1181 | - $all_data = json_decode($buffer,true); |
|
| 1181 | + $all_data = json_decode($buffer, true); |
|
| 1182 | 1182 | if (!empty($all_data)) $reset = 0; |
| 1183 | 1183 | foreach ($all_data as $key => $line) { |
| 1184 | 1184 | if ($key != 'full_count' && $key != 'version' && $key != 'stats') { |
@@ -1216,11 +1216,11 @@ discard block |
||
| 1216 | 1216 | ) |
| 1217 | 1217 | ) { |
| 1218 | 1218 | //$buffer = $Common->getData($hosts[$id],'get','','','','','150'); |
| 1219 | - $buffer = $Common->getData($value['host'],'get','','','','','150'); |
|
| 1219 | + $buffer = $Common->getData($value['host'], 'get', '', '', '', '', '150'); |
|
| 1220 | 1220 | //echo $buffer; |
| 1221 | - $buffer = str_replace(array("\n","\r"),"",$buffer); |
|
| 1222 | - $buffer = preg_replace('/,"num":(.+)/','}',$buffer); |
|
| 1223 | - $all_data = json_decode($buffer,true); |
|
| 1221 | + $buffer = str_replace(array("\n", "\r"), "", $buffer); |
|
| 1222 | + $buffer = preg_replace('/,"num":(.+)/', '}', $buffer); |
|
| 1223 | + $all_data = json_decode($buffer, true); |
|
| 1224 | 1224 | if (json_last_error() != JSON_ERROR_NONE) { |
| 1225 | 1225 | die(json_last_error_msg()); |
| 1226 | 1226 | } |
@@ -1243,7 +1243,7 @@ discard block |
||
| 1243 | 1243 | //$data['departure_airport_iata'] = $line[11]; |
| 1244 | 1244 | //$data['arrival_airport_iata'] = $line[12]; |
| 1245 | 1245 | //$data['emergency'] = ''; // emergency |
| 1246 | - $data['datetime'] = date('Y-m-d H:i:s',$line['inf']['dt']); //$line[10] |
|
| 1246 | + $data['datetime'] = date('Y-m-d H:i:s', $line['inf']['dt']); //$line[10] |
|
| 1247 | 1247 | $data['format_source'] = 'radarvirtueljson'; |
| 1248 | 1248 | $data['id_source'] = $id_source; |
| 1249 | 1249 | if (isset($value['noarchive']) && $value['noarchive'] === TRUE) $data['noarchive'] = true; |
@@ -1264,14 +1264,14 @@ discard block |
||
| 1264 | 1264 | ) { |
| 1265 | 1265 | //$buffer = $Common->getData($hosts[$id]); |
| 1266 | 1266 | $buffer = $Common->getData($value['host'].'?'.time()); |
| 1267 | - $all_data = json_decode(utf8_encode($buffer),true); |
|
| 1267 | + $all_data = json_decode(utf8_encode($buffer), true); |
|
| 1268 | 1268 | |
| 1269 | 1269 | if (isset($all_data['pireps'])) { |
| 1270 | 1270 | $reset = 0; |
| 1271 | 1271 | foreach ($all_data['pireps'] as $line) { |
| 1272 | 1272 | $data = array(); |
| 1273 | 1273 | $data['id'] = $line['id']; |
| 1274 | - $data['hex'] = substr(str_pad(dechex($line['id']),6,'000000',STR_PAD_LEFT),0,6); |
|
| 1274 | + $data['hex'] = substr(str_pad(dechex($line['id']), 6, '000000', STR_PAD_LEFT), 0, 6); |
|
| 1275 | 1275 | $data['ident'] = $line['callsign']; // ident |
| 1276 | 1276 | if (isset($line['pilotid'])) $data['pilot_id'] = $line['pilotid']; // pilot id |
| 1277 | 1277 | if (isset($line['name'])) $data['pilot_name'] = $line['name']; // pilot name |
@@ -1301,9 +1301,9 @@ discard block |
||
| 1301 | 1301 | $SI->add($data); |
| 1302 | 1302 | // print_r($data); |
| 1303 | 1303 | } elseif ($line['icon'] === 'ct') { |
| 1304 | - $data['info'] = str_replace('^§','<br />',$data['info']); |
|
| 1305 | - $data['info'] = str_replace('&sect;','',$data['info']); |
|
| 1306 | - $typec = substr($data['ident'],-3); |
|
| 1304 | + $data['info'] = str_replace('^§', '<br />', $data['info']); |
|
| 1305 | + $data['info'] = str_replace('&sect;', '', $data['info']); |
|
| 1306 | + $typec = substr($data['ident'], -3); |
|
| 1307 | 1307 | $data['type'] = ''; |
| 1308 | 1308 | if ($typec === 'APP') $data['type'] = 'Approach'; |
| 1309 | 1309 | elseif ($typec === 'TWR') $data['type'] = 'Tower'; |
@@ -1314,7 +1314,7 @@ discard block |
||
| 1314 | 1314 | elseif ($typec === 'FSS') $data['type'] = 'Flight Service Station'; |
| 1315 | 1315 | elseif ($typec === 'CTR') $data['type'] = 'Control Radar or Centre'; |
| 1316 | 1316 | else $data['type'] = 'Observer'; |
| 1317 | - if (isset($ATC)) echo $ATC->add($data['ident'],'',$data['latitude'],$data['longitude'],'0',$data['info'],$data['datetime'],$data['type'],$data['pilot_id'],$data['pilot_name'],$data['format_source']); |
|
| 1317 | + if (isset($ATC)) echo $ATC->add($data['ident'], '', $data['latitude'], $data['longitude'], '0', $data['info'], $data['datetime'], $data['type'], $data['pilot_id'], $data['pilot_name'], $data['format_source']); |
|
| 1318 | 1318 | } |
| 1319 | 1319 | unset($data); |
| 1320 | 1320 | } |
@@ -1331,14 +1331,14 @@ discard block |
||
| 1331 | 1331 | //$buffer = $Common->getData($hosts[$id]); |
| 1332 | 1332 | if ($globalDebug) echo 'Get Data...'."\n"; |
| 1333 | 1333 | $buffer = $Common->getData($value['host']); |
| 1334 | - $all_data = json_decode($buffer,true); |
|
| 1334 | + $all_data = json_decode($buffer, true); |
|
| 1335 | 1335 | if ($buffer != '' && is_array($all_data)) { |
| 1336 | 1336 | $reset = 0; |
| 1337 | 1337 | foreach ($all_data as $line) { |
| 1338 | 1338 | $data = array(); |
| 1339 | 1339 | //$data['id'] = $line['id']; // id not usable |
| 1340 | 1340 | if (isset($line['pilotid'])) $data['id'] = $line['pilotid'].$line['flightnum']; |
| 1341 | - $data['hex'] = substr(str_pad(bin2hex($line['flightnum']),6,'000000',STR_PAD_LEFT),-6); // hex |
|
| 1341 | + $data['hex'] = substr(str_pad(bin2hex($line['flightnum']), 6, '000000', STR_PAD_LEFT), -6); // hex |
|
| 1342 | 1342 | if (isset($line['pilotname'])) $data['pilot_name'] = $line['pilotname']; |
| 1343 | 1343 | if (isset($line['pilotid'])) $data['pilot_id'] = $line['pilotid']; |
| 1344 | 1344 | $data['ident'] = $line['flightnum']; // ident |
@@ -1353,7 +1353,7 @@ discard block |
||
| 1353 | 1353 | //$data['datetime'] = $line['lastupdate']; |
| 1354 | 1354 | //$data['last_update'] = $line['lastupdate']; |
| 1355 | 1355 | if (isset($value['timezone'])) { |
| 1356 | - $datetime = new DateTime($line['lastupdate'],new DateTimeZone($value['timezone'])); |
|
| 1356 | + $datetime = new DateTime($line['lastupdate'], new DateTimeZone($value['timezone'])); |
|
| 1357 | 1357 | $datetime->setTimeZone(new DateTimeZone('UTC')); |
| 1358 | 1358 | $data['datetime'] = $datetime->format('Y-m-d H:i:s'); |
| 1359 | 1359 | } else $data['datetime'] = date('Y-m-d H:i:s'); |
@@ -1369,14 +1369,14 @@ discard block |
||
| 1369 | 1369 | if (isset($line['route'])) $data['waypoints'] = $line['route']; // route |
| 1370 | 1370 | if (isset($line['aircraftname'])) { |
| 1371 | 1371 | $line['aircraftname'] = strtoupper($line['aircraftname']); |
| 1372 | - $line['aircraftname'] = str_replace('BOEING ','B',$line['aircraftname']); |
|
| 1373 | - $aircraft_data = explode('-',$line['aircraftname']); |
|
| 1372 | + $line['aircraftname'] = str_replace('BOEING ', 'B', $line['aircraftname']); |
|
| 1373 | + $aircraft_data = explode('-', $line['aircraftname']); |
|
| 1374 | 1374 | if (isset($aircraft_data[1]) && strlen($aircraft_data[0]) >= 3 && strlen($aircraft_data[0]) <= 4) $data['aircraft_icao'] = $aircraft_data[0]; |
| 1375 | 1375 | elseif (isset($aircraft_data[1]) && strlen($aircraft_data[1]) >= 3 && strlen($aircraft_data[1]) <= 4) $data['aircraft_icao'] = $aircraft_data[1]; |
| 1376 | 1376 | else { |
| 1377 | - $aircraft_data = explode(' ',$line['aircraftname']); |
|
| 1378 | - if (isset($aircraft_data[1])) $data['aircraft_icao'] = str_replace('-','',$aircraft_data[1]); |
|
| 1379 | - else $data['aircraft_icao'] = str_replace('-','',$line['aircraftname']); |
|
| 1377 | + $aircraft_data = explode(' ', $line['aircraftname']); |
|
| 1378 | + if (isset($aircraft_data[1])) $data['aircraft_icao'] = str_replace('-', '', $aircraft_data[1]); |
|
| 1379 | + else $data['aircraft_icao'] = str_replace('-', '', $line['aircraftname']); |
|
| 1380 | 1380 | } |
| 1381 | 1381 | } |
| 1382 | 1382 | if (isset($line['route'])) $data['waypoints'] = $line['route']; |
@@ -1401,7 +1401,7 @@ discard block |
||
| 1401 | 1401 | //$buffer = $Common->getData($hosts[$id]); |
| 1402 | 1402 | if ($globalDebug) echo 'Get Data...'."\n"; |
| 1403 | 1403 | $buffer = $Common->getData($value['host']); |
| 1404 | - $all_data = json_decode($buffer,true); |
|
| 1404 | + $all_data = json_decode($buffer, true); |
|
| 1405 | 1405 | if ($buffer != '' && is_array($all_data) && isset($all_data['ACARSData'])) { |
| 1406 | 1406 | $reset = 0; |
| 1407 | 1407 | foreach ($all_data['ACARSData'] as $line) { |
@@ -1412,7 +1412,7 @@ discard block |
||
| 1412 | 1412 | //$data['hex'] = substr(str_pad(bin2hex($line['flightnum']),6,'000000',STR_PAD_LEFT),-6); // hex |
| 1413 | 1413 | if (isset($line['user']['username'])) $data['pilot_name'] = $line['user']['username']; |
| 1414 | 1414 | if (isset($line['user_id'])) $data['pilot_id'] = $line['user_id']; |
| 1415 | - $data['ident'] = str_replace(' ','',$line['bid']['flightnum']); // ident |
|
| 1415 | + $data['ident'] = str_replace(' ', '', $line['bid']['flightnum']); // ident |
|
| 1416 | 1416 | if (is_numeric($data['ident'])) $data['ident'] = $line['bid']['airline']['icao'].$data['ident']; |
| 1417 | 1417 | $data['altitude'] = $line['altitude']; // altitude |
| 1418 | 1418 | $data['speed'] = $line['groundspeed']; // speed |
@@ -1423,7 +1423,7 @@ discard block |
||
| 1423 | 1423 | //$data['squawk'] = ''; // squawk |
| 1424 | 1424 | //$data['emergency'] = ''; // emergency |
| 1425 | 1425 | if (isset($value['timezone'])) { |
| 1426 | - $datetime = new DateTime($line['updated_at'],new DateTimeZone($value['timezone'])); |
|
| 1426 | + $datetime = new DateTime($line['updated_at'], new DateTimeZone($value['timezone'])); |
|
| 1427 | 1427 | $datetime->setTimeZone(new DateTimeZone('UTC')); |
| 1428 | 1428 | $data['datetime'] = $datetime->format('Y-m-d H:i:s'); |
| 1429 | 1429 | } else $data['datetime'] = date('Y-m-d H:i:s'); |
@@ -1459,14 +1459,14 @@ discard block |
||
| 1459 | 1459 | //$buffer = $Common->getData($hosts[$id]); |
| 1460 | 1460 | if ($globalDebug) echo 'Get Data...'."\n"; |
| 1461 | 1461 | $buffer = $Common->getData($value['host']); |
| 1462 | - $all_data = json_decode($buffer,true); |
|
| 1462 | + $all_data = json_decode($buffer, true); |
|
| 1463 | 1463 | if ($buffer != '' && is_array($all_data)) { |
| 1464 | 1464 | $reset = 0; |
| 1465 | 1465 | foreach ($all_data as $line) { |
| 1466 | 1466 | $data = array(); |
| 1467 | 1467 | //$data['id'] = $line['id']; // id not usable |
| 1468 | 1468 | $data['id'] = trim($line['flight_id']); |
| 1469 | - $data['hex'] = substr(str_pad(bin2hex($line['callsign']),6,'000000',STR_PAD_LEFT),-6); // hex |
|
| 1469 | + $data['hex'] = substr(str_pad(bin2hex($line['callsign']), 6, '000000', STR_PAD_LEFT), -6); // hex |
|
| 1470 | 1470 | $data['pilot_name'] = $line['pilot_name']; |
| 1471 | 1471 | $data['pilot_id'] = $line['pilot_id']; |
| 1472 | 1472 | $data['ident'] = trim($line['callsign']); // ident |
@@ -1510,24 +1510,24 @@ discard block |
||
| 1510 | 1510 | //$buffer = $Common->getData($hosts[$id]); |
| 1511 | 1511 | if ($globalDebug) echo 'Get Data...'."\n"; |
| 1512 | 1512 | $buffer = $Common->getData($value['host']); |
| 1513 | - $all_data = json_decode($buffer,true); |
|
| 1513 | + $all_data = json_decode($buffer, true); |
|
| 1514 | 1514 | if ($buffer != '') { |
| 1515 | 1515 | $Source->deleteLocationBySource('blitzortung'); |
| 1516 | - $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'\n',$buffer)); |
|
| 1517 | - $buffer = explode('\n',$buffer); |
|
| 1516 | + $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '\n', $buffer)); |
|
| 1517 | + $buffer = explode('\n', $buffer); |
|
| 1518 | 1518 | foreach ($buffer as $buffer_line) { |
| 1519 | - $line = json_decode($buffer_line,true); |
|
| 1519 | + $line = json_decode($buffer_line, true); |
|
| 1520 | 1520 | if (isset($line['time'])) { |
| 1521 | 1521 | $data = array(); |
| 1522 | 1522 | $data['altitude'] = $line['alt']; // altitude |
| 1523 | 1523 | $data['latitude'] = $line['lat']; // lat |
| 1524 | 1524 | $data['longitude'] = $line['lon']; // long |
| 1525 | - $data['datetime'] = date('Y-m-d H:i:s',substr($line['time'],0,10)); |
|
| 1525 | + $data['datetime'] = date('Y-m-d H:i:s', substr($line['time'], 0, 10)); |
|
| 1526 | 1526 | $data['id_source'] = $id_source; |
| 1527 | 1527 | $data['format_source'] = 'blitzortung'; |
| 1528 | 1528 | $SI->add($data); |
| 1529 | 1529 | if ($globalDebug) echo '☈ Lightning added'."\n"; |
| 1530 | - $Source->addLocation('',$data['latitude'],$data['longitude'],0,'','','blitzortung','weather/thunderstorm.png','lightning',$id,0,$data['datetime']); |
|
| 1530 | + $Source->addLocation('', $data['latitude'], $data['longitude'], 0, '', '', 'blitzortung', 'weather/thunderstorm.png', 'lightning', $id, 0, $data['datetime']); |
|
| 1531 | 1531 | unset($data); |
| 1532 | 1532 | } |
| 1533 | 1533 | } |
@@ -1550,11 +1550,11 @@ discard block |
||
| 1550 | 1550 | //$value = $formats[$nb]; |
| 1551 | 1551 | $format = $globalSources[$nb]['format']; |
| 1552 | 1552 | if ($format === 'sbs' || $format === 'aprs' || $format === 'famaprs' || $format === 'raw' || $format === 'tsv' || $format === 'acarssbs3') { |
| 1553 | - $buffer = @socket_read($r, 6000,PHP_NORMAL_READ); |
|
| 1553 | + $buffer = @socket_read($r, 6000, PHP_NORMAL_READ); |
|
| 1554 | 1554 | } elseif ($format === 'vrstcp') { |
| 1555 | 1555 | $buffer = @socket_read($r, 6000); |
| 1556 | 1556 | } else { |
| 1557 | - $az = socket_recvfrom($r,$buffer,6000,0,$remote_ip,$remote_port); |
|
| 1557 | + $az = socket_recvfrom($r, $buffer, 6000, 0, $remote_ip, $remote_port); |
|
| 1558 | 1558 | } |
| 1559 | 1559 | //$buffer = socket_read($r, 60000,PHP_NORMAL_READ); |
| 1560 | 1560 | //echo $buffer."\n"; |
@@ -1564,8 +1564,8 @@ discard block |
||
| 1564 | 1564 | //$SI::del(); |
| 1565 | 1565 | if ($buffer !== FALSE) { |
| 1566 | 1566 | if ($format === 'vrstcp') { |
| 1567 | - $buffer = explode('},{',$buffer); |
|
| 1568 | - } else $buffer=trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'',$buffer)); |
|
| 1567 | + $buffer = explode('},{', $buffer); |
|
| 1568 | + } else $buffer = trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '', $buffer)); |
|
| 1569 | 1569 | } |
| 1570 | 1570 | // SBS format is CSV format |
| 1571 | 1571 | if ($buffer !== FALSE && $buffer !== '') { |
@@ -1589,7 +1589,7 @@ discard block |
||
| 1589 | 1589 | $ais_data = $AIS->parse_line(trim($buffer)); |
| 1590 | 1590 | $data = array(); |
| 1591 | 1591 | if (isset($ais_data['ident'])) $data['ident'] = $ais_data['ident']; |
| 1592 | - if (isset($ais_data['mmsi'])) $data['mmsi'] = substr($ais_data['mmsi'],-9); |
|
| 1592 | + if (isset($ais_data['mmsi'])) $data['mmsi'] = substr($ais_data['mmsi'], -9); |
|
| 1593 | 1593 | if (isset($ais_data['speed'])) $data['speed'] = $ais_data['speed']; |
| 1594 | 1594 | if (isset($ais_data['heading'])) $data['heading'] = $ais_data['heading']; |
| 1595 | 1595 | if (isset($ais_data['latitude'])) $data['latitude'] = $ais_data['latitude']; |
@@ -1600,13 +1600,13 @@ discard block |
||
| 1600 | 1600 | if (isset($ais_data['imo'])) $data['imo'] = $ais_data['imo']; |
| 1601 | 1601 | if (isset($ais_data['callsign'])) $data['callsign'] = $ais_data['callsign']; |
| 1602 | 1602 | if (isset($ais_data['destination'])) $data['arrival_code'] = $ais_data['destination']; |
| 1603 | - if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s',$ais_data['eta_ts']); |
|
| 1603 | + if (isset($ais_data['eta_ts'])) $data['arrival_date'] = date('Y-m-d H:i:s', $ais_data['eta_ts']); |
|
| 1604 | 1604 | if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
| 1605 | 1605 | if (isset($globalSources[$nb]['name']) && $globalSources[$nb]['name'] != '') $data['source_name'] = $globalSources[$nb]['name']; |
| 1606 | 1606 | if (isset($globalSources[$nb]['sourcestats'])) $data['sourcestats'] = $globalSources[$nb]['sourcestats']; |
| 1607 | 1607 | |
| 1608 | 1608 | if (isset($ais_data['timestamp'])) { |
| 1609 | - $data['datetime'] = date('Y-m-d H:i:s',$ais_data['timestamp']); |
|
| 1609 | + $data['datetime'] = date('Y-m-d H:i:s', $ais_data['timestamp']); |
|
| 1610 | 1610 | } else { |
| 1611 | 1611 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 1612 | 1612 | } |
@@ -1617,10 +1617,10 @@ discard block |
||
| 1617 | 1617 | } elseif ($format === 'flightgearsp') { |
| 1618 | 1618 | //echo $buffer."\n"; |
| 1619 | 1619 | if (strlen($buffer) > 5) { |
| 1620 | - $line = explode(',',$buffer); |
|
| 1620 | + $line = explode(',', $buffer); |
|
| 1621 | 1621 | $data = array(); |
| 1622 | 1622 | //XGPS,2.0947,41.3093,-3047.6953,198.930,0.000,callsign,c172p |
| 1623 | - $data['hex'] = substr(str_pad(bin2hex($line[6].$line[7]),6,'000000',STR_PAD_LEFT),0,6); |
|
| 1623 | + $data['hex'] = substr(str_pad(bin2hex($line[6].$line[7]), 6, '000000', STR_PAD_LEFT), 0, 6); |
|
| 1624 | 1624 | $data['ident'] = $line[6]; |
| 1625 | 1625 | $data['aircraft_name'] = $line[7]; |
| 1626 | 1626 | $data['longitude'] = $line[1]; |
@@ -1637,16 +1637,16 @@ discard block |
||
| 1637 | 1637 | } elseif ($format === 'acars') { |
| 1638 | 1638 | if ($globalDebug) echo 'ACARS : '.$buffer."\n"; |
| 1639 | 1639 | $ACARS->add(trim($buffer)); |
| 1640 | - socket_sendto($r, "OK " . $buffer , 100 , 0 , $remote_ip , $remote_port); |
|
| 1640 | + socket_sendto($r, "OK ".$buffer, 100, 0, $remote_ip, $remote_port); |
|
| 1641 | 1641 | $ACARS->deleteLiveAcarsData(); |
| 1642 | 1642 | } elseif ($format === 'flightgearmp') { |
| 1643 | - if (substr($buffer,0,1) != '#') { |
|
| 1643 | + if (substr($buffer, 0, 1) != '#') { |
|
| 1644 | 1644 | $data = array(); |
| 1645 | 1645 | //echo $buffer."\n"; |
| 1646 | - $line = explode(' ',$buffer); |
|
| 1646 | + $line = explode(' ', $buffer); |
|
| 1647 | 1647 | if (count($line) === 11) { |
| 1648 | - $userserver = explode('@',$line[0]); |
|
| 1649 | - $data['hex'] = substr(str_pad(bin2hex($line[0]),6,'000000',STR_PAD_LEFT),0,6); // hex |
|
| 1648 | + $userserver = explode('@', $line[0]); |
|
| 1649 | + $data['hex'] = substr(str_pad(bin2hex($line[0]), 6, '000000', STR_PAD_LEFT), 0, 6); // hex |
|
| 1650 | 1650 | $data['ident'] = $userserver[0]; |
| 1651 | 1651 | $data['registration'] = $userserver[0]; |
| 1652 | 1652 | $data['latitude'] = $line[4]; |
@@ -1654,8 +1654,8 @@ discard block |
||
| 1654 | 1654 | $data['altitude'] = $line[6]; |
| 1655 | 1655 | $data['datetime'] = date('Y-m-d H:i:s'); |
| 1656 | 1656 | $aircraft_type = $line[10]; |
| 1657 | - $aircraft_type = preg_split(':/:',$aircraft_type); |
|
| 1658 | - $data['aircraft_name'] = substr(end($aircraft_type),0,-4); |
|
| 1657 | + $aircraft_type = preg_split(':/:', $aircraft_type); |
|
| 1658 | + $data['aircraft_name'] = substr(end($aircraft_type), 0, -4); |
|
| 1659 | 1659 | if (isset($globalSources[$nb]['noarchive']) && $globalSources[$nb]['noarchive'] === TRUE) $data['noarchive'] = true; |
| 1660 | 1660 | if (($data['latitude'] === '' && $data['longitude'] === '') || (is_numeric($data['latitude']) && is_numeric($data['longitude']))) $SI->add($data); |
| 1661 | 1661 | } |
@@ -1664,8 +1664,8 @@ discard block |
||
| 1664 | 1664 | echo 'Beast Binary format not yet supported. Beast AVR format is supported in alpha state'."\n"; |
| 1665 | 1665 | die; |
| 1666 | 1666 | } elseif ($format === 'vrstcp') { |
| 1667 | - foreach($buffer as $all_data) { |
|
| 1668 | - $line = json_decode('{'.$all_data.'}',true); |
|
| 1667 | + foreach ($buffer as $all_data) { |
|
| 1668 | + $line = json_decode('{'.$all_data.'}', true); |
|
| 1669 | 1669 | $data = array(); |
| 1670 | 1670 | if (isset($line['Icao'])) $data['hex'] = $line['Icao']; // hex |
| 1671 | 1671 | if (isset($line['Call'])) $data['ident'] = $line['Call']; // ident |
@@ -1691,16 +1691,16 @@ discard block |
||
| 1691 | 1691 | if (isset($data['latitude']) && isset($data['hex'])) $SI->add($data); |
| 1692 | 1692 | unset($data); |
| 1693 | 1693 | } |
| 1694 | - } elseif ($format === 'tsv' || substr($buffer,0,4) === 'clock') { |
|
| 1694 | + } elseif ($format === 'tsv' || substr($buffer, 0, 4) === 'clock') { |
|
| 1695 | 1695 | $line = explode("\t", $buffer); |
| 1696 | - for($k = 0; $k < count($line); $k=$k+2) { |
|
| 1696 | + for ($k = 0; $k < count($line); $k = $k + 2) { |
|
| 1697 | 1697 | $key = $line[$k]; |
| 1698 | - $lined[$key] = $line[$k+1]; |
|
| 1698 | + $lined[$key] = $line[$k + 1]; |
|
| 1699 | 1699 | } |
| 1700 | 1700 | if (count($lined) > 3) { |
| 1701 | 1701 | $data['hex'] = $lined['hexid']; |
| 1702 | 1702 | //$data['datetime'] = date('Y-m-d H:i:s',strtotime($lined['clock']));; |
| 1703 | - $data['datetime'] = date('Y-m-d H:i:s');; |
|
| 1703 | + $data['datetime'] = date('Y-m-d H:i:s'); ; |
|
| 1704 | 1704 | if (isset($lined['ident'])) $data['ident'] = $lined['ident']; |
| 1705 | 1705 | if (isset($lined['lat'])) $data['latitude'] = $lined['lat']; |
| 1706 | 1706 | if (isset($lined['lon'])) $data['longitude'] = $lined['lon']; |
@@ -1719,23 +1719,23 @@ discard block |
||
| 1719 | 1719 | } else $error = true; |
| 1720 | 1720 | } elseif ($format === 'aprs' && $use_aprs) { |
| 1721 | 1721 | if ($aprs_connect === 0) { |
| 1722 | - $send = @ socket_send( $r , $aprs_login , strlen($aprs_login) , 0 ); |
|
| 1722 | + $send = @ socket_send($r, $aprs_login, strlen($aprs_login), 0); |
|
| 1723 | 1723 | $aprs_connect = 1; |
| 1724 | 1724 | } |
| 1725 | 1725 | |
| 1726 | - if ( $aprs_keep>60 && time() - $aprs_last_tx > $aprs_keep ) { |
|
| 1726 | + if ($aprs_keep > 60 && time() - $aprs_last_tx > $aprs_keep) { |
|
| 1727 | 1727 | $aprs_last_tx = time(); |
| 1728 | 1728 | $data_aprs = "# Keep alive"; |
| 1729 | - $send = @ socket_send( $r , $data_aprs , strlen($data_aprs) , 0 ); |
|
| 1729 | + $send = @ socket_send($r, $data_aprs, strlen($data_aprs), 0); |
|
| 1730 | 1730 | } |
| 1731 | 1731 | |
| 1732 | 1732 | //echo 'Connect : '.$aprs_connect.' '.$buffer."\n"; |
| 1733 | 1733 | //echo 'APRS data : '.$buffer."\n"; |
| 1734 | - $buffer = str_replace('APRS <- ','',$buffer); |
|
| 1735 | - $buffer = str_replace('APRS -> ','',$buffer); |
|
| 1734 | + $buffer = str_replace('APRS <- ', '', $buffer); |
|
| 1735 | + $buffer = str_replace('APRS -> ', '', $buffer); |
|
| 1736 | 1736 | //echo $buffer."\n"; |
| 1737 | 1737 | date_default_timezone_set('UTC'); |
| 1738 | - if (substr($buffer,0,1) != '#' && substr($buffer,0,1) != '@' && substr($buffer,0,5) != 'APRS ') { |
|
| 1738 | + if (substr($buffer, 0, 1) != '#' && substr($buffer, 0, 1) != '@' && substr($buffer, 0, 5) != 'APRS ') { |
|
| 1739 | 1739 | $line = $APRS->parse($buffer); |
| 1740 | 1740 | //if (is_array($line) && isset($line['address']) && $line['address'] != '' && isset($line['ident'])) { |
| 1741 | 1741 | if (is_array($line) && isset($line['latitude']) && isset($line['longitude']) && (isset($line['ident']) || isset($line['address']) || isset($line['mmsi']))) { |
@@ -1750,7 +1750,7 @@ discard block |
||
| 1750 | 1750 | if (isset($line['arrival_date'])) $data['arrival_date'] = $line['arrival_date']; |
| 1751 | 1751 | if (isset($line['typeid'])) $data['type_id'] = $line['typeid']; |
| 1752 | 1752 | if (isset($line['statusid'])) $data['status_id'] = $line['statusid']; |
| 1753 | - if (isset($line['timestamp'])) $data['datetime'] = date('Y-m-d H:i:s',$line['timestamp']); |
|
| 1753 | + if (isset($line['timestamp'])) $data['datetime'] = date('Y-m-d H:i:s', $line['timestamp']); |
|
| 1754 | 1754 | else $data['datetime'] = date('Y-m-d H:i:s'); |
| 1755 | 1755 | //$data['datetime'] = date('Y-m-d H:i:s'); |
| 1756 | 1756 | if (isset($line['ident'])) $data['ident'] = $line['ident']; |
@@ -1838,29 +1838,29 @@ discard block |
||
| 1838 | 1838 | } elseif (!isset($line['stealth']) && is_numeric($data['latitude']) && is_numeric($data['longitude']) && isset($data['ident']) && isset($data['altitude'])) { |
| 1839 | 1839 | if (!isset($data['altitude'])) $data['altitude'] = 0; |
| 1840 | 1840 | $Source->deleteOldLocationByType('gs'); |
| 1841 | - if (count($Source->getLocationInfoByNameType($data['ident'],'gs')) > 0) { |
|
| 1842 | - $Source->updateLocation($data['ident'],$data['latitude'],$data['longitude'],$data['altitude'],'','',$data['source_name'],'antenna.png','gs',$id,0,$data['datetime']); |
|
| 1841 | + if (count($Source->getLocationInfoByNameType($data['ident'], 'gs')) > 0) { |
|
| 1842 | + $Source->updateLocation($data['ident'], $data['latitude'], $data['longitude'], $data['altitude'], '', '', $data['source_name'], 'antenna.png', 'gs', $id, 0, $data['datetime']); |
|
| 1843 | 1843 | } else { |
| 1844 | - $Source->addLocation($data['ident'],$data['latitude'],$data['longitude'],$data['altitude'],'','',$data['source_name'],'antenna.png','gs',$id,0,$data['datetime']); |
|
| 1844 | + $Source->addLocation($data['ident'], $data['latitude'], $data['longitude'], $data['altitude'], '', '', $data['source_name'], 'antenna.png', 'gs', $id, 0, $data['datetime']); |
|
| 1845 | 1845 | } |
| 1846 | 1846 | } elseif (isset($line['symbol']) && $line['symbol'] === 'Weather Station') { |
| 1847 | 1847 | //if ($globalDebug) echo '!! Weather Station not yet supported'."\n"; |
| 1848 | 1848 | if ($globalDebug) echo '# Weather Station added'."\n"; |
| 1849 | 1849 | $Source->deleteOldLocationByType('wx'); |
| 1850 | 1850 | $weather_data = json_encode($line); |
| 1851 | - if (count($Source->getLocationInfoByNameType($data['ident'],'wx')) > 0) { |
|
| 1852 | - $Source->updateLocation($data['ident'],$data['latitude'],$data['longitude'],0,'','',$data['source_name'],'wx.png','wx',$id,0,$data['datetime'],$weather_data); |
|
| 1851 | + if (count($Source->getLocationInfoByNameType($data['ident'], 'wx')) > 0) { |
|
| 1852 | + $Source->updateLocation($data['ident'], $data['latitude'], $data['longitude'], 0, '', '', $data['source_name'], 'wx.png', 'wx', $id, 0, $data['datetime'], $weather_data); |
|
| 1853 | 1853 | } else { |
| 1854 | - $Source->addLocation($data['ident'],$data['latitude'],$data['longitude'],0,'','',$data['source_name'],'wx.png','wx',$id,0,$data['datetime'],$weather_data); |
|
| 1854 | + $Source->addLocation($data['ident'], $data['latitude'], $data['longitude'], 0, '', '', $data['source_name'], 'wx.png', 'wx', $id, 0, $data['datetime'], $weather_data); |
|
| 1855 | 1855 | } |
| 1856 | 1856 | } elseif (isset($line['symbol']) && ($line['symbol'] === 'Lightning' || $line['symbol'] === 'Thunderstorm')) { |
| 1857 | 1857 | //if ($globalDebug) echo '!! Weather Station not yet supported'."\n"; |
| 1858 | 1858 | if ($globalDebug) echo '☈ Lightning added'."\n"; |
| 1859 | 1859 | $Source->deleteOldLocationByType('lightning'); |
| 1860 | - if (count($Source->getLocationInfoByNameType($data['ident'],'lightning')) > 0) { |
|
| 1861 | - $Source->updateLocation($data['ident'],$data['latitude'],$data['longitude'],0,'','',$data['source_name'],'weather/thunderstorm.png','lightning',$id,0,$data['datetime'],$data['comment']); |
|
| 1860 | + if (count($Source->getLocationInfoByNameType($data['ident'], 'lightning')) > 0) { |
|
| 1861 | + $Source->updateLocation($data['ident'], $data['latitude'], $data['longitude'], 0, '', '', $data['source_name'], 'weather/thunderstorm.png', 'lightning', $id, 0, $data['datetime'], $data['comment']); |
|
| 1862 | 1862 | } else { |
| 1863 | - $Source->addLocation($data['ident'],$data['latitude'],$data['longitude'],0,'','',$data['source_name'],'weather/thunderstorm.png','lightning',$id,0,$data['datetime'],$data['comment']); |
|
| 1863 | + $Source->addLocation($data['ident'], $data['latitude'], $data['longitude'], 0, '', '', $data['source_name'], 'weather/thunderstorm.png', 'lightning', $id, 0, $data['datetime'], $data['comment']); |
|
| 1864 | 1864 | } |
| 1865 | 1865 | } elseif ($globalDebug) { |
| 1866 | 1866 | echo '/!\ Not added: '.$buffer."\n"; |
@@ -1869,7 +1869,7 @@ discard block |
||
| 1869 | 1869 | unset($data); |
| 1870 | 1870 | } |
| 1871 | 1871 | elseif (is_array($line) && isset($line['ident']) && $line['ident'] != '') { |
| 1872 | - $Source->updateLocationDescByName($line['ident'],$line['source'],$id,$line['comment']); |
|
| 1872 | + $Source->updateLocationDescByName($line['ident'], $line['source'], $id, $line['comment']); |
|
| 1873 | 1873 | } |
| 1874 | 1874 | /* |
| 1875 | 1875 | elseif (is_array($line) && $globalDebug && isset($line['symbol']) && isset($line['latitude']) && isset($line['longitude']) && ($line['symbol'] === 'Car' || $line['symbol'] === 'Ambulance' || $line['symbol'] === 'Van' || $line['symbol'] === 'Truck' || $line['symbol'] === 'Truck (18 Wheeler)' || $line['symbol'] === 'Motorcycle')) { |
@@ -1878,7 +1878,7 @@ discard block |
||
| 1878 | 1878 | */ |
| 1879 | 1879 | //elseif ($line === false && $globalDebug) echo 'Ignored ('.$buffer.")\n"; |
| 1880 | 1880 | elseif ($line === true && $globalDebug) echo '!! Failed : '.$buffer."!!\n"; |
| 1881 | - if (isset($globalSources[$nb]['last_weather_clean']) && time()-$globalSources[$nb]['last_weather_clean'] > 60*5) { |
|
| 1881 | + if (isset($globalSources[$nb]['last_weather_clean']) && time() - $globalSources[$nb]['last_weather_clean'] > 60*5) { |
|
| 1882 | 1882 | $Source->deleteOldLocationByType('lightning'); |
| 1883 | 1883 | $Source->deleteOldLocationByType('wx'); |
| 1884 | 1884 | $globalSources[$nb]['last_weather_clean'] = time(); |
@@ -1964,7 +1964,7 @@ discard block |
||
| 1964 | 1964 | connect_all($sourceee); |
| 1965 | 1965 | $sourceee = array(); |
| 1966 | 1966 | //connect_all($globalSources); |
| 1967 | - $tt[$format]=0; |
|
| 1967 | + $tt[$format] = 0; |
|
| 1968 | 1968 | break; |
| 1969 | 1969 | } |
| 1970 | 1970 | //else if ($globalDebug) echo "Trying again (".$tt[$format]."x) ".$format."..."; |
@@ -1974,14 +1974,14 @@ discard block |
||
| 1974 | 1974 | } else { |
| 1975 | 1975 | $error = socket_strerror(socket_last_error()); |
| 1976 | 1976 | if (($error != SOCKET_EINPROGRESS && $error != SOCKET_EALREADY && $error != 'Success') || (time() - $time >= $timeout && $error != 'Success')) { |
| 1977 | - if ($globalDebug) echo "ERROR : socket_select give this error ".$error . "\n"; |
|
| 1977 | + if ($globalDebug) echo "ERROR : socket_select give this error ".$error."\n"; |
|
| 1978 | 1978 | if (isset($globalDebug)) echo "Restarting...\n"; |
| 1979 | 1979 | // Restart the script if possible |
| 1980 | 1980 | if (is_array($sockets)) { |
| 1981 | 1981 | if ($globalDebug) echo "Shutdown all sockets..."; |
| 1982 | 1982 | |
| 1983 | 1983 | foreach ($sockets as $sock) { |
| 1984 | - @socket_shutdown($sock,2); |
|
| 1984 | + @socket_shutdown($sock, 2); |
|
| 1985 | 1985 | @socket_close($sock); |
| 1986 | 1986 | } |
| 1987 | 1987 | |