File: configman.php

package info (click to toggle)
gforge 4.5.14-22etch13
  • links: PTS
  • area: main
  • in suites: etch
  • size: 13,004 kB
  • ctags: 11,918
  • sloc: php: 36,047; sql: 29,050; sh: 10,538; perl: 6,496; xml: 3,810; makefile: 341; python: 263; ansic: 256
file content (227 lines) | stat: -rw-r--r-- 7,487 bytes parent folder | download | duplicates (2)
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
<?php
/**
 * GForge Config File edit page
 *
 * @version 
 * @author 
 * @copyright 
 * Copyright 2005 GForge, LLC
 * http://gforge.org/
 *
 * Daniel A. Prez danielperez.arg@gmail.com
 *
 * This file is part of GForge.
 *
 * GForge is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * GForge is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GForge; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */


require_once('pre.php');
require_once('www/admin/admin_utils.php');

site_admin_header(array('title'=>$Language->getText('admin_index','title')));

/**
 * printSelection - prints the select box for the user to get the files to edit
 *
 * @param string the checked item (if any)
 * @param string	the path to the plugins conf dir
 */
function printSelection($checked,$pluginpath) {
	global $Language,$feedback;
	
	$config_files = array(); // array thatll have the config files
	$i = 0;
	
	if ($pluginpath[strlen($pluginpath)-1]!='/') {
		$pluginpath .= '/';
	}
					
	// check if we can get local.inc
	$handle = fopen('/etc/gforge/local.inc','r+');
	if ($handle) {
		$config_files['local.inc'] = '/etc/gforge/local.inc';
		fclose($handle);
		$i++;
	} else {
		// say we couldn't open local.inc
		$feedback .= $Language->getText('configman','notopenlocalinc');
	}

	//get the directories from the plugins dir
	/*if (chdir($pluginpath)) {
		$handle = opendir('.');
		$j = 0;
		while ($filename = readdir($handle)) {
			//Don't add special directories '..' or '.' to the list
			if (($filename!='..') && ($filename!='.') && ($filename!="CVS") ) {
				$handle2 = @opendir($filename); // open the etc dir of the plugin 
				if ($handle2){
					while ($filename2 = readdir($handle2)) {
						if (strstr($filename2,'.conf') || strstr($filename2,'.inc') || ($filename2=='config.php')) {
							$config_files['(' . $filename . ') - ' . $filename2] = $pluginpath . $filename . '/' . $filename2;
							$i++;						
						}
					}
					fclose($handle2);
				}
			}
		}
		fclose($handle);
	} else {
		// say we couldn't get into etc plugins dir
		$feedback .= $Language->getText('configman','notopenplugindir');
	}*/
	
	echo '<br><div align="center">';
	echo html_build_select_box_from_assoc($config_files,'files',$checked,true);
	echo '&nbsp;<input type="submit" name="choose" value="' . $Language->getText('configman','choose') .'"/>';
	echo '</div><br>';	
}

/**
 * getVars - gets the contents of the file and returns an associative array of field names / values
 *
 * @param string	the contents of the file
 * @return array	the results
 */
function getVars($filedata) {
	
	$lines = explode("\n",$filedata);
	$results = array();
	foreach ($lines as $line) {
		if ( (strstr($line,"true") || strstr($line,"false")) && (!strstr($line,"//"))) { // get the true / false vars
			$sep_var = explode("=",$line);
			$sep_var[0] = trim($sep_var[0]);
			$sep_var[1] = substr(trim($sep_var[1]),0,strlen(trim($sep_var[1]))-1);
			$results[$sep_var[0]] = $sep_var[1];
		}
	}
	return $results;
}

/**
 * updateVars - updates the values of the vars of the file passed as an argument with the values of the array passed
 *
 * @param unknown_type $vars
 * @param unknown_type $filepath
 */
function updateVars($vars,$filepath) {
	global $Language,$feedback;
	
	$filedata = file_get_contents($filepath);
	$lines = explode("\n",$filedata);
	$keys = array_keys($vars);
	for($i=0;$i<(count($vars));$i++) {
		$currline = $keys[$i] . "=" . $vars[$keys[$i]] . ";";
		//$filedata = preg_replace('/(.*)(' . $keys[$i] . ')([^;]*);(.*)/','/\1\2='.$vars[$keys[$i]].';\n\4/',$filedata);	
		for ($j=0;$j<count($lines);$j++) {
			if (strstr($lines[$j],$keys[$i])) {
				$lines[$j] = $currline;
			}
		}
	}
	$filedata = implode("\n",$lines);
	if ($handle = fopen($filepath,'w')) {
		if (fwrite($handle,$filedata)) {
			// say wrote ok
			$feedback .= $Language->getText('configman','updateok');
		} else {
			// say some problem
			$feedback .= $Language->getText('configman','nowrite');
		}
	} else {
		// say couldnt open
		$feedback .= $Language->getText('configman','notopenfile');
	}
}

?>


<form name="theform" action="<?php echo getStringFromServer('PHP_SELF'); ?>" method="POST">

<!--<?php //echo $Language->getText('configman','enterpath'); ?>&nbsp;&nbsp;
<input type="text" size="55" width="55" name="pluginpath" value="<?php //echo getStringFromRequest('pluginpath')?>"/>
<input type="submit" name="changepath" value="<?php //echo $Language->getText('configman','change'); ?>"/>
<br>'-->
<?php

//if (getStringFromRequest('pluginpath')) {

	printSelection(getStringFromRequest('files'),getStringFromRequest('pluginpath'));
	
	if (getStringFromRequest('choose')) {
		
		$filepath = getStringFromRequest('files');
		$handle = fopen($filepath,'r+');
		if ($handle){
			fclose($handle); // we had to open it in r+ because we need to check we'll be able to save it later
			$filedata = file_get_contents($filepath);
			$vars = getVars($filedata); // get the vars from local.inc
			$keys = array_keys($vars);
			$title_arr = array($Language->getText('configman','name'),$Language->getText('configman','on'),$Language->getText('configman','off'));
			echo $HTML->listTableTop($title_arr);
			$j = 0;
			for($i=0;$i<(count($keys));$i++) {
				$checkedtrue = "";
				$checkedfalse = "";
				($vars[$keys[$i]]=="true")?$checkedtrue=' CHECKED ':$checkedfalse=' CHECKED ';
				echo '<tr '. $HTML->boxGetAltRowStyle($j+1) .'>'.
			 	'<td>'. $keys[$i] .'</td>'.
			 	'<td>'. '<input type="radio" name="attributes[' . $keys[$i] . ']" value="true" ' . $checkedtrue . '>' .'</td>'.
			 	'<td><div align="center">'. '<input type="radio" name="attributes[' . $keys[$i] . ']" value="false" ' . $checkedfalse . '>' .'</div></td></tr>';
			 	$j++;
			}
			echo $HTML->listTableBottom();
			/*echo '<br><center>' . html_build_rich_textarea('filedata',30,150,$filedata,false) . '</center>';
			echo '<input type="hidden" name="filepath" value="' . $filepath . '">';*/
			echo '<br><div align="center"><input type="submit" name="doedit" value="' . $Language->getText('configman','doedit') .'"/></div>';
		} else {
			// say we couldn't open the file
			$feedback .= $Language->getText('configman','notopenfile');
		}
	} elseif (getStringFromRequest('doedit')) {
		updateVars(getArrayFromRequest('attributes'),'/etc/gforge/local.inc'); // perhaps later well update something else, for now its local.inc
		/*$filedata = getStringFromRequest('filedata');
		$filedata = str_replace('\"','"',$filedata);
		$filedata = str_replace("\'","'",$filedata);
		$filepath = getStringFromRequest('filepath');
		if ($handle = fopen($filepath,'w')) {
			if (fwrite($handle,$filedata)) {
				// say wrote ok
				$feedback .= $Language->getText('configman','updateok');
			} else {
				// say some problem
				$feedback .= $Language->getText('configman','nowrite');
			}
		} else {
			// say couldnt open
			$feedback .= $Language->getText('configman','notopenfile');
		}*/
	}
//}


?>

</form>

<?php


site_admin_footer(array());

?>