@@ -7,13 +7,13 @@ |
||
7 | 7 | |
8 | 8 | $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
9 | 9 | if ($airline_icao == 'all') { |
10 | - unset($_COOKIE['stats_airline_icao']); |
|
11 | - setcookie('stats_airline_icao', '', time()-3600); |
|
12 | - $airline_icao = ''; |
|
10 | + unset($_COOKIE['stats_airline_icao']); |
|
11 | + setcookie('stats_airline_icao', '', time()-3600); |
|
12 | + $airline_icao = ''; |
|
13 | 13 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
14 | - $airline_icao = $_COOKIE['stats_airline_icao']; |
|
14 | + $airline_icao = $_COOKIE['stats_airline_icao']; |
|
15 | 15 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
16 | - if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
16 | + if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
17 | 17 | } |
18 | 18 | setcookie('stats_airline_icao',$airline_icao); |
19 | 19 |
@@ -6,17 +6,17 @@ discard block |
||
6 | 6 | $title = _("Statistics").' - '._("Most common Arrival Airport"); |
7 | 7 | |
8 | 8 | if (!isset($filter_name)) $filter_name = ''; |
9 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
9 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
10 | 10 | if ($airline_icao == 'all') { |
11 | 11 | unset($_COOKIE['stats_airline_icao']); |
12 | - setcookie('stats_airline_icao', '', time()-3600); |
|
12 | + setcookie('stats_airline_icao', '', time() - 3600); |
|
13 | 13 | $airline_icao = ''; |
14 | 14 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
15 | 15 | $airline_icao = $_COOKIE['stats_airline_icao']; |
16 | 16 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
17 | 17 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
18 | 18 | } |
19 | -setcookie('stats_airline_icao',$airline_icao); |
|
19 | +setcookie('stats_airline_icao', $airline_icao); |
|
20 | 20 | |
21 | 21 | require_once('header.php'); |
22 | 22 | include('statistics-sub-menu.php'); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | </div> |
28 | 28 | <p>'._("Below are the <strong>Top 10</strong> most common arrival airports.").'</p>'; |
29 | 29 | |
30 | -$airport_airport_array = $Stats->countAllArrivalAirports(true,$airline_icao,$filter_name); |
|
30 | +$airport_airport_array = $Stats->countAllArrivalAirports(true, $airline_icao, $filter_name); |
|
31 | 31 | print '<script> |
32 | 32 | google.load("visualization", "1", {packages:["geochart"]}); |
33 | 33 | google.setOnLoadCallback(drawCharts); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | ["'._("Airport").'", "'._("# of times").'"],'; |
41 | 41 | |
42 | 42 | $airport_data = ''; |
43 | -foreach($airport_airport_array as $airport_item) |
|
43 | +foreach ($airport_airport_array as $airport_item) |
|
44 | 44 | { |
45 | 45 | $name = $airport_item['airport_arrival_city'].', '.$airport_item['airport_arrival_country'].' ('.$airport_item['airport_arrival_icao'].')'; |
46 | 46 | $name = str_replace("'", "", $name); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | print '</thead>'; |
81 | 81 | print '<tbody>'; |
82 | 82 | $i = 1; |
83 | -foreach($airport_airport_array as $airport_item) |
|
83 | +foreach ($airport_airport_array as $airport_item) |
|
84 | 84 | { |
85 | 85 | print '<tr>'; |
86 | 86 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -5,7 +5,9 @@ discard block |
||
5 | 5 | $Stats = new Stats(); |
6 | 6 | $title = _("Statistics").' - '._("Most common Callsign"); |
7 | 7 | |
8 | -if (!isset($filter_name)) $filter_name = ''; |
|
8 | +if (!isset($filter_name)) { |
|
9 | + $filter_name = ''; |
|
10 | +} |
|
9 | 11 | $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
10 | 12 | if ($airline_icao == 'all') { |
11 | 13 | unset($_COOKIE['stats_airline_icao']); |
@@ -14,8 +16,10 @@ discard block |
||
14 | 16 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
15 | 17 | $airline_icao = $_COOKIE['stats_airline_icao']; |
16 | 18 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
17 | - if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
18 | -} |
|
19 | + if (isset($globalFilter['airline'])) { |
|
20 | + $airline_icao = $globalFilter['airline'][0]; |
|
21 | + } |
|
22 | + } |
|
19 | 23 | setcookie('stats_airline_icao',$airline_icao); |
20 | 24 | |
21 | 25 | require_once('header.php'); |
@@ -7,13 +7,13 @@ |
||
7 | 7 | |
8 | 8 | $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
9 | 9 | if ($airline_icao == 'all') { |
10 | - unset($_COOKIE['stats_airline_icao']); |
|
11 | - setcookie('stats_airline_icao', '', time()-3600); |
|
12 | - $airline_icao = ''; |
|
10 | + unset($_COOKIE['stats_airline_icao']); |
|
11 | + setcookie('stats_airline_icao', '', time()-3600); |
|
12 | + $airline_icao = ''; |
|
13 | 13 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
14 | - $airline_icao = $_COOKIE['stats_airline_icao']; |
|
14 | + $airline_icao = $_COOKIE['stats_airline_icao']; |
|
15 | 15 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
16 | - if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
16 | + if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
17 | 17 | } |
18 | 18 | setcookie('stats_airline_icao',$airline_icao); |
19 | 19 |
@@ -6,17 +6,17 @@ discard block |
||
6 | 6 | $title = _("Statistics").' - '._("Most common Callsign"); |
7 | 7 | |
8 | 8 | if (!isset($filter_name)) $filter_name = ''; |
9 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
9 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
10 | 10 | if ($airline_icao == 'all') { |
11 | 11 | unset($_COOKIE['stats_airline_icao']); |
12 | - setcookie('stats_airline_icao', '', time()-3600); |
|
12 | + setcookie('stats_airline_icao', '', time() - 3600); |
|
13 | 13 | $airline_icao = ''; |
14 | 14 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
15 | 15 | $airline_icao = $_COOKIE['stats_airline_icao']; |
16 | 16 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
17 | 17 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
18 | 18 | } |
19 | -setcookie('stats_airline_icao',$airline_icao); |
|
19 | +setcookie('stats_airline_icao', $airline_icao); |
|
20 | 20 | |
21 | 21 | require_once('header.php'); |
22 | 22 | include('statistics-sub-menu.php'); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | </div> |
28 | 28 | <p>'._("Below are the <strong>Top 10</strong> most common ident/callsigns of all airlines.").'</p>'; |
29 | 29 | |
30 | -$callsign_array = $Stats->countAllCallsigns(true,$airline_icao,$filter_name); |
|
30 | +$callsign_array = $Stats->countAllCallsigns(true, $airline_icao, $filter_name); |
|
31 | 31 | print '<div id="chart" class="chart" width="100%"></div> |
32 | 32 | <script> |
33 | 33 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | var data = google.visualization.arrayToDataTable([ |
37 | 37 | ["'._("Aircraft").'", "'._("# of times").'"], '; |
38 | 38 | $callsign_data = ''; |
39 | -foreach($callsign_array as $callsign_item) |
|
39 | +foreach ($callsign_array as $callsign_item) |
|
40 | 40 | { |
41 | 41 | $callsign_data .= '[ "'.$callsign_item['callsign_icao'].' ('.$callsign_item['airline_name'].')",'.$callsign_item['callsign_icao_count'].'],'; |
42 | 42 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | print '</thead>'; |
71 | 71 | print '<tbody>'; |
72 | 72 | $i = 1; |
73 | - foreach($callsign_array as $callsign_item) |
|
73 | + foreach ($callsign_array as $callsign_item) |
|
74 | 74 | { |
75 | 75 | print '<tr>'; |
76 | 76 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -5,7 +5,9 @@ discard block |
||
5 | 5 | $Stats = new Stats(); |
6 | 6 | $title = _("Statistics").' - '._("Most common Callsign"); |
7 | 7 | |
8 | -if (!isset($filter_name)) $filter_name = ''; |
|
8 | +if (!isset($filter_name)) { |
|
9 | + $filter_name = ''; |
|
10 | +} |
|
9 | 11 | $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
10 | 12 | if ($airline_icao == 'all') { |
11 | 13 | unset($_COOKIE['stats_airline_icao']); |
@@ -14,8 +16,10 @@ discard block |
||
14 | 16 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
15 | 17 | $airline_icao = $_COOKIE['stats_airline_icao']; |
16 | 18 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
17 | - if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
18 | -} |
|
19 | + if (isset($globalFilter['airline'])) { |
|
20 | + $airline_icao = $globalFilter['airline'][0]; |
|
21 | + } |
|
22 | + } |
|
19 | 23 | setcookie('stats_airline_icao',$airline_icao); |
20 | 24 | |
21 | 25 | require_once('header.php'); |
@@ -7,13 +7,13 @@ |
||
7 | 7 | |
8 | 8 | $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
9 | 9 | if ($airline_icao == 'all') { |
10 | - unset($_COOKIE['stats_airline_icao']); |
|
11 | - setcookie('stats_airline_icao', '', time()-3600); |
|
12 | - $airline_icao = ''; |
|
10 | + unset($_COOKIE['stats_airline_icao']); |
|
11 | + setcookie('stats_airline_icao', '', time()-3600); |
|
12 | + $airline_icao = ''; |
|
13 | 13 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
14 | - $airline_icao = $_COOKIE['stats_airline_icao']; |
|
14 | + $airline_icao = $_COOKIE['stats_airline_icao']; |
|
15 | 15 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
16 | - if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
16 | + if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
17 | 17 | } |
18 | 18 | setcookie('stats_airline_icao',$airline_icao); |
19 | 19 |
@@ -6,17 +6,17 @@ discard block |
||
6 | 6 | $title = _("Statistics").' - '._("Most common Departure Airport by Country"); |
7 | 7 | |
8 | 8 | if (!isset($filter_name)) $filter_name = ''; |
9 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
9 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
10 | 10 | if ($airline_icao == 'all') { |
11 | 11 | unset($_COOKIE['stats_airline_icao']); |
12 | - setcookie('stats_airline_icao', '', time()-3600); |
|
12 | + setcookie('stats_airline_icao', '', time() - 3600); |
|
13 | 13 | $airline_icao = ''; |
14 | 14 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
15 | 15 | $airline_icao = $_COOKIE['stats_airline_icao']; |
16 | 16 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
17 | 17 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
18 | 18 | } |
19 | -setcookie('stats_airline_icao',$airline_icao); |
|
19 | +setcookie('stats_airline_icao', $airline_icao); |
|
20 | 20 | |
21 | 21 | require_once('header.php'); |
22 | 22 | include('statistics-sub-menu.php'); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | </div> |
28 | 28 | <p>'._("Below are the <strong>Top 10</strong> most common countries of all the departure airports.").'</p>'; |
29 | 29 | |
30 | -$airport_country_array = $Stats->countAllDepartureCountries(true,$airline_icao,$filter_name); |
|
30 | +$airport_country_array = $Stats->countAllDepartureCountries(true, $airline_icao, $filter_name); |
|
31 | 31 | print '<script> |
32 | 32 | google.load("visualization", "1", {packages:["geochart"]}); |
33 | 33 | google.setOnLoadCallback(drawCharts); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | ["'._("Country").'", "'._("# of times").'"],'; |
41 | 41 | |
42 | 42 | $country_data = ''; |
43 | -foreach($airport_country_array as $airport_item) |
|
43 | +foreach ($airport_country_array as $airport_item) |
|
44 | 44 | { |
45 | 45 | $country_data .= '[ "'.$airport_item['airport_departure_country'].'",'.$airport_item['airport_departure_country_count'].'],'; |
46 | 46 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | print '</thead>'; |
76 | 76 | print '<tbody>'; |
77 | 77 | $i = 1; |
78 | -foreach($airport_country_array as $airport_item) |
|
78 | +foreach ($airport_country_array as $airport_item) |
|
79 | 79 | { |
80 | 80 | print '<tr>'; |
81 | 81 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -5,7 +5,9 @@ discard block |
||
5 | 5 | $Stats = new Stats(); |
6 | 6 | $title = _("Statistics").' - '._("Most common Callsign"); |
7 | 7 | |
8 | -if (!isset($filter_name)) $filter_name = ''; |
|
8 | +if (!isset($filter_name)) { |
|
9 | + $filter_name = ''; |
|
10 | +} |
|
9 | 11 | $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
10 | 12 | if ($airline_icao == 'all') { |
11 | 13 | unset($_COOKIE['stats_airline_icao']); |
@@ -14,8 +16,10 @@ discard block |
||
14 | 16 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
15 | 17 | $airline_icao = $_COOKIE['stats_airline_icao']; |
16 | 18 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
17 | - if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
18 | -} |
|
19 | + if (isset($globalFilter['airline'])) { |
|
20 | + $airline_icao = $globalFilter['airline'][0]; |
|
21 | + } |
|
22 | + } |
|
19 | 23 | setcookie('stats_airline_icao',$airline_icao); |
20 | 24 | |
21 | 25 | require_once('header.php'); |
@@ -7,13 +7,13 @@ |
||
7 | 7 | |
8 | 8 | $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
9 | 9 | if ($airline_icao == 'all') { |
10 | - unset($_COOKIE['stats_airline_icao']); |
|
11 | - setcookie('stats_airline_icao', '', time()-3600); |
|
12 | - $airline_icao = ''; |
|
10 | + unset($_COOKIE['stats_airline_icao']); |
|
11 | + setcookie('stats_airline_icao', '', time()-3600); |
|
12 | + $airline_icao = ''; |
|
13 | 13 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
14 | - $airline_icao = $_COOKIE['stats_airline_icao']; |
|
14 | + $airline_icao = $_COOKIE['stats_airline_icao']; |
|
15 | 15 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
16 | - if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
16 | + if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
17 | 17 | } |
18 | 18 | setcookie('stats_airline_icao',$airline_icao); |
19 | 19 |
@@ -6,17 +6,17 @@ discard block |
||
6 | 6 | $title = _("Statistics").' - '._("Most common Arrival Airport by Country"); |
7 | 7 | |
8 | 8 | if (!isset($filter_name)) $filter_name = ''; |
9 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
9 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
10 | 10 | if ($airline_icao == 'all') { |
11 | 11 | unset($_COOKIE['stats_airline_icao']); |
12 | - setcookie('stats_airline_icao', '', time()-3600); |
|
12 | + setcookie('stats_airline_icao', '', time() - 3600); |
|
13 | 13 | $airline_icao = ''; |
14 | 14 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
15 | 15 | $airline_icao = $_COOKIE['stats_airline_icao']; |
16 | 16 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
17 | 17 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
18 | 18 | } |
19 | -setcookie('stats_airline_icao',$airline_icao); |
|
19 | +setcookie('stats_airline_icao', $airline_icao); |
|
20 | 20 | |
21 | 21 | require_once('header.php'); |
22 | 22 | include('statistics-sub-menu.php'); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | </div> |
28 | 28 | <p>'._("Below are the <strong>Top 10</strong> most common countries of all the arrival airports.").'</p>'; |
29 | 29 | |
30 | -$airport_country_array = $Stats->countAllArrivalCountries(true,$airline_icao,$filter_name); |
|
30 | +$airport_country_array = $Stats->countAllArrivalCountries(true, $airline_icao, $filter_name); |
|
31 | 31 | |
32 | 32 | print '<script> |
33 | 33 | google.load("visualization", "1", {packages:["geochart"]}); |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | ["'._("Country").'", "'._("# of times").'"],'; |
42 | 42 | |
43 | 43 | $country_data = ''; |
44 | -foreach($airport_country_array as $airport_item) |
|
44 | +foreach ($airport_country_array as $airport_item) |
|
45 | 45 | { |
46 | 46 | $country_data .= '[ "'.$airport_item['airport_arrival_country'].'",'.$airport_item['airport_arrival_country_count'].'],'; |
47 | 47 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | print '</thead>'; |
77 | 77 | print '<tbody>'; |
78 | 78 | $i = 1; |
79 | -foreach($airport_country_array as $airport_item) |
|
79 | +foreach ($airport_country_array as $airport_item) |
|
80 | 80 | { |
81 | 81 | print '<tr>'; |
82 | 82 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -5,7 +5,9 @@ discard block |
||
5 | 5 | $Stats = new Stats(); |
6 | 6 | $title = _("Statistics").' - '._("Most common Callsign"); |
7 | 7 | |
8 | -if (!isset($filter_name)) $filter_name = ''; |
|
8 | +if (!isset($filter_name)) { |
|
9 | + $filter_name = ''; |
|
10 | +} |
|
9 | 11 | $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
10 | 12 | if ($airline_icao == 'all') { |
11 | 13 | unset($_COOKIE['stats_airline_icao']); |
@@ -14,8 +16,10 @@ discard block |
||
14 | 16 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
15 | 17 | $airline_icao = $_COOKIE['stats_airline_icao']; |
16 | 18 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
17 | - if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
18 | -} |
|
19 | + if (isset($globalFilter['airline'])) { |
|
20 | + $airline_icao = $globalFilter['airline'][0]; |
|
21 | + } |
|
22 | + } |
|
19 | 23 | setcookie('stats_airline_icao',$airline_icao); |
20 | 24 | |
21 | 25 | require_once('header.php'); |
@@ -124,45 +124,72 @@ discard block |
||
124 | 124 | </div> |
125 | 125 | <p> |
126 | 126 | <label for="dbhost">Database hostname</label> |
127 | - <input type="text" name="dbhost" id="dbhost" value="<?php if (isset($globalDBhost)) print $globalDBhost; ?>" /> |
|
127 | + <input type="text" name="dbhost" id="dbhost" value="<?php if (isset($globalDBhost)) { |
|
128 | + print $globalDBhost; |
|
129 | +} |
|
130 | +?>" /> |
|
128 | 131 | </p> |
129 | 132 | <p> |
130 | 133 | <label for="dbport">Database port</label> |
131 | - <input type="text" name="dbport" id="dbport" value="<?php if (isset($globalDBport)) print $globalDBport; ?>" /> |
|
134 | + <input type="text" name="dbport" id="dbport" value="<?php if (isset($globalDBport)) { |
|
135 | + print $globalDBport; |
|
136 | +} |
|
137 | +?>" /> |
|
132 | 138 | <p class="help-block">Default is 3306 for MariaDB/MySQL, 5432 for PostgreSQL</p> |
133 | 139 | </p> |
134 | 140 | <p> |
135 | 141 | <label for="dbname">Database name</label> |
136 | - <input type="text" name="dbname" id="dbname" value="<?php if (isset($globalDBname)) print $globalDBname; ?>" /> |
|
142 | + <input type="text" name="dbname" id="dbname" value="<?php if (isset($globalDBname)) { |
|
143 | + print $globalDBname; |
|
144 | +} |
|
145 | +?>" /> |
|
137 | 146 | </p> |
138 | 147 | <p> |
139 | 148 | <label for="dbuser">Database user</label> |
140 | - <input type="text" name="dbuser" id="dbuser" value="<?php if (isset($globalDBuser)) print $globalDBuser; ?>" /> |
|
149 | + <input type="text" name="dbuser" id="dbuser" value="<?php if (isset($globalDBuser)) { |
|
150 | + print $globalDBuser; |
|
151 | +} |
|
152 | +?>" /> |
|
141 | 153 | </p> |
142 | 154 | <p> |
143 | 155 | <label for="dbuserpass">Database user password</label> |
144 | - <input type="password" name="dbuserpass" id="dbuserpass" value="<?php if (isset($globalDBpass)) print $globalDBpass; ?>" /> |
|
156 | + <input type="password" name="dbuserpass" id="dbuserpass" value="<?php if (isset($globalDBpass)) { |
|
157 | + print $globalDBpass; |
|
158 | +} |
|
159 | +?>" /> |
|
145 | 160 | </p> |
146 | 161 | </fieldset> |
147 | 162 | <fieldset id="site"> |
148 | 163 | <legend>Site configuration</legend> |
149 | 164 | <p> |
150 | 165 | <label for="sitename">Site name</label> |
151 | - <input type="text" name="sitename" id="sitename" value="<?php if (isset($globalName)) print $globalName; ?>" /> |
|
166 | + <input type="text" name="sitename" id="sitename" value="<?php if (isset($globalName)) { |
|
167 | + print $globalName; |
|
168 | +} |
|
169 | +?>" /> |
|
152 | 170 | </p> |
153 | 171 | <p> |
154 | 172 | <label for="siteurl">Site directory</label> |
155 | - <input type="text" name="siteurl" id="siteurl" value="<?php if (isset($globalURL)) print $globalURL; ?>" /> |
|
173 | + <input type="text" name="siteurl" id="siteurl" value="<?php if (isset($globalURL)) { |
|
174 | + print $globalURL; |
|
175 | +} |
|
176 | +?>" /> |
|
156 | 177 | <p class="help-block">Can be null. ex : <i>flightairmap</i> if complete URL is <i>http://toto.com/flightairmap</i></p> |
157 | 178 | </p> |
158 | 179 | <p> |
159 | 180 | <label for="timezone">Timezone</label> |
160 | - <input type="text" name="timezone" id="timezone" value="<?php if (isset($globalTimezone)) print $globalTimezone; ?>" /> |
|
181 | + <input type="text" name="timezone" id="timezone" value="<?php if (isset($globalTimezone)) { |
|
182 | + print $globalTimezone; |
|
183 | +} |
|
184 | +?>" /> |
|
161 | 185 | <p class="help-block">ex : UTC, Europe/Paris,...</p> |
162 | 186 | </p> |
163 | 187 | <p> |
164 | 188 | <label for="language">Language</label> |
165 | - <input type="text" name="language" id="language" value="<?php if (isset($globalLanguage)) print $globalLanguage; ?>" /> |
|
189 | + <input type="text" name="language" id="language" value="<?php if (isset($globalLanguage)) { |
|
190 | + print $globalLanguage; |
|
191 | +} |
|
192 | +?>" /> |
|
166 | 193 | <p class="help-block">Used only when link to wikipedia for now. Can be EN,DE,FR,...</p> |
167 | 194 | </p> |
168 | 195 | </fieldset> |
@@ -183,11 +210,17 @@ discard block |
||
183 | 210 | <div id="mapbox_data"> |
184 | 211 | <p> |
185 | 212 | <label for="mapboxid">Mapbox id</label> |
186 | - <input type="text" name="mapboxid" id="mapboxid" value="<?php if (isset($globalMapboxId)) print $globalMapboxId; ?>" /> |
|
213 | + <input type="text" name="mapboxid" id="mapboxid" value="<?php if (isset($globalMapboxId)) { |
|
214 | + print $globalMapboxId; |
|
215 | +} |
|
216 | +?>" /> |
|
187 | 217 | </p> |
188 | 218 | <p> |
189 | 219 | <label for="mapboxtoken">Mapbox token</label> |
190 | - <input type="text" name="mapboxtoken" id="mapboxtoken" value="<?php if (isset($globalMapboxToken)) print $globalMapboxToken; ?>" /> |
|
220 | + <input type="text" name="mapboxtoken" id="mapboxtoken" value="<?php if (isset($globalMapboxToken)) { |
|
221 | + print $globalMapboxToken; |
|
222 | +} |
|
223 | +?>" /> |
|
191 | 224 | </p> |
192 | 225 | <p class="help-block">Get a key <a href="https://www.mapbox.com/developers/">here</a></p> |
193 | 226 | </div> |
@@ -195,7 +228,10 @@ discard block |
||
195 | 228 | <div id="google_data"> |
196 | 229 | <p> |
197 | 230 | <label for="googlekey">Google API key</label> |
198 | - <input type="text" name="googlekey" id="googlekey" value="<?php if (isset($globalGoogleAPIKey)) print $globalGoogleAPIKey; ?>" /> |
|
231 | + <input type="text" name="googlekey" id="googlekey" value="<?php if (isset($globalGoogleAPIKey)) { |
|
232 | + print $globalGoogleAPIKey; |
|
233 | +} |
|
234 | +?>" /> |
|
199 | 235 | <p class="help-block">Get a key <a href="https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key">here</a></p> |
200 | 236 | </p> |
201 | 237 | </div> |
@@ -203,7 +239,10 @@ discard block |
||
203 | 239 | <div id="bing_data"> |
204 | 240 | <p> |
205 | 241 | <label for="bingkey">Bing Map key</label> |
206 | - <input type="text" name="bingkey" id="bingkey" value="<?php if (isset($globalBingMapKey)) print $globalBingMapKey; ?>" /> |
|
242 | + <input type="text" name="bingkey" id="bingkey" value="<?php if (isset($globalBingMapKey)) { |
|
243 | + print $globalBingMapKey; |
|
244 | +} |
|
245 | +?>" /> |
|
207 | 246 | <p class="help-block">Get a key <a href="https://www.bingmapsportal.com/">here</a></p> |
208 | 247 | </p> |
209 | 248 | </div> |
@@ -211,7 +250,10 @@ discard block |
||
211 | 250 | <div id="mapquest_data"> |
212 | 251 | <p> |
213 | 252 | <label for="mapquestkey">MapQuest key</label> |
214 | - <input type="text" name="mapquestkey" id="mapquestkey" value="<?php if (isset($globalMapQuestKey)) print $globalMapQuestKey; ?>" /> |
|
253 | + <input type="text" name="mapquestkey" id="mapquestkey" value="<?php if (isset($globalMapQuestKey)) { |
|
254 | + print $globalMapQuestKey; |
|
255 | +} |
|
256 | +?>" /> |
|
215 | 257 | <p class="help-block">Get a key <a href="https://developer.mapquest.com/user/me/apps">here</a></p> |
216 | 258 | </p> |
217 | 259 | </div> |
@@ -219,11 +261,17 @@ discard block |
||
219 | 261 | <div id="here_data"> |
220 | 262 | <p> |
221 | 263 | <label for="hereappid">Here App_Id</label> |
222 | - <input type="text" name="hereappid" id="hereappid" value="<?php if (isset($globalHereappId)) print $globalHereappId; ?>" /> |
|
264 | + <input type="text" name="hereappid" id="hereappid" value="<?php if (isset($globalHereappId)) { |
|
265 | + print $globalHereappId; |
|
266 | +} |
|
267 | +?>" /> |
|
223 | 268 | </p> |
224 | 269 | <p> |
225 | 270 | <label for="hereappcode">Here App_Code</label> |
226 | - <input type="text" name="hereappcode" id="hereappcode" value="<?php if (isset($globalHereappCode)) print $globalHereappCode; ?>" /> |
|
271 | + <input type="text" name="hereappcode" id="hereappcode" value="<?php if (isset($globalHereappCode)) { |
|
272 | + print $globalHereappCode; |
|
273 | +} |
|
274 | +?>" /> |
|
227 | 275 | </p> |
228 | 276 | <p class="help-block">Get a key <a href="https://developer.here.com/rest-apis/documentation/enterprise-map-tile/topics/quick-start.html">here</a></p> |
229 | 277 | </div> |
@@ -232,42 +280,86 @@ discard block |
||
232 | 280 | <legend>Coverage area</legend> |
233 | 281 | <p> |
234 | 282 | <label for="latitudemax">The maximum latitude (north)</label> |
235 | - <input type="text" name="latitudemax" id="latitudemax" value="<?php if (isset($globalLatitudeMax)) print $globalLatitudeMax; ?>" /> |
|
283 | + <input type="text" name="latitudemax" id="latitudemax" value="<?php if (isset($globalLatitudeMax)) { |
|
284 | + print $globalLatitudeMax; |
|
285 | +} |
|
286 | +?>" /> |
|
236 | 287 | </p> |
237 | 288 | <p> |
238 | 289 | <label for="latitudemin">The minimum latitude (south)</label> |
239 | - <input type="text" name="latitudemin" id="latitudemin" value="<?php if (isset($globalLatitudeMin)) print $globalLatitudeMin; ?>" /> |
|
290 | + <input type="text" name="latitudemin" id="latitudemin" value="<?php if (isset($globalLatitudeMin)) { |
|
291 | + print $globalLatitudeMin; |
|
292 | +} |
|
293 | +?>" /> |
|
240 | 294 | </p> |
241 | 295 | <p> |
242 | 296 | <label for="longitudemax">The maximum longitude (west)</label> |
243 | - <input type="text" name="longitudemax" id="longitudemax" value="<?php if (isset($globalLongitudeMax)) print $globalLongitudeMax; ?>" /> |
|
297 | + <input type="text" name="longitudemax" id="longitudemax" value="<?php if (isset($globalLongitudeMax)) { |
|
298 | + print $globalLongitudeMax; |
|
299 | +} |
|
300 | +?>" /> |
|
244 | 301 | </p> |
245 | 302 | <p> |
246 | 303 | <label for="longitudemin">The minimum longitude (east)</label> |
247 | - <input type="text" name="longitudemin" id="longitudemin" value="<?php if (isset($globalLongitudeMin)) print $globalLongitudeMin; ?>" /> |
|
304 | + <input type="text" name="longitudemin" id="longitudemin" value="<?php if (isset($globalLongitudeMin)) { |
|
305 | + print $globalLongitudeMin; |
|
306 | +} |
|
307 | +?>" /> |
|
248 | 308 | </p> |
249 | 309 | <p> |
250 | 310 | <label for="latitudecenter">The latitude center</label> |
251 | - <input type="text" name="latitudecenter" id="latitudecenter" value="<?php if (isset($globalCenterLatitude)) print $globalCenterLatitude; ?>" /> |
|
311 | + <input type="text" name="latitudecenter" id="latitudecenter" value="<?php if (isset($globalCenterLatitude)) { |
|
312 | + print $globalCenterLatitude; |
|
313 | +} |
|
314 | +?>" /> |
|
252 | 315 | </p> |
253 | 316 | <p> |
254 | 317 | <label for="longitudecenter">The longitude center</label> |
255 | - <input type="text" name="longitudecenter" id="longitudecenter" value="<?php if (isset($globalCenterLongitude)) print $globalCenterLongitude; ?>" /> |
|
318 | + <input type="text" name="longitudecenter" id="longitudecenter" value="<?php if (isset($globalCenterLongitude)) { |
|
319 | + print $globalCenterLongitude; |
|
320 | +} |
|
321 | +?>" /> |
|
256 | 322 | </p> |
257 | 323 | <p> |
258 | 324 | <label for="livezoom">Default Zoom on live map</label> |
259 | - <input type="number" name="livezoom" id="livezoom" value="<?php if (isset($globalLiveZoom)) print $globalLiveZoom; else print '9'; ?>" /> |
|
325 | + <input type="number" name="livezoom" id="livezoom" value="<?php if (isset($globalLiveZoom)) { |
|
326 | + print $globalLiveZoom; |
|
327 | +} else { |
|
328 | + print '9'; |
|
329 | +} |
|
330 | +?>" /> |
|
260 | 331 | </p> |
261 | 332 | <p> |
262 | 333 | <label for="squawk_country">Country for squawk usage</label> |
263 | 334 | <select name="squawk_country" id="squawk_country"> |
264 | - <option value="UK"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'UK') print ' selected '; ?>>UK</option> |
|
265 | - <option value="NZ"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NZ') print ' selected '; ?>>NZ</option> |
|
266 | - <option value="US"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'US') print ' selected '; ?>>US</option> |
|
267 | - <option value="AU"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'AU') print ' selected '; ?>>AU</option> |
|
268 | - <option value="NL"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NL') print ' selected '; ?>>NL</option> |
|
269 | - <option value="FR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'FR') print ' selected '; ?>>FR</option> |
|
270 | - <option value="TR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'TR') print ' selected '; ?>>TR</option> |
|
335 | + <option value="UK"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'UK') { |
|
336 | + print ' selected '; |
|
337 | +} |
|
338 | +?>>UK</option> |
|
339 | + <option value="NZ"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NZ') { |
|
340 | + print ' selected '; |
|
341 | +} |
|
342 | +?>>NZ</option> |
|
343 | + <option value="US"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'US') { |
|
344 | + print ' selected '; |
|
345 | +} |
|
346 | +?>>US</option> |
|
347 | + <option value="AU"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'AU') { |
|
348 | + print ' selected '; |
|
349 | +} |
|
350 | +?>>AU</option> |
|
351 | + <option value="NL"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NL') { |
|
352 | + print ' selected '; |
|
353 | +} |
|
354 | +?>>NL</option> |
|
355 | + <option value="FR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'FR') { |
|
356 | + print ' selected '; |
|
357 | +} |
|
358 | +?>>FR</option> |
|
359 | + <option value="TR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'TR') { |
|
360 | + print ' selected '; |
|
361 | +} |
|
362 | +?>>TR</option> |
|
271 | 363 | </select> |
272 | 364 | </p> |
273 | 365 | </fieldset> |
@@ -276,15 +368,24 @@ discard block |
||
276 | 368 | <p><i>Only put in DB flights that are inside a circle</i></p> |
277 | 369 | <p> |
278 | 370 | <label for="latitude">Center latitude</label> |
279 | - <input type="text" name="zoilatitude" id="latitude" value="<?php if (isset($globalDistanceIgnore['latitude'])) echo $globalDistanceIgnore['latitude']; ?>" /> |
|
371 | + <input type="text" name="zoilatitude" id="latitude" value="<?php if (isset($globalDistanceIgnore['latitude'])) { |
|
372 | + echo $globalDistanceIgnore['latitude']; |
|
373 | +} |
|
374 | +?>" /> |
|
280 | 375 | </p> |
281 | 376 | <p> |
282 | 377 | <label for="longitude">Center longitude</label> |
283 | - <input type="text" name="zoilongitude" id="longitude" value="<?php if (isset($globalDistanceIgnore['longitude'])) echo $globalDistanceIgnore['longitude']; ?>" /> |
|
378 | + <input type="text" name="zoilongitude" id="longitude" value="<?php if (isset($globalDistanceIgnore['longitude'])) { |
|
379 | + echo $globalDistanceIgnore['longitude']; |
|
380 | +} |
|
381 | +?>" /> |
|
284 | 382 | </p> |
285 | 383 | <p> |
286 | 384 | <label for="Distance">Distance (in km)</label> |
287 | - <input type="text" name="zoidistance" id="distance" value="<?php if (isset($globalDistanceIgnore['distance'])) echo $globalDistanceIgnore['distance']; ?>" /> |
|
385 | + <input type="text" name="zoidistance" id="distance" value="<?php if (isset($globalDistanceIgnore['distance'])) { |
|
386 | + echo $globalDistanceIgnore['distance']; |
|
387 | +} |
|
388 | +?>" /> |
|
288 | 389 | </p> |
289 | 390 | </fieldset> |
290 | 391 | <fieldset id="sourceloc"> |
@@ -379,11 +480,17 @@ discard block |
||
379 | 480 | <div id="flightaware_data"> |
380 | 481 | <p> |
381 | 482 | <label for="flightawareusername">FlightAware username</label> |
382 | - <input type="text" name="flightawareusername" id="flightawareusername" value="<?php if (isset($globalFlightAwareUsername)) print $globalFlightAwareUsername; ?>" /> |
|
483 | + <input type="text" name="flightawareusername" id="flightawareusername" value="<?php if (isset($globalFlightAwareUsername)) { |
|
484 | + print $globalFlightAwareUsername; |
|
485 | +} |
|
486 | +?>" /> |
|
383 | 487 | </p> |
384 | 488 | <p> |
385 | 489 | <label for="flightawarepassword">FlightAware password/API key</label> |
386 | - <input type="text" name="flightawarepassword" id="flightawarepassword" value="<?php if (isset($globalFlightAwarePassword)) print $globalFlightAwarePassword; ?>" /> |
|
490 | + <input type="text" name="flightawarepassword" id="flightawarepassword" value="<?php if (isset($globalFlightAwarePassword)) { |
|
491 | + print $globalFlightAwarePassword; |
|
492 | +} |
|
493 | +?>" /> |
|
387 | 494 | </p> |
388 | 495 | </div> |
389 | 496 | --> |
@@ -442,25 +549,76 @@ discard block |
||
442 | 549 | ?> |
443 | 550 | <td> |
444 | 551 | <select name="format[]" id="format"> |
445 | - <option value="auto" <?php if (!isset($source['format'])) print 'selected'; ?>>Auto</option> |
|
446 | - <option value="sbs" <?php if (isset($source['format']) && $source['format'] == 'sbs') print 'selected'; ?>>SBS</option> |
|
447 | - <option value="tsv" <?php if (isset($source['format']) && $source['format'] == 'tsv') print 'selected'; ?>>TSV</option> |
|
448 | - <option value="raw" <?php if (isset($source['format']) && $source['format'] == 'raw') print 'selected'; ?>>Raw</option> |
|
449 | - <option value="aprs" <?php if (isset($source['format']) && $source['format'] == 'aprs') print 'selected'; ?>>APRS</option> |
|
450 | - <option value="deltadbtxt" <?php if (isset($source['format']) && $source['format'] == 'deltadbtxt') print 'selected'; ?>>Radarcape deltadb.txt</option> |
|
451 | - <option value="vatsimtxt" <?php if (isset($source['format']) && $source['format'] == 'vatsimtxt') print 'selected'; ?>>Vatsim</option> |
|
452 | - <option value="aircraftlistjson" <?php if (isset($source['format']) && $source['format'] == 'aircraftlistjson') print 'selected'; ?>>Virtual Radar Server</option> |
|
453 | - <option value="phpvmacars" <?php if (isset($source['format']) && $source['format'] == 'phpvmacars') print 'selected'; ?>>phpVMS</option> |
|
454 | - <option value="vam" <?php if (isset($source['format']) && $source['format'] == 'vam') print 'selected'; ?>>Virtual Airlines Manager</option> |
|
455 | - <option value="whazzup" <?php if (isset($source['format']) && $source['format'] == 'whazzup') print 'selected'; ?>>IVAO</option> |
|
456 | - <option value="flightgearmp" <?php if (isset($source['format']) && $source['format'] == 'flightgearmp') print 'selected'; ?>>FlightGear Multiplayer</option> |
|
457 | - <option value="flightgearsp" <?php if (isset($source['format']) && $source['format'] == 'flightgearsp') print 'selected'; ?>>FlightGear Singleplayer</option> |
|
458 | - <option value="acars" <?php if (isset($source['format']) && $source['format'] == 'acars') print 'selected'; ?>>ACARS from acarsdec/acarsdeco2 over UDP</option> |
|
459 | - <option value="acarssbs3" <?php if (isset($source['format']) && $source['format'] == 'acarssbs3') print 'selected'; ?>>ACARS over SBS-3 TCP</option> |
|
552 | + <option value="auto" <?php if (!isset($source['format'])) { |
|
553 | + print 'selected'; |
|
554 | +} |
|
555 | +?>>Auto</option> |
|
556 | + <option value="sbs" <?php if (isset($source['format']) && $source['format'] == 'sbs') { |
|
557 | + print 'selected'; |
|
558 | +} |
|
559 | +?>>SBS</option> |
|
560 | + <option value="tsv" <?php if (isset($source['format']) && $source['format'] == 'tsv') { |
|
561 | + print 'selected'; |
|
562 | +} |
|
563 | +?>>TSV</option> |
|
564 | + <option value="raw" <?php if (isset($source['format']) && $source['format'] == 'raw') { |
|
565 | + print 'selected'; |
|
566 | +} |
|
567 | +?>>Raw</option> |
|
568 | + <option value="aprs" <?php if (isset($source['format']) && $source['format'] == 'aprs') { |
|
569 | + print 'selected'; |
|
570 | +} |
|
571 | +?>>APRS</option> |
|
572 | + <option value="deltadbtxt" <?php if (isset($source['format']) && $source['format'] == 'deltadbtxt') { |
|
573 | + print 'selected'; |
|
574 | +} |
|
575 | +?>>Radarcape deltadb.txt</option> |
|
576 | + <option value="vatsimtxt" <?php if (isset($source['format']) && $source['format'] == 'vatsimtxt') { |
|
577 | + print 'selected'; |
|
578 | +} |
|
579 | +?>>Vatsim</option> |
|
580 | + <option value="aircraftlistjson" <?php if (isset($source['format']) && $source['format'] == 'aircraftlistjson') { |
|
581 | + print 'selected'; |
|
582 | +} |
|
583 | +?>>Virtual Radar Server</option> |
|
584 | + <option value="phpvmacars" <?php if (isset($source['format']) && $source['format'] == 'phpvmacars') { |
|
585 | + print 'selected'; |
|
586 | +} |
|
587 | +?>>phpVMS</option> |
|
588 | + <option value="vam" <?php if (isset($source['format']) && $source['format'] == 'vam') { |
|
589 | + print 'selected'; |
|
590 | +} |
|
591 | +?>>Virtual Airlines Manager</option> |
|
592 | + <option value="whazzup" <?php if (isset($source['format']) && $source['format'] == 'whazzup') { |
|
593 | + print 'selected'; |
|
594 | +} |
|
595 | +?>>IVAO</option> |
|
596 | + <option value="flightgearmp" <?php if (isset($source['format']) && $source['format'] == 'flightgearmp') { |
|
597 | + print 'selected'; |
|
598 | +} |
|
599 | +?>>FlightGear Multiplayer</option> |
|
600 | + <option value="flightgearsp" <?php if (isset($source['format']) && $source['format'] == 'flightgearsp') { |
|
601 | + print 'selected'; |
|
602 | +} |
|
603 | +?>>FlightGear Singleplayer</option> |
|
604 | + <option value="acars" <?php if (isset($source['format']) && $source['format'] == 'acars') { |
|
605 | + print 'selected'; |
|
606 | +} |
|
607 | +?>>ACARS from acarsdec/acarsdeco2 over UDP</option> |
|
608 | + <option value="acarssbs3" <?php if (isset($source['format']) && $source['format'] == 'acarssbs3') { |
|
609 | + print 'selected'; |
|
610 | +} |
|
611 | +?>>ACARS over SBS-3 TCP</option> |
|
460 | 612 | </select> |
461 | 613 | </td> |
462 | - <td><input type="text" name="name[]" id="name" value="<?php if (isset($source['name'])) print $source['name']; ?>" /></td> |
|
463 | - <td><input type="checkbox" name="sourcestats[]" id="sourcestats" title="Create statistics for the source like number of messages, distance,..." value="1" <?php if (isset($source['sourcestats']) && $source['sourcestats']) print 'checked'; ?> /></td> |
|
614 | + <td><input type="text" name="name[]" id="name" value="<?php if (isset($source['name'])) { |
|
615 | + print $source['name']; |
|
616 | +} |
|
617 | +?>" /></td> |
|
618 | + <td><input type="checkbox" name="sourcestats[]" id="sourcestats" title="Create statistics for the source like number of messages, distance,..." value="1" <?php if (isset($source['sourcestats']) && $source['sourcestats']) { |
|
619 | + print 'checked'; |
|
620 | +} |
|
621 | +?> /></td> |
|
464 | 622 | <td><input type="button" id="delhost" value="Delete" onclick="deleteRow(this)" /> <input type="button" id="addhost" value="Add" onclick="insRow()" /></td> |
465 | 623 | </tr> |
466 | 624 | <?php |
@@ -506,11 +664,17 @@ discard block |
||
506 | 664 | <p>Listen UDP server for acarsdec/acarsdeco2/... with <i>daemon-acars.php</i> script</p> |
507 | 665 | <p> |
508 | 666 | <label for="acarshost">ACARS UDP host</label> |
509 | - <input type="text" name="acarshost" id="acarshost" value="<?php if (isset($globalACARSHost)) print $globalACARSHost; ?>" /> |
|
667 | + <input type="text" name="acarshost" id="acarshost" value="<?php if (isset($globalACARSHost)) { |
|
668 | + print $globalACARSHost; |
|
669 | +} |
|
670 | +?>" /> |
|
510 | 671 | </p> |
511 | 672 | <p> |
512 | 673 | <label for="acarsport">ACARS UDP port</label> |
513 | - <input type="number" name="acarsport" id="acarsport" value="<?php if (isset($globalACARSPort)) print $globalACARSPort; ?>" /> |
|
674 | + <input type="number" name="acarsport" id="acarsport" value="<?php if (isset($globalACARSPort)) { |
|
675 | + print $globalACARSPort; |
|
676 | +} |
|
677 | +?>" /> |
|
514 | 678 | </p> |
515 | 679 | </fieldset> |
516 | 680 | </div> |
@@ -585,13 +749,19 @@ discard block |
||
585 | 749 | <div id="schedules_options"> |
586 | 750 | <p> |
587 | 751 | <label for="britishairways">British Airways API Key</label> |
588 | - <input type="text" name="britishairways" id="britishairways" value="<?php if (isset($globalBritishAirwaysKey)) print $globalBritishAirwaysKey; ?>" /> |
|
752 | + <input type="text" name="britishairways" id="britishairways" value="<?php if (isset($globalBritishAirwaysKey)) { |
|
753 | + print $globalBritishAirwaysKey; |
|
754 | +} |
|
755 | +?>" /> |
|
589 | 756 | <p class="help-block">Register an account on <a href="https://developer.ba.com/">https://developer.ba.com/</a></p> |
590 | 757 | </p> |
591 | 758 | <!-- |
592 | 759 | <p> |
593 | 760 | <label for="transavia">Transavia Test API Consumer Key</label> |
594 | - <input type="text" name="transavia" id="transavia" value="<?php if (isset($globalTransaviaKey)) print $globalTransaviaKey; ?>" /> |
|
761 | + <input type="text" name="transavia" id="transavia" value="<?php if (isset($globalTransaviaKey)) { |
|
762 | + print $globalTransaviaKey; |
|
763 | +} |
|
764 | +?>" /> |
|
595 | 765 | <p class="help-block">Register an account on <a href="https://developer.transavia.com">https://developer.transavia.com</a></p> |
596 | 766 | </p> |
597 | 767 | --> |
@@ -600,10 +770,16 @@ discard block |
||
600 | 770 | <b>Lufthansa API Key</b> |
601 | 771 | <p> |
602 | 772 | <label for="lufthansakey">Key</label> |
603 | - <input type="text" name="lufthansakey" id="lufthansakey" value="<?php if (isset($globalLufthansaKey['key'])) print $globalLufthansaKey['key']; ?>" /> |
|
773 | + <input type="text" name="lufthansakey" id="lufthansakey" value="<?php if (isset($globalLufthansaKey['key'])) { |
|
774 | + print $globalLufthansaKey['key']; |
|
775 | +} |
|
776 | +?>" /> |
|
604 | 777 | </p><p> |
605 | 778 | <label for="lufthansasecret">Secret</label> |
606 | - <input type="text" name="lufthansasecret" id="lufthansasecret" value="<?php if (isset($globalLufthansaKey['secret'])) print $globalLufthansaKey['secret']; ?>" /> |
|
779 | + <input type="text" name="lufthansasecret" id="lufthansasecret" value="<?php if (isset($globalLufthansaKey['secret'])) { |
|
780 | + print $globalLufthansaKey['secret']; |
|
781 | +} |
|
782 | +?>" /> |
|
607 | 783 | </p> |
608 | 784 | </div> |
609 | 785 | <p class="help-block">Register an account on <a href="https://developer.lufthansa.com/page">https://developer.lufthansa.com/page</a></p> |
@@ -623,7 +799,10 @@ discard block |
||
623 | 799 | </p> |
624 | 800 | <p> |
625 | 801 | <label for="notamsource">URL of your feed from notaminfo.com</label> |
626 | - <input type="text" name="notamsource" id="notamsource" value="<?php if (isset($globalNOTAMSource)) print $globalNOTAMSource; ?>" /> |
|
802 | + <input type="text" name="notamsource" id="notamsource" value="<?php if (isset($globalNOTAMSource)) { |
|
803 | + print $globalNOTAMSource; |
|
804 | +} |
|
805 | +?>" /> |
|
627 | 806 | <p class="help-block">If you want to use world NOTAM from FlightAirMap website, leave it blank</p> |
628 | 807 | </p> |
629 | 808 | <br /> |
@@ -639,14 +818,20 @@ discard block |
||
639 | 818 | <div id="metarsrc"> |
640 | 819 | <p> |
641 | 820 | <label for="metarsource">URL of your METAR source</label> |
642 | - <input type="text" name="metarsource" id="metarsource" value="<?php if (isset($globalMETARurl)) print $globalMETARurl; ?>" /> |
|
821 | + <input type="text" name="metarsource" id="metarsource" value="<?php if (isset($globalMETARurl)) { |
|
822 | + print $globalMETARurl; |
|
823 | +} |
|
824 | +?>" /> |
|
643 | 825 | <p class="help-block">Use {icao} to specify where we replace by airport icao. ex : http://metar.vatsim.net/metar.php?id={icao}</p> |
644 | 826 | </p> |
645 | 827 | </div> |
646 | 828 | <br /> |
647 | 829 | <p> |
648 | 830 | <label for="bitly">Bit.ly access token api (used in search page)</label> |
649 | - <input type="text" name="bitly" id="bitly" value="<?php if (isset($globalBitlyAccessToken)) print $globalBitlyAccessToken; ?>" /> |
|
831 | + <input type="text" name="bitly" id="bitly" value="<?php if (isset($globalBitlyAccessToken)) { |
|
832 | + print $globalBitlyAccessToken; |
|
833 | +} |
|
834 | +?>" /> |
|
650 | 835 | </p> |
651 | 836 | <br /> |
652 | 837 | <p> |
@@ -660,7 +845,12 @@ discard block |
||
660 | 845 | </p> |
661 | 846 | <p> |
662 | 847 | <label for="archivemonths">Generate statistics, delete or put in archive flights older than xx months</label> |
663 | - <input type="number" name="archivemonths" id="archivemonths" value="<?php if (isset($globalArchiveMonths)) print $globalArchiveMonths; else echo '0'; ?>" /> |
|
848 | + <input type="number" name="archivemonths" id="archivemonths" value="<?php if (isset($globalArchiveMonths)) { |
|
849 | + print $globalArchiveMonths; |
|
850 | +} else { |
|
851 | + echo '0'; |
|
852 | +} |
|
853 | +?>" /> |
|
664 | 854 | <p class="help-block">0 to disable, delete old flight if <i>Archive all flights data</i> is disabled</p> |
665 | 855 | </p> |
666 | 856 | <p> |
@@ -670,12 +860,22 @@ discard block |
||
670 | 860 | </p> |
671 | 861 | <p> |
672 | 862 | <label for="archivekeepmonths">Keep flights data for xx months in archive</label> |
673 | - <input type="number" name="archivekeepmonths" id="archivekeepmonths" value="<?php if (isset($globalArchiveKeepMonths)) print $globalArchiveKeepMonths; else echo '0'; ?>" /> |
|
863 | + <input type="number" name="archivekeepmonths" id="archivekeepmonths" value="<?php if (isset($globalArchiveKeepMonths)) { |
|
864 | + print $globalArchiveKeepMonths; |
|
865 | +} else { |
|
866 | + echo '0'; |
|
867 | +} |
|
868 | +?>" /> |
|
674 | 869 | <p class="help-block">0 to disable</p> |
675 | 870 | </p> |
676 | 871 | <p> |
677 | 872 | <label for="archivekeeptrackmonths">Keep flights track data for xx months in archive</label> |
678 | - <input type="number" name="archivekeeptrackmonths" id="archivekeeptrackmonths" value="<?php if (isset($globalArchiveKeepTrackMonths)) print $globalArchiveKeepTrackMonths; else echo '0'; ?>" /> |
|
873 | + <input type="number" name="archivekeeptrackmonths" id="archivekeeptrackmonths" value="<?php if (isset($globalArchiveKeepTrackMonths)) { |
|
874 | + print $globalArchiveKeepTrackMonths; |
|
875 | +} else { |
|
876 | + echo '0'; |
|
877 | +} |
|
878 | +?>" /> |
|
679 | 879 | <p class="help-block">0 to disable, should be less or egal to <i>Keep flights data</i> value</p> |
680 | 880 | </p> |
681 | 881 | <br /> |
@@ -685,7 +885,12 @@ discard block |
||
685 | 885 | <p class="help-block">Uncheck if the script is running as cron job</p> |
686 | 886 | <div id="cronends"> |
687 | 887 | <label for="cronend">Run script for xx seconds</label> |
688 | - <input type="number" name="cronend" id="cronend" value="<?php if (isset($globalCronEnd)) print $globalCronEnd; else print '0'; ?>" /> |
|
888 | + <input type="number" name="cronend" id="cronend" value="<?php if (isset($globalCronEnd)) { |
|
889 | + print $globalCronEnd; |
|
890 | +} else { |
|
891 | + print '0'; |
|
892 | +} |
|
893 | +?>" /> |
|
689 | 894 | <p class="help-block">Set to 0 to disable. Should be disabled if source is URL.</p> |
690 | 895 | </div> |
691 | 896 | </p> |
@@ -725,26 +930,49 @@ discard block |
||
725 | 930 | <br /> |
726 | 931 | <p> |
727 | 932 | <label for="refresh">Show flights detected since xxx seconds</label> |
728 | - <input type="number" name="refresh" id="refresh" value="<?php if (isset($globalLiveInterval)) echo $globalLiveInterval; else echo '200'; ?>" /> |
|
933 | + <input type="number" name="refresh" id="refresh" value="<?php if (isset($globalLiveInterval)) { |
|
934 | + echo $globalLiveInterval; |
|
935 | +} else { |
|
936 | + echo '200'; |
|
937 | +} |
|
938 | +?>" /> |
|
729 | 939 | </p> |
730 | 940 | <p> |
731 | 941 | <label for="maprefresh">Live map refresh (in seconds)</label> |
732 | - <input type="number" name="maprefresh" id="maprefresh" value="<?php if (isset($globalMapRefresh)) echo $globalMapRefresh; else echo '30'; ?>" /> |
|
942 | + <input type="number" name="maprefresh" id="maprefresh" value="<?php if (isset($globalMapRefresh)) { |
|
943 | + echo $globalMapRefresh; |
|
944 | +} else { |
|
945 | + echo '30'; |
|
946 | +} |
|
947 | +?>" /> |
|
733 | 948 | </p> |
734 | 949 | <p> |
735 | 950 | <label for="mapidle">Map idle timeout (in minutes)</label> |
736 | - <input type="number" name="mapidle" id="mapidle" value="<?php if (isset($globalMapIdleTimeout)) echo $globalMapIdleTimeout; else echo '30'; ?>" /> |
|
951 | + <input type="number" name="mapidle" id="mapidle" value="<?php if (isset($globalMapIdleTimeout)) { |
|
952 | + echo $globalMapIdleTimeout; |
|
953 | +} else { |
|
954 | + echo '30'; |
|
955 | +} |
|
956 | +?>" /> |
|
737 | 957 | <p class="help-block">0 to disable</p> |
738 | 958 | </p> |
739 | 959 | <br /> |
740 | 960 | <p> |
741 | 961 | <label for="closestmindist">Distance to airport set as arrival (in km)</label> |
742 | - <input type="number" name="closestmindist" id="closestmindist" value="<?php if (isset($globalClosestMinDist)) echo $globalClosestMinDist; else echo '50'; ?>" /> |
|
962 | + <input type="number" name="closestmindist" id="closestmindist" value="<?php if (isset($globalClosestMinDist)) { |
|
963 | + echo $globalClosestMinDist; |
|
964 | +} else { |
|
965 | + echo '50'; |
|
966 | +} |
|
967 | +?>" /> |
|
743 | 968 | </p> |
744 | 969 | <br /> |
745 | 970 | <p> |
746 | 971 | <label for="aircraftsize">Size of aircraft icon on map (default to 30px if zoom > 7 else 15px), empty to default</label> |
747 | - <input type="number" name="aircraftsize" id="aircraftsize" value="<?php if (isset($globalAircraftSize)) echo $globalAircraftSize;?>" /> |
|
972 | + <input type="number" name="aircraftsize" id="aircraftsize" value="<?php if (isset($globalAircraftSize)) { |
|
973 | + echo $globalAircraftSize; |
|
974 | +} |
|
975 | +?>" /> |
|
748 | 976 | </p> |
749 | 977 | <br /> |
750 | 978 | <p> |
@@ -752,7 +980,12 @@ discard block |
||
752 | 980 | if (extension_loaded('gd') && function_exists('gd_info')) { |
753 | 981 | ?> |
754 | 982 | <label for="aircrafticoncolor">Color of aircraft icon on map</label> |
755 | - <input type="color" name="aircrafticoncolor" id="aircrafticoncolor" value="#<?php if (isset($globalAircraftIconColor)) echo $globalAircraftIconColor; else echo '1a3151'; ?>" /> |
|
983 | + <input type="color" name="aircrafticoncolor" id="aircrafticoncolor" value="#<?php if (isset($globalAircraftIconColor)) { |
|
984 | + echo $globalAircraftIconColor; |
|
985 | +} else { |
|
986 | + echo '1a3151'; |
|
987 | +} |
|
988 | +?>" /> |
|
756 | 989 | <?php |
757 | 990 | if (!is_writable('../cache')) { |
758 | 991 | ?> |
@@ -770,8 +1003,18 @@ discard block |
||
770 | 1003 | <p> |
771 | 1004 | <label for="airportzoom">Zoom level minimum to see airports icons</label> |
772 | 1005 | <div class="range"> |
773 | - <input type="range" name="airportzoom" id="airportzoom" value="<?php if (isset($globalAirportZoom)) echo $globalAirportZoom; else echo '7'; ?>" /> |
|
774 | - <output id="range"><?php if (isset($globalAirportZoom)) echo $globalAirportZoom; else echo '7'; ?></output> |
|
1006 | + <input type="range" name="airportzoom" id="airportzoom" value="<?php if (isset($globalAirportZoom)) { |
|
1007 | + echo $globalAirportZoom; |
|
1008 | +} else { |
|
1009 | + echo '7'; |
|
1010 | +} |
|
1011 | +?>" /> |
|
1012 | + <output id="range"><?php if (isset($globalAirportZoom)) { |
|
1013 | + echo $globalAirportZoom; |
|
1014 | +} else { |
|
1015 | + echo '7'; |
|
1016 | +} |
|
1017 | +?></output> |
|
775 | 1018 | </div> |
776 | 1019 | </p> |
777 | 1020 | </fieldset> |
@@ -799,8 +1042,12 @@ discard block |
||
799 | 1042 | $dbhost = filter_input(INPUT_POST,'dbhost',FILTER_SANITIZE_STRING); |
800 | 1043 | $dbport = filter_input(INPUT_POST,'dbport',FILTER_SANITIZE_STRING); |
801 | 1044 | |
802 | - if ($dbtype == 'mysql' && !extension_loaded('pdo_mysql')) $error .= 'Mysql driver for PDO must be loaded'; |
|
803 | - if ($dbtype == 'pgsql' && !extension_loaded('pdo_pgsql')) $error .= 'PosgreSQL driver for PDO must be loaded'; |
|
1045 | + if ($dbtype == 'mysql' && !extension_loaded('pdo_mysql')) { |
|
1046 | + $error .= 'Mysql driver for PDO must be loaded'; |
|
1047 | + } |
|
1048 | + if ($dbtype == 'pgsql' && !extension_loaded('pdo_pgsql')) { |
|
1049 | + $error .= 'PosgreSQL driver for PDO must be loaded'; |
|
1050 | + } |
|
804 | 1051 | |
805 | 1052 | $_SESSION['database_root'] = $dbroot; |
806 | 1053 | $_SESSION['database_rootpass'] = $dbrootpass; |
@@ -867,15 +1114,23 @@ discard block |
||
867 | 1114 | $source_city = $_POST['source_city']; |
868 | 1115 | $source_country = $_POST['source_country']; |
869 | 1116 | $source_ref = $_POST['source_ref']; |
870 | - if (isset($source_id)) $source_id = $_POST['source_id']; |
|
871 | - else $source_id = array(); |
|
1117 | + if (isset($source_id)) { |
|
1118 | + $source_id = $_POST['source_id']; |
|
1119 | + } else { |
|
1120 | + $source_id = array(); |
|
1121 | + } |
|
872 | 1122 | |
873 | 1123 | $sources = array(); |
874 | 1124 | foreach ($source_name as $keys => $name) { |
875 | - if (isset($source_id[$keys])) $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'id' => $source_id[$keys],'source' => $source_ref[$keys]); |
|
876 | - else $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'source' => $source_ref[$keys]); |
|
1125 | + if (isset($source_id[$keys])) { |
|
1126 | + $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'id' => $source_id[$keys],'source' => $source_ref[$keys]); |
|
1127 | + } else { |
|
1128 | + $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'source' => $source_ref[$keys]); |
|
1129 | + } |
|
1130 | + } |
|
1131 | + if (count($sources) > 0) { |
|
1132 | + $_SESSION['sources'] = $sources; |
|
877 | 1133 | } |
878 | - if (count($sources) > 0) $_SESSION['sources'] = $sources; |
|
879 | 1134 | |
880 | 1135 | //$sbshost = filter_input(INPUT_POST,'sbshost',FILTER_SANITIZE_STRING); |
881 | 1136 | //$sbsport = filter_input(INPUT_POST,'sbsport',FILTER_SANITIZE_NUMBER_INT); |
@@ -913,13 +1168,21 @@ discard block |
||
913 | 1168 | $port = $_POST['port']; |
914 | 1169 | $name = $_POST['name']; |
915 | 1170 | $format = $_POST['format']; |
916 | - if (isset($_POST['sourcestats'])) $sourcestats = $_POST['sourcestats']; |
|
917 | - else $sourcestats = array(); |
|
1171 | + if (isset($_POST['sourcestats'])) { |
|
1172 | + $sourcestats = $_POST['sourcestats']; |
|
1173 | + } else { |
|
1174 | + $sourcestats = array(); |
|
1175 | + } |
|
918 | 1176 | $gSources = array(); |
919 | 1177 | foreach ($host as $key => $h) { |
920 | - if (isset($sourcestats[$key]) && $sourcestats[$key] == 1) $cov = 'TRUE'; |
|
921 | - else $cov = 'FALSE'; |
|
922 | - if ($h != '') $gSources[] = array('host' => $h, 'port' => $port[$key],'name' => $name[$key],'format' => $format[$key],'sourcestats' => $cov); |
|
1178 | + if (isset($sourcestats[$key]) && $sourcestats[$key] == 1) { |
|
1179 | + $cov = 'TRUE'; |
|
1180 | + } else { |
|
1181 | + $cov = 'FALSE'; |
|
1182 | + } |
|
1183 | + if ($h != '') { |
|
1184 | + $gSources[] = array('host' => $h, 'port' => $port[$key],'name' => $name[$key],'format' => $format[$key],'sourcestats' => $cov); |
|
1185 | + } |
|
923 | 1186 | } |
924 | 1187 | $settings = array_merge($settings,array('globalSources' => $gSources)); |
925 | 1188 | |
@@ -943,7 +1206,9 @@ discard block |
||
943 | 1206 | $zoidistance = filter_input(INPUT_POST,'zoidistance',FILTER_SANITIZE_NUMBER_INT); |
944 | 1207 | if ($zoilatitude != '' && $zoilongitude != '' && $zoidistance != '') { |
945 | 1208 | $settings = array_merge($settings,array('globalDistanceIgnore' => array('latitude' => $zoilatitude,'longitude' => $zoilongitude,'distance' => $zoidistance))); |
946 | - } else $settings = array_merge($settings,array('globalDistanceIgnore' => array())); |
|
1209 | + } else { |
|
1210 | + $settings = array_merge($settings,array('globalDistanceIgnore' => array())); |
|
1211 | + } |
|
947 | 1212 | |
948 | 1213 | $refresh = filter_input(INPUT_POST,'refresh',FILTER_SANITIZE_NUMBER_INT); |
949 | 1214 | $settings = array_merge($settings,array('globalLiveInterval' => $refresh)); |
@@ -982,7 +1247,9 @@ discard block |
||
982 | 1247 | |
983 | 1248 | // Create in settings.php keys not yet configurable if not already here |
984 | 1249 | //if (!isset($globalImageBingKey)) $settings = array_merge($settings,array('globalImageBingKey' => '')); |
985 | - if (!isset($globalDebug)) $settings = array_merge($settings,array('globalDebug' => 'TRUE')); |
|
1250 | + if (!isset($globalDebug)) { |
|
1251 | + $settings = array_merge($settings,array('globalDebug' => 'TRUE')); |
|
1252 | + } |
|
986 | 1253 | |
987 | 1254 | $archive = filter_input(INPUT_POST,'archive',FILTER_SANITIZE_STRING); |
988 | 1255 | if ($archive == 'archive') { |
@@ -1012,27 +1279,43 @@ discard block |
||
1012 | 1279 | } |
1013 | 1280 | */ |
1014 | 1281 | $settings = array_merge($settings,array('globalFlightAware' => 'FALSE')); |
1015 | - if ($globalsbs == 'sbs') $settings = array_merge($settings,array('globalSBS1' => 'TRUE')); |
|
1016 | - else $settings = array_merge($settings,array('globalSBS1' => 'FALSE')); |
|
1017 | - if ($globalaprs == 'aprs') $settings = array_merge($settings,array('globalAPRS' => 'TRUE')); |
|
1018 | - else $settings = array_merge($settings,array('globalAPRS' => 'FALSE')); |
|
1282 | + if ($globalsbs == 'sbs') { |
|
1283 | + $settings = array_merge($settings,array('globalSBS1' => 'TRUE')); |
|
1284 | + } else { |
|
1285 | + $settings = array_merge($settings,array('globalSBS1' => 'FALSE')); |
|
1286 | + } |
|
1287 | + if ($globalaprs == 'aprs') { |
|
1288 | + $settings = array_merge($settings,array('globalAPRS' => 'TRUE')); |
|
1289 | + } else { |
|
1290 | + $settings = array_merge($settings,array('globalAPRS' => 'FALSE')); |
|
1291 | + } |
|
1019 | 1292 | if ($globalivao == 'ivao') { |
1020 | 1293 | //$settings = array_merge($settings,array('globalIVAO' => 'TRUE','globalVATSIM' => 'FALSE')); |
1021 | 1294 | $settings = array_merge($settings,array('globalIVAO' => 'TRUE')); |
1022 | - } else $settings = array_merge($settings,array('globalIVAO' => 'FALSE')); |
|
1295 | + } else { |
|
1296 | + $settings = array_merge($settings,array('globalIVAO' => 'FALSE')); |
|
1297 | + } |
|
1023 | 1298 | if ($globalvatsim == 'vatsim') { |
1024 | 1299 | //$settings = array_merge($settings,array('globalVATSIM' => 'TRUE','globalIVAO' => 'FALSE')); |
1025 | 1300 | $settings = array_merge($settings,array('globalVATSIM' => 'TRUE')); |
1026 | - } else $settings = array_merge($settings,array('globalVATSIM' => 'FALSE')); |
|
1301 | + } else { |
|
1302 | + $settings = array_merge($settings,array('globalVATSIM' => 'FALSE')); |
|
1303 | + } |
|
1027 | 1304 | if ($globalphpvms == 'phpvms') { |
1028 | 1305 | $settings = array_merge($settings,array('globalphpVMS' => 'TRUE')); |
1029 | - } else $settings = array_merge($settings,array('globalphpVMS' => 'FALSE')); |
|
1306 | + } else { |
|
1307 | + $settings = array_merge($settings,array('globalphpVMS' => 'FALSE')); |
|
1308 | + } |
|
1030 | 1309 | if ($globalvam == 'vam') { |
1031 | 1310 | $settings = array_merge($settings,array('globalVAM' => 'TRUE')); |
1032 | - } else $settings = array_merge($settings,array('globalVAM' => 'FALSE')); |
|
1311 | + } else { |
|
1312 | + $settings = array_merge($settings,array('globalVAM' => 'FALSE')); |
|
1313 | + } |
|
1033 | 1314 | if ($globalvatsim == 'vatsim' || $globalivao == 'ivao' || $globalphpvms == 'phpvms') { |
1034 | 1315 | $settings = array_merge($settings,array('globalSchedulesFetch' => 'FALSE','globalTranslationFetch' => 'FALSE')); |
1035 | - } else $settings = array_merge($settings,array('globalSchedulesFetch' => 'TRUE','globalTranslationFetch' => 'TRUE')); |
|
1316 | + } else { |
|
1317 | + $settings = array_merge($settings,array('globalSchedulesFetch' => 'TRUE','globalTranslationFetch' => 'TRUE')); |
|
1318 | + } |
|
1036 | 1319 | |
1037 | 1320 | |
1038 | 1321 | |
@@ -1156,7 +1439,9 @@ discard block |
||
1156 | 1439 | $settings = array_merge($settings,array('globalWaypoints' => 'FALSE')); |
1157 | 1440 | } |
1158 | 1441 | |
1159 | - if (!isset($globalTransaction)) $settings = array_merge($settings,array('globalTransaction' => 'TRUE')); |
|
1442 | + if (!isset($globalTransaction)) { |
|
1443 | + $settings = array_merge($settings,array('globalTransaction' => 'TRUE')); |
|
1444 | + } |
|
1160 | 1445 | |
1161 | 1446 | // Set some defaults values... |
1162 | 1447 | if (!isset($globalAircraftImageSources)) { |
@@ -1171,15 +1456,23 @@ discard block |
||
1171 | 1456 | |
1172 | 1457 | $settings = array_merge($settings,array('globalInstalled' => 'TRUE')); |
1173 | 1458 | |
1174 | - if ($error == '') settings::modify_settings($settings); |
|
1175 | - if ($error == '') settings::comment_settings($settings_comment); |
|
1459 | + if ($error == '') { |
|
1460 | + settings::modify_settings($settings); |
|
1461 | + } |
|
1462 | + if ($error == '') { |
|
1463 | + settings::comment_settings($settings_comment); |
|
1464 | + } |
|
1176 | 1465 | if ($error != '') { |
1177 | 1466 | print '<div class="info column">'.$error.'</div>'; |
1178 | 1467 | require('../footer.php'); |
1179 | 1468 | exit; |
1180 | 1469 | } else { |
1181 | - if (isset($_POST['waypoints']) && $_POST['waypoints'] == 'waypoints') $_SESSION['waypoints'] = 1; |
|
1182 | - if (isset($_POST['owner']) && $_POST['owner'] == 'owner') $_SESSION['owner'] = 1; |
|
1470 | + if (isset($_POST['waypoints']) && $_POST['waypoints'] == 'waypoints') { |
|
1471 | + $_SESSION['waypoints'] = 1; |
|
1472 | + } |
|
1473 | + if (isset($_POST['owner']) && $_POST['owner'] == 'owner') { |
|
1474 | + $_SESSION['owner'] = 1; |
|
1475 | + } |
|
1183 | 1476 | if (isset($_POST['createdb'])) { |
1184 | 1477 | $_SESSION['install'] = 'database_create'; |
1185 | 1478 | } else { |
@@ -1220,10 +1513,18 @@ discard block |
||
1220 | 1513 | $popw = false; |
1221 | 1514 | foreach ($_SESSION['done'] as $done) { |
1222 | 1515 | print '<li>'.$done.'....<strong>SUCCESS</strong></li>'; |
1223 | - if ($done == 'Create database') $pop = true; |
|
1224 | - if ($_SESSION['install'] == 'database_create') $pop = true; |
|
1225 | - if ($_SESSION['install'] == 'database_import') $popi = true; |
|
1226 | - if ($_SESSION['install'] == 'waypoints') $popw = true; |
|
1516 | + if ($done == 'Create database') { |
|
1517 | + $pop = true; |
|
1518 | + } |
|
1519 | + if ($_SESSION['install'] == 'database_create') { |
|
1520 | + $pop = true; |
|
1521 | + } |
|
1522 | + if ($_SESSION['install'] == 'database_import') { |
|
1523 | + $popi = true; |
|
1524 | + } |
|
1525 | + if ($_SESSION['install'] == 'waypoints') { |
|
1526 | + $popw = true; |
|
1527 | + } |
|
1227 | 1528 | } |
1228 | 1529 | if ($pop) { |
1229 | 1530 | sleep(5); |
@@ -1234,7 +1535,9 @@ discard block |
||
1234 | 1535 | } else if ($popw) { |
1235 | 1536 | sleep(5); |
1236 | 1537 | print '<li>Populate waypoints database....<img src="../images/loading.gif" /></li>'; |
1237 | - } else print '<li>Update schema if needed....<img src="../images/loading.gif" /></li>'; |
|
1538 | + } else { |
|
1539 | + print '<li>Update schema if needed....<img src="../images/loading.gif" /></li>'; |
|
1540 | + } |
|
1238 | 1541 | print '</div></ul>'; |
1239 | 1542 | print '<div id="error"></div>'; |
1240 | 1543 | /* foreach ($_SESSION['done'] as $done) { |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | require_once(dirname(__FILE__).'/class.create_db.php'); |
10 | 10 | require_once(dirname(__FILE__).'/class.update_schema.php'); |
11 | 11 | require_once(dirname(__FILE__).'/class.settings.php'); |
12 | -$title="Install"; |
|
12 | +$title = "Install"; |
|
13 | 13 | require(dirname(__FILE__).'/../require/settings.php'); |
14 | 14 | require(dirname(__FILE__).'/header.php'); |
15 | 15 | |
@@ -63,8 +63,8 @@ discard block |
||
63 | 63 | if (!extension_loaded('curl')) { |
64 | 64 | $error[] = "Curl is not loaded."; |
65 | 65 | } |
66 | -if(function_exists('apache_get_modules') ){ |
|
67 | - if(!in_array('mod_rewrite',apache_get_modules())) { |
|
66 | +if (function_exists('apache_get_modules')) { |
|
67 | + if (!in_array('mod_rewrite', apache_get_modules())) { |
|
68 | 68 | $error[] = "mod_rewrite is not available."; |
69 | 69 | } |
70 | 70 | /* |
@@ -79,8 +79,8 @@ discard block |
||
79 | 79 | } |
80 | 80 | if (isset($_SERVER['REQUEST_SCHEME']) && isset($_SERVER['SERVER_NAME']) && isset($_SERVER['SERVER_PORT']) && isset($_SERVER['REQUEST_URI'])) { |
81 | 81 | if (function_exists('get_headers')) { |
82 | - $check_header = @get_headers($_SERVER['REQUEST_SCHEME'].'://'.$_SERVER["SERVER_NAME"].':'.$_SERVER["SERVER_PORT"].str_replace('install/','search',str_replace('index.php',$_SERVER["REQUEST_URI"]))); |
|
83 | - if (isset($check_header[0]) && !stripos($check_header[0],"200 OK")) { |
|
82 | + $check_header = @get_headers($_SERVER['REQUEST_SCHEME'].'://'.$_SERVER["SERVER_NAME"].':'.$_SERVER["SERVER_PORT"].str_replace('install/', 'search', str_replace('index.php', $_SERVER["REQUEST_URI"]))); |
|
83 | + if (isset($check_header[0]) && !stripos($check_header[0], "200 OK")) { |
|
84 | 84 | print '<div class="info column"><p><strong>Check your configuration, rewrite don\'t seems to work.</strong></p></div>'; |
85 | 85 | } |
86 | 86 | } |
@@ -420,13 +420,13 @@ discard block |
||
420 | 420 | ?> |
421 | 421 | <tr> |
422 | 422 | <?php |
423 | - if (filter_var($source['host'],FILTER_VALIDATE_URL)) { |
|
423 | + if (filter_var($source['host'], FILTER_VALIDATE_URL)) { |
|
424 | 424 | ?> |
425 | 425 | <td><input type="text" name="host[]" id="host" value="<?php print $source['host']; ?>" /></td> |
426 | 426 | <td><input type="number" name="port[]" id="port" value="<?php print $source['port']; ?>" /></td> |
427 | 427 | <?php |
428 | 428 | } else { |
429 | - $hostport = explode(':',$source['host']); |
|
429 | + $hostport = explode(':', $source['host']); |
|
430 | 430 | if (isset($hostport[1])) { |
431 | 431 | $host = $hostport[0]; |
432 | 432 | $port = $hostport[1]; |
@@ -749,7 +749,7 @@ discard block |
||
749 | 749 | <br /> |
750 | 750 | <p> |
751 | 751 | <label for="aircraftsize">Size of aircraft icon on map (default to 30px if zoom > 7 else 15px), empty to default</label> |
752 | - <input type="number" name="aircraftsize" id="aircraftsize" value="<?php if (isset($globalAircraftSize)) echo $globalAircraftSize;?>" /> |
|
752 | + <input type="number" name="aircraftsize" id="aircraftsize" value="<?php if (isset($globalAircraftSize)) echo $globalAircraftSize; ?>" /> |
|
753 | 753 | </p> |
754 | 754 | <br /> |
755 | 755 | <p> |
@@ -795,14 +795,14 @@ discard block |
||
795 | 795 | $error = ''; |
796 | 796 | |
797 | 797 | if (isset($_POST['dbtype'])) { |
798 | - $dbtype = filter_input(INPUT_POST,'dbtype',FILTER_SANITIZE_STRING); |
|
799 | - $dbroot = filter_input(INPUT_POST,'dbroot',FILTER_SANITIZE_STRING); |
|
800 | - $dbrootpass = filter_input(INPUT_POST,'dbrootpass',FILTER_SANITIZE_STRING); |
|
801 | - $dbname = filter_input(INPUT_POST,'dbname',FILTER_SANITIZE_STRING); |
|
802 | - $dbuser = filter_input(INPUT_POST,'dbuser',FILTER_SANITIZE_STRING); |
|
803 | - $dbuserpass = filter_input(INPUT_POST,'dbuserpass',FILTER_SANITIZE_STRING); |
|
804 | - $dbhost = filter_input(INPUT_POST,'dbhost',FILTER_SANITIZE_STRING); |
|
805 | - $dbport = filter_input(INPUT_POST,'dbport',FILTER_SANITIZE_STRING); |
|
798 | + $dbtype = filter_input(INPUT_POST, 'dbtype', FILTER_SANITIZE_STRING); |
|
799 | + $dbroot = filter_input(INPUT_POST, 'dbroot', FILTER_SANITIZE_STRING); |
|
800 | + $dbrootpass = filter_input(INPUT_POST, 'dbrootpass', FILTER_SANITIZE_STRING); |
|
801 | + $dbname = filter_input(INPUT_POST, 'dbname', FILTER_SANITIZE_STRING); |
|
802 | + $dbuser = filter_input(INPUT_POST, 'dbuser', FILTER_SANITIZE_STRING); |
|
803 | + $dbuserpass = filter_input(INPUT_POST, 'dbuserpass', FILTER_SANITIZE_STRING); |
|
804 | + $dbhost = filter_input(INPUT_POST, 'dbhost', FILTER_SANITIZE_STRING); |
|
805 | + $dbport = filter_input(INPUT_POST, 'dbport', FILTER_SANITIZE_STRING); |
|
806 | 806 | |
807 | 807 | if ($dbtype == 'mysql' && !extension_loaded('pdo_mysql')) $error .= 'Mysql driver for PDO must be loaded'; |
808 | 808 | if ($dbtype == 'pgsql' && !extension_loaded('pdo_pgsql')) $error .= 'PosgreSQL driver for PDO must be loaded'; |
@@ -822,48 +822,48 @@ discard block |
||
822 | 822 | } else $settings = array_merge($settings,array('globalDBdriver' => $dbtype,'globalDBhost' => $dbhost,'globalDBuser' => $dbuser,'globalDBport' => $dbport,'globalDBpass' => $dbuserpass,'globalDBname' => $dbname)); |
823 | 823 | */ |
824 | 824 | |
825 | - $settings = array_merge($settings,array('globalDBdriver' => $dbtype,'globalDBhost' => $dbhost,'globalDBuser' => $dbuser,'globalDBport' => $dbport,'globalDBpass' => $dbuserpass,'globalDBname' => $dbname)); |
|
825 | + $settings = array_merge($settings, array('globalDBdriver' => $dbtype, 'globalDBhost' => $dbhost, 'globalDBuser' => $dbuser, 'globalDBport' => $dbport, 'globalDBpass' => $dbuserpass, 'globalDBname' => $dbname)); |
|
826 | 826 | |
827 | - $sitename = filter_input(INPUT_POST,'sitename',FILTER_SANITIZE_STRING); |
|
828 | - $siteurl = filter_input(INPUT_POST,'siteurl',FILTER_SANITIZE_STRING); |
|
829 | - $timezone = filter_input(INPUT_POST,'timezone',FILTER_SANITIZE_STRING); |
|
830 | - $language = filter_input(INPUT_POST,'language',FILTER_SANITIZE_STRING); |
|
831 | - $settings = array_merge($settings,array('globalName' => $sitename,'globalURL' => $siteurl, 'globalTimezone' => $timezone,'globalLanguage' => $language)); |
|
827 | + $sitename = filter_input(INPUT_POST, 'sitename', FILTER_SANITIZE_STRING); |
|
828 | + $siteurl = filter_input(INPUT_POST, 'siteurl', FILTER_SANITIZE_STRING); |
|
829 | + $timezone = filter_input(INPUT_POST, 'timezone', FILTER_SANITIZE_STRING); |
|
830 | + $language = filter_input(INPUT_POST, 'language', FILTER_SANITIZE_STRING); |
|
831 | + $settings = array_merge($settings, array('globalName' => $sitename, 'globalURL' => $siteurl, 'globalTimezone' => $timezone, 'globalLanguage' => $language)); |
|
832 | 832 | |
833 | - $mapprovider = filter_input(INPUT_POST,'mapprovider',FILTER_SANITIZE_STRING); |
|
834 | - $mapboxid = filter_input(INPUT_POST,'mapboxid',FILTER_SANITIZE_STRING); |
|
835 | - $mapboxtoken = filter_input(INPUT_POST,'mapboxtoken',FILTER_SANITIZE_STRING); |
|
836 | - $googlekey = filter_input(INPUT_POST,'googlekey',FILTER_SANITIZE_STRING); |
|
837 | - $bingkey = filter_input(INPUT_POST,'bingkey',FILTER_SANITIZE_STRING); |
|
838 | - $mapquestkey = filter_input(INPUT_POST,'mapquestkey',FILTER_SANITIZE_STRING); |
|
839 | - $hereappid = filter_input(INPUT_POST,'hereappid',FILTER_SANITIZE_STRING); |
|
840 | - $hereappcode = filter_input(INPUT_POST,'hereappcode',FILTER_SANITIZE_STRING); |
|
841 | - $settings = array_merge($settings,array('globalMapProvider' => $mapprovider,'globalMapboxId' => $mapboxid,'globalMapboxToken' => $mapboxtoken,'globalGoogleAPIKey' => $googlekey,'globalBingMapKey' => $bingkey,'globalHereappID' => $hereappid,'globalHereappCode' => $hereappcode,'globalMapQuestKey' => $mapquestkey)); |
|
833 | + $mapprovider = filter_input(INPUT_POST, 'mapprovider', FILTER_SANITIZE_STRING); |
|
834 | + $mapboxid = filter_input(INPUT_POST, 'mapboxid', FILTER_SANITIZE_STRING); |
|
835 | + $mapboxtoken = filter_input(INPUT_POST, 'mapboxtoken', FILTER_SANITIZE_STRING); |
|
836 | + $googlekey = filter_input(INPUT_POST, 'googlekey', FILTER_SANITIZE_STRING); |
|
837 | + $bingkey = filter_input(INPUT_POST, 'bingkey', FILTER_SANITIZE_STRING); |
|
838 | + $mapquestkey = filter_input(INPUT_POST, 'mapquestkey', FILTER_SANITIZE_STRING); |
|
839 | + $hereappid = filter_input(INPUT_POST, 'hereappid', FILTER_SANITIZE_STRING); |
|
840 | + $hereappcode = filter_input(INPUT_POST, 'hereappcode', FILTER_SANITIZE_STRING); |
|
841 | + $settings = array_merge($settings, array('globalMapProvider' => $mapprovider, 'globalMapboxId' => $mapboxid, 'globalMapboxToken' => $mapboxtoken, 'globalGoogleAPIKey' => $googlekey, 'globalBingMapKey' => $bingkey, 'globalHereappID' => $hereappid, 'globalHereappCode' => $hereappcode, 'globalMapQuestKey' => $mapquestkey)); |
|
842 | 842 | |
843 | - $latitudemax = filter_input(INPUT_POST,'latitudemax',FILTER_SANITIZE_STRING); |
|
844 | - $latitudemin = filter_input(INPUT_POST,'latitudemin',FILTER_SANITIZE_STRING); |
|
845 | - $longitudemax = filter_input(INPUT_POST,'longitudemax',FILTER_SANITIZE_STRING); |
|
846 | - $longitudemin = filter_input(INPUT_POST,'longitudemin',FILTER_SANITIZE_STRING); |
|
847 | - $livezoom = filter_input(INPUT_POST,'livezoom',FILTER_SANITIZE_NUMBER_INT); |
|
848 | - $settings = array_merge($settings,array('globalLatitudeMax' => $latitudemax,'globalLatitudeMin' => $latitudemin,'globalLongitudeMax' => $longitudemax,'globalLongitudeMin' => $longitudemin,'globalLiveZoom' => $livezoom)); |
|
843 | + $latitudemax = filter_input(INPUT_POST, 'latitudemax', FILTER_SANITIZE_STRING); |
|
844 | + $latitudemin = filter_input(INPUT_POST, 'latitudemin', FILTER_SANITIZE_STRING); |
|
845 | + $longitudemax = filter_input(INPUT_POST, 'longitudemax', FILTER_SANITIZE_STRING); |
|
846 | + $longitudemin = filter_input(INPUT_POST, 'longitudemin', FILTER_SANITIZE_STRING); |
|
847 | + $livezoom = filter_input(INPUT_POST, 'livezoom', FILTER_SANITIZE_NUMBER_INT); |
|
848 | + $settings = array_merge($settings, array('globalLatitudeMax' => $latitudemax, 'globalLatitudeMin' => $latitudemin, 'globalLongitudeMax' => $longitudemax, 'globalLongitudeMin' => $longitudemin, 'globalLiveZoom' => $livezoom)); |
|
849 | 849 | |
850 | - $squawk_country = filter_input(INPUT_POST,'squawk_country',FILTER_SANITIZE_STRING); |
|
851 | - $settings = array_merge($settings,array('globalSquawkCountry' => $squawk_country)); |
|
850 | + $squawk_country = filter_input(INPUT_POST, 'squawk_country', FILTER_SANITIZE_STRING); |
|
851 | + $settings = array_merge($settings, array('globalSquawkCountry' => $squawk_country)); |
|
852 | 852 | |
853 | - $latitudecenter = filter_input(INPUT_POST,'latitudecenter',FILTER_SANITIZE_STRING); |
|
854 | - $longitudecenter = filter_input(INPUT_POST,'longitudecenter',FILTER_SANITIZE_STRING); |
|
855 | - $settings = array_merge($settings,array('globalCenterLatitude' => $latitudecenter,'globalCenterLongitude' => $longitudecenter)); |
|
853 | + $latitudecenter = filter_input(INPUT_POST, 'latitudecenter', FILTER_SANITIZE_STRING); |
|
854 | + $longitudecenter = filter_input(INPUT_POST, 'longitudecenter', FILTER_SANITIZE_STRING); |
|
855 | + $settings = array_merge($settings, array('globalCenterLatitude' => $latitudecenter, 'globalCenterLongitude' => $longitudecenter)); |
|
856 | 856 | |
857 | - $acars = filter_input(INPUT_POST,'acars',FILTER_SANITIZE_STRING); |
|
857 | + $acars = filter_input(INPUT_POST, 'acars', FILTER_SANITIZE_STRING); |
|
858 | 858 | if ($acars == 'acars') { |
859 | - $settings = array_merge($settings,array('globalACARS' => 'TRUE')); |
|
859 | + $settings = array_merge($settings, array('globalACARS' => 'TRUE')); |
|
860 | 860 | } else { |
861 | - $settings = array_merge($settings,array('globalACARS' => 'FALSE')); |
|
861 | + $settings = array_merge($settings, array('globalACARS' => 'FALSE')); |
|
862 | 862 | } |
863 | 863 | |
864 | - $flightawareusername = filter_input(INPUT_POST,'flightawareusername',FILTER_SANITIZE_STRING); |
|
865 | - $flightawarepassword = filter_input(INPUT_POST,'flightawarepassword',FILTER_SANITIZE_STRING); |
|
866 | - $settings = array_merge($settings,array('globalFlightAwareUsername' => $flightawareusername,'globalFlightAwarePassword' => $flightawarepassword)); |
|
864 | + $flightawareusername = filter_input(INPUT_POST, 'flightawareusername', FILTER_SANITIZE_STRING); |
|
865 | + $flightawarepassword = filter_input(INPUT_POST, 'flightawarepassword', FILTER_SANITIZE_STRING); |
|
866 | + $settings = array_merge($settings, array('globalFlightAwareUsername' => $flightawareusername, 'globalFlightAwarePassword' => $flightawarepassword)); |
|
867 | 867 | |
868 | 868 | $source_name = $_POST['source_name']; |
869 | 869 | $source_latitude = $_POST['source_latitude']; |
@@ -877,8 +877,8 @@ discard block |
||
877 | 877 | |
878 | 878 | $sources = array(); |
879 | 879 | foreach ($source_name as $keys => $name) { |
880 | - if (isset($source_id[$keys])) $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'id' => $source_id[$keys],'source' => $source_ref[$keys]); |
|
881 | - else $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'source' => $source_ref[$keys]); |
|
880 | + if (isset($source_id[$keys])) $sources[] = array('name' => $name, 'latitude' => $source_latitude[$keys], 'longitude' => $source_longitude[$keys], 'altitude' => $source_altitude[$keys], 'city' => $source_city[$keys], 'country' => $source_country[$keys], 'id' => $source_id[$keys], 'source' => $source_ref[$keys]); |
|
881 | + else $sources[] = array('name' => $name, 'latitude' => $source_latitude[$keys], 'longitude' => $source_longitude[$keys], 'altitude' => $source_altitude[$keys], 'city' => $source_city[$keys], 'country' => $source_country[$keys], 'source' => $source_ref[$keys]); |
|
882 | 882 | } |
883 | 883 | if (count($sources) > 0) $_SESSION['sources'] = $sources; |
884 | 884 | |
@@ -891,13 +891,13 @@ discard block |
||
891 | 891 | $sbsurl = $_POST['sbsurl']; |
892 | 892 | */ |
893 | 893 | |
894 | - $globalvatsim = filter_input(INPUT_POST,'globalvatsim',FILTER_SANITIZE_STRING); |
|
895 | - $globalivao = filter_input(INPUT_POST,'globalivao',FILTER_SANITIZE_STRING); |
|
896 | - $globalphpvms = filter_input(INPUT_POST,'globalphpvms',FILTER_SANITIZE_STRING); |
|
897 | - $globalvam = filter_input(INPUT_POST,'globalvam',FILTER_SANITIZE_STRING); |
|
898 | - $globalsbs = filter_input(INPUT_POST,'globalsbs',FILTER_SANITIZE_STRING); |
|
899 | - $globalaprs = filter_input(INPUT_POST,'globalaprs',FILTER_SANITIZE_STRING); |
|
900 | - $datasource = filter_input(INPUT_POST,'datasource',FILTER_SANITIZE_STRING); |
|
894 | + $globalvatsim = filter_input(INPUT_POST, 'globalvatsim', FILTER_SANITIZE_STRING); |
|
895 | + $globalivao = filter_input(INPUT_POST, 'globalivao', FILTER_SANITIZE_STRING); |
|
896 | + $globalphpvms = filter_input(INPUT_POST, 'globalphpvms', FILTER_SANITIZE_STRING); |
|
897 | + $globalvam = filter_input(INPUT_POST, 'globalvam', FILTER_SANITIZE_STRING); |
|
898 | + $globalsbs = filter_input(INPUT_POST, 'globalsbs', FILTER_SANITIZE_STRING); |
|
899 | + $globalaprs = filter_input(INPUT_POST, 'globalaprs', FILTER_SANITIZE_STRING); |
|
900 | + $datasource = filter_input(INPUT_POST, 'datasource', FILTER_SANITIZE_STRING); |
|
901 | 901 | |
902 | 902 | /* |
903 | 903 | $globalSBS1Hosts = array(); |
@@ -913,7 +913,7 @@ discard block |
||
913 | 913 | } |
914 | 914 | $settings = array_merge($settings,array('globalSBS1Hosts' => $globalSBS1Hosts)); |
915 | 915 | */ |
916 | - $settings_comment = array_merge($settings_comment,array('globalSBS1Hosts')); |
|
916 | + $settings_comment = array_merge($settings_comment, array('globalSBS1Hosts')); |
|
917 | 917 | $host = $_POST['host']; |
918 | 918 | $port = $_POST['port']; |
919 | 919 | $name = $_POST['name']; |
@@ -924,89 +924,89 @@ discard block |
||
924 | 924 | foreach ($host as $key => $h) { |
925 | 925 | if (isset($sourcestats[$key]) && $sourcestats[$key] == 1) $cov = 'TRUE'; |
926 | 926 | else $cov = 'FALSE'; |
927 | - if ($h != '') $gSources[] = array('host' => $h, 'port' => $port[$key],'name' => $name[$key],'format' => $format[$key],'sourcestats' => $cov); |
|
927 | + if ($h != '') $gSources[] = array('host' => $h, 'port' => $port[$key], 'name' => $name[$key], 'format' => $format[$key], 'sourcestats' => $cov); |
|
928 | 928 | } |
929 | - $settings = array_merge($settings,array('globalSources' => $gSources)); |
|
929 | + $settings = array_merge($settings, array('globalSources' => $gSources)); |
|
930 | 930 | |
931 | 931 | /* |
932 | 932 | $sbstimeout = filter_input(INPUT_POST,'sbstimeout',FILTER_SANITIZE_NUMBER_INT); |
933 | 933 | $settings = array_merge($settings,array('globalSourcesTimeOut' => $sbstimeout)); |
934 | 934 | */ |
935 | - $acarshost = filter_input(INPUT_POST,'acarshost',FILTER_SANITIZE_STRING); |
|
936 | - $acarsport = filter_input(INPUT_POST,'acarsport',FILTER_SANITIZE_NUMBER_INT); |
|
937 | - $settings = array_merge($settings,array('globalACARSHost' => $acarshost,'globalACARSPort' => $acarsport)); |
|
935 | + $acarshost = filter_input(INPUT_POST, 'acarshost', FILTER_SANITIZE_STRING); |
|
936 | + $acarsport = filter_input(INPUT_POST, 'acarsport', FILTER_SANITIZE_NUMBER_INT); |
|
937 | + $settings = array_merge($settings, array('globalACARSHost' => $acarshost, 'globalACARSPort' => $acarsport)); |
|
938 | 938 | |
939 | - $bitly = filter_input(INPUT_POST,'bitly',FILTER_SANITIZE_STRING); |
|
940 | - $settings = array_merge($settings,array('globalBitlyAccessToken' => $bitly)); |
|
939 | + $bitly = filter_input(INPUT_POST, 'bitly', FILTER_SANITIZE_STRING); |
|
940 | + $settings = array_merge($settings, array('globalBitlyAccessToken' => $bitly)); |
|
941 | 941 | |
942 | - $notamsource = filter_input(INPUT_POST,'notamsource',FILTER_SANITIZE_STRING); |
|
943 | - $settings = array_merge($settings,array('globalNOTAMSource' => $notamsource)); |
|
944 | - $metarsource = filter_input(INPUT_POST,'metarsource',FILTER_SANITIZE_STRING); |
|
945 | - $settings = array_merge($settings,array('globalMETARurl' => $metarsource)); |
|
942 | + $notamsource = filter_input(INPUT_POST, 'notamsource', FILTER_SANITIZE_STRING); |
|
943 | + $settings = array_merge($settings, array('globalNOTAMSource' => $notamsource)); |
|
944 | + $metarsource = filter_input(INPUT_POST, 'metarsource', FILTER_SANITIZE_STRING); |
|
945 | + $settings = array_merge($settings, array('globalMETARurl' => $metarsource)); |
|
946 | 946 | |
947 | - $zoilatitude = filter_input(INPUT_POST,'zoilatitude',FILTER_SANITIZE_STRING); |
|
948 | - $zoilongitude = filter_input(INPUT_POST,'zoilongitude',FILTER_SANITIZE_STRING); |
|
949 | - $zoidistance = filter_input(INPUT_POST,'zoidistance',FILTER_SANITIZE_NUMBER_INT); |
|
947 | + $zoilatitude = filter_input(INPUT_POST, 'zoilatitude', FILTER_SANITIZE_STRING); |
|
948 | + $zoilongitude = filter_input(INPUT_POST, 'zoilongitude', FILTER_SANITIZE_STRING); |
|
949 | + $zoidistance = filter_input(INPUT_POST, 'zoidistance', FILTER_SANITIZE_NUMBER_INT); |
|
950 | 950 | if ($zoilatitude != '' && $zoilongitude != '' && $zoidistance != '') { |
951 | - $settings = array_merge($settings,array('globalDistanceIgnore' => array('latitude' => $zoilatitude,'longitude' => $zoilongitude,'distance' => $zoidistance))); |
|
952 | - } else $settings = array_merge($settings,array('globalDistanceIgnore' => array())); |
|
951 | + $settings = array_merge($settings, array('globalDistanceIgnore' => array('latitude' => $zoilatitude, 'longitude' => $zoilongitude, 'distance' => $zoidistance))); |
|
952 | + } else $settings = array_merge($settings, array('globalDistanceIgnore' => array())); |
|
953 | 953 | |
954 | - $refresh = filter_input(INPUT_POST,'refresh',FILTER_SANITIZE_NUMBER_INT); |
|
955 | - $settings = array_merge($settings,array('globalLiveInterval' => $refresh)); |
|
956 | - $maprefresh = filter_input(INPUT_POST,'maprefresh',FILTER_SANITIZE_NUMBER_INT); |
|
957 | - $settings = array_merge($settings,array('globalMapRefresh' => $maprefresh)); |
|
958 | - $mapidle = filter_input(INPUT_POST,'mapidle',FILTER_SANITIZE_NUMBER_INT); |
|
959 | - $settings = array_merge($settings,array('globalMapIdleTimeout' => $mapidle)); |
|
960 | - $closestmindist = filter_input(INPUT_POST,'closestmindist',FILTER_SANITIZE_NUMBER_INT); |
|
961 | - $settings = array_merge($settings,array('globalClosestMinDist' => $closestmindist)); |
|
954 | + $refresh = filter_input(INPUT_POST, 'refresh', FILTER_SANITIZE_NUMBER_INT); |
|
955 | + $settings = array_merge($settings, array('globalLiveInterval' => $refresh)); |
|
956 | + $maprefresh = filter_input(INPUT_POST, 'maprefresh', FILTER_SANITIZE_NUMBER_INT); |
|
957 | + $settings = array_merge($settings, array('globalMapRefresh' => $maprefresh)); |
|
958 | + $mapidle = filter_input(INPUT_POST, 'mapidle', FILTER_SANITIZE_NUMBER_INT); |
|
959 | + $settings = array_merge($settings, array('globalMapIdleTimeout' => $mapidle)); |
|
960 | + $closestmindist = filter_input(INPUT_POST, 'closestmindist', FILTER_SANITIZE_NUMBER_INT); |
|
961 | + $settings = array_merge($settings, array('globalClosestMinDist' => $closestmindist)); |
|
962 | 962 | |
963 | - $aircraftsize = filter_input(INPUT_POST,'aircraftsize',FILTER_SANITIZE_NUMBER_INT); |
|
964 | - $settings = array_merge($settings,array('globalAircraftSize' => $aircraftsize)); |
|
963 | + $aircraftsize = filter_input(INPUT_POST, 'aircraftsize', FILTER_SANITIZE_NUMBER_INT); |
|
964 | + $settings = array_merge($settings, array('globalAircraftSize' => $aircraftsize)); |
|
965 | 965 | |
966 | - $archivemonths = filter_input(INPUT_POST,'archivemonths',FILTER_SANITIZE_NUMBER_INT); |
|
967 | - $settings = array_merge($settings,array('globalArchiveMonths' => $archivemonths)); |
|
966 | + $archivemonths = filter_input(INPUT_POST, 'archivemonths', FILTER_SANITIZE_NUMBER_INT); |
|
967 | + $settings = array_merge($settings, array('globalArchiveMonths' => $archivemonths)); |
|
968 | 968 | |
969 | - $archiveyear = filter_input(INPUT_POST,'archiveyear',FILTER_SANITIZE_STRING); |
|
969 | + $archiveyear = filter_input(INPUT_POST, 'archiveyear', FILTER_SANITIZE_STRING); |
|
970 | 970 | if ($archiveyear == "archiveyear") { |
971 | - $settings = array_merge($settings,array('globalArchiveYear' => 'TRUE')); |
|
971 | + $settings = array_merge($settings, array('globalArchiveYear' => 'TRUE')); |
|
972 | 972 | } else { |
973 | - $settings = array_merge($settings,array('globalArchiveYear' => 'FALSE')); |
|
973 | + $settings = array_merge($settings, array('globalArchiveYear' => 'FALSE')); |
|
974 | 974 | } |
975 | - $archivekeepmonths = filter_input(INPUT_POST,'archivekeepmonths',FILTER_SANITIZE_NUMBER_INT); |
|
976 | - $settings = array_merge($settings,array('globalArchiveKeepMonths' => $archivekeepmonths)); |
|
977 | - $archivekeeptrackmonths = filter_input(INPUT_POST,'archivekeeptrackmonths',FILTER_SANITIZE_NUMBER_INT); |
|
978 | - $settings = array_merge($settings,array('globalArchiveKeepTrackMonths' => $archivekeeptrackmonths)); |
|
975 | + $archivekeepmonths = filter_input(INPUT_POST, 'archivekeepmonths', FILTER_SANITIZE_NUMBER_INT); |
|
976 | + $settings = array_merge($settings, array('globalArchiveKeepMonths' => $archivekeepmonths)); |
|
977 | + $archivekeeptrackmonths = filter_input(INPUT_POST, 'archivekeeptrackmonths', FILTER_SANITIZE_NUMBER_INT); |
|
978 | + $settings = array_merge($settings, array('globalArchiveKeepTrackMonths' => $archivekeeptrackmonths)); |
|
979 | 979 | |
980 | - $britishairways = filter_input(INPUT_POST,'britishairways',FILTER_SANITIZE_STRING); |
|
981 | - $settings = array_merge($settings,array('globalBritishAirwaysKey' => $britishairways)); |
|
982 | - $transavia = filter_input(INPUT_POST,'transavia',FILTER_SANITIZE_STRING); |
|
983 | - $settings = array_merge($settings,array('globalTransaviaKey' => $transavia)); |
|
980 | + $britishairways = filter_input(INPUT_POST, 'britishairways', FILTER_SANITIZE_STRING); |
|
981 | + $settings = array_merge($settings, array('globalBritishAirwaysKey' => $britishairways)); |
|
982 | + $transavia = filter_input(INPUT_POST, 'transavia', FILTER_SANITIZE_STRING); |
|
983 | + $settings = array_merge($settings, array('globalTransaviaKey' => $transavia)); |
|
984 | 984 | |
985 | - $lufthansakey = filter_input(INPUT_POST,'lufthansakey',FILTER_SANITIZE_STRING); |
|
986 | - $lufthansasecret = filter_input(INPUT_POST,'lufthansasecret',FILTER_SANITIZE_STRING); |
|
987 | - $settings = array_merge($settings,array('globalLufthansaKey' => array('key' => $lufthansakey,'secret' => $lufthansasecret))); |
|
985 | + $lufthansakey = filter_input(INPUT_POST, 'lufthansakey', FILTER_SANITIZE_STRING); |
|
986 | + $lufthansasecret = filter_input(INPUT_POST, 'lufthansasecret', FILTER_SANITIZE_STRING); |
|
987 | + $settings = array_merge($settings, array('globalLufthansaKey' => array('key' => $lufthansakey, 'secret' => $lufthansasecret))); |
|
988 | 988 | |
989 | 989 | // Create in settings.php keys not yet configurable if not already here |
990 | 990 | //if (!isset($globalImageBingKey)) $settings = array_merge($settings,array('globalImageBingKey' => '')); |
991 | - if (!isset($globalDebug)) $settings = array_merge($settings,array('globalDebug' => 'TRUE')); |
|
991 | + if (!isset($globalDebug)) $settings = array_merge($settings, array('globalDebug' => 'TRUE')); |
|
992 | 992 | |
993 | - $archive = filter_input(INPUT_POST,'archive',FILTER_SANITIZE_STRING); |
|
993 | + $archive = filter_input(INPUT_POST, 'archive', FILTER_SANITIZE_STRING); |
|
994 | 994 | if ($archive == 'archive') { |
995 | - $settings = array_merge($settings,array('globalArchive' => 'TRUE')); |
|
995 | + $settings = array_merge($settings, array('globalArchive' => 'TRUE')); |
|
996 | 996 | } else { |
997 | - $settings = array_merge($settings,array('globalArchive' => 'FALSE')); |
|
997 | + $settings = array_merge($settings, array('globalArchive' => 'FALSE')); |
|
998 | 998 | } |
999 | - $daemon = filter_input(INPUT_POST,'daemon',FILTER_SANITIZE_STRING); |
|
999 | + $daemon = filter_input(INPUT_POST, 'daemon', FILTER_SANITIZE_STRING); |
|
1000 | 1000 | if ($daemon == 'daemon') { |
1001 | - $settings = array_merge($settings,array('globalDaemon' => 'TRUE')); |
|
1001 | + $settings = array_merge($settings, array('globalDaemon' => 'TRUE')); |
|
1002 | 1002 | } else { |
1003 | - $settings = array_merge($settings,array('globalDaemon' => 'FALSE')); |
|
1003 | + $settings = array_merge($settings, array('globalDaemon' => 'FALSE')); |
|
1004 | 1004 | } |
1005 | - $schedules = filter_input(INPUT_POST,'schedules',FILTER_SANITIZE_STRING); |
|
1005 | + $schedules = filter_input(INPUT_POST, 'schedules', FILTER_SANITIZE_STRING); |
|
1006 | 1006 | if ($schedules == 'schedules') { |
1007 | - $settings = array_merge($settings,array('globalSchedulesFetch' => 'TRUE')); |
|
1007 | + $settings = array_merge($settings, array('globalSchedulesFetch' => 'TRUE')); |
|
1008 | 1008 | } else { |
1009 | - $settings = array_merge($settings,array('globalSchedulesFetch' => 'FALSE')); |
|
1009 | + $settings = array_merge($settings, array('globalSchedulesFetch' => 'FALSE')); |
|
1010 | 1010 | } |
1011 | 1011 | |
1012 | 1012 | /* |
@@ -1017,171 +1017,171 @@ discard block |
||
1017 | 1017 | $settings = array_merge($settings,array('globalFlightAware' => 'FALSE','globalSBS1' => 'TRUE')); |
1018 | 1018 | } |
1019 | 1019 | */ |
1020 | - $settings = array_merge($settings,array('globalFlightAware' => 'FALSE')); |
|
1021 | - if ($globalsbs == 'sbs') $settings = array_merge($settings,array('globalSBS1' => 'TRUE')); |
|
1022 | - else $settings = array_merge($settings,array('globalSBS1' => 'FALSE')); |
|
1023 | - if ($globalaprs == 'aprs') $settings = array_merge($settings,array('globalAPRS' => 'TRUE')); |
|
1024 | - else $settings = array_merge($settings,array('globalAPRS' => 'FALSE')); |
|
1020 | + $settings = array_merge($settings, array('globalFlightAware' => 'FALSE')); |
|
1021 | + if ($globalsbs == 'sbs') $settings = array_merge($settings, array('globalSBS1' => 'TRUE')); |
|
1022 | + else $settings = array_merge($settings, array('globalSBS1' => 'FALSE')); |
|
1023 | + if ($globalaprs == 'aprs') $settings = array_merge($settings, array('globalAPRS' => 'TRUE')); |
|
1024 | + else $settings = array_merge($settings, array('globalAPRS' => 'FALSE')); |
|
1025 | 1025 | if ($globalivao == 'ivao') { |
1026 | 1026 | //$settings = array_merge($settings,array('globalIVAO' => 'TRUE','globalVATSIM' => 'FALSE')); |
1027 | - $settings = array_merge($settings,array('globalIVAO' => 'TRUE')); |
|
1028 | - } else $settings = array_merge($settings,array('globalIVAO' => 'FALSE')); |
|
1027 | + $settings = array_merge($settings, array('globalIVAO' => 'TRUE')); |
|
1028 | + } else $settings = array_merge($settings, array('globalIVAO' => 'FALSE')); |
|
1029 | 1029 | if ($globalvatsim == 'vatsim') { |
1030 | 1030 | //$settings = array_merge($settings,array('globalVATSIM' => 'TRUE','globalIVAO' => 'FALSE')); |
1031 | - $settings = array_merge($settings,array('globalVATSIM' => 'TRUE')); |
|
1032 | - } else $settings = array_merge($settings,array('globalVATSIM' => 'FALSE')); |
|
1031 | + $settings = array_merge($settings, array('globalVATSIM' => 'TRUE')); |
|
1032 | + } else $settings = array_merge($settings, array('globalVATSIM' => 'FALSE')); |
|
1033 | 1033 | if ($globalphpvms == 'phpvms') { |
1034 | - $settings = array_merge($settings,array('globalphpVMS' => 'TRUE')); |
|
1035 | - } else $settings = array_merge($settings,array('globalphpVMS' => 'FALSE')); |
|
1034 | + $settings = array_merge($settings, array('globalphpVMS' => 'TRUE')); |
|
1035 | + } else $settings = array_merge($settings, array('globalphpVMS' => 'FALSE')); |
|
1036 | 1036 | if ($globalvam == 'vam') { |
1037 | - $settings = array_merge($settings,array('globalVAM' => 'TRUE')); |
|
1038 | - } else $settings = array_merge($settings,array('globalVAM' => 'FALSE')); |
|
1037 | + $settings = array_merge($settings, array('globalVAM' => 'TRUE')); |
|
1038 | + } else $settings = array_merge($settings, array('globalVAM' => 'FALSE')); |
|
1039 | 1039 | if ($globalvatsim == 'vatsim' || $globalivao == 'ivao' || $globalphpvms == 'phpvms') { |
1040 | - $settings = array_merge($settings,array('globalSchedulesFetch' => 'FALSE','globalTranslationFetch' => 'FALSE')); |
|
1041 | - } else $settings = array_merge($settings,array('globalSchedulesFetch' => 'TRUE','globalTranslationFetch' => 'TRUE')); |
|
1040 | + $settings = array_merge($settings, array('globalSchedulesFetch' => 'FALSE', 'globalTranslationFetch' => 'FALSE')); |
|
1041 | + } else $settings = array_merge($settings, array('globalSchedulesFetch' => 'TRUE', 'globalTranslationFetch' => 'TRUE')); |
|
1042 | 1042 | |
1043 | 1043 | |
1044 | 1044 | |
1045 | - $notam = filter_input(INPUT_POST,'notam',FILTER_SANITIZE_STRING); |
|
1045 | + $notam = filter_input(INPUT_POST, 'notam', FILTER_SANITIZE_STRING); |
|
1046 | 1046 | if ($notam == 'notam') { |
1047 | - $settings = array_merge($settings,array('globalNOTAM' => 'TRUE')); |
|
1047 | + $settings = array_merge($settings, array('globalNOTAM' => 'TRUE')); |
|
1048 | 1048 | } else { |
1049 | - $settings = array_merge($settings,array('globalNOTAM' => 'FALSE')); |
|
1049 | + $settings = array_merge($settings, array('globalNOTAM' => 'FALSE')); |
|
1050 | 1050 | } |
1051 | - $owner = filter_input(INPUT_POST,'owner',FILTER_SANITIZE_STRING); |
|
1051 | + $owner = filter_input(INPUT_POST, 'owner', FILTER_SANITIZE_STRING); |
|
1052 | 1052 | if ($owner == 'owner') { |
1053 | - $settings = array_merge($settings,array('globalOwner' => 'TRUE')); |
|
1053 | + $settings = array_merge($settings, array('globalOwner' => 'TRUE')); |
|
1054 | 1054 | } else { |
1055 | - $settings = array_merge($settings,array('globalOwner' => 'FALSE')); |
|
1055 | + $settings = array_merge($settings, array('globalOwner' => 'FALSE')); |
|
1056 | 1056 | } |
1057 | - $map3d = filter_input(INPUT_POST,'map3d',FILTER_SANITIZE_STRING); |
|
1057 | + $map3d = filter_input(INPUT_POST, 'map3d', FILTER_SANITIZE_STRING); |
|
1058 | 1058 | if ($map3d == 'map3d') { |
1059 | - $settings = array_merge($settings,array('globalMap3D' => 'TRUE')); |
|
1059 | + $settings = array_merge($settings, array('globalMap3D' => 'TRUE')); |
|
1060 | 1060 | } else { |
1061 | - $settings = array_merge($settings,array('globalMap3D' => 'FALSE')); |
|
1061 | + $settings = array_merge($settings, array('globalMap3D' => 'FALSE')); |
|
1062 | 1062 | } |
1063 | - $mapsatellites = filter_input(INPUT_POST,'mapsatellites',FILTER_SANITIZE_STRING); |
|
1063 | + $mapsatellites = filter_input(INPUT_POST, 'mapsatellites', FILTER_SANITIZE_STRING); |
|
1064 | 1064 | if ($mapsatellites == 'mapsatellites') { |
1065 | - $settings = array_merge($settings,array('globalMapSatellites' => 'TRUE')); |
|
1065 | + $settings = array_merge($settings, array('globalMapSatellites' => 'TRUE')); |
|
1066 | 1066 | } else { |
1067 | - $settings = array_merge($settings,array('globalMapSatellites' => 'FALSE')); |
|
1067 | + $settings = array_merge($settings, array('globalMapSatellites' => 'FALSE')); |
|
1068 | 1068 | } |
1069 | - $map3ddefault = filter_input(INPUT_POST,'map3ddefault',FILTER_SANITIZE_STRING); |
|
1069 | + $map3ddefault = filter_input(INPUT_POST, 'map3ddefault', FILTER_SANITIZE_STRING); |
|
1070 | 1070 | if ($map3ddefault == 'map3ddefault') { |
1071 | - $settings = array_merge($settings,array('globalMap3Ddefault' => 'TRUE')); |
|
1071 | + $settings = array_merge($settings, array('globalMap3Ddefault' => 'TRUE')); |
|
1072 | 1072 | } else { |
1073 | - $settings = array_merge($settings,array('globalMap3Ddefault' => 'FALSE')); |
|
1073 | + $settings = array_merge($settings, array('globalMap3Ddefault' => 'FALSE')); |
|
1074 | 1074 | } |
1075 | - $translate = filter_input(INPUT_POST,'translate',FILTER_SANITIZE_STRING); |
|
1075 | + $translate = filter_input(INPUT_POST, 'translate', FILTER_SANITIZE_STRING); |
|
1076 | 1076 | if ($translate == 'translate') { |
1077 | - $settings = array_merge($settings,array('globalTranslate' => 'TRUE')); |
|
1077 | + $settings = array_merge($settings, array('globalTranslate' => 'TRUE')); |
|
1078 | 1078 | } else { |
1079 | - $settings = array_merge($settings,array('globalTranslate' => 'FALSE')); |
|
1079 | + $settings = array_merge($settings, array('globalTranslate' => 'FALSE')); |
|
1080 | 1080 | } |
1081 | - $realairlines = filter_input(INPUT_POST,'realairlines',FILTER_SANITIZE_STRING); |
|
1081 | + $realairlines = filter_input(INPUT_POST, 'realairlines', FILTER_SANITIZE_STRING); |
|
1082 | 1082 | if ($realairlines == 'realairlines') { |
1083 | - $settings = array_merge($settings,array('globalUseRealAirlines' => 'TRUE')); |
|
1083 | + $settings = array_merge($settings, array('globalUseRealAirlines' => 'TRUE')); |
|
1084 | 1084 | } else { |
1085 | - $settings = array_merge($settings,array('globalUseRealAirlines' => 'FALSE')); |
|
1085 | + $settings = array_merge($settings, array('globalUseRealAirlines' => 'FALSE')); |
|
1086 | 1086 | } |
1087 | - $estimation = filter_input(INPUT_POST,'estimation',FILTER_SANITIZE_STRING); |
|
1087 | + $estimation = filter_input(INPUT_POST, 'estimation', FILTER_SANITIZE_STRING); |
|
1088 | 1088 | if ($estimation == 'estimation') { |
1089 | - $settings = array_merge($settings,array('globalMapEstimation' => 'TRUE')); |
|
1089 | + $settings = array_merge($settings, array('globalMapEstimation' => 'TRUE')); |
|
1090 | 1090 | } else { |
1091 | - $settings = array_merge($settings,array('globalMapEstimation' => 'FALSE')); |
|
1091 | + $settings = array_merge($settings, array('globalMapEstimation' => 'FALSE')); |
|
1092 | 1092 | } |
1093 | - $metar = filter_input(INPUT_POST,'metar',FILTER_SANITIZE_STRING); |
|
1093 | + $metar = filter_input(INPUT_POST, 'metar', FILTER_SANITIZE_STRING); |
|
1094 | 1094 | if ($metar == 'metar') { |
1095 | - $settings = array_merge($settings,array('globalMETAR' => 'TRUE')); |
|
1095 | + $settings = array_merge($settings, array('globalMETAR' => 'TRUE')); |
|
1096 | 1096 | } else { |
1097 | - $settings = array_merge($settings,array('globalMETAR' => 'FALSE')); |
|
1097 | + $settings = array_merge($settings, array('globalMETAR' => 'FALSE')); |
|
1098 | 1098 | } |
1099 | - $metarcycle = filter_input(INPUT_POST,'metarcycle',FILTER_SANITIZE_STRING); |
|
1099 | + $metarcycle = filter_input(INPUT_POST, 'metarcycle', FILTER_SANITIZE_STRING); |
|
1100 | 1100 | if ($metarcycle == 'metarcycle') { |
1101 | - $settings = array_merge($settings,array('globalMETARcycle' => 'TRUE')); |
|
1101 | + $settings = array_merge($settings, array('globalMETARcycle' => 'TRUE')); |
|
1102 | 1102 | } else { |
1103 | - $settings = array_merge($settings,array('globalMETARcycle' => 'FALSE')); |
|
1103 | + $settings = array_merge($settings, array('globalMETARcycle' => 'FALSE')); |
|
1104 | 1104 | } |
1105 | - $fork = filter_input(INPUT_POST,'fork',FILTER_SANITIZE_STRING); |
|
1105 | + $fork = filter_input(INPUT_POST, 'fork', FILTER_SANITIZE_STRING); |
|
1106 | 1106 | if ($fork == 'fork') { |
1107 | - $settings = array_merge($settings,array('globalFork' => 'TRUE')); |
|
1107 | + $settings = array_merge($settings, array('globalFork' => 'TRUE')); |
|
1108 | 1108 | } else { |
1109 | - $settings = array_merge($settings,array('globalFork' => 'FALSE')); |
|
1109 | + $settings = array_merge($settings, array('globalFork' => 'FALSE')); |
|
1110 | 1110 | } |
1111 | 1111 | |
1112 | - $colormap = filter_input(INPUT_POST,'colormap',FILTER_SANITIZE_STRING); |
|
1112 | + $colormap = filter_input(INPUT_POST, 'colormap', FILTER_SANITIZE_STRING); |
|
1113 | 1113 | if ($colormap == 'colormap') { |
1114 | - $settings = array_merge($settings,array('globalMapAltitudeColor' => 'TRUE')); |
|
1114 | + $settings = array_merge($settings, array('globalMapAltitudeColor' => 'TRUE')); |
|
1115 | 1115 | } else { |
1116 | - $settings = array_merge($settings,array('globalMapAltitudeColor' => 'FALSE')); |
|
1116 | + $settings = array_merge($settings, array('globalMapAltitudeColor' => 'FALSE')); |
|
1117 | 1117 | } |
1118 | 1118 | |
1119 | 1119 | if (isset($_POST['aircrafticoncolor'])) { |
1120 | - $aircrafticoncolor = filter_input(INPUT_POST,'aircrafticoncolor',FILTER_SANITIZE_STRING); |
|
1121 | - $settings = array_merge($settings,array('globalAircraftIconColor' => substr($aircrafticoncolor,1))); |
|
1120 | + $aircrafticoncolor = filter_input(INPUT_POST, 'aircrafticoncolor', FILTER_SANITIZE_STRING); |
|
1121 | + $settings = array_merge($settings, array('globalAircraftIconColor' => substr($aircrafticoncolor, 1))); |
|
1122 | 1122 | } |
1123 | 1123 | |
1124 | - $airportzoom = filter_input(INPUT_POST,'airportzoom',FILTER_SANITIZE_NUMBER_INT); |
|
1125 | - $settings = array_merge($settings,array('globalAirportZoom' => $airportzoom)); |
|
1124 | + $airportzoom = filter_input(INPUT_POST, 'airportzoom', FILTER_SANITIZE_NUMBER_INT); |
|
1125 | + $settings = array_merge($settings, array('globalAirportZoom' => $airportzoom)); |
|
1126 | 1126 | |
1127 | - $unitdistance = filter_input(INPUT_POST,'unitdistance',FILTER_SANITIZE_STRING); |
|
1128 | - $settings = array_merge($settings,array('globalUnitDistance' => $unitdistance)); |
|
1129 | - $unitaltitude = filter_input(INPUT_POST,'unitaltitude',FILTER_SANITIZE_STRING); |
|
1130 | - $settings = array_merge($settings,array('globalUnitAltitude' => $unitaltitude)); |
|
1131 | - $unitspeed = filter_input(INPUT_POST,'unitspeed',FILTER_SANITIZE_STRING); |
|
1132 | - $settings = array_merge($settings,array('globalUnitSpeed' => $unitspeed)); |
|
1127 | + $unitdistance = filter_input(INPUT_POST, 'unitdistance', FILTER_SANITIZE_STRING); |
|
1128 | + $settings = array_merge($settings, array('globalUnitDistance' => $unitdistance)); |
|
1129 | + $unitaltitude = filter_input(INPUT_POST, 'unitaltitude', FILTER_SANITIZE_STRING); |
|
1130 | + $settings = array_merge($settings, array('globalUnitAltitude' => $unitaltitude)); |
|
1131 | + $unitspeed = filter_input(INPUT_POST, 'unitspeed', FILTER_SANITIZE_STRING); |
|
1132 | + $settings = array_merge($settings, array('globalUnitSpeed' => $unitspeed)); |
|
1133 | 1133 | |
1134 | - $mappopup = filter_input(INPUT_POST,'mappopup',FILTER_SANITIZE_STRING); |
|
1134 | + $mappopup = filter_input(INPUT_POST, 'mappopup', FILTER_SANITIZE_STRING); |
|
1135 | 1135 | if ($mappopup == 'mappopup') { |
1136 | - $settings = array_merge($settings,array('globalMapPopup' => 'TRUE')); |
|
1136 | + $settings = array_merge($settings, array('globalMapPopup' => 'TRUE')); |
|
1137 | 1137 | } else { |
1138 | - $settings = array_merge($settings,array('globalMapPopup' => 'FALSE')); |
|
1138 | + $settings = array_merge($settings, array('globalMapPopup' => 'FALSE')); |
|
1139 | 1139 | } |
1140 | - $airportpopup = filter_input(INPUT_POST,'airportpopup',FILTER_SANITIZE_STRING); |
|
1140 | + $airportpopup = filter_input(INPUT_POST, 'airportpopup', FILTER_SANITIZE_STRING); |
|
1141 | 1141 | if ($airportpopup == 'airportpopup') { |
1142 | - $settings = array_merge($settings,array('globalAirportPopup' => 'TRUE')); |
|
1142 | + $settings = array_merge($settings, array('globalAirportPopup' => 'TRUE')); |
|
1143 | 1143 | } else { |
1144 | - $settings = array_merge($settings,array('globalAirportPopup' => 'FALSE')); |
|
1144 | + $settings = array_merge($settings, array('globalAirportPopup' => 'FALSE')); |
|
1145 | 1145 | } |
1146 | - $maphistory = filter_input(INPUT_POST,'maphistory',FILTER_SANITIZE_STRING); |
|
1146 | + $maphistory = filter_input(INPUT_POST, 'maphistory', FILTER_SANITIZE_STRING); |
|
1147 | 1147 | if ($maphistory == 'maphistory') { |
1148 | - $settings = array_merge($settings,array('globalMapHistory' => 'TRUE')); |
|
1148 | + $settings = array_merge($settings, array('globalMapHistory' => 'TRUE')); |
|
1149 | 1149 | } else { |
1150 | - $settings = array_merge($settings,array('globalMapHistory' => 'FALSE')); |
|
1150 | + $settings = array_merge($settings, array('globalMapHistory' => 'FALSE')); |
|
1151 | 1151 | } |
1152 | - $flightroute = filter_input(INPUT_POST,'flightroute',FILTER_SANITIZE_STRING); |
|
1152 | + $flightroute = filter_input(INPUT_POST, 'flightroute', FILTER_SANITIZE_STRING); |
|
1153 | 1153 | if ($flightroute == 'flightroute') { |
1154 | - $settings = array_merge($settings,array('globalMapRoute' => 'TRUE')); |
|
1154 | + $settings = array_merge($settings, array('globalMapRoute' => 'TRUE')); |
|
1155 | 1155 | } else { |
1156 | - $settings = array_merge($settings,array('globalMapRoute' => 'FALSE')); |
|
1156 | + $settings = array_merge($settings, array('globalMapRoute' => 'FALSE')); |
|
1157 | 1157 | } |
1158 | - $allflights = filter_input(INPUT_POST,'allflights',FILTER_SANITIZE_STRING); |
|
1158 | + $allflights = filter_input(INPUT_POST, 'allflights', FILTER_SANITIZE_STRING); |
|
1159 | 1159 | if ($allflights == 'allflights') { |
1160 | - $settings = array_merge($settings,array('globalAllFlights' => 'TRUE')); |
|
1160 | + $settings = array_merge($settings, array('globalAllFlights' => 'TRUE')); |
|
1161 | 1161 | } else { |
1162 | - $settings = array_merge($settings,array('globalAllFlights' => 'FALSE')); |
|
1162 | + $settings = array_merge($settings, array('globalAllFlights' => 'FALSE')); |
|
1163 | 1163 | } |
1164 | - $waypoints = filter_input(INPUT_POST,'waypoints',FILTER_SANITIZE_STRING); |
|
1164 | + $waypoints = filter_input(INPUT_POST, 'waypoints', FILTER_SANITIZE_STRING); |
|
1165 | 1165 | if ($waypoints == 'waypoints') { |
1166 | - $settings = array_merge($settings,array('globalWaypoints' => 'TRUE')); |
|
1166 | + $settings = array_merge($settings, array('globalWaypoints' => 'TRUE')); |
|
1167 | 1167 | } else { |
1168 | - $settings = array_merge($settings,array('globalWaypoints' => 'FALSE')); |
|
1168 | + $settings = array_merge($settings, array('globalWaypoints' => 'FALSE')); |
|
1169 | 1169 | } |
1170 | 1170 | |
1171 | - if (!isset($globalTransaction)) $settings = array_merge($settings,array('globalTransaction' => 'TRUE')); |
|
1171 | + if (!isset($globalTransaction)) $settings = array_merge($settings, array('globalTransaction' => 'TRUE')); |
|
1172 | 1172 | |
1173 | 1173 | // Set some defaults values... |
1174 | 1174 | if (!isset($globalAircraftImageSources)) { |
1175 | - $globalAircraftImageSources = array('ivaomtl','wikimedia','airportdata','deviantart','flickr','bing','jetphotos','planepictures','planespotters'); |
|
1176 | - $settings = array_merge($settings,array('globalAircraftImageSources' => $globalAircraftImageSources)); |
|
1175 | + $globalAircraftImageSources = array('ivaomtl', 'wikimedia', 'airportdata', 'deviantart', 'flickr', 'bing', 'jetphotos', 'planepictures', 'planespotters'); |
|
1176 | + $settings = array_merge($settings, array('globalAircraftImageSources' => $globalAircraftImageSources)); |
|
1177 | 1177 | } |
1178 | 1178 | |
1179 | 1179 | if (!isset($globalSchedulesSources)) { |
1180 | - $globalSchedulesSources = array('flightmapper','costtotravel','flightradar24','flightaware'); |
|
1181 | - $settings = array_merge($settings,array('globalSchedulesSources' => $globalSchedulesSources)); |
|
1180 | + $globalSchedulesSources = array('flightmapper', 'costtotravel', 'flightradar24', 'flightaware'); |
|
1181 | + $settings = array_merge($settings, array('globalSchedulesSources' => $globalSchedulesSources)); |
|
1182 | 1182 | } |
1183 | 1183 | |
1184 | - $settings = array_merge($settings,array('globalInstalled' => 'TRUE')); |
|
1184 | + $settings = array_merge($settings, array('globalInstalled' => 'TRUE')); |
|
1185 | 1185 | |
1186 | 1186 | if ($error == '') settings::modify_settings($settings); |
1187 | 1187 | if ($error == '') settings::comment_settings($settings_comment); |
@@ -305,17 +305,17 @@ discard block |
||
305 | 305 | </tr> |
306 | 306 | <!-- |
307 | 307 | <?php |
308 | - require_once(dirname(__FILE__).'/../require/class.Connection.php'); |
|
309 | - $Connection = new Connection(); |
|
308 | + require_once(dirname(__FILE__).'/../require/class.Connection.php'); |
|
309 | + $Connection = new Connection(); |
|
310 | 310 | ?> |
311 | 311 | --> |
312 | 312 | <?php |
313 | - if ($Connection->db != NULL) { |
|
313 | + if ($Connection->db != NULL) { |
|
314 | 314 | if ($Connection->tableExists('source_location')) { |
315 | - require_once(dirname(__FILE__).'/../require/class.Source.php'); |
|
316 | - $Source = new Source(); |
|
317 | - $alllocations = $Source->getAllLocationInfo(); |
|
318 | - foreach ($alllocations as $location) { |
|
315 | + require_once(dirname(__FILE__).'/../require/class.Source.php'); |
|
316 | + $Source = new Source(); |
|
317 | + $alllocations = $Source->getAllLocationInfo(); |
|
318 | + foreach ($alllocations as $location) { |
|
319 | 319 | ?> |
320 | 320 | <tr> |
321 | 321 | <input type="hidden" name="source_id[]" value="<?php print $location['id']; ?>" /> |
@@ -329,9 +329,9 @@ discard block |
||
329 | 329 | </tr> |
330 | 330 | |
331 | 331 | <?php |
332 | - } |
|
332 | + } |
|
333 | + } |
|
333 | 334 | } |
334 | - } |
|
335 | 335 | ?> |
336 | 336 | |
337 | 337 | <tr> |
@@ -424,12 +424,12 @@ discard block |
||
424 | 424 | ?> |
425 | 425 | <tr> |
426 | 426 | <?php |
427 | - if (filter_var($source['host'],FILTER_VALIDATE_URL)) { |
|
427 | + if (filter_var($source['host'],FILTER_VALIDATE_URL)) { |
|
428 | 428 | ?> |
429 | 429 | <td><input type="text" name="host[]" id="host" value="<?php print $source['host']; ?>" /></td> |
430 | 430 | <td><input type="number" name="port[]" id="port" value="<?php print $source['port']; ?>" /></td> |
431 | 431 | <?php |
432 | - } else { |
|
432 | + } else { |
|
433 | 433 | $hostport = explode(':',$source['host']); |
434 | 434 | if (isset($hostport[1])) { |
435 | 435 | $host = $hostport[0]; |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | <td><input type="text" name="host[]" id="host" value="<?php print $host; ?>" /></td> |
443 | 443 | <td><input type="number" name="port[]" id="port" value="<?php print $port; ?>" /></td> |
444 | 444 | <?php |
445 | - } |
|
445 | + } |
|
446 | 446 | ?> |
447 | 447 | <td> |
448 | 448 | <select name="format[]" id="format"> |
@@ -758,7 +758,7 @@ discard block |
||
758 | 758 | <br /> |
759 | 759 | <p> |
760 | 760 | <?php |
761 | - if (extension_loaded('gd') && function_exists('gd_info')) { |
|
761 | + if (extension_loaded('gd') && function_exists('gd_info')) { |
|
762 | 762 | ?> |
763 | 763 | <label for="aircrafticoncolor">Color of aircraft icon on map</label> |
764 | 764 | <input type="color" name="aircrafticoncolor" id="aircrafticoncolor" value="#<?php if (isset($globalAircraftIconColor)) echo $globalAircraftIconColor; else echo '1a3151'; ?>" /> |
@@ -768,11 +768,11 @@ discard block |
||
768 | 768 | <b>The directory cache is not writable, aircraft icon will not be cached</b> |
769 | 769 | <?php |
770 | 770 | } |
771 | - } else { |
|
771 | + } else { |
|
772 | 772 | ?> |
773 | 773 | <b>PHP GD is not installed, you can t change color of aircraft icon on map</b> |
774 | 774 | <?php |
775 | - } |
|
775 | + } |
|
776 | 776 | ?> |
777 | 777 | </p> |
778 | 778 | <br /> |
@@ -791,7 +791,7 @@ discard block |
||
791 | 791 | </p> |
792 | 792 | <?php |
793 | 793 | require('../footer.php'); |
794 | - exit; |
|
794 | + exit; |
|
795 | 795 | } |
796 | 796 | |
797 | 797 | $settings = array(); |
@@ -881,8 +881,8 @@ discard block |
||
881 | 881 | |
882 | 882 | $sources = array(); |
883 | 883 | foreach ($source_name as $keys => $name) { |
884 | - if (isset($source_id[$keys])) $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'id' => $source_id[$keys],'source' => $source_ref[$keys]); |
|
885 | - else $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'source' => $source_ref[$keys]); |
|
884 | + if (isset($source_id[$keys])) $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'id' => $source_id[$keys],'source' => $source_ref[$keys]); |
|
885 | + else $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'source' => $source_ref[$keys]); |
|
886 | 886 | } |
887 | 887 | if (count($sources) > 0) $_SESSION['sources'] = $sources; |
888 | 888 | |
@@ -1176,14 +1176,14 @@ discard block |
||
1176 | 1176 | |
1177 | 1177 | // Set some defaults values... |
1178 | 1178 | if (!isset($globalAircraftImageSources)) { |
1179 | - $globalAircraftImageSources = array('ivaomtl','wikimedia','airportdata','deviantart','flickr','bing','jetphotos','planepictures','planespotters'); |
|
1180 | - $settings = array_merge($settings,array('globalAircraftImageSources' => $globalAircraftImageSources)); |
|
1179 | + $globalAircraftImageSources = array('ivaomtl','wikimedia','airportdata','deviantart','flickr','bing','jetphotos','planepictures','planespotters'); |
|
1180 | + $settings = array_merge($settings,array('globalAircraftImageSources' => $globalAircraftImageSources)); |
|
1181 | 1181 | } |
1182 | 1182 | |
1183 | 1183 | if (!isset($globalSchedulesSources)) { |
1184 | - $globalSchedulesSources = array('flightmapper','costtotravel','flightradar24','flightaware'); |
|
1185 | - $settings = array_merge($settings,array('globalSchedulesSources' => $globalSchedulesSources)); |
|
1186 | - } |
|
1184 | + $globalSchedulesSources = array('flightmapper','costtotravel','flightradar24','flightaware'); |
|
1185 | + $settings = array_merge($settings,array('globalSchedulesSources' => $globalSchedulesSources)); |
|
1186 | + } |
|
1187 | 1187 | |
1188 | 1188 | $settings = array_merge($settings,array('globalInstalled' => 'TRUE')); |
1189 | 1189 | |
@@ -1235,21 +1235,21 @@ discard block |
||
1235 | 1235 | $popi = false; |
1236 | 1236 | $popw = false; |
1237 | 1237 | foreach ($_SESSION['done'] as $done) { |
1238 | - print '<li>'.$done.'....<strong>SUCCESS</strong></li>'; |
|
1239 | - if ($done == 'Create database') $pop = true; |
|
1240 | - if ($_SESSION['install'] == 'database_create') $pop = true; |
|
1241 | - if ($_SESSION['install'] == 'database_import') $popi = true; |
|
1242 | - if ($_SESSION['install'] == 'waypoints') $popw = true; |
|
1238 | + print '<li>'.$done.'....<strong>SUCCESS</strong></li>'; |
|
1239 | + if ($done == 'Create database') $pop = true; |
|
1240 | + if ($_SESSION['install'] == 'database_create') $pop = true; |
|
1241 | + if ($_SESSION['install'] == 'database_import') $popi = true; |
|
1242 | + if ($_SESSION['install'] == 'waypoints') $popw = true; |
|
1243 | 1243 | } |
1244 | 1244 | if ($pop) { |
1245 | - sleep(5); |
|
1246 | - print '<li>Create database....<img src="../images/loading.gif" /></li>'; |
|
1245 | + sleep(5); |
|
1246 | + print '<li>Create database....<img src="../images/loading.gif" /></li>'; |
|
1247 | 1247 | } else if ($popi) { |
1248 | - sleep(5); |
|
1249 | - print '<li>Create and import tables....<img src="../images/loading.gif" /></li>'; |
|
1248 | + sleep(5); |
|
1249 | + print '<li>Create and import tables....<img src="../images/loading.gif" /></li>'; |
|
1250 | 1250 | } else if ($popw) { |
1251 | - sleep(5); |
|
1252 | - print '<li>Populate waypoints database....<img src="../images/loading.gif" /></li>'; |
|
1251 | + sleep(5); |
|
1252 | + print '<li>Populate waypoints database....<img src="../images/loading.gif" /></li>'; |
|
1253 | 1253 | } else print '<li>Update schema if needed....<img src="../images/loading.gif" /></li>'; |
1254 | 1254 | print '</div></ul>'; |
1255 | 1255 | print '<div id="error"></div>'; |
@@ -1312,7 +1312,7 @@ discard block |
||
1312 | 1312 | unset($_COOKIE['install']); |
1313 | 1313 | print '<div class="info column"><ul>'; |
1314 | 1314 | foreach ($_SESSION['done'] as $done) { |
1315 | - print '<li>'.$done.'....<strong>SUCCESS</strong></li>'; |
|
1315 | + print '<li>'.$done.'....<strong>SUCCESS</strong></li>'; |
|
1316 | 1316 | } |
1317 | 1317 | print '<li>Reloading page to check all is now ok....<strong>SUCCESS</strong></li>'; |
1318 | 1318 | print '</ul></div>'; |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | </div> |
15 | 15 | <p>'._("Below are the <strong>Top 10</strong> most common airlines.").'</p>'; |
16 | 16 | |
17 | -$airline_array = $Stats->countAllAirlines(true,$filter_name); |
|
17 | +$airline_array = $Stats->countAllAirlines(true, $filter_name); |
|
18 | 18 | print '<div id="chart" class="chart" width="100%"></div> |
19 | 19 | <script> |
20 | 20 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | var data = google.visualization.arrayToDataTable([ |
24 | 24 | ["'._("Airline").'", "'._("# of times").'"], '; |
25 | 25 | $airline_data = ''; |
26 | -foreach($airline_array as $airline_item) |
|
26 | +foreach ($airline_array as $airline_item) |
|
27 | 27 | { |
28 | 28 | $airline_data .= '[ "'.$airline_item['airline_name'].' ('.$airline_item['airline_icao'].')",'.$airline_item['airline_count'].'],'; |
29 | 29 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | print '</thead>'; |
59 | 59 | print '<tbody>'; |
60 | 60 | $i = 1; |
61 | - foreach($airline_array as $airline_item) |
|
61 | + foreach ($airline_array as $airline_item) |
|
62 | 62 | { |
63 | 63 | print '<tr>'; |
64 | 64 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -5,7 +5,9 @@ |
||
5 | 5 | $Spotter = new Spotter(); |
6 | 6 | $title = _("Statistics").' - '._("Most common Route by Airport"); |
7 | 7 | require_once('header.php'); |
8 | -if (!isset($filter_name)) $filter_name = ''; |
|
8 | +if (!isset($filter_name)) { |
|
9 | + $filter_name = ''; |
|
10 | +} |
|
9 | 11 | include('statistics-sub-menu.php'); |
10 | 12 | |
11 | 13 | print '<script type="text/javascript" src="https://www.google.com/jsapi"></script> |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | </div> |
15 | 15 | <p>'._("Below are the <strong>Top 10</strong> countries that an airline belongs to.").'</p>'; |
16 | 16 | |
17 | -$airline_array = $Stats->countAllAirlineCountries(true,$filter_name); |
|
17 | +$airline_array = $Stats->countAllAirlineCountries(true, $filter_name); |
|
18 | 18 | if (count($airline_array) > 0) { |
19 | 19 | print '<div id="chartCountry" class="chart" width="100%"></div> |
20 | 20 | <script> |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | var data = google.visualization.arrayToDataTable([ |
25 | 25 | ["'._("Country").'", "'._("# of times").'"], '; |
26 | 26 | $country_data = ''; |
27 | -foreach($airline_array as $airline_item) |
|
27 | +foreach ($airline_array as $airline_item) |
|
28 | 28 | { |
29 | 29 | $country_data .= '[ "'.$airline_item['airline_country'].'",'.$airline_item['airline_country_count'].'],'; |
30 | 30 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | print '</thead>'; |
59 | 59 | print '<tbody>'; |
60 | 60 | $i = 1; |
61 | - foreach($airline_array as $airline_item) |
|
61 | + foreach ($airline_array as $airline_item) |
|
62 | 62 | { |
63 | 63 | print '<tr>'; |
64 | 64 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -5,7 +5,9 @@ |
||
5 | 5 | $Spotter = new Spotter(); |
6 | 6 | $title = _("Statistics").' - '._("Most common Route by Airport"); |
7 | 7 | require_once('header.php'); |
8 | -if (!isset($filter_name)) $filter_name = ''; |
|
8 | +if (!isset($filter_name)) { |
|
9 | + $filter_name = ''; |
|
10 | +} |
|
9 | 11 | include('statistics-sub-menu.php'); |
10 | 12 | |
11 | 13 | print '<script type="text/javascript" src="https://www.google.com/jsapi"></script> |
@@ -3,8 +3,8 @@ discard block |
||
3 | 3 | require_once('require/class.Spotter.php'); |
4 | 4 | require_once('require/class.Language.php'); |
5 | 5 | $Spotter = new Spotter(); |
6 | -$sort = filter_input(INPUT_GET,'sort',FILTER_SANITIZE_STRING); |
|
7 | -$spotter_array = $Spotter->getSpotterDataByDate($_GET['date'],"0,1", $sort); |
|
6 | +$sort = filter_input(INPUT_GET, 'sort', FILTER_SANITIZE_STRING); |
|
7 | +$spotter_array = $Spotter->getSpotterDataByDate($_GET['date'], "0,1", $sort); |
|
8 | 8 | |
9 | 9 | if (!empty($spotter_array)) |
10 | 10 | { |
@@ -20,13 +20,13 @@ discard block |
||
20 | 20 | print '</div>'; |
21 | 21 | |
22 | 22 | print '<div class="info column">'; |
23 | - print '<h1>'.sprintf(_("Flights from %s"),date("l F j, Y", strtotime($spotter_array[0]['date_iso_8601']))).'</h1>'; |
|
23 | + print '<h1>'.sprintf(_("Flights from %s"), date("l F j, Y", strtotime($spotter_array[0]['date_iso_8601']))).'</h1>'; |
|
24 | 24 | print '</div>'; |
25 | 25 | |
26 | 26 | include('date-sub-menu.php'); |
27 | 27 | print '<div class="column">'; |
28 | 28 | print '<h2>'._("Most Common Aircraft by Registration").'</h2>'; |
29 | - print '<p>'.sprintf(_("The statistic below shows the most common aircraft by registration of flights on <strong>%s</strong>."),date("l F j, Y", strtotime($spotter_array[0]['date_iso_8601']))).'</p>'; |
|
29 | + print '<p>'.sprintf(_("The statistic below shows the most common aircraft by registration of flights on <strong>%s</strong>."), date("l F j, Y", strtotime($spotter_array[0]['date_iso_8601']))).'</p>'; |
|
30 | 30 | |
31 | 31 | $aircraft_array = $Spotter->countAllAircraftRegistrationByDate($_GET['date']); |
32 | 32 | if (!empty($aircraft_array)) |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | print '</thead>'; |
44 | 44 | print '<tbody>'; |
45 | 45 | $i = 1; |
46 | - foreach($aircraft_array as $aircraft_item) |
|
46 | + foreach ($aircraft_array as $aircraft_item) |
|
47 | 47 | { |
48 | 48 | print '<tr>'; |
49 | 49 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | if (isset($aircraft_item['aircraft_type'])) { |
54 | 54 | print '<a href="'.$globalURL.'/registration/'.$aircraft_item['registration'].'"><img src="'.$aircraft_item['image_thumbnail'].'" class="img-rounded" data-toggle="popover" title="'.$aircraft_item['registration'].' - '.$aircraft_item['aircraft_icao'].' - '.$aircraft_item['airline_name'].'" alt="'.$aircraft_item['registration'].' - '.$aircraft_item['aircraft_type'].' - '.$aircraft_item['airline_name'].'" data-content="'._("Registration:").' '.$aircraft_item['registration'].'<br />'._("Aircraft:").' '.$aircraft_item['aircraft_name'].' ('.$aircraft_item['aircraft_icao'].')<br />'._("Airline:").' '.$aircraft_item['airline_name'].'" data-html="true" width="100px" /></a>'; |
55 | 55 | } else { |
56 | - print '<a href="'.$globalURL.'/registration/'.$aircraft_item['registration'].'"><img src="'.$aircraft_item['image_thumbnail'].'" class="img-rounded" data-toggle="popover" title="'.$aircraft_item['registration'].' - '.$aircraft_item['aircraft_icao'].' - '.$aircraft_item['airline_name'].'" alt="'.$aircraft_item['registration'].' - '.$aircraft_item['airline_name'].'" data-content="'._("Registration:").' '.$aircraft_item['registration'].'<br />'._("Aircraft:").' '.$aircraft_item['aircraft_name'].' ('.$aircraft_item['aircraft_icao'].')<br />'._("Airline:");' '.$aircraft_item['airline_name'].'" data-html="true" width="100px" /></a>'; |
|
56 | + print '<a href="'.$globalURL.'/registration/'.$aircraft_item['registration'].'"><img src="'.$aircraft_item['image_thumbnail'].'" class="img-rounded" data-toggle="popover" title="'.$aircraft_item['registration'].' - '.$aircraft_item['aircraft_icao'].' - '.$aircraft_item['airline_name'].'" alt="'.$aircraft_item['registration'].' - '.$aircraft_item['airline_name'].'" data-content="'._("Registration:").' '.$aircraft_item['registration'].'<br />'._("Aircraft:").' '.$aircraft_item['aircraft_name'].' ('.$aircraft_item['aircraft_icao'].')<br />'._("Airline:"); ' '.$aircraft_item['airline_name'].'" data-html="true" width="100px" /></a>'; |
|
57 | 57 | } |
58 | 58 | print '</td>'; |
59 | 59 | } else { |
@@ -11,7 +11,7 @@ |
||
11 | 11 | /** |
12 | 12 | * Get SQL query part for filter used |
13 | 13 | * @param Array $filter the filter |
14 | - * @return Array the SQL part |
|
14 | + * @return string the SQL part |
|
15 | 15 | */ |
16 | 16 | public function getFilter($filter = array(),$where = false,$and = false) { |
17 | 17 | global $globalFilter, $globalStatsFilters, $globalFilterName; |
@@ -23,7 +23,9 @@ discard block |
||
23 | 23 | $filter = array_merge($filter,$globalStatsFilters[$globalFilterName]); |
24 | 24 | } |
25 | 25 | } |
26 | - if (is_array($globalFilter)) $filter = array_merge($filter,$globalFilter); |
|
26 | + if (is_array($globalFilter)) { |
|
27 | + $filter = array_merge($filter,$globalFilter); |
|
28 | + } |
|
27 | 29 | $filter_query_join = ''; |
28 | 30 | $filter_query_where = ''; |
29 | 31 | foreach($filters as $flt) { |
@@ -69,8 +71,11 @@ discard block |
||
69 | 71 | $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
70 | 72 | } |
71 | 73 | } |
72 | - if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE'; |
|
73 | - elseif ($filter_query_where != '' && $and) $filter_query_where .= ' AND'; |
|
74 | + if ($filter_query_where == '' && $where) { |
|
75 | + $filter_query_where = ' WHERE'; |
|
76 | + } elseif ($filter_query_where != '' && $and) { |
|
77 | + $filter_query_where .= ' AND'; |
|
78 | + } |
|
74 | 79 | $filter_query = $filter_query_join.$filter_query_where; |
75 | 80 | return $filter_query; |
76 | 81 | } |
@@ -81,10 +86,17 @@ discard block |
||
81 | 86 | if ($over_country == '') { |
82 | 87 | $Spotter = new Spotter($this->db); |
83 | 88 | $data_country = $Spotter->getCountryFromLatitudeLongitude($latitude,$longitude); |
84 | - if (!empty($data_country)) $country = $data_country['iso2']; |
|
85 | - else $country = ''; |
|
86 | - } else $country = $over_country; |
|
87 | - if ($airline_type === NULL) $airline_type =''; |
|
89 | + if (!empty($data_country)) { |
|
90 | + $country = $data_country['iso2']; |
|
91 | + } else { |
|
92 | + $country = ''; |
|
93 | + } |
|
94 | + } else { |
|
95 | + $country = $over_country; |
|
96 | + } |
|
97 | + if ($airline_type === NULL) { |
|
98 | + $airline_type =''; |
|
99 | + } |
|
88 | 100 | |
89 | 101 | //if ($country == '') echo "\n".'************ UNKNOW COUNTRY ****************'."\n"; |
90 | 102 | //else echo "\n".'*/*/*/*/*/*/*/ Country : '.$country.' */*/*/*/*/*/*/*/*/'."\n"; |
@@ -587,7 +599,9 @@ discard block |
||
587 | 599 | $additional_query .= "(spotter_archive_output.pilot_name like '%".$q_item."%') OR "; |
588 | 600 | $additional_query .= "(spotter_archive_output.ident like '%".$q_item."%') OR "; |
589 | 601 | $translate = $Translation->ident2icao($q_item); |
590 | - if ($translate != $q_item) $additional_query .= "(spotter_archive_output.ident like '%".$translate."%') OR "; |
|
602 | + if ($translate != $q_item) { |
|
603 | + $additional_query .= "(spotter_archive_output.ident like '%".$translate."%') OR "; |
|
604 | + } |
|
591 | 605 | $additional_query .= "(spotter_archive_output.highlight like '%".$q_item."%')"; |
592 | 606 | $additional_query .= ")"; |
593 | 607 | } |
@@ -805,7 +819,9 @@ discard block |
||
805 | 819 | date_default_timezone_set($globalTimezone); |
806 | 820 | $datetime = new DateTime(); |
807 | 821 | $offset = $datetime->format('P'); |
808 | - } else $offset = '+00:00'; |
|
822 | + } else { |
|
823 | + $offset = '+00:00'; |
|
824 | + } |
|
809 | 825 | |
810 | 826 | |
811 | 827 | if ($date_array[1] != "") |
@@ -969,9 +985,13 @@ discard block |
||
969 | 985 | $query .= "AND date < CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '".$olderthanmonths." MONTHS'"; |
970 | 986 | } |
971 | 987 | } |
972 | - if ($sincedate != '') $query .= "AND date > '".$sincedate."' "; |
|
988 | + if ($sincedate != '') { |
|
989 | + $query .= "AND date > '".$sincedate."' "; |
|
990 | + } |
|
973 | 991 | $query .= "GROUP BY c.name, c.iso3, c.iso2 ORDER BY nb DESC"; |
974 | - if ($limit) $query .= " LIMIT 0,10"; |
|
992 | + if ($limit) { |
|
993 | + $query .= " LIMIT 0,10"; |
|
994 | + } |
|
975 | 995 | |
976 | 996 | |
977 | 997 | $sth = $this->db->prepare($query); |
@@ -8,12 +8,12 @@ discard block |
||
8 | 8 | $this->db = $Connection->db; |
9 | 9 | } |
10 | 10 | |
11 | - /** |
|
12 | - * Get SQL query part for filter used |
|
13 | - * @param Array $filter the filter |
|
14 | - * @return Array the SQL part |
|
15 | - */ |
|
16 | - public function getFilter($filter = array(),$where = false,$and = false) { |
|
11 | + /** |
|
12 | + * Get SQL query part for filter used |
|
13 | + * @param Array $filter the filter |
|
14 | + * @return Array the SQL part |
|
15 | + */ |
|
16 | + public function getFilter($filter = array(),$where = false,$and = false) { |
|
17 | 17 | global $globalFilter, $globalStatsFilters, $globalFilterName; |
18 | 18 | $filters = array(); |
19 | 19 | if (is_array($globalStatsFilters) && isset($globalStatsFilters[$globalFilterName])) { |
@@ -27,58 +27,58 @@ discard block |
||
27 | 27 | $filter_query_join = ''; |
28 | 28 | $filter_query_where = ''; |
29 | 29 | foreach($filters as $flt) { |
30 | - if (isset($flt['airlines']) && !empty($flt['airlines'])) { |
|
30 | + if (isset($flt['airlines']) && !empty($flt['airlines'])) { |
|
31 | 31 | if ($flt['airlines'][0] != '') { |
32 | - if (isset($flt['source'])) { |
|
32 | + if (isset($flt['source'])) { |
|
33 | 33 | $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$flt['airlines'])."') AND spotter_archive_output.format_source IN ('".implode("','",$flt['source'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
34 | - } else { |
|
34 | + } else { |
|
35 | 35 | $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$flt['airlines'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
36 | - } |
|
36 | + } |
|
37 | 37 | } |
38 | - } |
|
39 | - if (isset($flt['pilots_id']) && !empty($flt['pilots_id'])) { |
|
38 | + } |
|
39 | + if (isset($flt['pilots_id']) && !empty($flt['pilots_id'])) { |
|
40 | 40 | if (isset($flt['source'])) { |
41 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$flt['pilots_id'])."') AND spotter_archive_output.format_source IN ('".implode("','",$flt['source'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
41 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$flt['pilots_id'])."') AND spotter_archive_output.format_source IN ('".implode("','",$flt['source'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
42 | 42 | } else { |
43 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$flt['pilots_id'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
43 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$flt['pilots_id'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
44 | + } |
|
44 | 45 | } |
45 | - } |
|
46 | - if ((isset($flt['airlines']) && empty($flt['airlines']) && isset($flt['pilots_id']) && empty($flt['pilots_id'])) || (!isset($flt['airlines']) && !isset($flt['pilots_id']))) { |
|
46 | + if ((isset($flt['airlines']) && empty($flt['airlines']) && isset($flt['pilots_id']) && empty($flt['pilots_id'])) || (!isset($flt['airlines']) && !isset($flt['pilots_id']))) { |
|
47 | 47 | if (isset($flt['source'])) { |
48 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.format_source IN ('".implode("','",$flt['source'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
48 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.format_source IN ('".implode("','",$flt['source'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
49 | + } |
|
49 | 50 | } |
50 | - } |
|
51 | 51 | } |
52 | 52 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
53 | - if ($filter['airlines'][0] != '') { |
|
53 | + if ($filter['airlines'][0] != '') { |
|
54 | 54 | $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
55 | - } |
|
55 | + } |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
59 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive_output.flightaware_id "; |
|
59 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive_output.flightaware_id "; |
|
60 | 60 | } |
61 | 61 | if (isset($filter['pilots_id']) && !empty($filter['pilots_id'])) { |
62 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$filter['pilots_id'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
62 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$filter['pilots_id'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
63 | 63 | } |
64 | 64 | if (isset($filter['source']) && !empty($filter['source'])) { |
65 | - $filter_query_where = " WHERE format_source IN ('".implode("','",$filter['source'])."')"; |
|
65 | + $filter_query_where = " WHERE format_source IN ('".implode("','",$filter['source'])."')"; |
|
66 | 66 | } |
67 | 67 | if (isset($filter['ident']) && !empty($filter['ident'])) { |
68 | - $filter_query_where = " WHERE ident = '".$filter['ident']."'"; |
|
68 | + $filter_query_where = " WHERE ident = '".$filter['ident']."'"; |
|
69 | 69 | } |
70 | 70 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
71 | - if ($filter_query_where == '') { |
|
71 | + if ($filter_query_where == '') { |
|
72 | 72 | $filter_query_where = " WHERE format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
73 | - } else { |
|
73 | + } else { |
|
74 | 74 | $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
75 | - } |
|
75 | + } |
|
76 | 76 | } |
77 | 77 | if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE'; |
78 | 78 | elseif ($filter_query_where != '' && $and) $filter_query_where .= ' AND'; |
79 | 79 | $filter_query = $filter_query_join.$filter_query_where; |
80 | 80 | return $filter_query; |
81 | - } |
|
81 | + } |
|
82 | 82 | |
83 | 83 | // Spotter_archive |
84 | 84 | public function addSpotterArchiveData($flightaware_id = '', $ident = '', $registration = '', $airline_name = '', $airline_icao = '', $airline_country = '', $airline_type = '', $aircraft_icao = '', $aircraft_shadow = '', $aircraft_name = '', $aircraft_manufacturer = '', $departure_airport_icao = '', $departure_airport_name = '', $departure_airport_city = '', $departure_airport_country = '', $departure_airport_time = '',$arrival_airport_icao = '', $arrival_airport_name = '', $arrival_airport_city ='', $arrival_airport_country = '', $arrival_airport_time = '', $route_stop = '', $date = '',$latitude = '', $longitude = '', $waypoints = '', $altitude = '', $heading = '', $ground_speed = '', $squawk = '', $ModeS = '', $pilot_id = '', $pilot_name = '',$verticalrate = '',$format_source = '', $source_name = '', $over_country = '') { |
@@ -109,44 +109,44 @@ discard block |
||
109 | 109 | } |
110 | 110 | |
111 | 111 | |
112 | - /** |
|
113 | - * Gets all the spotter information based on a particular callsign |
|
114 | - * |
|
115 | - * @return Array the spotter information |
|
116 | - * |
|
117 | - */ |
|
118 | - public function getLastArchiveSpotterDataByIdent($ident) |
|
119 | - { |
|
112 | + /** |
|
113 | + * Gets all the spotter information based on a particular callsign |
|
114 | + * |
|
115 | + * @return Array the spotter information |
|
116 | + * |
|
117 | + */ |
|
118 | + public function getLastArchiveSpotterDataByIdent($ident) |
|
119 | + { |
|
120 | 120 | $Spotter = new Spotter($this->db); |
121 | - date_default_timezone_set('UTC'); |
|
121 | + date_default_timezone_set('UTC'); |
|
122 | 122 | |
123 | - $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
124 | - //$query = "SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
125 | - $query = "SELECT spotter_archive.* FROM spotter_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
123 | + $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
124 | + //$query = "SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
125 | + $query = "SELECT spotter_archive.* FROM spotter_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
126 | 126 | |
127 | - $spotter_array = $Spotter->getDataFromDB($query,array(':ident' => $ident)); |
|
127 | + $spotter_array = $Spotter->getDataFromDB($query,array(':ident' => $ident)); |
|
128 | 128 | |
129 | - return $spotter_array; |
|
130 | - } |
|
129 | + return $spotter_array; |
|
130 | + } |
|
131 | 131 | |
132 | 132 | |
133 | - /** |
|
134 | - * Gets last the spotter information based on a particular id |
|
135 | - * |
|
136 | - * @return Array the spotter information |
|
137 | - * |
|
138 | - */ |
|
139 | - public function getLastArchiveSpotterDataById($id) |
|
140 | - { |
|
141 | - $Spotter = new Spotter($this->db); |
|
142 | - date_default_timezone_set('UTC'); |
|
143 | - $id = filter_var($id, FILTER_SANITIZE_STRING); |
|
144 | - //$query = SpotterArchive->$global_query." WHERE spotter_archive.flightaware_id = :id"; |
|
145 | - //$query = "SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.flightaware_id = :id GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
146 | - $query = "SELECT * FROM spotter_archive WHERE flightaware_id = :id ORDER BY date DESC LIMIT 1"; |
|
133 | + /** |
|
134 | + * Gets last the spotter information based on a particular id |
|
135 | + * |
|
136 | + * @return Array the spotter information |
|
137 | + * |
|
138 | + */ |
|
139 | + public function getLastArchiveSpotterDataById($id) |
|
140 | + { |
|
141 | + $Spotter = new Spotter($this->db); |
|
142 | + date_default_timezone_set('UTC'); |
|
143 | + $id = filter_var($id, FILTER_SANITIZE_STRING); |
|
144 | + //$query = SpotterArchive->$global_query." WHERE spotter_archive.flightaware_id = :id"; |
|
145 | + //$query = "SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.flightaware_id = :id GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
146 | + $query = "SELECT * FROM spotter_archive WHERE flightaware_id = :id ORDER BY date DESC LIMIT 1"; |
|
147 | 147 | |
148 | 148 | // $spotter_array = Spotter->getDataFromDB($query,array(':id' => $id)); |
149 | - /* |
|
149 | + /* |
|
150 | 150 | try { |
151 | 151 | $Connection = new Connection(); |
152 | 152 | $sth = Connection->$db->prepare($query); |
@@ -156,232 +156,232 @@ discard block |
||
156 | 156 | } |
157 | 157 | $spotter_array = $sth->fetchAll(PDO->FETCH_ASSOC); |
158 | 158 | */ |
159 | - $spotter_array = $Spotter->getDataFromDB($query,array(':id' => $id)); |
|
160 | - |
|
161 | - return $spotter_array; |
|
162 | - } |
|
163 | - |
|
164 | - /** |
|
165 | - * Gets all the spotter information based on a particular id |
|
166 | - * |
|
167 | - * @return Array the spotter information |
|
168 | - * |
|
169 | - */ |
|
170 | - public function getAllArchiveSpotterDataById($id) |
|
171 | - { |
|
172 | - date_default_timezone_set('UTC'); |
|
173 | - $id = filter_var($id, FILTER_SANITIZE_STRING); |
|
174 | - $query = $this->global_query." WHERE spotter_archive.flightaware_id = :id"; |
|
159 | + $spotter_array = $Spotter->getDataFromDB($query,array(':id' => $id)); |
|
160 | + |
|
161 | + return $spotter_array; |
|
162 | + } |
|
163 | + |
|
164 | + /** |
|
165 | + * Gets all the spotter information based on a particular id |
|
166 | + * |
|
167 | + * @return Array the spotter information |
|
168 | + * |
|
169 | + */ |
|
170 | + public function getAllArchiveSpotterDataById($id) |
|
171 | + { |
|
172 | + date_default_timezone_set('UTC'); |
|
173 | + $id = filter_var($id, FILTER_SANITIZE_STRING); |
|
174 | + $query = $this->global_query." WHERE spotter_archive.flightaware_id = :id"; |
|
175 | 175 | |
176 | 176 | // $spotter_array = Spotter->getDataFromDB($query,array(':id' => $id)); |
177 | 177 | |
178 | - try { |
|
179 | - $sth = $this->db->prepare($query); |
|
180 | - $sth->execute(array(':id' => $id)); |
|
181 | - } catch(PDOException $e) { |
|
182 | - echo $e->getMessage(); |
|
183 | - die; |
|
184 | - } |
|
185 | - $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
186 | - |
|
187 | - return $spotter_array; |
|
188 | - } |
|
189 | - |
|
190 | - /** |
|
191 | - * Gets coordinate & time spotter information based on a particular id |
|
192 | - * |
|
193 | - * @return Array the spotter information |
|
194 | - * |
|
195 | - */ |
|
196 | - public function getCoordArchiveSpotterDataById($id) |
|
197 | - { |
|
198 | - date_default_timezone_set('UTC'); |
|
199 | - $id = filter_var($id, FILTER_SANITIZE_STRING); |
|
200 | - $query = "SELECT spotter_archive.latitude, spotter_archive.longitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id"; |
|
178 | + try { |
|
179 | + $sth = $this->db->prepare($query); |
|
180 | + $sth->execute(array(':id' => $id)); |
|
181 | + } catch(PDOException $e) { |
|
182 | + echo $e->getMessage(); |
|
183 | + die; |
|
184 | + } |
|
185 | + $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
186 | + |
|
187 | + return $spotter_array; |
|
188 | + } |
|
189 | + |
|
190 | + /** |
|
191 | + * Gets coordinate & time spotter information based on a particular id |
|
192 | + * |
|
193 | + * @return Array the spotter information |
|
194 | + * |
|
195 | + */ |
|
196 | + public function getCoordArchiveSpotterDataById($id) |
|
197 | + { |
|
198 | + date_default_timezone_set('UTC'); |
|
199 | + $id = filter_var($id, FILTER_SANITIZE_STRING); |
|
200 | + $query = "SELECT spotter_archive.latitude, spotter_archive.longitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id"; |
|
201 | 201 | |
202 | 202 | // $spotter_array = Spotter->getDataFromDB($query,array(':id' => $id)); |
203 | 203 | |
204 | - try { |
|
205 | - $sth = $this->db->prepare($query); |
|
206 | - $sth->execute(array(':id' => $id)); |
|
207 | - } catch(PDOException $e) { |
|
208 | - echo $e->getMessage(); |
|
209 | - die; |
|
210 | - } |
|
211 | - $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
204 | + try { |
|
205 | + $sth = $this->db->prepare($query); |
|
206 | + $sth->execute(array(':id' => $id)); |
|
207 | + } catch(PDOException $e) { |
|
208 | + echo $e->getMessage(); |
|
209 | + die; |
|
210 | + } |
|
211 | + $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
212 | 212 | |
213 | - return $spotter_array; |
|
214 | - } |
|
213 | + return $spotter_array; |
|
214 | + } |
|
215 | 215 | |
216 | 216 | |
217 | - /** |
|
218 | - * Gets altitude information based on a particular callsign |
|
219 | - * |
|
220 | - * @return Array the spotter information |
|
221 | - * |
|
222 | - */ |
|
223 | - public function getAltitudeArchiveSpotterDataByIdent($ident) |
|
224 | - { |
|
217 | + /** |
|
218 | + * Gets altitude information based on a particular callsign |
|
219 | + * |
|
220 | + * @return Array the spotter information |
|
221 | + * |
|
222 | + */ |
|
223 | + public function getAltitudeArchiveSpotterDataByIdent($ident) |
|
224 | + { |
|
225 | 225 | |
226 | - date_default_timezone_set('UTC'); |
|
226 | + date_default_timezone_set('UTC'); |
|
227 | 227 | |
228 | - $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
229 | - $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.ident = :ident AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
228 | + $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
229 | + $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.ident = :ident AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
230 | 230 | |
231 | - try { |
|
232 | - $sth = $this->db->prepare($query); |
|
233 | - $sth->execute(array(':ident' => $ident)); |
|
234 | - } catch(PDOException $e) { |
|
235 | - echo $e->getMessage(); |
|
236 | - die; |
|
237 | - } |
|
238 | - $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
231 | + try { |
|
232 | + $sth = $this->db->prepare($query); |
|
233 | + $sth->execute(array(':ident' => $ident)); |
|
234 | + } catch(PDOException $e) { |
|
235 | + echo $e->getMessage(); |
|
236 | + die; |
|
237 | + } |
|
238 | + $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
239 | 239 | |
240 | - return $spotter_array; |
|
241 | - } |
|
240 | + return $spotter_array; |
|
241 | + } |
|
242 | 242 | |
243 | - /** |
|
244 | - * Gets altitude information based on a particular id |
|
245 | - * |
|
246 | - * @return Array the spotter information |
|
247 | - * |
|
248 | - */ |
|
249 | - public function getAltitudeArchiveSpotterDataById($id) |
|
250 | - { |
|
243 | + /** |
|
244 | + * Gets altitude information based on a particular id |
|
245 | + * |
|
246 | + * @return Array the spotter information |
|
247 | + * |
|
248 | + */ |
|
249 | + public function getAltitudeArchiveSpotterDataById($id) |
|
250 | + { |
|
251 | 251 | |
252 | - date_default_timezone_set('UTC'); |
|
252 | + date_default_timezone_set('UTC'); |
|
253 | 253 | |
254 | - $id = filter_var($id, FILTER_SANITIZE_STRING); |
|
255 | - $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
254 | + $id = filter_var($id, FILTER_SANITIZE_STRING); |
|
255 | + $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
256 | 256 | |
257 | - try { |
|
258 | - $sth = $this->db->prepare($query); |
|
259 | - $sth->execute(array(':id' => $id)); |
|
260 | - } catch(PDOException $e) { |
|
261 | - echo $e->getMessage(); |
|
262 | - die; |
|
263 | - } |
|
264 | - $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
257 | + try { |
|
258 | + $sth = $this->db->prepare($query); |
|
259 | + $sth->execute(array(':id' => $id)); |
|
260 | + } catch(PDOException $e) { |
|
261 | + echo $e->getMessage(); |
|
262 | + die; |
|
263 | + } |
|
264 | + $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
265 | 265 | |
266 | - return $spotter_array; |
|
267 | - } |
|
266 | + return $spotter_array; |
|
267 | + } |
|
268 | 268 | |
269 | - /** |
|
270 | - * Gets altitude & speed information based on a particular id |
|
271 | - * |
|
272 | - * @return Array the spotter information |
|
273 | - * |
|
274 | - */ |
|
275 | - public function getAltitudeSpeedArchiveSpotterDataById($id) |
|
276 | - { |
|
269 | + /** |
|
270 | + * Gets altitude & speed information based on a particular id |
|
271 | + * |
|
272 | + * @return Array the spotter information |
|
273 | + * |
|
274 | + */ |
|
275 | + public function getAltitudeSpeedArchiveSpotterDataById($id) |
|
276 | + { |
|
277 | 277 | |
278 | - date_default_timezone_set('UTC'); |
|
278 | + date_default_timezone_set('UTC'); |
|
279 | 279 | |
280 | - $id = filter_var($id, FILTER_SANITIZE_STRING); |
|
281 | - $query = "SELECT spotter_archive.altitude, spotter_archive.ground_speed, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id ORDER BY date"; |
|
280 | + $id = filter_var($id, FILTER_SANITIZE_STRING); |
|
281 | + $query = "SELECT spotter_archive.altitude, spotter_archive.ground_speed, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id ORDER BY date"; |
|
282 | 282 | |
283 | - try { |
|
284 | - $sth = $this->db->prepare($query); |
|
285 | - $sth->execute(array(':id' => $id)); |
|
286 | - } catch(PDOException $e) { |
|
287 | - echo $e->getMessage(); |
|
288 | - die; |
|
289 | - } |
|
290 | - $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
283 | + try { |
|
284 | + $sth = $this->db->prepare($query); |
|
285 | + $sth->execute(array(':id' => $id)); |
|
286 | + } catch(PDOException $e) { |
|
287 | + echo $e->getMessage(); |
|
288 | + die; |
|
289 | + } |
|
290 | + $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
291 | 291 | |
292 | - return $spotter_array; |
|
293 | - } |
|
292 | + return $spotter_array; |
|
293 | + } |
|
294 | 294 | |
295 | 295 | |
296 | - /** |
|
297 | - * Gets altitude information based on a particular callsign |
|
298 | - * |
|
299 | - * @return Array the spotter information |
|
300 | - * |
|
301 | - */ |
|
302 | - public function getLastAltitudeArchiveSpotterDataByIdent($ident) |
|
303 | - { |
|
296 | + /** |
|
297 | + * Gets altitude information based on a particular callsign |
|
298 | + * |
|
299 | + * @return Array the spotter information |
|
300 | + * |
|
301 | + */ |
|
302 | + public function getLastAltitudeArchiveSpotterDataByIdent($ident) |
|
303 | + { |
|
304 | 304 | |
305 | - date_default_timezone_set('UTC'); |
|
305 | + date_default_timezone_set('UTC'); |
|
306 | 306 | |
307 | - $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
308 | - $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
307 | + $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
308 | + $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
309 | 309 | // $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.ident = :ident"; |
310 | 310 | |
311 | - try { |
|
312 | - $sth = $this->db->prepare($query); |
|
313 | - $sth->execute(array(':ident' => $ident)); |
|
314 | - } catch(PDOException $e) { |
|
315 | - echo $e->getMessage(); |
|
316 | - die; |
|
317 | - } |
|
318 | - $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
311 | + try { |
|
312 | + $sth = $this->db->prepare($query); |
|
313 | + $sth->execute(array(':ident' => $ident)); |
|
314 | + } catch(PDOException $e) { |
|
315 | + echo $e->getMessage(); |
|
316 | + die; |
|
317 | + } |
|
318 | + $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
319 | 319 | |
320 | - return $spotter_array; |
|
321 | - } |
|
320 | + return $spotter_array; |
|
321 | + } |
|
322 | 322 | |
323 | 323 | |
324 | 324 | |
325 | - /** |
|
326 | - * Gets all the archive spotter information |
|
327 | - * |
|
328 | - * @return Array the spotter information |
|
329 | - * |
|
330 | - */ |
|
331 | - public function getSpotterArchiveData($ident,$flightaware_id,$date) |
|
332 | - { |
|
333 | - $Spotter = new Spotter($this->db); |
|
334 | - $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
335 | - $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.flightaware_id = :flightaware_id AND l.date LIKE :date GROUP BY l.flightaware_id) s on spotter_live.flightaware_id = s.flightaware_id AND spotter_live.date = s.maxdate"; |
|
325 | + /** |
|
326 | + * Gets all the archive spotter information |
|
327 | + * |
|
328 | + * @return Array the spotter information |
|
329 | + * |
|
330 | + */ |
|
331 | + public function getSpotterArchiveData($ident,$flightaware_id,$date) |
|
332 | + { |
|
333 | + $Spotter = new Spotter($this->db); |
|
334 | + $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
|
335 | + $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.flightaware_id = :flightaware_id AND l.date LIKE :date GROUP BY l.flightaware_id) s on spotter_live.flightaware_id = s.flightaware_id AND spotter_live.date = s.maxdate"; |
|
336 | 336 | |
337 | - $spotter_array = $Spotter->getDataFromDB($query,array(':ident' => $ident,':flightaware_id' => $flightaware_id,':date' => $date.'%')); |
|
337 | + $spotter_array = $Spotter->getDataFromDB($query,array(':ident' => $ident,':flightaware_id' => $flightaware_id,':date' => $date.'%')); |
|
338 | 338 | |
339 | - return $spotter_array; |
|
340 | - } |
|
339 | + return $spotter_array; |
|
340 | + } |
|
341 | 341 | |
342 | - public function deleteSpotterArchiveTrackData() |
|
343 | - { |
|
342 | + public function deleteSpotterArchiveTrackData() |
|
343 | + { |
|
344 | 344 | global $globalArchiveKeepTrackMonths; |
345 | - date_default_timezone_set('UTC'); |
|
345 | + date_default_timezone_set('UTC'); |
|
346 | 346 | $query = 'DELETE FROM spotter_archive WHERE spotter_archive.date < DATE_SUB(UTC_TIMESTAMP(), INTERVAL '.$globalArchiveKeepTrackMonths.' MONTH)'; |
347 | - try { |
|
348 | - $sth = $this->db->prepare($query); |
|
349 | - $sth->execute(); |
|
350 | - } catch(PDOException $e) { |
|
351 | - echo $e->getMessage(); |
|
352 | - die; |
|
353 | - } |
|
347 | + try { |
|
348 | + $sth = $this->db->prepare($query); |
|
349 | + $sth->execute(); |
|
350 | + } catch(PDOException $e) { |
|
351 | + echo $e->getMessage(); |
|
352 | + die; |
|
353 | + } |
|
354 | 354 | } |
355 | 355 | |
356 | 356 | /** |
357 | - * Gets Minimal Live Spotter data |
|
358 | - * |
|
359 | - * @return Array the spotter information |
|
360 | - * |
|
361 | - */ |
|
362 | - public function getMinLiveSpotterData($begindate,$enddate,$filter = array()) |
|
363 | - { |
|
364 | - global $globalDBdriver, $globalLiveInterval; |
|
365 | - date_default_timezone_set('UTC'); |
|
366 | - |
|
367 | - $filter_query = ''; |
|
368 | - if (isset($filter['source']) && !empty($filter['source'])) { |
|
369 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
370 | - } |
|
371 | - // Use spotter_output also ? |
|
372 | - if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
|
373 | - $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
374 | - } |
|
375 | - if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
|
376 | - $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
|
377 | - } |
|
378 | - if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
|
379 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
380 | - } |
|
381 | - |
|
382 | - //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
|
383 | - if ($globalDBdriver == 'mysql') { |
|
384 | - /* |
|
357 | + * Gets Minimal Live Spotter data |
|
358 | + * |
|
359 | + * @return Array the spotter information |
|
360 | + * |
|
361 | + */ |
|
362 | + public function getMinLiveSpotterData($begindate,$enddate,$filter = array()) |
|
363 | + { |
|
364 | + global $globalDBdriver, $globalLiveInterval; |
|
365 | + date_default_timezone_set('UTC'); |
|
366 | + |
|
367 | + $filter_query = ''; |
|
368 | + if (isset($filter['source']) && !empty($filter['source'])) { |
|
369 | + $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
370 | + } |
|
371 | + // Use spotter_output also ? |
|
372 | + if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
|
373 | + $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
374 | + } |
|
375 | + if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
|
376 | + $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
|
377 | + } |
|
378 | + if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
|
379 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
380 | + } |
|
381 | + |
|
382 | + //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
|
383 | + if ($globalDBdriver == 'mysql') { |
|
384 | + /* |
|
385 | 385 | $query = 'SELECT a.aircraft_shadow, spotter_archive.ident, spotter_archive.flightaware_id, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk |
386 | 386 | FROM spotter_archive |
387 | 387 | INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE (l.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON spotter_archive.aircraft_icao = a.icao'; |
@@ -400,56 +400,56 @@ discard block |
||
400 | 400 | INNER JOIN (SELECT * FROM aircraft) a on spotter_archive.aircraft_icao = a.icao |
401 | 401 | WHERE spotter_archive.date BETWEEN '."'".$begindate."'".' AND '."'".$begindate."'".' |
402 | 402 | '.$filter_query.' ORDER BY flightaware_id'; |
403 | - } else { |
|
404 | - //$query = 'SELECT spotter_archive.ident, spotter_archive.flightaware_id, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$globalLiveInterval.' SECOND) <= l.date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate '.$filter_query.'INNER JOIN (SELECT * FROM aircraft) a on spotter_archive.aircraft_icao = a.icao'; |
|
405 | - $query = 'SELECT spotter_archive.date,spotter_archive.flightaware_id, spotter_archive.ident, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
403 | + } else { |
|
404 | + //$query = 'SELECT spotter_archive.ident, spotter_archive.flightaware_id, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$globalLiveInterval.' SECOND) <= l.date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate '.$filter_query.'INNER JOIN (SELECT * FROM aircraft) a on spotter_archive.aircraft_icao = a.icao'; |
|
405 | + $query = 'SELECT spotter_archive.date,spotter_archive.flightaware_id, spotter_archive.ident, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
406 | 406 | FROM spotter_archive |
407 | 407 | INNER JOIN (SELECT * FROM aircraft) a on spotter_archive.aircraft_icao = a.icao |
408 | 408 | WHERE spotter_archive.date >= '."'".$begindate."'".' AND spotter_archive.date <= '."'".$enddate."'".' |
409 | 409 | '.$filter_query.' ORDER BY flightaware_id'; |
410 | - } |
|
411 | - //echo $query; |
|
412 | - try { |
|
413 | - $sth = $this->db->prepare($query); |
|
414 | - $sth->execute(); |
|
415 | - } catch(PDOException $e) { |
|
416 | - echo $e->getMessage(); |
|
417 | - die; |
|
418 | - } |
|
419 | - $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
420 | - |
|
421 | - return $spotter_array; |
|
422 | - } |
|
410 | + } |
|
411 | + //echo $query; |
|
412 | + try { |
|
413 | + $sth = $this->db->prepare($query); |
|
414 | + $sth->execute(); |
|
415 | + } catch(PDOException $e) { |
|
416 | + echo $e->getMessage(); |
|
417 | + die; |
|
418 | + } |
|
419 | + $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
420 | + |
|
421 | + return $spotter_array; |
|
422 | + } |
|
423 | 423 | |
424 | 424 | /** |
425 | - * Gets Minimal Live Spotter data |
|
426 | - * |
|
427 | - * @return Array the spotter information |
|
428 | - * |
|
429 | - */ |
|
430 | - public function getMinLiveSpotterDataPlayback($begindate,$enddate,$filter = array()) |
|
431 | - { |
|
432 | - global $globalDBdriver, $globalLiveInterval; |
|
433 | - date_default_timezone_set('UTC'); |
|
434 | - |
|
435 | - $filter_query = ''; |
|
436 | - if (isset($filter['source']) && !empty($filter['source'])) { |
|
437 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
438 | - } |
|
439 | - // Should use spotter_output also ? |
|
440 | - if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
|
441 | - $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
442 | - } |
|
443 | - if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
|
444 | - $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
|
445 | - } |
|
446 | - if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
|
447 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
448 | - } |
|
449 | - |
|
450 | - //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
|
451 | - if ($globalDBdriver == 'mysql') { |
|
452 | - /* |
|
425 | + * Gets Minimal Live Spotter data |
|
426 | + * |
|
427 | + * @return Array the spotter information |
|
428 | + * |
|
429 | + */ |
|
430 | + public function getMinLiveSpotterDataPlayback($begindate,$enddate,$filter = array()) |
|
431 | + { |
|
432 | + global $globalDBdriver, $globalLiveInterval; |
|
433 | + date_default_timezone_set('UTC'); |
|
434 | + |
|
435 | + $filter_query = ''; |
|
436 | + if (isset($filter['source']) && !empty($filter['source'])) { |
|
437 | + $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
438 | + } |
|
439 | + // Should use spotter_output also ? |
|
440 | + if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
|
441 | + $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
442 | + } |
|
443 | + if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
|
444 | + $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
|
445 | + } |
|
446 | + if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
|
447 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
448 | + } |
|
449 | + |
|
450 | + //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
|
451 | + if ($globalDBdriver == 'mysql') { |
|
452 | + /* |
|
453 | 453 | $query = 'SELECT a.aircraft_shadow, spotter_archive.ident, spotter_archive.flightaware_id, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk |
454 | 454 | FROM spotter_archive |
455 | 455 | INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE (l.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON spotter_archive.aircraft_icao = a.icao'; |
@@ -460,95 +460,95 @@ discard block |
||
460 | 460 | WHERE (spotter_archive_output.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') |
461 | 461 | '.$filter_query.' GROUP BY spotter_archive_output.flightaware_id, spotter_archive_output.ident, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao, spotter_archive_output.arrival_airport_icao, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow'; |
462 | 462 | |
463 | - } else { |
|
464 | - //$query = 'SELECT spotter_archive_output.ident, spotter_archive_output.flightaware_id, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow FROM spotter_archive_output INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive_output l WHERE DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$globalLiveInterval.' SECOND) <= l.date GROUP BY l.flightaware_id) s on spotter_archive_output.flightaware_id = s.flightaware_id AND spotter_archive_output.date = s.maxdate '.$filter_query.'INNER JOIN (SELECT * FROM aircraft) a on spotter_archive_output.aircraft_icao = a.icao'; |
|
465 | - /* |
|
463 | + } else { |
|
464 | + //$query = 'SELECT spotter_archive_output.ident, spotter_archive_output.flightaware_id, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow FROM spotter_archive_output INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive_output l WHERE DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$globalLiveInterval.' SECOND) <= l.date GROUP BY l.flightaware_id) s on spotter_archive_output.flightaware_id = s.flightaware_id AND spotter_archive_output.date = s.maxdate '.$filter_query.'INNER JOIN (SELECT * FROM aircraft) a on spotter_archive_output.aircraft_icao = a.icao'; |
|
465 | + /* |
|
466 | 466 | $query = 'SELECT spotter_archive_output.ident, spotter_archive_output.flightaware_id, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow |
467 | 467 | FROM spotter_archive_output |
468 | 468 | INNER JOIN (SELECT * FROM aircraft) a on spotter_archive_output.aircraft_icao = a.icao |
469 | 469 | WHERE spotter_archive_output.date >= '."'".$begindate."'".' AND spotter_archive_output.date <= '."'".$enddate."'".' |
470 | 470 | '.$filter_query.' GROUP BY spotter_archive_output.flightaware_id, spotter_archive_output.ident, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao, spotter_archive_output.arrival_airport_icao, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow'; |
471 | 471 | */ |
472 | - $query = 'SELECT DISTINCT spotter_archive_output.flightaware_id, spotter_archive_output.ident, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow |
|
472 | + $query = 'SELECT DISTINCT spotter_archive_output.flightaware_id, spotter_archive_output.ident, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow |
|
473 | 473 | FROM spotter_archive_output |
474 | 474 | INNER JOIN (SELECT * FROM aircraft) a on spotter_archive_output.aircraft_icao = a.icao |
475 | 475 | WHERE spotter_archive_output.date >= '."'".$begindate."'".' AND spotter_archive_output.date <= '."'".$enddate."'".' |
476 | 476 | '.$filter_query.' LIMIT 200 OFFSET 0'; |
477 | 477 | // .' GROUP BY spotter_output.flightaware_id, spotter_output.ident, spotter_output.aircraft_icao, spotter_output.departure_airport_icao, spotter_output.arrival_airport_icao, spotter_output.latitude, spotter_output.longitude, spotter_output.altitude, spotter_output.heading, spotter_output.ground_speed, spotter_output.squawk, a.aircraft_shadow'; |
478 | 478 | |
479 | - } |
|
480 | - //echo $query; |
|
481 | - try { |
|
482 | - $sth = $this->db->prepare($query); |
|
483 | - $sth->execute(); |
|
484 | - } catch(PDOException $e) { |
|
485 | - echo $e->getMessage(); |
|
486 | - die; |
|
487 | - } |
|
488 | - $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
489 | - |
|
490 | - return $spotter_array; |
|
491 | - } |
|
479 | + } |
|
480 | + //echo $query; |
|
481 | + try { |
|
482 | + $sth = $this->db->prepare($query); |
|
483 | + $sth->execute(); |
|
484 | + } catch(PDOException $e) { |
|
485 | + echo $e->getMessage(); |
|
486 | + die; |
|
487 | + } |
|
488 | + $spotter_array = $sth->fetchAll(PDO::FETCH_ASSOC); |
|
489 | + |
|
490 | + return $spotter_array; |
|
491 | + } |
|
492 | 492 | |
493 | 493 | /** |
494 | - * Gets count Live Spotter data |
|
495 | - * |
|
496 | - * @return Array the spotter information |
|
497 | - * |
|
498 | - */ |
|
499 | - public function getLiveSpotterCount($begindate,$enddate,$filter = array()) |
|
500 | - { |
|
501 | - global $globalDBdriver, $globalLiveInterval; |
|
502 | - date_default_timezone_set('UTC'); |
|
503 | - |
|
504 | - $filter_query = ''; |
|
505 | - if (isset($filter['source']) && !empty($filter['source'])) { |
|
506 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
507 | - } |
|
508 | - if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
|
509 | - $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
510 | - } |
|
511 | - if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
|
512 | - $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
|
513 | - } |
|
514 | - if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
|
515 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
516 | - } |
|
517 | - |
|
518 | - //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
|
519 | - if ($globalDBdriver == 'mysql') { |
|
494 | + * Gets count Live Spotter data |
|
495 | + * |
|
496 | + * @return Array the spotter information |
|
497 | + * |
|
498 | + */ |
|
499 | + public function getLiveSpotterCount($begindate,$enddate,$filter = array()) |
|
500 | + { |
|
501 | + global $globalDBdriver, $globalLiveInterval; |
|
502 | + date_default_timezone_set('UTC'); |
|
503 | + |
|
504 | + $filter_query = ''; |
|
505 | + if (isset($filter['source']) && !empty($filter['source'])) { |
|
506 | + $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
507 | + } |
|
508 | + if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
|
509 | + $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
510 | + } |
|
511 | + if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
|
512 | + $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
|
513 | + } |
|
514 | + if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
|
515 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
516 | + } |
|
517 | + |
|
518 | + //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
|
519 | + if ($globalDBdriver == 'mysql') { |
|
520 | 520 | $query = 'SELECT COUNT(DISTINCT flightaware_id) as nb |
521 | 521 | FROM spotter_archive l |
522 | 522 | WHERE (l.date BETWEEN DATE_SUB('."'".$begindate."'".',INTERVAL '.$globalLiveInterval.' SECOND) AND '."'".$begindate."'".')'.$filter_query; |
523 | - } else { |
|
523 | + } else { |
|
524 | 524 | $query = 'SELECT COUNT(DISTINCT flightaware_id) as nb FROM spotter_archive l WHERE (l.date BETWEEN '."'".$begindate."' - INTERVAL '".$globalLiveInterval." SECONDS' AND "."'".$enddate."'".')'.$filter_query; |
525 | - } |
|
526 | - //echo $query; |
|
527 | - try { |
|
528 | - $sth = $this->db->prepare($query); |
|
529 | - $sth->execute(); |
|
530 | - } catch(PDOException $e) { |
|
531 | - echo $e->getMessage(); |
|
532 | - die; |
|
533 | - } |
|
525 | + } |
|
526 | + //echo $query; |
|
527 | + try { |
|
528 | + $sth = $this->db->prepare($query); |
|
529 | + $sth->execute(); |
|
530 | + } catch(PDOException $e) { |
|
531 | + echo $e->getMessage(); |
|
532 | + die; |
|
533 | + } |
|
534 | 534 | $result = $sth->fetch(PDO::FETCH_ASSOC); |
535 | 535 | $sth->closeCursor(); |
536 | - return $result['nb']; |
|
536 | + return $result['nb']; |
|
537 | 537 | |
538 | - } |
|
538 | + } |
|
539 | 539 | |
540 | 540 | |
541 | 541 | |
542 | 542 | // Spotter_Archive_output |
543 | 543 | |
544 | - /** |
|
545 | - * Gets all the spotter information |
|
546 | - * |
|
547 | - * @return Array the spotter information |
|
548 | - * |
|
549 | - */ |
|
550 | - public function searchSpotterData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '',$pilot_id = '',$pilot_name = '',$altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '',$origLat = '',$origLon = '',$dist = '', $filters=array()) |
|
551 | - { |
|
544 | + /** |
|
545 | + * Gets all the spotter information |
|
546 | + * |
|
547 | + * @return Array the spotter information |
|
548 | + * |
|
549 | + */ |
|
550 | + public function searchSpotterData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '',$pilot_id = '',$pilot_name = '',$altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '',$origLat = '',$origLon = '',$dist = '', $filters=array()) |
|
551 | + { |
|
552 | 552 | global $globalTimezone, $globalDBdriver; |
553 | 553 | require_once(dirname(__FILE__).'/class.Translation.php'); |
554 | 554 | $Translation = new Translation(); |
@@ -562,159 +562,159 @@ discard block |
||
562 | 562 | $filter_query = $this->getFilter($filters); |
563 | 563 | if ($q != "") |
564 | 564 | { |
565 | - if (!is_string($q)) |
|
566 | - { |
|
565 | + if (!is_string($q)) |
|
566 | + { |
|
567 | 567 | return false; |
568 | - } else { |
|
568 | + } else { |
|
569 | 569 | |
570 | 570 | $q_array = explode(" ", $q); |
571 | 571 | |
572 | 572 | foreach ($q_array as $q_item){ |
573 | - $additional_query .= " AND ("; |
|
574 | - $additional_query .= "(spotter_archive_output.spotter_id like '%".$q_item."%') OR "; |
|
575 | - $additional_query .= "(spotter_archive_output.aircraft_icao like '%".$q_item."%') OR "; |
|
576 | - $additional_query .= "(spotter_archive_output.aircraft_name like '%".$q_item."%') OR "; |
|
577 | - $additional_query .= "(spotter_archive_output.aircraft_manufacturer like '%".$q_item."%') OR "; |
|
578 | - $additional_query .= "(spotter_archive_output.airline_icao like '%".$q_item."%') OR "; |
|
579 | - $additional_query .= "(spotter_archive_output.airline_name like '%".$q_item."%') OR "; |
|
580 | - $additional_query .= "(spotter_archive_output.airline_country like '%".$q_item."%') OR "; |
|
581 | - $additional_query .= "(spotter_archive_output.departure_airport_icao like '%".$q_item."%') OR "; |
|
582 | - $additional_query .= "(spotter_archive_output.departure_airport_name like '%".$q_item."%') OR "; |
|
583 | - $additional_query .= "(spotter_archive_output.departure_airport_city like '%".$q_item."%') OR "; |
|
584 | - $additional_query .= "(spotter_archive_output.departure_airport_country like '%".$q_item."%') OR "; |
|
585 | - $additional_query .= "(spotter_archive_output.arrival_airport_icao like '%".$q_item."%') OR "; |
|
586 | - $additional_query .= "(spotter_archive_output.arrival_airport_name like '%".$q_item."%') OR "; |
|
587 | - $additional_query .= "(spotter_archive_output.arrival_airport_city like '%".$q_item."%') OR "; |
|
588 | - $additional_query .= "(spotter_archive_output.arrival_airport_country like '%".$q_item."%') OR "; |
|
589 | - $additional_query .= "(spotter_archive_output.registration like '%".$q_item."%') OR "; |
|
590 | - $additional_query .= "(spotter_archive_output.owner_name like '%".$q_item."%') OR "; |
|
591 | - $additional_query .= "(spotter_archive_output.pilot_id like '%".$q_item."%') OR "; |
|
592 | - $additional_query .= "(spotter_archive_output.pilot_name like '%".$q_item."%') OR "; |
|
593 | - $additional_query .= "(spotter_archive_output.ident like '%".$q_item."%') OR "; |
|
594 | - $translate = $Translation->ident2icao($q_item); |
|
595 | - if ($translate != $q_item) $additional_query .= "(spotter_archive_output.ident like '%".$translate."%') OR "; |
|
596 | - $additional_query .= "(spotter_archive_output.highlight like '%".$q_item."%')"; |
|
597 | - $additional_query .= ")"; |
|
573 | + $additional_query .= " AND ("; |
|
574 | + $additional_query .= "(spotter_archive_output.spotter_id like '%".$q_item."%') OR "; |
|
575 | + $additional_query .= "(spotter_archive_output.aircraft_icao like '%".$q_item."%') OR "; |
|
576 | + $additional_query .= "(spotter_archive_output.aircraft_name like '%".$q_item."%') OR "; |
|
577 | + $additional_query .= "(spotter_archive_output.aircraft_manufacturer like '%".$q_item."%') OR "; |
|
578 | + $additional_query .= "(spotter_archive_output.airline_icao like '%".$q_item."%') OR "; |
|
579 | + $additional_query .= "(spotter_archive_output.airline_name like '%".$q_item."%') OR "; |
|
580 | + $additional_query .= "(spotter_archive_output.airline_country like '%".$q_item."%') OR "; |
|
581 | + $additional_query .= "(spotter_archive_output.departure_airport_icao like '%".$q_item."%') OR "; |
|
582 | + $additional_query .= "(spotter_archive_output.departure_airport_name like '%".$q_item."%') OR "; |
|
583 | + $additional_query .= "(spotter_archive_output.departure_airport_city like '%".$q_item."%') OR "; |
|
584 | + $additional_query .= "(spotter_archive_output.departure_airport_country like '%".$q_item."%') OR "; |
|
585 | + $additional_query .= "(spotter_archive_output.arrival_airport_icao like '%".$q_item."%') OR "; |
|
586 | + $additional_query .= "(spotter_archive_output.arrival_airport_name like '%".$q_item."%') OR "; |
|
587 | + $additional_query .= "(spotter_archive_output.arrival_airport_city like '%".$q_item."%') OR "; |
|
588 | + $additional_query .= "(spotter_archive_output.arrival_airport_country like '%".$q_item."%') OR "; |
|
589 | + $additional_query .= "(spotter_archive_output.registration like '%".$q_item."%') OR "; |
|
590 | + $additional_query .= "(spotter_archive_output.owner_name like '%".$q_item."%') OR "; |
|
591 | + $additional_query .= "(spotter_archive_output.pilot_id like '%".$q_item."%') OR "; |
|
592 | + $additional_query .= "(spotter_archive_output.pilot_name like '%".$q_item."%') OR "; |
|
593 | + $additional_query .= "(spotter_archive_output.ident like '%".$q_item."%') OR "; |
|
594 | + $translate = $Translation->ident2icao($q_item); |
|
595 | + if ($translate != $q_item) $additional_query .= "(spotter_archive_output.ident like '%".$translate."%') OR "; |
|
596 | + $additional_query .= "(spotter_archive_output.highlight like '%".$q_item."%')"; |
|
597 | + $additional_query .= ")"; |
|
598 | + } |
|
598 | 599 | } |
599 | - } |
|
600 | 600 | } |
601 | 601 | |
602 | 602 | if ($registration != "") |
603 | 603 | { |
604 | - $registration = filter_var($registration,FILTER_SANITIZE_STRING); |
|
605 | - if (!is_string($registration)) |
|
606 | - { |
|
604 | + $registration = filter_var($registration,FILTER_SANITIZE_STRING); |
|
605 | + if (!is_string($registration)) |
|
606 | + { |
|
607 | 607 | return false; |
608 | - } else { |
|
608 | + } else { |
|
609 | 609 | $additional_query .= " AND (spotter_archive_output.registration = '".$registration."')"; |
610 | - } |
|
610 | + } |
|
611 | 611 | } |
612 | 612 | |
613 | 613 | if ($aircraft_icao != "") |
614 | 614 | { |
615 | - $aircraft_icao = filter_var($aircraft_icao,FILTER_SANITIZE_STRING); |
|
616 | - if (!is_string($aircraft_icao)) |
|
617 | - { |
|
615 | + $aircraft_icao = filter_var($aircraft_icao,FILTER_SANITIZE_STRING); |
|
616 | + if (!is_string($aircraft_icao)) |
|
617 | + { |
|
618 | 618 | return false; |
619 | - } else { |
|
619 | + } else { |
|
620 | 620 | $additional_query .= " AND (spotter_archive_output.aircraft_icao = '".$aircraft_icao."')"; |
621 | - } |
|
621 | + } |
|
622 | 622 | } |
623 | 623 | |
624 | 624 | if ($aircraft_manufacturer != "") |
625 | 625 | { |
626 | - $aircraft_manufacturer = filter_var($aircraft_manufacturer,FILTER_SANITIZE_STRING); |
|
627 | - if (!is_string($aircraft_manufacturer)) |
|
628 | - { |
|
626 | + $aircraft_manufacturer = filter_var($aircraft_manufacturer,FILTER_SANITIZE_STRING); |
|
627 | + if (!is_string($aircraft_manufacturer)) |
|
628 | + { |
|
629 | 629 | return false; |
630 | - } else { |
|
630 | + } else { |
|
631 | 631 | $additional_query .= " AND (spotter_archive_output.aircraft_manufacturer = '".$aircraft_manufacturer."')"; |
632 | - } |
|
632 | + } |
|
633 | 633 | } |
634 | 634 | |
635 | 635 | if ($highlights == "true") |
636 | 636 | { |
637 | - if (!is_string($highlights)) |
|
638 | - { |
|
637 | + if (!is_string($highlights)) |
|
638 | + { |
|
639 | 639 | return false; |
640 | - } else { |
|
640 | + } else { |
|
641 | 641 | $additional_query .= " AND (spotter_archive_output.highlight <> '')"; |
642 | - } |
|
642 | + } |
|
643 | 643 | } |
644 | 644 | |
645 | 645 | if ($airline_icao != "") |
646 | 646 | { |
647 | - $airline_icao = filter_var($airline_icao,FILTER_SANITIZE_STRING); |
|
648 | - if (!is_string($airline_icao)) |
|
649 | - { |
|
647 | + $airline_icao = filter_var($airline_icao,FILTER_SANITIZE_STRING); |
|
648 | + if (!is_string($airline_icao)) |
|
649 | + { |
|
650 | 650 | return false; |
651 | - } else { |
|
651 | + } else { |
|
652 | 652 | $additional_query .= " AND (spotter_archive_output.airline_icao = '".$airline_icao."')"; |
653 | - } |
|
653 | + } |
|
654 | 654 | } |
655 | 655 | |
656 | 656 | if ($airline_country != "") |
657 | 657 | { |
658 | - $airline_country = filter_var($airline_country,FILTER_SANITIZE_STRING); |
|
659 | - if (!is_string($airline_country)) |
|
660 | - { |
|
658 | + $airline_country = filter_var($airline_country,FILTER_SANITIZE_STRING); |
|
659 | + if (!is_string($airline_country)) |
|
660 | + { |
|
661 | 661 | return false; |
662 | - } else { |
|
662 | + } else { |
|
663 | 663 | $additional_query .= " AND (spotter_archive_output.airline_country = '".$airline_country."')"; |
664 | - } |
|
664 | + } |
|
665 | 665 | } |
666 | 666 | |
667 | 667 | if ($airline_type != "") |
668 | 668 | { |
669 | - $airline_type = filter_var($airline_type,FILTER_SANITIZE_STRING); |
|
670 | - if (!is_string($airline_type)) |
|
671 | - { |
|
669 | + $airline_type = filter_var($airline_type,FILTER_SANITIZE_STRING); |
|
670 | + if (!is_string($airline_type)) |
|
671 | + { |
|
672 | 672 | return false; |
673 | - } else { |
|
673 | + } else { |
|
674 | 674 | if ($airline_type == "passenger") |
675 | 675 | { |
676 | - $additional_query .= " AND (spotter_archive_output.airline_type = 'passenger')"; |
|
676 | + $additional_query .= " AND (spotter_archive_output.airline_type = 'passenger')"; |
|
677 | 677 | } |
678 | 678 | if ($airline_type == "cargo") |
679 | 679 | { |
680 | - $additional_query .= " AND (spotter_archive_output.airline_type = 'cargo')"; |
|
680 | + $additional_query .= " AND (spotter_archive_output.airline_type = 'cargo')"; |
|
681 | 681 | } |
682 | 682 | if ($airline_type == "military") |
683 | 683 | { |
684 | - $additional_query .= " AND (spotter_archive_output.airline_type = 'military')"; |
|
684 | + $additional_query .= " AND (spotter_archive_output.airline_type = 'military')"; |
|
685 | + } |
|
685 | 686 | } |
686 | - } |
|
687 | 687 | } |
688 | 688 | |
689 | 689 | if ($airport != "") |
690 | 690 | { |
691 | - $airport = filter_var($airport,FILTER_SANITIZE_STRING); |
|
692 | - if (!is_string($airport)) |
|
693 | - { |
|
691 | + $airport = filter_var($airport,FILTER_SANITIZE_STRING); |
|
692 | + if (!is_string($airport)) |
|
693 | + { |
|
694 | 694 | return false; |
695 | - } else { |
|
695 | + } else { |
|
696 | 696 | $additional_query .= " AND ((spotter_archive_output.departure_airport_icao = '".$airport."') OR (spotter_archive_output.arrival_airport_icao = '".$airport."'))"; |
697 | - } |
|
697 | + } |
|
698 | 698 | } |
699 | 699 | |
700 | 700 | if ($airport_country != "") |
701 | 701 | { |
702 | - $airport_country = filter_var($airport_country,FILTER_SANITIZE_STRING); |
|
703 | - if (!is_string($airport_country)) |
|
704 | - { |
|
702 | + $airport_country = filter_var($airport_country,FILTER_SANITIZE_STRING); |
|
703 | + if (!is_string($airport_country)) |
|
704 | + { |
|
705 | 705 | return false; |
706 | - } else { |
|
706 | + } else { |
|
707 | 707 | $additional_query .= " AND ((spotter_archive_output.departure_airport_country = '".$airport_country."') OR (spotter_archive_output.arrival_airport_country = '".$airport_country."'))"; |
708 | - } |
|
708 | + } |
|
709 | 709 | } |
710 | 710 | |
711 | 711 | if ($callsign != "") |
712 | 712 | { |
713 | - $callsign = filter_var($callsign,FILTER_SANITIZE_STRING); |
|
714 | - if (!is_string($callsign)) |
|
715 | - { |
|
713 | + $callsign = filter_var($callsign,FILTER_SANITIZE_STRING); |
|
714 | + if (!is_string($callsign)) |
|
715 | + { |
|
716 | 716 | return false; |
717 | - } else { |
|
717 | + } else { |
|
718 | 718 | $translate = $Translation->ident2icao($callsign); |
719 | 719 | if ($translate != $callsign) { |
720 | 720 | $additional_query .= " AND (spotter_archive_output.ident = :callsign OR spotter_archive_output.ident = :translate)"; |
@@ -722,99 +722,99 @@ discard block |
||
722 | 722 | } else { |
723 | 723 | $additional_query .= " AND (spotter_archive_output.ident = '".$callsign."')"; |
724 | 724 | } |
725 | - } |
|
725 | + } |
|
726 | 726 | } |
727 | 727 | |
728 | 728 | if ($owner != "") |
729 | 729 | { |
730 | - $owner = filter_var($owner,FILTER_SANITIZE_STRING); |
|
731 | - if (!is_string($owner)) |
|
732 | - { |
|
730 | + $owner = filter_var($owner,FILTER_SANITIZE_STRING); |
|
731 | + if (!is_string($owner)) |
|
732 | + { |
|
733 | 733 | return false; |
734 | - } else { |
|
734 | + } else { |
|
735 | 735 | $additional_query .= " AND (spotter_archive_output.owner_name = '".$owner."')"; |
736 | - } |
|
736 | + } |
|
737 | 737 | } |
738 | 738 | |
739 | 739 | if ($pilot_name != "") |
740 | 740 | { |
741 | - $pilot_name = filter_var($pilot_name,FILTER_SANITIZE_STRING); |
|
742 | - if (!is_string($pilot_name)) |
|
743 | - { |
|
741 | + $pilot_name = filter_var($pilot_name,FILTER_SANITIZE_STRING); |
|
742 | + if (!is_string($pilot_name)) |
|
743 | + { |
|
744 | 744 | return false; |
745 | - } else { |
|
745 | + } else { |
|
746 | 746 | $additional_query .= " AND (spotter_archive_output.pilot_name = '".$pilot_name."')"; |
747 | - } |
|
747 | + } |
|
748 | 748 | } |
749 | 749 | |
750 | 750 | if ($pilot_id != "") |
751 | 751 | { |
752 | - $pilot_id = filter_var($pilot_id,FILTER_SANITIZE_NUMBER_INT); |
|
753 | - if (!is_string($pilot_id)) |
|
754 | - { |
|
752 | + $pilot_id = filter_var($pilot_id,FILTER_SANITIZE_NUMBER_INT); |
|
753 | + if (!is_string($pilot_id)) |
|
754 | + { |
|
755 | 755 | return false; |
756 | - } else { |
|
756 | + } else { |
|
757 | 757 | $additional_query .= " AND (spotter_archive_output.pilot_id = '".$pilot_id."')"; |
758 | - } |
|
758 | + } |
|
759 | 759 | } |
760 | 760 | |
761 | 761 | if ($departure_airport_route != "") |
762 | 762 | { |
763 | - $departure_airport_route = filter_var($departure_airport_route,FILTER_SANITIZE_STRING); |
|
764 | - if (!is_string($departure_airport_route)) |
|
765 | - { |
|
763 | + $departure_airport_route = filter_var($departure_airport_route,FILTER_SANITIZE_STRING); |
|
764 | + if (!is_string($departure_airport_route)) |
|
765 | + { |
|
766 | 766 | return false; |
767 | - } else { |
|
767 | + } else { |
|
768 | 768 | $additional_query .= " AND (spotter_archive_output.departure_airport_icao = '".$departure_airport_route."')"; |
769 | - } |
|
769 | + } |
|
770 | 770 | } |
771 | 771 | |
772 | 772 | if ($arrival_airport_route != "") |
773 | 773 | { |
774 | - $arrival_airport_route = filter_var($arrival_airport_route,FILTER_SANITIZE_STRING); |
|
775 | - if (!is_string($arrival_airport_route)) |
|
776 | - { |
|
774 | + $arrival_airport_route = filter_var($arrival_airport_route,FILTER_SANITIZE_STRING); |
|
775 | + if (!is_string($arrival_airport_route)) |
|
776 | + { |
|
777 | 777 | return false; |
778 | - } else { |
|
778 | + } else { |
|
779 | 779 | $additional_query .= " AND (spotter_archive_output.arrival_airport_icao = '".$arrival_airport_route."')"; |
780 | - } |
|
780 | + } |
|
781 | 781 | } |
782 | 782 | |
783 | 783 | if ($altitude != "") |
784 | 784 | { |
785 | - $altitude_array = explode(",", $altitude); |
|
785 | + $altitude_array = explode(",", $altitude); |
|
786 | 786 | |
787 | - $altitude_array[0] = filter_var($altitude_array[0],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
788 | - $altitude_array[1] = filter_var($altitude_array[1],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
787 | + $altitude_array[0] = filter_var($altitude_array[0],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
788 | + $altitude_array[1] = filter_var($altitude_array[1],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
789 | 789 | |
790 | 790 | |
791 | - if ($altitude_array[1] != "") |
|
792 | - { |
|
791 | + if ($altitude_array[1] != "") |
|
792 | + { |
|
793 | 793 | $altitude_array[0] = substr($altitude_array[0], 0, -2); |
794 | 794 | $altitude_array[1] = substr($altitude_array[1], 0, -2); |
795 | 795 | $additional_query .= " AND altitude BETWEEN '".$altitude_array[0]."' AND '".$altitude_array[1]."' "; |
796 | - } else { |
|
796 | + } else { |
|
797 | 797 | $altitude_array[0] = substr($altitude_array[0], 0, -2); |
798 | 798 | $additional_query .= " AND altitude <= '".$altitude_array[0]."' "; |
799 | - } |
|
799 | + } |
|
800 | 800 | } |
801 | 801 | |
802 | 802 | if ($date_posted != "") |
803 | 803 | { |
804 | - $date_array = explode(",", $date_posted); |
|
804 | + $date_array = explode(",", $date_posted); |
|
805 | 805 | |
806 | - $date_array[0] = filter_var($date_array[0],FILTER_SANITIZE_STRING); |
|
807 | - $date_array[1] = filter_var($date_array[1],FILTER_SANITIZE_STRING); |
|
806 | + $date_array[0] = filter_var($date_array[0],FILTER_SANITIZE_STRING); |
|
807 | + $date_array[1] = filter_var($date_array[1],FILTER_SANITIZE_STRING); |
|
808 | 808 | |
809 | - if ($globalTimezone != '') { |
|
809 | + if ($globalTimezone != '') { |
|
810 | 810 | date_default_timezone_set($globalTimezone); |
811 | 811 | $datetime = new DateTime(); |
812 | 812 | $offset = $datetime->format('P'); |
813 | - } else $offset = '+00:00'; |
|
813 | + } else $offset = '+00:00'; |
|
814 | 814 | |
815 | 815 | |
816 | - if ($date_array[1] != "") |
|
817 | - { |
|
816 | + if ($date_array[1] != "") |
|
817 | + { |
|
818 | 818 | $date_array[0] = date("Y-m-d H:i:s", strtotime($date_array[0])); |
819 | 819 | $date_array[1] = date("Y-m-d H:i:s", strtotime($date_array[1])); |
820 | 820 | if ($globalDBdriver == 'mysql') { |
@@ -822,28 +822,28 @@ discard block |
||
822 | 822 | } else { |
823 | 823 | $additional_query .= " AND spotter_archive_output.date::timestamp AT TIME ZONE INTERVAL ".$offset." >= CAST('".$date_array[0]."' AS TIMESTAMP) AND spotter_archive_output.date::timestamp AT TIME ZONE INTERVAL ".$offset." <= CAST('".$date_array[1]."' AS TIMESTAMP) "; |
824 | 824 | } |
825 | - } else { |
|
825 | + } else { |
|
826 | 826 | $date_array[0] = date("Y-m-d H:i:s", strtotime($date_array[0])); |
827 | - if ($globalDBdriver == 'mysql') { |
|
827 | + if ($globalDBdriver == 'mysql') { |
|
828 | 828 | $additional_query .= " AND TIMESTAMP(CONVERT_TZ(spotter_archive_output.date,'+00:00', '".$offset."')) >= '".$date_array[0]."' "; |
829 | 829 | } else { |
830 | 830 | $additional_query .= " AND spotter_archive_output.date::timestamp AT TIME ZONE INTERVAL ".$offset." >= CAST('".$date_array[0]."' AS TIMESTAMP) "; |
831 | 831 | } |
832 | - } |
|
832 | + } |
|
833 | 833 | } |
834 | 834 | |
835 | 835 | if ($limit != "") |
836 | 836 | { |
837 | - $limit_array = explode(",", $limit); |
|
837 | + $limit_array = explode(",", $limit); |
|
838 | 838 | |
839 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
840 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
839 | + $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
840 | + $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
841 | 841 | |
842 | - if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
|
843 | - { |
|
842 | + if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
|
843 | + { |
|
844 | 844 | //$limit_query = " LIMIT ".$limit_array[0].",".$limit_array[1]; |
845 | 845 | $limit_query = " LIMIT ".$limit_array[1]." OFFSET ".$limit_array[0]; |
846 | - } |
|
846 | + } |
|
847 | 847 | } |
848 | 848 | |
849 | 849 | |
@@ -874,33 +874,33 @@ discard block |
||
874 | 874 | $spotter_array = $Spotter->getDataFromDB($query, $query_values,$limit_query); |
875 | 875 | |
876 | 876 | return $spotter_array; |
877 | - } |
|
877 | + } |
|
878 | 878 | |
879 | - public function deleteSpotterArchiveData() |
|
880 | - { |
|
879 | + public function deleteSpotterArchiveData() |
|
880 | + { |
|
881 | 881 | global $globalArchiveKeepMonths, $globalDBdriver; |
882 | - date_default_timezone_set('UTC'); |
|
883 | - if ($globalDBdriver == 'mysql') { |
|
882 | + date_default_timezone_set('UTC'); |
|
883 | + if ($globalDBdriver == 'mysql') { |
|
884 | 884 | $query = 'DELETE FROM spotter_archive_output WHERE spotter_archive_output.date < DATE_SUB(UTC_TIMESTAMP(), INTERVAL '.$globalArchiveKeepMonths.' MONTH)'; |
885 | 885 | } else { |
886 | 886 | $query = "DELETE FROM spotter_archive_output WHERE spotter_archive_output.date < CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '".$globalArchiveKeepMonths." MONTH'"; |
887 | 887 | } |
888 | - try { |
|
889 | - $sth = $this->db->prepare($query); |
|
890 | - $sth->execute(); |
|
891 | - } catch(PDOException $e) { |
|
892 | - return "error"; |
|
893 | - } |
|
888 | + try { |
|
889 | + $sth = $this->db->prepare($query); |
|
890 | + $sth->execute(); |
|
891 | + } catch(PDOException $e) { |
|
892 | + return "error"; |
|
893 | + } |
|
894 | 894 | } |
895 | 895 | |
896 | - /** |
|
897 | - * Gets all the spotter information based on the callsign |
|
898 | - * |
|
899 | - * @return Array the spotter information |
|
900 | - * |
|
901 | - */ |
|
902 | - public function getSpotterDataByIdent($ident = '', $limit = '', $sort = '') |
|
903 | - { |
|
896 | + /** |
|
897 | + * Gets all the spotter information based on the callsign |
|
898 | + * |
|
899 | + * @return Array the spotter information |
|
900 | + * |
|
901 | + */ |
|
902 | + public function getSpotterDataByIdent($ident = '', $limit = '', $sort = '') |
|
903 | + { |
|
904 | 904 | $global_query = "SELECT spotter_archive_output.* FROM spotter_archive_output"; |
905 | 905 | |
906 | 906 | date_default_timezone_set('UTC'); |
@@ -912,35 +912,35 @@ discard block |
||
912 | 912 | |
913 | 913 | if ($ident != "") |
914 | 914 | { |
915 | - if (!is_string($ident)) |
|
916 | - { |
|
915 | + if (!is_string($ident)) |
|
916 | + { |
|
917 | 917 | return false; |
918 | - } else { |
|
918 | + } else { |
|
919 | 919 | $additional_query = " AND (spotter_archive_output.ident = :ident)"; |
920 | 920 | $query_values = array(':ident' => $ident); |
921 | - } |
|
921 | + } |
|
922 | 922 | } |
923 | 923 | |
924 | 924 | if ($limit != "") |
925 | 925 | { |
926 | - $limit_array = explode(",", $limit); |
|
926 | + $limit_array = explode(",", $limit); |
|
927 | 927 | |
928 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
929 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
928 | + $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
929 | + $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
930 | 930 | |
931 | - if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
|
932 | - { |
|
931 | + if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
|
932 | + { |
|
933 | 933 | //$limit_query = " LIMIT ".$limit_array[0].",".$limit_array[1]; |
934 | 934 | $limit_query = " LIMIT ".$limit_array[1]." OFFSET ".$limit_array[0]; |
935 | - } |
|
935 | + } |
|
936 | 936 | } |
937 | 937 | |
938 | 938 | if ($sort != "") |
939 | 939 | { |
940 | - $search_orderby_array = $Spotter->getOrderBy(); |
|
941 | - $orderby_query = $search_orderby_array[$sort]['sql']; |
|
940 | + $search_orderby_array = $Spotter->getOrderBy(); |
|
941 | + $orderby_query = $search_orderby_array[$sort]['sql']; |
|
942 | 942 | } else { |
943 | - $orderby_query = " ORDER BY spotter_archive_output.date DESC"; |
|
943 | + $orderby_query = " ORDER BY spotter_archive_output.date DESC"; |
|
944 | 944 | } |
945 | 945 | |
946 | 946 | $query = $global_query." WHERE spotter_archive_output.ident <> '' ".$additional_query." ".$orderby_query; |
@@ -948,16 +948,16 @@ discard block |
||
948 | 948 | $spotter_array = $Spotter->getDataFromDB($query, $query_values, $limit_query); |
949 | 949 | |
950 | 950 | return $spotter_array; |
951 | - } |
|
952 | - |
|
953 | - /** |
|
954 | - * Gets all number of flight over countries |
|
955 | - * |
|
956 | - * @return Array the airline country list |
|
957 | - * |
|
958 | - */ |
|
959 | - public function countAllFlightOverCountries($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
960 | - { |
|
951 | + } |
|
952 | + |
|
953 | + /** |
|
954 | + * Gets all number of flight over countries |
|
955 | + * |
|
956 | + * @return Array the airline country list |
|
957 | + * |
|
958 | + */ |
|
959 | + public function countAllFlightOverCountries($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
960 | + { |
|
961 | 961 | global $globalDBdriver; |
962 | 962 | /* |
963 | 963 | $query = "SELECT c.name, c.iso3, c.iso2, count(c.name) as nb |
@@ -967,14 +967,14 @@ discard block |
||
967 | 967 | $query = "SELECT c.name, c.iso3, c.iso2, count(c.name) as nb |
968 | 968 | FROM countries c, spotter_archive s |
969 | 969 | WHERE c.iso2 = s.over_country "; |
970 | - if ($olderthanmonths > 0) { |
|
971 | - if ($globalDBdriver == 'mysql') { |
|
970 | + if ($olderthanmonths > 0) { |
|
971 | + if ($globalDBdriver == 'mysql') { |
|
972 | 972 | $query .= 'AND date < DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$olderthanmonths.' MONTH) '; |
973 | 973 | } else { |
974 | 974 | $query .= "AND date < CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '".$olderthanmonths." MONTHS'"; |
975 | 975 | } |
976 | 976 | } |
977 | - if ($sincedate != '') $query .= "AND date > '".$sincedate."' "; |
|
977 | + if ($sincedate != '') $query .= "AND date > '".$sincedate."' "; |
|
978 | 978 | $query .= "GROUP BY c.name, c.iso3, c.iso2 ORDER BY nb DESC"; |
979 | 979 | if ($limit) $query .= " LIMIT 0,10"; |
980 | 980 | |
@@ -987,23 +987,23 @@ discard block |
||
987 | 987 | |
988 | 988 | while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
989 | 989 | { |
990 | - $temp_array['flight_count'] = $row['nb']; |
|
991 | - $temp_array['flight_country'] = $row['name']; |
|
992 | - $temp_array['flight_country_iso3'] = $row['iso3']; |
|
993 | - $temp_array['flight_country_iso2'] = $row['iso2']; |
|
994 | - $flight_array[] = $temp_array; |
|
990 | + $temp_array['flight_count'] = $row['nb']; |
|
991 | + $temp_array['flight_country'] = $row['name']; |
|
992 | + $temp_array['flight_country_iso3'] = $row['iso3']; |
|
993 | + $temp_array['flight_country_iso2'] = $row['iso2']; |
|
994 | + $flight_array[] = $temp_array; |
|
995 | 995 | } |
996 | 996 | return $flight_array; |
997 | - } |
|
998 | - |
|
999 | - /** |
|
1000 | - * Gets last spotter information based on a particular callsign |
|
1001 | - * |
|
1002 | - * @return Array the spotter information |
|
1003 | - * |
|
1004 | - */ |
|
1005 | - public function getDateArchiveSpotterDataById($id,$date) |
|
1006 | - { |
|
997 | + } |
|
998 | + |
|
999 | + /** |
|
1000 | + * Gets last spotter information based on a particular callsign |
|
1001 | + * |
|
1002 | + * @return Array the spotter information |
|
1003 | + * |
|
1004 | + */ |
|
1005 | + public function getDateArchiveSpotterDataById($id,$date) |
|
1006 | + { |
|
1007 | 1007 | $Spotter = new Spotter($this->db); |
1008 | 1008 | date_default_timezone_set('UTC'); |
1009 | 1009 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
@@ -1011,16 +1011,16 @@ discard block |
||
1011 | 1011 | $date = date('c',$date); |
1012 | 1012 | $spotter_array = $Spotter->getDataFromDB($query,array(':id' => $id,':date' => $date)); |
1013 | 1013 | return $spotter_array; |
1014 | - } |
|
1015 | - |
|
1016 | - /** |
|
1017 | - * Gets all the spotter information based on a particular callsign |
|
1018 | - * |
|
1019 | - * @return Array the spotter information |
|
1020 | - * |
|
1021 | - */ |
|
1022 | - public function getDateArchiveSpotterDataByIdent($ident,$date) |
|
1023 | - { |
|
1014 | + } |
|
1015 | + |
|
1016 | + /** |
|
1017 | + * Gets all the spotter information based on a particular callsign |
|
1018 | + * |
|
1019 | + * @return Array the spotter information |
|
1020 | + * |
|
1021 | + */ |
|
1022 | + public function getDateArchiveSpotterDataByIdent($ident,$date) |
|
1023 | + { |
|
1024 | 1024 | $Spotter = new Spotter($this->db); |
1025 | 1025 | date_default_timezone_set('UTC'); |
1026 | 1026 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
@@ -1028,16 +1028,16 @@ discard block |
||
1028 | 1028 | $date = date('c',$date); |
1029 | 1029 | $spotter_array = $Spotter->getDataFromDB($query,array(':ident' => $ident,':date' => $date)); |
1030 | 1030 | return $spotter_array; |
1031 | - } |
|
1032 | - |
|
1033 | - /** |
|
1034 | - * Gets all the spotter information based on the airport |
|
1035 | - * |
|
1036 | - * @return Array the spotter information |
|
1037 | - * |
|
1038 | - */ |
|
1039 | - public function getSpotterDataByAirport($airport = '', $limit = '', $sort = '',$filters = array()) |
|
1040 | - { |
|
1031 | + } |
|
1032 | + |
|
1033 | + /** |
|
1034 | + * Gets all the spotter information based on the airport |
|
1035 | + * |
|
1036 | + * @return Array the spotter information |
|
1037 | + * |
|
1038 | + */ |
|
1039 | + public function getSpotterDataByAirport($airport = '', $limit = '', $sort = '',$filters = array()) |
|
1040 | + { |
|
1041 | 1041 | global $global_query; |
1042 | 1042 | $Spotter = new Spotter(); |
1043 | 1043 | date_default_timezone_set('UTC'); |
@@ -1048,35 +1048,35 @@ discard block |
||
1048 | 1048 | |
1049 | 1049 | if ($airport != "") |
1050 | 1050 | { |
1051 | - if (!is_string($airport)) |
|
1052 | - { |
|
1051 | + if (!is_string($airport)) |
|
1052 | + { |
|
1053 | 1053 | return false; |
1054 | - } else { |
|
1054 | + } else { |
|
1055 | 1055 | $additional_query .= " AND ((spotter_archive_output.departure_airport_icao = :airport) OR (spotter_archive_output.arrival_airport_icao = :airport))"; |
1056 | 1056 | $query_values = array(':airport' => $airport); |
1057 | - } |
|
1057 | + } |
|
1058 | 1058 | } |
1059 | 1059 | |
1060 | 1060 | if ($limit != "") |
1061 | 1061 | { |
1062 | - $limit_array = explode(",", $limit); |
|
1062 | + $limit_array = explode(",", $limit); |
|
1063 | 1063 | |
1064 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1065 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1064 | + $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1065 | + $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1066 | 1066 | |
1067 | - if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
|
1068 | - { |
|
1067 | + if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
|
1068 | + { |
|
1069 | 1069 | //$limit_query = " LIMIT ".$limit_array[0].",".$limit_array[1]; |
1070 | 1070 | $limit_query = " LIMIT ".$limit_array[1]." OFFSET ".$limit_array[0]; |
1071 | - } |
|
1071 | + } |
|
1072 | 1072 | } |
1073 | 1073 | |
1074 | 1074 | if ($sort != "") |
1075 | 1075 | { |
1076 | - $search_orderby_array = $Spotter->getOrderBy(); |
|
1077 | - $orderby_query = $search_orderby_array[$sort]['sql']; |
|
1076 | + $search_orderby_array = $Spotter->getOrderBy(); |
|
1077 | + $orderby_query = $search_orderby_array[$sort]['sql']; |
|
1078 | 1078 | } else { |
1079 | - $orderby_query = " ORDER BY spotter_archive_output.date DESC"; |
|
1079 | + $orderby_query = " ORDER BY spotter_archive_output.date DESC"; |
|
1080 | 1080 | } |
1081 | 1081 | |
1082 | 1082 | $query = $global_query.$filter_query." spotter_archive_output.ident <> '' ".$additional_query." AND ((spotter_archive_output.departure_airport_icao <> 'NA') AND (spotter_archive_output.arrival_airport_icao <> 'NA')) ".$orderby_query; |
@@ -1084,6 +1084,6 @@ discard block |
||
1084 | 1084 | $spotter_array = $Spotter->getDataFromDB($query, $query_values, $limit_query); |
1085 | 1085 | |
1086 | 1086 | return $spotter_array; |
1087 | - } |
|
1087 | + } |
|
1088 | 1088 | } |
1089 | 1089 | ?> |
1090 | 1090 | \ No newline at end of file |
@@ -13,45 +13,45 @@ discard block |
||
13 | 13 | * @param Array $filter the filter |
14 | 14 | * @return Array the SQL part |
15 | 15 | */ |
16 | - public function getFilter($filter = array(),$where = false,$and = false) { |
|
16 | + public function getFilter($filter = array(), $where = false, $and = false) { |
|
17 | 17 | global $globalFilter, $globalStatsFilters, $globalFilterName; |
18 | 18 | $filters = array(); |
19 | 19 | if (is_array($globalStatsFilters) && isset($globalStatsFilters[$globalFilterName])) { |
20 | 20 | if (isset($globalStatsFilters[$globalFilterName][0]['source'])) { |
21 | 21 | $filters = $globalStatsFilters[$globalFilterName]; |
22 | 22 | } else { |
23 | - $filter = array_merge($filter,$globalStatsFilters[$globalFilterName]); |
|
23 | + $filter = array_merge($filter, $globalStatsFilters[$globalFilterName]); |
|
24 | 24 | } |
25 | 25 | } |
26 | - if (is_array($globalFilter)) $filter = array_merge($filter,$globalFilter); |
|
26 | + if (is_array($globalFilter)) $filter = array_merge($filter, $globalFilter); |
|
27 | 27 | $filter_query_join = ''; |
28 | 28 | $filter_query_where = ''; |
29 | - foreach($filters as $flt) { |
|
29 | + foreach ($filters as $flt) { |
|
30 | 30 | if (isset($flt['airlines']) && !empty($flt['airlines'])) { |
31 | 31 | if ($flt['airlines'][0] != '') { |
32 | 32 | if (isset($flt['source'])) { |
33 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$flt['airlines'])."') AND spotter_archive_output.format_source IN ('".implode("','",$flt['source'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
33 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','", $flt['airlines'])."') AND spotter_archive_output.format_source IN ('".implode("','", $flt['source'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
34 | 34 | } else { |
35 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$flt['airlines'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
35 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','", $flt['airlines'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
36 | 36 | } |
37 | 37 | } |
38 | 38 | } |
39 | 39 | if (isset($flt['pilots_id']) && !empty($flt['pilots_id'])) { |
40 | 40 | if (isset($flt['source'])) { |
41 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$flt['pilots_id'])."') AND spotter_archive_output.format_source IN ('".implode("','",$flt['source'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
41 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','", $flt['pilots_id'])."') AND spotter_archive_output.format_source IN ('".implode("','", $flt['source'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
42 | 42 | } else { |
43 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$flt['pilots_id'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
43 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','", $flt['pilots_id'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
44 | 44 | } |
45 | 45 | } |
46 | 46 | if ((isset($flt['airlines']) && empty($flt['airlines']) && isset($flt['pilots_id']) && empty($flt['pilots_id'])) || (!isset($flt['airlines']) && !isset($flt['pilots_id']))) { |
47 | 47 | if (isset($flt['source'])) { |
48 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.format_source IN ('".implode("','",$flt['source'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
48 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.format_source IN ('".implode("','", $flt['source'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
49 | 49 | } |
50 | 50 | } |
51 | 51 | } |
52 | 52 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
53 | 53 | if ($filter['airlines'][0] != '') { |
54 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
54 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
55 | 55 | } |
56 | 56 | } |
57 | 57 | |
@@ -59,19 +59,19 @@ discard block |
||
59 | 59 | $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive_output.flightaware_id "; |
60 | 60 | } |
61 | 61 | if (isset($filter['pilots_id']) && !empty($filter['pilots_id'])) { |
62 | - $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','",$filter['pilots_id'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
62 | + $filter_query_join .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.pilot_id IN ('".implode("','", $filter['pilots_id'])."')) so ON so.flightaware_id = spotter_archive_output.flightaware_id"; |
|
63 | 63 | } |
64 | 64 | if (isset($filter['source']) && !empty($filter['source'])) { |
65 | - $filter_query_where = " WHERE format_source IN ('".implode("','",$filter['source'])."')"; |
|
65 | + $filter_query_where = " WHERE format_source IN ('".implode("','", $filter['source'])."')"; |
|
66 | 66 | } |
67 | 67 | if (isset($filter['ident']) && !empty($filter['ident'])) { |
68 | 68 | $filter_query_where = " WHERE ident = '".$filter['ident']."'"; |
69 | 69 | } |
70 | 70 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
71 | 71 | if ($filter_query_where == '') { |
72 | - $filter_query_where = " WHERE format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
72 | + $filter_query_where = " WHERE format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
73 | 73 | } else { |
74 | - $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
74 | + $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
75 | 75 | } |
76 | 76 | } |
77 | 77 | if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE'; |
@@ -81,28 +81,28 @@ discard block |
||
81 | 81 | } |
82 | 82 | |
83 | 83 | // Spotter_archive |
84 | - public function addSpotterArchiveData($flightaware_id = '', $ident = '', $registration = '', $airline_name = '', $airline_icao = '', $airline_country = '', $airline_type = '', $aircraft_icao = '', $aircraft_shadow = '', $aircraft_name = '', $aircraft_manufacturer = '', $departure_airport_icao = '', $departure_airport_name = '', $departure_airport_city = '', $departure_airport_country = '', $departure_airport_time = '',$arrival_airport_icao = '', $arrival_airport_name = '', $arrival_airport_city ='', $arrival_airport_country = '', $arrival_airport_time = '', $route_stop = '', $date = '',$latitude = '', $longitude = '', $waypoints = '', $altitude = '', $heading = '', $ground_speed = '', $squawk = '', $ModeS = '', $pilot_id = '', $pilot_name = '',$verticalrate = '',$format_source = '', $source_name = '', $over_country = '') { |
|
84 | + public function addSpotterArchiveData($flightaware_id = '', $ident = '', $registration = '', $airline_name = '', $airline_icao = '', $airline_country = '', $airline_type = '', $aircraft_icao = '', $aircraft_shadow = '', $aircraft_name = '', $aircraft_manufacturer = '', $departure_airport_icao = '', $departure_airport_name = '', $departure_airport_city = '', $departure_airport_country = '', $departure_airport_time = '', $arrival_airport_icao = '', $arrival_airport_name = '', $arrival_airport_city = '', $arrival_airport_country = '', $arrival_airport_time = '', $route_stop = '', $date = '', $latitude = '', $longitude = '', $waypoints = '', $altitude = '', $heading = '', $ground_speed = '', $squawk = '', $ModeS = '', $pilot_id = '', $pilot_name = '', $verticalrate = '', $format_source = '', $source_name = '', $over_country = '') { |
|
85 | 85 | require_once(dirname(__FILE__).'/class.Spotter.php'); |
86 | 86 | if ($over_country == '') { |
87 | 87 | $Spotter = new Spotter($this->db); |
88 | - $data_country = $Spotter->getCountryFromLatitudeLongitude($latitude,$longitude); |
|
88 | + $data_country = $Spotter->getCountryFromLatitudeLongitude($latitude, $longitude); |
|
89 | 89 | if (!empty($data_country)) $country = $data_country['iso2']; |
90 | 90 | else $country = ''; |
91 | 91 | } else $country = $over_country; |
92 | - if ($airline_type === NULL) $airline_type =''; |
|
92 | + if ($airline_type === NULL) $airline_type = ''; |
|
93 | 93 | |
94 | 94 | //if ($country == '') echo "\n".'************ UNKNOW COUNTRY ****************'."\n"; |
95 | 95 | //else echo "\n".'*/*/*/*/*/*/*/ Country : '.$country.' */*/*/*/*/*/*/*/*/'."\n"; |
96 | 96 | |
97 | 97 | // Route is not added in spotter_archive |
98 | - $query = "INSERT INTO spotter_archive (flightaware_id, ident, registration, airline_name, airline_icao, airline_country, airline_type, aircraft_icao, aircraft_shadow, aircraft_name, aircraft_manufacturer, departure_airport_icao, departure_airport_name, departure_airport_city, departure_airport_country, departure_airport_time,arrival_airport_icao, arrival_airport_name, arrival_airport_city, arrival_airport_country, arrival_airport_time, route_stop, date,latitude, longitude, waypoints, altitude, heading, ground_speed, squawk, ModeS, pilot_id, pilot_name, verticalrate,format_source,over_country,source_name) |
|
98 | + $query = "INSERT INTO spotter_archive (flightaware_id, ident, registration, airline_name, airline_icao, airline_country, airline_type, aircraft_icao, aircraft_shadow, aircraft_name, aircraft_manufacturer, departure_airport_icao, departure_airport_name, departure_airport_city, departure_airport_country, departure_airport_time,arrival_airport_icao, arrival_airport_name, arrival_airport_city, arrival_airport_country, arrival_airport_time, route_stop, date,latitude, longitude, waypoints, altitude, heading, ground_speed, squawk, ModeS, pilot_id, pilot_name, verticalrate,format_source,over_country,source_name) |
|
99 | 99 | VALUES (:flightaware_id, :ident, :registration, :airline_name, :airline_icao, :airline_country, :airline_type, :aircraft_icao, :aircraft_shadow, :aircraft_name, :aircraft_manufacturer, :departure_airport_icao, :departure_airport_name, :departure_airport_city, :departure_airport_country, :departure_airport_time,:arrival_airport_icao, :arrival_airport_name, :arrival_airport_city, :arrival_airport_country, :arrival_airport_time, :route_stop, :date,:latitude, :longitude, :waypoints, :altitude, :heading, :ground_speed, :squawk, :ModeS, :pilot_id, :pilot_name, :verticalrate, :format_source, :over_country, :source_name)"; |
100 | 100 | |
101 | - $query_values = array(':flightaware_id' => $flightaware_id, ':ident' => $ident, ':registration' => $registration, ':airline_name' => $airline_name, ':airline_icao' => $airline_icao, ':airline_country' => $airline_country, ':airline_type' => $airline_type, ':aircraft_icao' => $aircraft_icao, ':aircraft_shadow' => $aircraft_shadow, ':aircraft_name' => $aircraft_name, ':aircraft_manufacturer' => $aircraft_manufacturer, ':departure_airport_icao' => $departure_airport_icao, ':departure_airport_name' => $departure_airport_name, ':departure_airport_city' => $departure_airport_city, ':departure_airport_country' => $departure_airport_country, ':departure_airport_time' => $departure_airport_time,':arrival_airport_icao' => $arrival_airport_icao, ':arrival_airport_name' => $arrival_airport_name, ':arrival_airport_city' => $arrival_airport_city, ':arrival_airport_country' => $arrival_airport_country, ':arrival_airport_time' => $arrival_airport_time, ':route_stop' => $route_stop, ':date' => $date,':latitude' => $latitude, ':longitude' => $longitude, ':waypoints' => $waypoints, ':altitude' => $altitude, ':heading' => $heading, ':ground_speed' => $ground_speed, ':squawk' => $squawk, ':ModeS' => $ModeS, ':pilot_id' => $pilot_id, ':pilot_name' => $pilot_name, ':verticalrate' => $verticalrate, ':format_source' => $format_source, ':over_country' => $country, ':source_name' => $source_name); |
|
101 | + $query_values = array(':flightaware_id' => $flightaware_id, ':ident' => $ident, ':registration' => $registration, ':airline_name' => $airline_name, ':airline_icao' => $airline_icao, ':airline_country' => $airline_country, ':airline_type' => $airline_type, ':aircraft_icao' => $aircraft_icao, ':aircraft_shadow' => $aircraft_shadow, ':aircraft_name' => $aircraft_name, ':aircraft_manufacturer' => $aircraft_manufacturer, ':departure_airport_icao' => $departure_airport_icao, ':departure_airport_name' => $departure_airport_name, ':departure_airport_city' => $departure_airport_city, ':departure_airport_country' => $departure_airport_country, ':departure_airport_time' => $departure_airport_time, ':arrival_airport_icao' => $arrival_airport_icao, ':arrival_airport_name' => $arrival_airport_name, ':arrival_airport_city' => $arrival_airport_city, ':arrival_airport_country' => $arrival_airport_country, ':arrival_airport_time' => $arrival_airport_time, ':route_stop' => $route_stop, ':date' => $date, ':latitude' => $latitude, ':longitude' => $longitude, ':waypoints' => $waypoints, ':altitude' => $altitude, ':heading' => $heading, ':ground_speed' => $ground_speed, ':squawk' => $squawk, ':ModeS' => $ModeS, ':pilot_id' => $pilot_id, ':pilot_name' => $pilot_name, ':verticalrate' => $verticalrate, ':format_source' => $format_source, ':over_country' => $country, ':source_name' => $source_name); |
|
102 | 102 | try { |
103 | 103 | $sth = $this->db->prepare($query); |
104 | 104 | $sth->execute($query_values); |
105 | - } catch(PDOException $e) { |
|
105 | + } catch (PDOException $e) { |
|
106 | 106 | return "error : ".$e->getMessage(); |
107 | 107 | } |
108 | 108 | return "success"; |
@@ -122,9 +122,9 @@ discard block |
||
122 | 122 | |
123 | 123 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
124 | 124 | //$query = "SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
125 | - $query = "SELECT spotter_archive.* FROM spotter_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
125 | + $query = "SELECT spotter_archive.* FROM spotter_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
126 | 126 | |
127 | - $spotter_array = $Spotter->getDataFromDB($query,array(':ident' => $ident)); |
|
127 | + $spotter_array = $Spotter->getDataFromDB($query, array(':ident' => $ident)); |
|
128 | 128 | |
129 | 129 | return $spotter_array; |
130 | 130 | } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
144 | 144 | //$query = SpotterArchive->$global_query." WHERE spotter_archive.flightaware_id = :id"; |
145 | 145 | //$query = "SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.flightaware_id = :id GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
146 | - $query = "SELECT * FROM spotter_archive WHERE flightaware_id = :id ORDER BY date DESC LIMIT 1"; |
|
146 | + $query = "SELECT * FROM spotter_archive WHERE flightaware_id = :id ORDER BY date DESC LIMIT 1"; |
|
147 | 147 | |
148 | 148 | // $spotter_array = Spotter->getDataFromDB($query,array(':id' => $id)); |
149 | 149 | /* |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | } |
157 | 157 | $spotter_array = $sth->fetchAll(PDO->FETCH_ASSOC); |
158 | 158 | */ |
159 | - $spotter_array = $Spotter->getDataFromDB($query,array(':id' => $id)); |
|
159 | + $spotter_array = $Spotter->getDataFromDB($query, array(':id' => $id)); |
|
160 | 160 | |
161 | 161 | return $spotter_array; |
162 | 162 | } |
@@ -171,14 +171,14 @@ discard block |
||
171 | 171 | { |
172 | 172 | date_default_timezone_set('UTC'); |
173 | 173 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
174 | - $query = $this->global_query." WHERE spotter_archive.flightaware_id = :id"; |
|
174 | + $query = $this->global_query." WHERE spotter_archive.flightaware_id = :id"; |
|
175 | 175 | |
176 | 176 | // $spotter_array = Spotter->getDataFromDB($query,array(':id' => $id)); |
177 | 177 | |
178 | 178 | try { |
179 | 179 | $sth = $this->db->prepare($query); |
180 | 180 | $sth->execute(array(':id' => $id)); |
181 | - } catch(PDOException $e) { |
|
181 | + } catch (PDOException $e) { |
|
182 | 182 | echo $e->getMessage(); |
183 | 183 | die; |
184 | 184 | } |
@@ -197,14 +197,14 @@ discard block |
||
197 | 197 | { |
198 | 198 | date_default_timezone_set('UTC'); |
199 | 199 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
200 | - $query = "SELECT spotter_archive.latitude, spotter_archive.longitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id"; |
|
200 | + $query = "SELECT spotter_archive.latitude, spotter_archive.longitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id"; |
|
201 | 201 | |
202 | 202 | // $spotter_array = Spotter->getDataFromDB($query,array(':id' => $id)); |
203 | 203 | |
204 | 204 | try { |
205 | 205 | $sth = $this->db->prepare($query); |
206 | 206 | $sth->execute(array(':id' => $id)); |
207 | - } catch(PDOException $e) { |
|
207 | + } catch (PDOException $e) { |
|
208 | 208 | echo $e->getMessage(); |
209 | 209 | die; |
210 | 210 | } |
@@ -226,12 +226,12 @@ discard block |
||
226 | 226 | date_default_timezone_set('UTC'); |
227 | 227 | |
228 | 228 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
229 | - $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.ident = :ident AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
229 | + $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.ident = :ident AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
230 | 230 | |
231 | 231 | try { |
232 | 232 | $sth = $this->db->prepare($query); |
233 | 233 | $sth->execute(array(':ident' => $ident)); |
234 | - } catch(PDOException $e) { |
|
234 | + } catch (PDOException $e) { |
|
235 | 235 | echo $e->getMessage(); |
236 | 236 | die; |
237 | 237 | } |
@@ -252,12 +252,12 @@ discard block |
||
252 | 252 | date_default_timezone_set('UTC'); |
253 | 253 | |
254 | 254 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
255 | - $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
255 | + $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id AND spotter_archive.latitude <> 0 AND spotter_archive.longitude <> 0 ORDER BY date"; |
|
256 | 256 | |
257 | 257 | try { |
258 | 258 | $sth = $this->db->prepare($query); |
259 | 259 | $sth->execute(array(':id' => $id)); |
260 | - } catch(PDOException $e) { |
|
260 | + } catch (PDOException $e) { |
|
261 | 261 | echo $e->getMessage(); |
262 | 262 | die; |
263 | 263 | } |
@@ -278,12 +278,12 @@ discard block |
||
278 | 278 | date_default_timezone_set('UTC'); |
279 | 279 | |
280 | 280 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
281 | - $query = "SELECT spotter_archive.altitude, spotter_archive.ground_speed, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id ORDER BY date"; |
|
281 | + $query = "SELECT spotter_archive.altitude, spotter_archive.ground_speed, spotter_archive.date FROM spotter_archive WHERE spotter_archive.flightaware_id = :id ORDER BY date"; |
|
282 | 282 | |
283 | 283 | try { |
284 | 284 | $sth = $this->db->prepare($query); |
285 | 285 | $sth->execute(array(':id' => $id)); |
286 | - } catch(PDOException $e) { |
|
286 | + } catch (PDOException $e) { |
|
287 | 287 | echo $e->getMessage(); |
288 | 288 | die; |
289 | 289 | } |
@@ -305,13 +305,13 @@ discard block |
||
305 | 305 | date_default_timezone_set('UTC'); |
306 | 306 | |
307 | 307 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
308 | - $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
308 | + $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate LIMIT 1"; |
|
309 | 309 | // $query = "SELECT spotter_archive.altitude, spotter_archive.date FROM spotter_archive WHERE spotter_archive.ident = :ident"; |
310 | 310 | |
311 | 311 | try { |
312 | 312 | $sth = $this->db->prepare($query); |
313 | 313 | $sth->execute(array(':ident' => $ident)); |
314 | - } catch(PDOException $e) { |
|
314 | + } catch (PDOException $e) { |
|
315 | 315 | echo $e->getMessage(); |
316 | 316 | die; |
317 | 317 | } |
@@ -328,13 +328,13 @@ discard block |
||
328 | 328 | * @return Array the spotter information |
329 | 329 | * |
330 | 330 | */ |
331 | - public function getSpotterArchiveData($ident,$flightaware_id,$date) |
|
331 | + public function getSpotterArchiveData($ident, $flightaware_id, $date) |
|
332 | 332 | { |
333 | 333 | $Spotter = new Spotter($this->db); |
334 | 334 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
335 | - $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.flightaware_id = :flightaware_id AND l.date LIKE :date GROUP BY l.flightaware_id) s on spotter_live.flightaware_id = s.flightaware_id AND spotter_live.date = s.maxdate"; |
|
335 | + $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.flightaware_id = :flightaware_id AND l.date LIKE :date GROUP BY l.flightaware_id) s on spotter_live.flightaware_id = s.flightaware_id AND spotter_live.date = s.maxdate"; |
|
336 | 336 | |
337 | - $spotter_array = $Spotter->getDataFromDB($query,array(':ident' => $ident,':flightaware_id' => $flightaware_id,':date' => $date.'%')); |
|
337 | + $spotter_array = $Spotter->getDataFromDB($query, array(':ident' => $ident, ':flightaware_id' => $flightaware_id, ':date' => $date.'%')); |
|
338 | 338 | |
339 | 339 | return $spotter_array; |
340 | 340 | } |
@@ -347,7 +347,7 @@ discard block |
||
347 | 347 | try { |
348 | 348 | $sth = $this->db->prepare($query); |
349 | 349 | $sth->execute(); |
350 | - } catch(PDOException $e) { |
|
350 | + } catch (PDOException $e) { |
|
351 | 351 | echo $e->getMessage(); |
352 | 352 | die; |
353 | 353 | } |
@@ -359,24 +359,24 @@ discard block |
||
359 | 359 | * @return Array the spotter information |
360 | 360 | * |
361 | 361 | */ |
362 | - public function getMinLiveSpotterData($begindate,$enddate,$filter = array()) |
|
362 | + public function getMinLiveSpotterData($begindate, $enddate, $filter = array()) |
|
363 | 363 | { |
364 | 364 | global $globalDBdriver, $globalLiveInterval; |
365 | 365 | date_default_timezone_set('UTC'); |
366 | 366 | |
367 | 367 | $filter_query = ''; |
368 | 368 | if (isset($filter['source']) && !empty($filter['source'])) { |
369 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
369 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
370 | 370 | } |
371 | 371 | // Use spotter_output also ? |
372 | 372 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
373 | - $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
373 | + $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
374 | 374 | } |
375 | 375 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
376 | 376 | $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
377 | 377 | } |
378 | 378 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
379 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
379 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
380 | 380 | } |
381 | 381 | |
382 | 382 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -395,14 +395,14 @@ discard block |
||
395 | 395 | GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id |
396 | 396 | AND spotter_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON spotter_archive.aircraft_icao = a.icao'; |
397 | 397 | */ |
398 | - $query = 'SELECT spotter_archive.date,spotter_archive.flightaware_id, spotter_archive.ident, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
398 | + $query = 'SELECT spotter_archive.date,spotter_archive.flightaware_id, spotter_archive.ident, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
399 | 399 | FROM spotter_archive |
400 | 400 | INNER JOIN (SELECT * FROM aircraft) a on spotter_archive.aircraft_icao = a.icao |
401 | 401 | WHERE spotter_archive.date BETWEEN '."'".$begindate."'".' AND '."'".$begindate."'".' |
402 | 402 | '.$filter_query.' ORDER BY flightaware_id'; |
403 | 403 | } else { |
404 | 404 | //$query = 'SELECT spotter_archive.ident, spotter_archive.flightaware_id, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$globalLiveInterval.' SECOND) <= l.date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate '.$filter_query.'INNER JOIN (SELECT * FROM aircraft) a on spotter_archive.aircraft_icao = a.icao'; |
405 | - $query = 'SELECT spotter_archive.date,spotter_archive.flightaware_id, spotter_archive.ident, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
405 | + $query = 'SELECT spotter_archive.date,spotter_archive.flightaware_id, spotter_archive.ident, spotter_archive.aircraft_icao, spotter_archive.departure_airport_icao as departure_airport, spotter_archive.arrival_airport_icao as arrival_airport, spotter_archive.latitude, spotter_archive.longitude, spotter_archive.altitude, spotter_archive.heading, spotter_archive.ground_speed, spotter_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
406 | 406 | FROM spotter_archive |
407 | 407 | INNER JOIN (SELECT * FROM aircraft) a on spotter_archive.aircraft_icao = a.icao |
408 | 408 | WHERE spotter_archive.date >= '."'".$begindate."'".' AND spotter_archive.date <= '."'".$enddate."'".' |
@@ -412,7 +412,7 @@ discard block |
||
412 | 412 | try { |
413 | 413 | $sth = $this->db->prepare($query); |
414 | 414 | $sth->execute(); |
415 | - } catch(PDOException $e) { |
|
415 | + } catch (PDOException $e) { |
|
416 | 416 | echo $e->getMessage(); |
417 | 417 | die; |
418 | 418 | } |
@@ -427,24 +427,24 @@ discard block |
||
427 | 427 | * @return Array the spotter information |
428 | 428 | * |
429 | 429 | */ |
430 | - public function getMinLiveSpotterDataPlayback($begindate,$enddate,$filter = array()) |
|
430 | + public function getMinLiveSpotterDataPlayback($begindate, $enddate, $filter = array()) |
|
431 | 431 | { |
432 | 432 | global $globalDBdriver, $globalLiveInterval; |
433 | 433 | date_default_timezone_set('UTC'); |
434 | 434 | |
435 | 435 | $filter_query = ''; |
436 | 436 | if (isset($filter['source']) && !empty($filter['source'])) { |
437 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
437 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
438 | 438 | } |
439 | 439 | // Should use spotter_output also ? |
440 | 440 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
441 | - $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
441 | + $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
442 | 442 | } |
443 | 443 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
444 | 444 | $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_archive_output WHERE spotter_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
445 | 445 | } |
446 | 446 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
447 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
447 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
448 | 448 | } |
449 | 449 | |
450 | 450 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | FROM spotter_archive |
455 | 455 | INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE (l.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON spotter_archive.aircraft_icao = a.icao'; |
456 | 456 | */ |
457 | - $query = 'SELECT a.aircraft_shadow, spotter_archive_output.ident, spotter_archive_output.flightaware_id, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk |
|
457 | + $query = 'SELECT a.aircraft_shadow, spotter_archive_output.ident, spotter_archive_output.flightaware_id, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk |
|
458 | 458 | FROM spotter_archive_output |
459 | 459 | LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON spotter_archive_output.aircraft_icao = a.icao |
460 | 460 | WHERE (spotter_archive_output.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') |
@@ -469,7 +469,7 @@ discard block |
||
469 | 469 | WHERE spotter_archive_output.date >= '."'".$begindate."'".' AND spotter_archive_output.date <= '."'".$enddate."'".' |
470 | 470 | '.$filter_query.' GROUP BY spotter_archive_output.flightaware_id, spotter_archive_output.ident, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao, spotter_archive_output.arrival_airport_icao, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow'; |
471 | 471 | */ |
472 | - $query = 'SELECT DISTINCT spotter_archive_output.flightaware_id, spotter_archive_output.ident, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow |
|
472 | + $query = 'SELECT DISTINCT spotter_archive_output.flightaware_id, spotter_archive_output.ident, spotter_archive_output.aircraft_icao, spotter_archive_output.departure_airport_icao as departure_airport, spotter_archive_output.arrival_airport_icao as arrival_airport, spotter_archive_output.latitude, spotter_archive_output.longitude, spotter_archive_output.altitude, spotter_archive_output.heading, spotter_archive_output.ground_speed, spotter_archive_output.squawk, a.aircraft_shadow |
|
473 | 473 | FROM spotter_archive_output |
474 | 474 | INNER JOIN (SELECT * FROM aircraft) a on spotter_archive_output.aircraft_icao = a.icao |
475 | 475 | WHERE spotter_archive_output.date >= '."'".$begindate."'".' AND spotter_archive_output.date <= '."'".$enddate."'".' |
@@ -481,7 +481,7 @@ discard block |
||
481 | 481 | try { |
482 | 482 | $sth = $this->db->prepare($query); |
483 | 483 | $sth->execute(); |
484 | - } catch(PDOException $e) { |
|
484 | + } catch (PDOException $e) { |
|
485 | 485 | echo $e->getMessage(); |
486 | 486 | die; |
487 | 487 | } |
@@ -496,23 +496,23 @@ discard block |
||
496 | 496 | * @return Array the spotter information |
497 | 497 | * |
498 | 498 | */ |
499 | - public function getLiveSpotterCount($begindate,$enddate,$filter = array()) |
|
499 | + public function getLiveSpotterCount($begindate, $enddate, $filter = array()) |
|
500 | 500 | { |
501 | 501 | global $globalDBdriver, $globalLiveInterval; |
502 | 502 | date_default_timezone_set('UTC'); |
503 | 503 | |
504 | 504 | $filter_query = ''; |
505 | 505 | if (isset($filter['source']) && !empty($filter['source'])) { |
506 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
506 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
507 | 507 | } |
508 | 508 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
509 | - $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
509 | + $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.flightaware_id = spotter_archive.flightaware_id "; |
|
510 | 510 | } |
511 | 511 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
512 | 512 | $filter_query .= " INNER JOIN (SELECT flightaware_id FROM spotter_output WHERE spotter_output.airline_type = '".$filter['airlinestype']."') sa ON sa.flightaware_id = spotter_archive.flightaware_id "; |
513 | 513 | } |
514 | 514 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
515 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
515 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
516 | 516 | } |
517 | 517 | |
518 | 518 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -527,7 +527,7 @@ discard block |
||
527 | 527 | try { |
528 | 528 | $sth = $this->db->prepare($query); |
529 | 529 | $sth->execute(); |
530 | - } catch(PDOException $e) { |
|
530 | + } catch (PDOException $e) { |
|
531 | 531 | echo $e->getMessage(); |
532 | 532 | die; |
533 | 533 | } |
@@ -547,7 +547,7 @@ discard block |
||
547 | 547 | * @return Array the spotter information |
548 | 548 | * |
549 | 549 | */ |
550 | - public function searchSpotterData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '',$pilot_id = '',$pilot_name = '',$altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '',$origLat = '',$origLon = '',$dist = '', $filters=array()) |
|
550 | + public function searchSpotterData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '', $pilot_id = '', $pilot_name = '', $altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '', $origLat = '', $origLon = '', $dist = '', $filters = array()) |
|
551 | 551 | { |
552 | 552 | global $globalTimezone, $globalDBdriver; |
553 | 553 | require_once(dirname(__FILE__).'/class.Translation.php'); |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | |
570 | 570 | $q_array = explode(" ", $q); |
571 | 571 | |
572 | - foreach ($q_array as $q_item){ |
|
572 | + foreach ($q_array as $q_item) { |
|
573 | 573 | $additional_query .= " AND ("; |
574 | 574 | $additional_query .= "(spotter_archive_output.spotter_id like '%".$q_item."%') OR "; |
575 | 575 | $additional_query .= "(spotter_archive_output.aircraft_icao like '%".$q_item."%') OR "; |
@@ -601,7 +601,7 @@ discard block |
||
601 | 601 | |
602 | 602 | if ($registration != "") |
603 | 603 | { |
604 | - $registration = filter_var($registration,FILTER_SANITIZE_STRING); |
|
604 | + $registration = filter_var($registration, FILTER_SANITIZE_STRING); |
|
605 | 605 | if (!is_string($registration)) |
606 | 606 | { |
607 | 607 | return false; |
@@ -612,7 +612,7 @@ discard block |
||
612 | 612 | |
613 | 613 | if ($aircraft_icao != "") |
614 | 614 | { |
615 | - $aircraft_icao = filter_var($aircraft_icao,FILTER_SANITIZE_STRING); |
|
615 | + $aircraft_icao = filter_var($aircraft_icao, FILTER_SANITIZE_STRING); |
|
616 | 616 | if (!is_string($aircraft_icao)) |
617 | 617 | { |
618 | 618 | return false; |
@@ -623,7 +623,7 @@ discard block |
||
623 | 623 | |
624 | 624 | if ($aircraft_manufacturer != "") |
625 | 625 | { |
626 | - $aircraft_manufacturer = filter_var($aircraft_manufacturer,FILTER_SANITIZE_STRING); |
|
626 | + $aircraft_manufacturer = filter_var($aircraft_manufacturer, FILTER_SANITIZE_STRING); |
|
627 | 627 | if (!is_string($aircraft_manufacturer)) |
628 | 628 | { |
629 | 629 | return false; |
@@ -644,7 +644,7 @@ discard block |
||
644 | 644 | |
645 | 645 | if ($airline_icao != "") |
646 | 646 | { |
647 | - $airline_icao = filter_var($airline_icao,FILTER_SANITIZE_STRING); |
|
647 | + $airline_icao = filter_var($airline_icao, FILTER_SANITIZE_STRING); |
|
648 | 648 | if (!is_string($airline_icao)) |
649 | 649 | { |
650 | 650 | return false; |
@@ -655,7 +655,7 @@ discard block |
||
655 | 655 | |
656 | 656 | if ($airline_country != "") |
657 | 657 | { |
658 | - $airline_country = filter_var($airline_country,FILTER_SANITIZE_STRING); |
|
658 | + $airline_country = filter_var($airline_country, FILTER_SANITIZE_STRING); |
|
659 | 659 | if (!is_string($airline_country)) |
660 | 660 | { |
661 | 661 | return false; |
@@ -666,7 +666,7 @@ discard block |
||
666 | 666 | |
667 | 667 | if ($airline_type != "") |
668 | 668 | { |
669 | - $airline_type = filter_var($airline_type,FILTER_SANITIZE_STRING); |
|
669 | + $airline_type = filter_var($airline_type, FILTER_SANITIZE_STRING); |
|
670 | 670 | if (!is_string($airline_type)) |
671 | 671 | { |
672 | 672 | return false; |
@@ -688,7 +688,7 @@ discard block |
||
688 | 688 | |
689 | 689 | if ($airport != "") |
690 | 690 | { |
691 | - $airport = filter_var($airport,FILTER_SANITIZE_STRING); |
|
691 | + $airport = filter_var($airport, FILTER_SANITIZE_STRING); |
|
692 | 692 | if (!is_string($airport)) |
693 | 693 | { |
694 | 694 | return false; |
@@ -699,7 +699,7 @@ discard block |
||
699 | 699 | |
700 | 700 | if ($airport_country != "") |
701 | 701 | { |
702 | - $airport_country = filter_var($airport_country,FILTER_SANITIZE_STRING); |
|
702 | + $airport_country = filter_var($airport_country, FILTER_SANITIZE_STRING); |
|
703 | 703 | if (!is_string($airport_country)) |
704 | 704 | { |
705 | 705 | return false; |
@@ -710,7 +710,7 @@ discard block |
||
710 | 710 | |
711 | 711 | if ($callsign != "") |
712 | 712 | { |
713 | - $callsign = filter_var($callsign,FILTER_SANITIZE_STRING); |
|
713 | + $callsign = filter_var($callsign, FILTER_SANITIZE_STRING); |
|
714 | 714 | if (!is_string($callsign)) |
715 | 715 | { |
716 | 716 | return false; |
@@ -718,7 +718,7 @@ discard block |
||
718 | 718 | $translate = $Translation->ident2icao($callsign); |
719 | 719 | if ($translate != $callsign) { |
720 | 720 | $additional_query .= " AND (spotter_archive_output.ident = :callsign OR spotter_archive_output.ident = :translate)"; |
721 | - $query_values = array_merge($query_values,array(':callsign' => $callsign,':translate' => $translate)); |
|
721 | + $query_values = array_merge($query_values, array(':callsign' => $callsign, ':translate' => $translate)); |
|
722 | 722 | } else { |
723 | 723 | $additional_query .= " AND (spotter_archive_output.ident = '".$callsign."')"; |
724 | 724 | } |
@@ -727,7 +727,7 @@ discard block |
||
727 | 727 | |
728 | 728 | if ($owner != "") |
729 | 729 | { |
730 | - $owner = filter_var($owner,FILTER_SANITIZE_STRING); |
|
730 | + $owner = filter_var($owner, FILTER_SANITIZE_STRING); |
|
731 | 731 | if (!is_string($owner)) |
732 | 732 | { |
733 | 733 | return false; |
@@ -738,7 +738,7 @@ discard block |
||
738 | 738 | |
739 | 739 | if ($pilot_name != "") |
740 | 740 | { |
741 | - $pilot_name = filter_var($pilot_name,FILTER_SANITIZE_STRING); |
|
741 | + $pilot_name = filter_var($pilot_name, FILTER_SANITIZE_STRING); |
|
742 | 742 | if (!is_string($pilot_name)) |
743 | 743 | { |
744 | 744 | return false; |
@@ -749,7 +749,7 @@ discard block |
||
749 | 749 | |
750 | 750 | if ($pilot_id != "") |
751 | 751 | { |
752 | - $pilot_id = filter_var($pilot_id,FILTER_SANITIZE_NUMBER_INT); |
|
752 | + $pilot_id = filter_var($pilot_id, FILTER_SANITIZE_NUMBER_INT); |
|
753 | 753 | if (!is_string($pilot_id)) |
754 | 754 | { |
755 | 755 | return false; |
@@ -760,7 +760,7 @@ discard block |
||
760 | 760 | |
761 | 761 | if ($departure_airport_route != "") |
762 | 762 | { |
763 | - $departure_airport_route = filter_var($departure_airport_route,FILTER_SANITIZE_STRING); |
|
763 | + $departure_airport_route = filter_var($departure_airport_route, FILTER_SANITIZE_STRING); |
|
764 | 764 | if (!is_string($departure_airport_route)) |
765 | 765 | { |
766 | 766 | return false; |
@@ -771,7 +771,7 @@ discard block |
||
771 | 771 | |
772 | 772 | if ($arrival_airport_route != "") |
773 | 773 | { |
774 | - $arrival_airport_route = filter_var($arrival_airport_route,FILTER_SANITIZE_STRING); |
|
774 | + $arrival_airport_route = filter_var($arrival_airport_route, FILTER_SANITIZE_STRING); |
|
775 | 775 | if (!is_string($arrival_airport_route)) |
776 | 776 | { |
777 | 777 | return false; |
@@ -784,8 +784,8 @@ discard block |
||
784 | 784 | { |
785 | 785 | $altitude_array = explode(",", $altitude); |
786 | 786 | |
787 | - $altitude_array[0] = filter_var($altitude_array[0],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
788 | - $altitude_array[1] = filter_var($altitude_array[1],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
787 | + $altitude_array[0] = filter_var($altitude_array[0], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
788 | + $altitude_array[1] = filter_var($altitude_array[1], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
789 | 789 | |
790 | 790 | |
791 | 791 | if ($altitude_array[1] != "") |
@@ -803,8 +803,8 @@ discard block |
||
803 | 803 | { |
804 | 804 | $date_array = explode(",", $date_posted); |
805 | 805 | |
806 | - $date_array[0] = filter_var($date_array[0],FILTER_SANITIZE_STRING); |
|
807 | - $date_array[1] = filter_var($date_array[1],FILTER_SANITIZE_STRING); |
|
806 | + $date_array[0] = filter_var($date_array[0], FILTER_SANITIZE_STRING); |
|
807 | + $date_array[1] = filter_var($date_array[1], FILTER_SANITIZE_STRING); |
|
808 | 808 | |
809 | 809 | if ($globalTimezone != '') { |
810 | 810 | date_default_timezone_set($globalTimezone); |
@@ -836,8 +836,8 @@ discard block |
||
836 | 836 | { |
837 | 837 | $limit_array = explode(",", $limit); |
838 | 838 | |
839 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
840 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
839 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
840 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
841 | 841 | |
842 | 842 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
843 | 843 | { |
@@ -848,8 +848,8 @@ discard block |
||
848 | 848 | |
849 | 849 | |
850 | 850 | if ($origLat != "" && $origLon != "" && $dist != "") { |
851 | - $dist = number_format($dist*0.621371,2,'.',''); |
|
852 | - $query="SELECT spotter_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(spotter_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(spotter_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(spotter_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
851 | + $dist = number_format($dist*0.621371, 2, '.', ''); |
|
852 | + $query = "SELECT spotter_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(spotter_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(spotter_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(spotter_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
853 | 853 | FROM spotter_archive_output, spotter_archive WHERE spotter_output_archive.flightaware_id = spotter_archive.flightaware_id AND spotter_output.ident <> '' ".$additional_query."AND CAST(spotter_archive.longitude as double precision) between ($origLon-$dist/ABS(cos(radians($origLat))*69)) and ($origLon+$dist/ABS(cos(radians($origLat))*69)) and CAST(spotter_archive.latitude as double precision) between ($origLat-($dist/69)) and ($origLat+($dist/69)) |
854 | 854 | AND (3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(spotter_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(spotter_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(spotter_archive.longitude as double precision))*pi()/180/2),2)))) < $dist".$filter_query." ORDER BY distance"; |
855 | 855 | } else { |
@@ -866,12 +866,12 @@ discard block |
||
866 | 866 | $additional_query .= " AND (spotter_archive_output.waypoints <> '')"; |
867 | 867 | } |
868 | 868 | |
869 | - $query = "SELECT spotter_archive_output.* FROM spotter_archive_output |
|
869 | + $query = "SELECT spotter_archive_output.* FROM spotter_archive_output |
|
870 | 870 | WHERE spotter_archive_output.ident <> '' |
871 | 871 | ".$additional_query." |
872 | 872 | ".$filter_query.$orderby_query; |
873 | 873 | } |
874 | - $spotter_array = $Spotter->getDataFromDB($query, $query_values,$limit_query); |
|
874 | + $spotter_array = $Spotter->getDataFromDB($query, $query_values, $limit_query); |
|
875 | 875 | |
876 | 876 | return $spotter_array; |
877 | 877 | } |
@@ -888,7 +888,7 @@ discard block |
||
888 | 888 | try { |
889 | 889 | $sth = $this->db->prepare($query); |
890 | 890 | $sth->execute(); |
891 | - } catch(PDOException $e) { |
|
891 | + } catch (PDOException $e) { |
|
892 | 892 | return "error"; |
893 | 893 | } |
894 | 894 | } |
@@ -925,8 +925,8 @@ discard block |
||
925 | 925 | { |
926 | 926 | $limit_array = explode(",", $limit); |
927 | 927 | |
928 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
929 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
928 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
929 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
930 | 930 | |
931 | 931 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
932 | 932 | { |
@@ -956,7 +956,7 @@ discard block |
||
956 | 956 | * @return Array the airline country list |
957 | 957 | * |
958 | 958 | */ |
959 | - public function countAllFlightOverCountries($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
959 | + public function countAllFlightOverCountries($limit = true, $olderthanmonths = 0, $sincedate = '') |
|
960 | 960 | { |
961 | 961 | global $globalDBdriver; |
962 | 962 | /* |
@@ -985,7 +985,7 @@ discard block |
||
985 | 985 | $flight_array = array(); |
986 | 986 | $temp_array = array(); |
987 | 987 | |
988 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
988 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
989 | 989 | { |
990 | 990 | $temp_array['flight_count'] = $row['nb']; |
991 | 991 | $temp_array['flight_country'] = $row['name']; |
@@ -1002,14 +1002,14 @@ discard block |
||
1002 | 1002 | * @return Array the spotter information |
1003 | 1003 | * |
1004 | 1004 | */ |
1005 | - public function getDateArchiveSpotterDataById($id,$date) |
|
1005 | + public function getDateArchiveSpotterDataById($id, $date) |
|
1006 | 1006 | { |
1007 | 1007 | $Spotter = new Spotter($this->db); |
1008 | 1008 | date_default_timezone_set('UTC'); |
1009 | 1009 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
1010 | - $query = 'SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.flightaware_id = :id AND l.date <= :date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate ORDER BY spotter_archive.date DESC'; |
|
1011 | - $date = date('c',$date); |
|
1012 | - $spotter_array = $Spotter->getDataFromDB($query,array(':id' => $id,':date' => $date)); |
|
1010 | + $query = 'SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.flightaware_id = :id AND l.date <= :date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate ORDER BY spotter_archive.date DESC'; |
|
1011 | + $date = date('c', $date); |
|
1012 | + $spotter_array = $Spotter->getDataFromDB($query, array(':id' => $id, ':date' => $date)); |
|
1013 | 1013 | return $spotter_array; |
1014 | 1014 | } |
1015 | 1015 | |
@@ -1019,14 +1019,14 @@ discard block |
||
1019 | 1019 | * @return Array the spotter information |
1020 | 1020 | * |
1021 | 1021 | */ |
1022 | - public function getDateArchiveSpotterDataByIdent($ident,$date) |
|
1022 | + public function getDateArchiveSpotterDataByIdent($ident, $date) |
|
1023 | 1023 | { |
1024 | 1024 | $Spotter = new Spotter($this->db); |
1025 | 1025 | date_default_timezone_set('UTC'); |
1026 | 1026 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
1027 | - $query = 'SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident AND l.date <= :date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate ORDER BY spotter_archive.date DESC'; |
|
1028 | - $date = date('c',$date); |
|
1029 | - $spotter_array = $Spotter->getDataFromDB($query,array(':ident' => $ident,':date' => $date)); |
|
1027 | + $query = 'SELECT spotter_archive.* FROM spotter_archive INNER JOIN (SELECT l.flightaware_id, max(l.date) as maxdate FROM spotter_archive l WHERE l.ident = :ident AND l.date <= :date GROUP BY l.flightaware_id) s on spotter_archive.flightaware_id = s.flightaware_id AND spotter_archive.date = s.maxdate ORDER BY spotter_archive.date DESC'; |
|
1028 | + $date = date('c', $date); |
|
1029 | + $spotter_array = $Spotter->getDataFromDB($query, array(':ident' => $ident, ':date' => $date)); |
|
1030 | 1030 | return $spotter_array; |
1031 | 1031 | } |
1032 | 1032 | |
@@ -1036,7 +1036,7 @@ discard block |
||
1036 | 1036 | * @return Array the spotter information |
1037 | 1037 | * |
1038 | 1038 | */ |
1039 | - public function getSpotterDataByAirport($airport = '', $limit = '', $sort = '',$filters = array()) |
|
1039 | + public function getSpotterDataByAirport($airport = '', $limit = '', $sort = '', $filters = array()) |
|
1040 | 1040 | { |
1041 | 1041 | global $global_query; |
1042 | 1042 | $Spotter = new Spotter(); |
@@ -1044,7 +1044,7 @@ discard block |
||
1044 | 1044 | $query_values = array(); |
1045 | 1045 | $limit_query = ''; |
1046 | 1046 | $additional_query = ''; |
1047 | - $filter_query = $this->getFilter($filters,true,true); |
|
1047 | + $filter_query = $this->getFilter($filters, true, true); |
|
1048 | 1048 | |
1049 | 1049 | if ($airport != "") |
1050 | 1050 | { |
@@ -1061,8 +1061,8 @@ discard block |
||
1061 | 1061 | { |
1062 | 1062 | $limit_array = explode(",", $limit); |
1063 | 1063 | |
1064 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1065 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1064 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
1065 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1066 | 1066 | |
1067 | 1067 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
1068 | 1068 | { |