|
@@ -9,7 +9,9 @@ discard block |
|
|
block discarded – undo |
|
9
|
9
|
if (strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') { |
|
10
|
10
|
exec("ps ux", $output, $result); |
|
11
|
11
|
$j = 0; |
|
12
|
|
- foreach ($output as $line) if(strpos($line, "update_db.php") && !strpos($line, "sh ")) $j++; |
|
|
12
|
+ foreach ($output as $line) { |
|
|
13
|
+ if(strpos($line, "update_db.php") && !strpos($line, "sh ")) $j++; |
|
|
14
|
+ } |
|
13
|
15
|
if ($j > 1) { |
|
14
|
16
|
echo "Script is already runnning..."; |
|
15
|
17
|
die(); |
|
@@ -29,14 +31,18 @@ discard block |
|
|
block discarded – undo |
|
29
|
31
|
$update_db->update_notam(); |
|
30
|
32
|
} |
|
31
|
33
|
$update_db->insert_last_notam_update(); |
|
32
|
|
- } elseif (isset($globalDebug) && $globalDebug && isset($globalNOTAM) && $globalNOTAM) echo "NOTAM are only updated once a day.\n"; |
|
|
34
|
+ } elseif (isset($globalDebug) && $globalDebug && isset($globalNOTAM) && $globalNOTAM) { |
|
|
35
|
+ echo "NOTAM are only updated once a day.\n"; |
|
|
36
|
+ } |
|
33
|
37
|
if ($update_db->check_last_update() && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) { |
|
34
|
38
|
$update_db->update_all(); |
|
35
|
39
|
// require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
|
36
|
40
|
// $Spotter = new Spotter(); |
|
37
|
41
|
// $Spotter->updateFieldsFromOtherTables(); |
|
38
|
42
|
$update_db->insert_last_update(); |
|
39
|
|
- } elseif (isset($globalDebug) && $globalDebug && (!isset($globalVA) || !$globalVA) && (!isset($globalphpVMS) || !$globalphpVMS) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM)) echo "DB are populated with external data only every 15 days ! Files are not updated more often.\n"; |
|
|
43
|
+ } elseif (isset($globalDebug) && $globalDebug && (!isset($globalVA) || !$globalVA) && (!isset($globalphpVMS) || !$globalphpVMS) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM)) { |
|
|
44
|
+ echo "DB are populated with external data only every 15 days ! Files are not updated more often.\n"; |
|
|
45
|
+ } |
|
40
|
46
|
if (isset($globalWaypoints) && $globalWaypoints && $update_db->check_last_airspace_update()) { |
|
41
|
47
|
echo "Check if new airspace version exist..."; |
|
42
|
48
|
echo $update_db->update_airspace_fam(); |
|
@@ -56,7 +62,9 @@ discard block |
|
|
block discarded – undo |
|
56
|
62
|
$update_db->delete_duplicateowner(); |
|
57
|
63
|
} |
|
58
|
64
|
$update_db->insert_last_owner_update(); |
|
59
|
|
- } elseif (isset($globalDebug) && $globalDebug && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) echo "Owner are only updated every 15 days.\n"; |
|
|
65
|
+ } elseif (isset($globalDebug) && $globalDebug && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) { |
|
|
66
|
+ echo "Owner are only updated every 15 days.\n"; |
|
|
67
|
+ } |
|
60
|
68
|
|
|
61
|
69
|
if (isset($globalAccidents) && $globalAccidents && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) { |
|
62
|
70
|
require_once(dirname(__FILE__).'/../require/class.Accident.php'); |
|
@@ -65,7 +73,9 @@ discard block |
|
|
block discarded – undo |
|
65
|
73
|
if ($Accident->check_last_accidents_update()) { |
|
66
|
74
|
$Accident->download_update(); |
|
67
|
75
|
$Accident->insert_last_accidents_update(); |
|
68
|
|
- } else echo "Accidents are updated once a day.\n"; |
|
|
76
|
+ } else { |
|
|
77
|
+ echo "Accidents are updated once a day.\n"; |
|
|
78
|
+ } |
|
69
|
79
|
} |
|
70
|
80
|
|
|
71
|
81
|
} |
|
@@ -78,15 +88,19 @@ discard block |
|
|
block discarded – undo |
|
78
|
88
|
if ($METAR->check_last_update()) { |
|
79
|
89
|
$METAR->addMETARCycle(); |
|
80
|
90
|
$METAR->insert_last_update(); |
|
81
|
|
- } else echo "METAR are only updated every 30 minutes.\n"; |
|
82
|
|
-} |
|
|
91
|
+ } else { |
|
|
92
|
+ echo "METAR are only updated every 30 minutes.\n"; |
|
|
93
|
+ } |
|
|
94
|
+ } |
|
83
|
95
|
|
|
84
|
96
|
if (isset($globalSchedules) && $globalSchedules && $update_db->check_last_schedules_update() && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) { |
|
85
|
97
|
echo "Updating schedules..."; |
|
86
|
98
|
//$update_db->update_oneworld(); |
|
87
|
99
|
$update_db->update_skyteam(); |
|
88
|
100
|
$update_db->insert_last_schedules_update(); |
|
89
|
|
-} elseif (isset($globalDebug) && $globalDebug && isset($globalOwner) && $globalOwner && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) echo "Schedules are only updated every 15 days.\n"; |
|
|
101
|
+} elseif (isset($globalDebug) && $globalDebug && isset($globalOwner) && $globalOwner && (!isset($globalVA) || !$globalVA) && (!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS)) { |
|
|
102
|
+ echo "Schedules are only updated every 15 days.\n"; |
|
|
103
|
+} |
|
90
|
104
|
|
|
91
|
105
|
if (isset($globalArchiveMonths) && $globalArchiveMonths > 0) { |
|
92
|
106
|
echo "Updating statistics and archive old data..."; |