Project

General

Profile

Download (10.4 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/* $Id$ */
3
/*
4
	system_firmware_settings.php
5
       	part of pfSense
6
		Copyright (C) 2008 Scott Ullrich <sullrich@gmail.com>
7
        Copyright (C) 2005 Colin Smith
8

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

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

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

    
19
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
20
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
21
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
23
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
	POSSIBILITY OF SUCH DAMAGE.
29
*/
30
/*
31
	pfSense_BUILDER_BINARIES:	/usr/bin/fetch
32
	pfSense_MODULE:	firmware
33
*/
34

    
35
##|+PRIV
36
##|*IDENT=page-system-firmware-settings
37
##|*NAME=System: Firmware: Settings page
38
##|*DESCR=Allow access to the 'System: Firmware: Settings' page.
39
##|*MATCH=system_firmware_settings.php*
40
##|-PRIV
41

    
42
require("guiconfig.inc");
43

    
44
if ($_POST) {
45
	if (!$input_errors) {
46
		if($_POST['alturlenable'] == "yes") {
47
			$config['system']['firmware']['alturl']['enable'] = true;
48
			$config['system']['firmware']['alturl']['firmwareurl'] = $_POST['firmwareurl'];
49
		} else {
50
			unset($config['system']['firmware']['alturl']['enable']);
51
			unset($config['system']['firmware']['alturl']['firmwareurl']);
52
			unset($config['system']['firmware']['alturl']);
53
			unset($config['system']['firmware']);
54
		}
55
		if($_POST['allowinvalidsig'] == "yes")
56
			$config['system']['firmware']['allowinvalidsig'] = true;
57
		else
58
			unset($config['system']['firmware']['allowinvalidsig']);
59

    
60
		if($_POST['disablecheck'] == "yes")
61
			$config['system']['firmware']['disablecheck'] = true;
62
		else
63
			unset($config['system']['firmware']['disablecheck']);
64

    
65
		if($_POST['synconupgrade'] == "yes")
66
			$config['system']['gitsync']['synconupgrade'] = true;
67
		else
68
			unset($config['system']['gitsync']['synconupgrade']);
69
		$config['system']['gitsync']['repositoryurl'] = $_POST['repositoryurl'];
70
		$config['system']['gitsync']['branch'] = $_POST['branch'];
71

    
72
		write_config();
73
	}
74
}
75

    
76
$curcfg = $config['system']['firmware'];
77
$gitcfg = $config['system']['gitsync'];
78

    
79
$pgtitle = array(gettext("System"),gettext("Firmware"),gettext("Settings"));
80
include("head.inc");
81

    
82
exec("/usr/bin/fetch -q -o /tmp/manifest \"{$g['update_manifest']}\"");
83
if(file_exists("/tmp/manifest")) {
84
	$preset_urls_split = explode("\n", file_get_contents("/tmp/manifest"));
85
}
86

    
87
?>
88
<script language="JavaScript">
89
<!--
90

    
91

    
92
function enable_altfirmwareurl(enable_over) {  	 
93
	if (document.iform.alturlenable.checked || enable_over) { 	 
94
		document.iform.firmwareurl.disabled = 0; 	 
95
	} else { 	 
96
		document.iform.firmwareurl.disabled = 1;
97
		document.iform.firmwareurl.value = '';
98
	} 	 
99
}
100

    
101
// -->
102
</script>
103

    
104
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
105
<?php include("fbegin.inc");?>
106
<?php if ($input_errors) print_input_errors($input_errors); ?>
107

    
108
<form action="system_firmware_settings.php" method="post" name="iform" id="iform">
109
            <?php if ($savemsg) print_info_box($savemsg); ?>
110
              <table width="100%" border="0" cellpadding="0" cellspacing="0">
111
	<tr>
112
		<td>
113
<?php
114
	$tab_array = array();
115
	$tab_array[] = array(gettext("Manual Update"), false, "system_firmware.php");
116
	$tab_array[] = array(gettext("Auto Update"), false, "system_firmware_check.php");
117
	$tab_array[] = array(gettext("Updater Settings"), true, "system_firmware_settings.php");
118
	if($g['hidedownloadbackup'] == false)
119
		$tab_array[] = array(gettext("Restore Full Backup"), false, "system_firmware_restorefullbackup.php");
120
	display_top_tabs($tab_array);
121
?>
122
		</td>
123
	</tr>
124
	<tr><td><div id=mainarea>
125
	      <table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0">
126
	<tr>
127
		<td colspan="2" valign="top" class="listtopic"><?=gettext("Firmware Branch"); ?></td>
128
	</tr>
129
<?php if(is_array($preset_urls_split)): ?>
130
	<tr>
131
		<td valign="top" class="vncell"><?=gettext("Default Auto Update URLs"); ?></td>
132
		<td class="vtable">
133
			<select name='preseturls' id='preseturls' onChange="firmwareurl.value = preseturls.value; document.iform.firmwareurl.disabled = 0; alturlenable.checked=true; jQuery('#preseturls').parent().effect('highlight');">
134
					<option></option>
135
				<?php 
136
					foreach($preset_urls_split as $pus) {
137
						$pus_text = explode("\t", $pus);
138
						if (empty($pus_text[0]))
139
							continue;
140
						if (stristr($pus_text[0], php_uname("m")) !== false) {
141
							$style = " style=\"font-weight: bold\"";
142
							$yourarch = " (Current architecture)";
143
						} else {
144
							$style = "";
145
							$yourarch = "";
146
						}
147
						echo "<option value='{$pus_text[1]}'{$style}>{$pus_text[0]}{$yourarch}</option>";
148
					}
149
				?>
150
			</select>
151
		<br/><br/><?php echo sprintf(gettext("Entries denoted by \"Current architecture\" match the architecture of your current installation, such as %s. Changing architectures during an upgrade is not recommended, and may require a manual reboot after the update completes."), php_uname("m")); ?>
152
		</td>
153
	</tr>
154
<?php endif; ?>
155
	<tr>
156
		<td valign="top" class="vncell"><?=gettext("Firmware Auto Update URL"); ?></td>
157
		<td class="vtable">
158
			<input name="alturlenable" type="checkbox" id="alturlenable" value="yes" onClick="enable_altfirmwareurl()" <?php if(isset($curcfg['alturl']['enable'])) echo "checked"; ?>> <?=gettext("Use a URL server for firmware upgrades other than") . " " . $g['product_website']; ?><br>
159
			<table>
160
			<tr><td><?=gettext("Base URL:"); ?></td><td><input name="firmwareurl" type="input" class="formfld url" id="firmwareurl" size="64" value="<?php if($curcfg['alturl']['firmwareurl']) echo $curcfg['alturl']['firmwareurl']; else echo $g['']; ?>"></td></tr>
161
			</table>
162
			<span class="vexpl">
163
				<?=gettext("This is where"); ?> <?php echo $g['product_name'] ?> <?=gettext("will check for newer firmware versions when the"); ?> <a href="system_firmware_check.php"><?=gettext("System: Firmware: Auto Update"); ?></a> <?=gettext("page is viewed."); ?>
164
				<p/>
165
				<b><?=gettext("NOTE:"); ?></b> <?php printf(gettext("When a custom URL is enabled, the system will not verify the digital signature from %s."), $g['product_website']); ?>
166
				</span>
167
				</td>
168
	</tr>
169
	<tr>
170
		<td colspan="2" class="list" height="12">&nbsp;</td>
171
	</tr>
172
	<tr>
173
		<td colspan="2" valign="top" class="listtopic"><?=gettext("Updates"); ?></td>
174
	</tr>
175
	<tr>
176
		<td width="22%" valign="top" class="vncell"><?=gettext("Unsigned images"); ?></td>
177
		<td width="78%" class="vtable">
178
			<input name="allowinvalidsig" type="checkbox" id="allowinvalidsig" value="yes" <?php if (isset($curcfg['allowinvalidsig'])) echo "checked"; ?> />
179
			<br />
180
			<?=gettext("Allow auto-update firmware images with a missing or invalid digital signature to be used."); ?>
181
		</td>
182
	</tr>
183
	<tr>
184
		<td width="22%" valign="top" class="vncell"><?=gettext("Dashboard check"); ?></td>
185
		<td width="78%" class="vtable">
186
			<input name="disablecheck" type="checkbox" id="disablecheck" value="yes" <?php if (isset($curcfg['disablecheck'])) echo "checked"; ?> />
187
			<br />
188
			<?=gettext("Disable the automatic dashboard auto-update check."); ?>
189
		</td>
190
	</tr>
191
<?php if(file_exists("/usr/local/bin/git") && $g['platform'] == "pfSense"): ?>
192
	<tr>
193
		<td colspan="2" class="list" height="12">&nbsp;</td>
194
	</tr>
195
	<tr>
196
		<td colspan="2" valign="top" class="listtopic"><?=gettext("Gitsync"); ?></td>
197
	</tr>
198
	<tr>
199
		<td width="22%" valign="top" class="vncell"><?=gettext("Auto sync on update"); ?></td>
200
		<td width="78%" class="vtable">
201
			<input name="synconupgrade" type="checkbox" id="synconupgrade" value="yes" <?php if (isset($gitcfg['synconupgrade'])) echo "checked"; ?> />
202
			<br />
203
			<?=gettext("After updating, sync with the following repository/branch before reboot."); ?>
204
		</td>
205
	</tr>
206
<?php
207
	if(is_dir("/root/pfsense/pfSenseGITREPO/pfSenseGITREPO")) {
208
		exec("cd /root/pfsense/pfSenseGITREPO/pfSenseGITREPO && git config remote.origin.url", $output_str);
209
		if(is_array($output_str) && !empty($output_str[0]))
210
			$lastrepositoryurl = $output_str[0];
211
		unset($output_str);
212
	}
213
?>
214
	<tr>
215
		<td width="22%" valign="top" class="vncell"><?=gettext("Repository URL"); ?></td>
216
		<td width="78%" class="vtable">
217
			<input name="repositoryurl" type="input" class="formfld url" id="repositoryurl" size="64" value="<?php if ($gitcfg['repositoryurl']) echo $gitcfg['repositoryurl']; ?>">
218
<?php if($lastrepositoryurl): ?>
219
			<br />
220
			<?=sprintf(gettext("The most recently used repository was %s"), $lastrepositoryurl); ?>
221
			<br />
222
			<?=gettext("This will be used if the field is left blank."); ?>
223
<?php endif; ?>
224
		</td>
225
	</tr>
226
<?php
227
	if(is_dir("/root/pfsense/pfSenseGITREPO/pfSenseGITREPO")) {
228
		exec("cd /root/pfsense/pfSenseGITREPO/pfSenseGITREPO && git branch", $output_str);
229
		if(is_array($output_str)) {
230
			foreach($output_str as $output_line) {
231
				if(strstr($output_line, '* ')) {
232
					$lastbranch = substr($output_line, 2);
233
					break;
234
				}
235
			}
236
		}
237
		unset($output_str);
238
	}
239
?>
240
	<tr>
241
		<td width="22%" valign="top" class="vncell"><?=gettext("Branch name"); ?></td>
242
		<td width="78%" class="vtable">
243
			<input name="branch" type="input" class="formfld unknown" id="branch" size="64" value="<?php if ($gitcfg['branch']) echo $gitcfg['branch']; ?>">
244
<?php if($lastbranch): ?>
245
			<br />
246
			<?=sprintf(gettext("The most recently used branch was %s"), $lastbranch); ?>
247
<?php else: ?>
248
			<br />
249
			<?=gettext("Usually the branch name is master"); ?>
250
<?php endif; ?>
251
			<br />
252
			<?=gettext("Note: Sync will not be performed if a branch is not specified."); ?>
253
		</td>
254
	</tr>
255
<?php endif; ?>
256
	<script>enable_altfirmwareurl();</script>
257
                <tr>
258
                  <td width="22%" valign="top">&nbsp;</td>
259
                  <td width="78%">
260
                    <input name="Submit" type="submit" class="formbtn" value="<?=gettext("Save"); ?>">
261
                  </td>
262
                </tr>
263
              </table></div></td></tr></table>
264
</form>
265
<?php include("fend.inc"); ?>
266
</body>
267
</html>
(213-213/249)