summaryrefslogtreecommitdiffstats
path: root/usr/local/www/system_firmware_check.php
blob: 951770741e5e2eccc2ef001433a8650e1bd91b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#!/usr/local/bin/php
<?php
/* $Id$ */
/*
    system_firmware.php
    Copyright (C) 2004, 2005 Scott Ullrich and Colin Smith
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.

    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
    AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
    AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
    OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.
*/

require_once("guiconfig.inc");
require_once("xmlrpc.inc");

if(isset($config['system']['disablefirmwarecheck']))
	Header("Location: system_firmware.php");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<title><?=gentitle("System: Auto Update");?></title>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
		<link href="gui.css" rel="stylesheet" type="text/css">
	</head>
	<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
		<SCRIPT>
		<!--
			function toggleTable (table, img) {
				var table = document.getElementById(table);
				var img = document.getElementById(img);
				if (table.rows[0].style.display == 'none') {
					for (var r = 0; r < table.rows.length; r++)
						table.rows[r].style.display = '';
					img.src = "/tri_o_black.gif";
				} else {
					for (var r = 0; r < table.rows.length; r++)
						table.rows[r].style.display = 'none';
					img.src = "/tri_c_black.gif";
				}
			}
		//-->
		</SCRIPT>
<?php
include("fbegin.inc");
$versions = check_firmware_version();
?>
		<p class="pgtitle">System: Auto Update</p>
		<br>
		<table width="100%" border="0" cellpadding="0" cellspacing="0">
			<tr>
				<td>
<?php
	$tab_array = array();
	$tab_array[0] = array("Manual Update", false, "system_firmware.php");
	$tab_array[1] = array("Auto Update", true, "system_firmware_check.php");
	$tab_array[2] = array("Updater Settings", false, "system_firmware_settings.php");
	display_top_tabs($tab_array);
?>
				</td>
			</tr>
			<tr>
				<td class="tabcont">
<?php
if(is_array($versions)) {
?>
					<table align="center" width="60%" border="0" cellpadding="0" cellspacing="0">
						<tr>
							<td width="10%" class="listhdrr">Act</td>
							<td width="30%" class="listhdrr">Category</td>
							<td width="30%" class="listhdrr">Installed</td>
							<td width="30%" class="listhdrr">Current<td>
						</tr>
<?php
	$currentvers = $versions['current'];
	foreach($versions as $key => $version) {
		if($key == "current") continue;
		$currentver = array_shift(explode('-', $currentvers[$key]['version']));
		if($version == 1) {
			$img = "pass.gif";
			$pastlatest = true;
		} elseif($currentver > $version[count($version) - 1]['version']) {
			$img = "pass.gif";
			$pastlatest = true;
		} else {
			$allinstall = true;
			$img = "block.gif";
		}
?>
						<tr valign="top">
							<td class="listlr" nowrap align="middle"><img src="<?=$img;?>" width="11" height="11" align="absmiddle"></td>
							<td class="listlr"><?= ucfirst($key) ?></td>
							<td class="listlr"><?= $currentver ?></td>
<?php
		if($version == 1) {
?>
							<td class="listlr"><?= $currentver ?></td>
<?php
		} elseif($pastlatest) {
			$newver = $version[count($version) - 1]['version'];
?>
							<td class="listbggrey"><font color="#FFFFFFF"><?= $newver ?></td>
<?php
		} else {
			$newver = $version[count($version) - 1]['version'];
?>
							<td class="listbg"><font color="#FFFFFFF"><?= $newver ?></td>
<?php
		} 
		if(!$pastlatest) {
?>
							<td valign="middle" class="list" nowrap>
								<a href="system_firmware_auto.php?category=<?=$key;?>"><img src="plus.gif" width="17" height="17" border="0"></a>
							</td>
<?php
		}
?>
						</tr>
<?php
	}
?>
					</table>
<?php
	if($allinstall) {
?>
					<br>
					<br>
					<table align="center" width="80%" border="0" cellpadding="0" cellspacing="0">
						<tr>
							<td align="center"><a href="javascript:toggleTable('updates', 'tri_updates')"><img src="/tri_c_black.gif" id="tri_updates" width="14" height="10" border="0"></a><strong><a href="javascript:toggleTable('updates', 'tri_updates')">Needed Updates</a></strong></td>
						</tr>
						<tr>
							<td>
								<br>
								<br>
								<table id="updates" align="center" width="100%" border="0" cellpadding="0" cellspacing="0">
									<tr>
										<td width="20%" class="listhdrr">Released</td>
										<td width="20%" class="listhdrr">Category</td>  
										<td width="20%" class="listhdrr">Version</td>
										<td width="20%" class="listhdrr">Size</td>
										<td width="20%" class="listhdr">Type</td>
									</tr>
<?php
		foreach($versions as $key => $value) {
			if(($key == "current") or ($value == 1)) continue;
			foreach($value as $version) {
				if(!$version['time']) $version['time'] = "Unknown";
				if(!$version['size']) $version['size'] = "Unknown";
				if(!$version['type']) $version['type'] = "Unknown";
				$version['category'] = $key;
				$times[$version['time']][] = $version;
			}
		}
		asort($times);
		foreach($times as $time) {
			foreach($time as $version) {
?>
									<tr>
										<td class="listlr">
<?php
				if($version['time'] != "Unknown") {
					echo date("D M j G:i:s", $version['time']);
				} else {
					echo $version['time'];
				}
?>
										</td>
										<td class="listlr"><?= ucfirst($version['category']) ?></td>
										<td class="listlr"><?= $version['version'] ?></td>
										<td class="listlr"><?= $version['size'] ?></td>
										<td class="listlr"><?= ucfirst($version['type']) ?></td>
									</tr>
<?php
			}
		}
?>
								</table>
								<br>
								<br>
								<script language="javascript">toggleTable('updates', 'tri_updates');</script>
							</td>
						</tr>
					</table>
					<table align="center">
						<tr>
							<td>
								<form action="system_firmware_auto.php" method="post" enctype="multipart/form-data">
									<input name="full" type="submit" class="formbtn" value="Begin Full Update">
								</form>
							</td>
						</tr>
					</table>
<?php
	}
} else {
	print_info_box("Unable to receive version information.");
}
?>
				</td>
			</tr>
		</table>
<?php
include("fend.inc");
$versions['cachetime'] = time();
$fout = fopen("/tmp/versioncheck.cache", "w");
fwrite($fout, serialize($versions));
fclose($fout);
?>
	</body>
</html>
OpenPOWER on IntegriCloud