Project

General

Profile

Download (6.69 KB) Statistics
| Branch: | Tag: | Revision:
1 447611c4 Scott Ullrich
<?php
2 b46bfcf5 Bill Marquette
/* $Id$ */
3 a7f908db Scott Ullrich
/*
4 0d6a185a Scott Ullrich
	edit.php
5
	Copyright (C) 2004, 2005 Scott Ullrich
6
	All rights reserved.
7
8
	Redistribution and use in source and binary forms, with or without
9
	modification, are permitted provided that the following conditions are met:
10
11
	1. Redistributions of source code must retain the above copyright notice,
12
	   this list of conditions and the following disclaimer.
13
14
	2. Redistributions in binary form must reproduce the above copyright
15
	   notice, this list of conditions and the following disclaimer in the
16
	   documentation and/or other materials provided with the distribution.
17
18
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
19
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
20
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
22
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
	POSSIBILITY OF SUCH DAMAGE.
28 a7f908db Scott Ullrich
*/
29 7ac5a4cb Scott Ullrich
/*
30
	pfSense_MODULE:	shell
31
*/
32 a7f908db Scott Ullrich
33 fdb38c10 Scott Ullrich
$pgtitle = array(gettext("Diagnostics"), gettext("Edit file"));
34 859329c8 Scott Ullrich
require("guiconfig.inc");
35
36 0d6a185a Scott Ullrich
if($_REQUEST['action']) {
37
	switch($_REQUEST['action']) {
38
		case 'load':
39
			if(strlen($_REQUEST['file']) < 1) {
40
				echo "|5|No file name specified.|";
41
			} elseif(is_dir($_REQUEST['file'])) {
42
				echo "|4|Loading a directory is not supported.|";
43
			} elseif(! is_file($_REQUEST['file'])) {
44
				echo "|3|File does not exist or is not a regular file.|";
45
			} else {
46 bd125eb2 Scott Ullrich
				$data = file_get_contents(urldecode($_REQUEST['file']));
47 0d6a185a Scott Ullrich
				if($data === false) {
48
					echo "|1|Failed to read file.|";
49
				} else {
50
					echo "|0|{$_REQUEST['file']}|{$data}|";	
51
				}
52
			}
53
			exit;
54
		case 'save':
55
			if(strlen($_REQUEST['file']) < 1) {
56
				echo "|No file name specified.|";
57
			} else {
58 5a557f44 jim-p
				conf_mount_rw();
59 0d6a185a Scott Ullrich
				$ret = file_put_contents($_REQUEST['file'], $_REQUEST['data']);
60 5a557f44 jim-p
				conf_mount_ro();
61 5f05c1e8 Scott Ullrich
				if($_REQUEST['file'] == "config.xml")
62
					if(file_exists("/tmp/config.cache"))
63
						unlink("/tmp/config.cache");
64 0d6a185a Scott Ullrich
				if($ret === false) {
65
					echo "|Failed to write file.|";
66
				} elseif($ret <> strlen($_REQUEST['data'])) {
67
					echo "|Error while writing file.|";
68
				} else {
69
					echo "|File successfully saved.|";
70
				}
71
			}
72
			exit;
73 5124d619 Scott Ullrich
	}
74 0d6a185a Scott Ullrich
	exit;
75 5124d619 Scott Ullrich
}
76
77 0d6a185a Scott Ullrich
require("head.inc");
78
outputCSSFileInline("code-syntax-highlighter/SyntaxHighlighter.css");
79
outputJavaScriptFileInline("filebrowser/browser.js");
80 5b237745 Scott Ullrich
81
?>
82
83 0d6a185a Scott Ullrich
<body link="#000000" vlink="#000000" alink="#000000">
84
<?php include("fbegin.inc"); ?>
85 5b237745 Scott Ullrich
86 0d6a185a Scott Ullrich
<script type="text/javascript">	
87
	function loadFile() {
88
		$("fileStatus").innerHTML = "Loading file ...";
89
		Effect.Appear("fileStatusBox", { duration: 0.5 });
90
91
		new Ajax.Request(
92
			"<?=$_SERVER['SCRIPT_NAME'];?>", {
93
				method:     "post",
94
				postBody:   "action=load&file=" + $("fbTarget").value,
95
				onComplete: loadComplete
96
			}
97
		);
98
	}
99 5b237745 Scott Ullrich
100 0d6a185a Scott Ullrich
	function loadComplete(req) {
101
		Element.show("fileContent")
102
		var values = req.responseText.split("|");
103
		values.shift(); values.pop();
104
105
		if(values.shift() == "0") {
106
			var file = values.shift();
107
			$("fileStatus").innerHTML = "File successfully loaded.";
108
			$("fileContent").value    = values.join("|");
109
110
			var lang = "none";
111
				 if(file.indexOf(".php") > 0) lang = "php";
112
			else if(file.indexOf(".inc") > 0) lang = "php";
113
			else if(file.indexOf(".xml") > 0) lang = "xml";
114
			else if(file.indexOf(".js" ) > 0) lang = "js";
115
			else if(file.indexOf(".css") > 0) lang = "css";
116
117
			if($("highlight").checked && lang != "none") {
118
				$("fileContent").className = lang + ":showcolumns";
119
				dp.SyntaxHighlighter.HighlightAll("fileContent", true, false);
120
			}
121
		}
122
		else {
123
			$("fileStatus").innerHTML = values[0];
124
			$("fileContent").value = "";
125
		}
126 ccce75df Scott Ullrich
		new Effect.Appear("fileContent");
127 0d6a185a Scott Ullrich
	}
128 5b237745 Scott Ullrich
129 0d6a185a Scott Ullrich
	function saveFile(file) {
130
		$("fileStatus").innerHTML = "Saving file ...";
131
		Effect.Appear("fileStatusBox", { duration: 0.5 });
132 df61b7b4 mcrane
		
133
		var fileContent = escape($("fileContent").value);
134
		fileContent = fileContent.replace(/\+/g,"%2B");
135
		
136 0d6a185a Scott Ullrich
		new Ajax.Request(
137
			"<?=$_SERVER['SCRIPT_NAME'];?>", {
138
				method:     "post",
139
				postBody:   "action=save&file=" + $("fbTarget").value +
140 df61b7b4 mcrane
							"&data=" + fileContent,
141 0d6a185a Scott Ullrich
				onComplete: function(req) {
142
					var values = req.responseText.split("|");
143
					$("fileStatus").innerHTML = values[1];
144
				}
145
			}
146
		);
147
	}
148
</script>
149 5b237745 Scott Ullrich
150 0d6a185a Scott Ullrich
<!-- file status box -->
151
<div style="display:none; background:#eeeeee;" id="fileStatusBox">
152
	<div class="vexpl" style="padding-left:15px;">
153
		<strong id="fileStatus"></strong>
154
	</div>
155
</div>
156 48581bb7 Scott Ullrich
157 0d6a185a Scott Ullrich
<br />
158
159
<table width="100%" border="0" cellpadding="0" cellspacing="0">
160
	<tr>
161
		<td class="tabcont" align="center">
162
163
<!-- controls -->
164
<table width="100%" cellpadding="9" cellspacing="9">
165
	<tr>
166
		<td align="center" class="list">
167
			Save / Load from path:
168
			<input type="text"   class="formfld file" id="fbTarget"         size="45" />
169
			<input type="button" class="formbtn"      onclick="loadFile();" value="<?=gettext('Load');?>" />
170
			<input type="button" class="formbtn"      id="fbOpen"           value="<?=gettext('Browse');?>" />
171
			<input type="button" class="formbtn"      onclick="saveFile();" value="<?=gettext('Save');?>" />
172
			<br />
173 fae0b511 Scott Ullrich
			<?php
174
			/*
175
			<input type="checkbox" id="highlight" /><?=gettext("Enable syntax highlighting");
176
			*/
177
			?>
178 0d6a185a Scott Ullrich
		</td>
179
	</tr>
180
</table>
181 2e8eada0 Scott Ullrich
182 0d6a185a Scott Ullrich
<!-- filebrowser -->
183
<div id="fbBrowser" style="display:none; border:1px dashed gray; width:98%;"></div>
184
185
<!-- file viewer/editor -->
186
<table width="100%">
187
	<tr>
188
		<td valign="top" class="label">
189
			<div style="background:#eeeeee;" id="fileOutput">
190
				<textarea id="fileContent" name="fileContent" style="width:100%;" rows="30" wrap="off"></textarea>
191
			</div>
192
		</td>
193
	</tr>
194
</table>
195 2e8eada0 Scott Ullrich
196 0d6a185a Scott Ullrich
		</td>
197
	</tr>
198 5124d619 Scott Ullrich
</table>
199
200 0d6a185a Scott Ullrich
<script type="text/javascript" src="/code-syntax-highlighter/shCore.js"></script>
201
<script type="text/javascript" src="/code-syntax-highlighter/shBrushCss.js"></script>
202
<script type="text/javascript" src="/code-syntax-highlighter/shBrushJScript.js"></script>
203
<script type="text/javascript" src="/code-syntax-highlighter/shBrushPhp.js"></script>
204
<script type="text/javascript" src="/code-syntax-highlighter/shBrushXml.js"></script>
205
<script type="text/javascript">
206
	Event.observe(
207
		window, "load",
208
		function() {
209
			$("fbTarget").focus();
210
211
			NiftyCheck();
212
			Rounded("div#fileStatusBox", "all", "#ffffff", "#eeeeee", "smooth");
213
		}
214
	);
215
216
	<?php if($_GET['action'] == "load"): ?>
217
		Event.observe(
218
			window, "load",
219
			function() {
220
				$("fbTarget").value = "<?=$_GET['path'];?>";
221
				loadFile();
222
			}
223
		);
224
	<?php endif; ?>
225
</script>
226 ab541dbb Scott Ullrich
227 2900e518 Scott Ullrich
<?php include("fend.inc"); ?>
228 5b237745 Scott Ullrich
</body>
229
</html>