Project

General

Profile

1 238 stefan
<?php
2
3
/*
4
5
 Website Baker Project <http://www.websitebaker.org/>
6 310 ryan
 Copyright (C) 2004-2006, Ryan Djurovich
7 238 stefan
8
 Website Baker is free software; you can redistribute it and/or modify
9
 it under the terms of the GNU General Public License as published by
10
 the Free Software Foundation; either version 2 of the License, or
11
 (at your option) any later version.
12
13
 Website Baker is distributed in the hope that it will be useful,
14
 but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 GNU General Public License for more details.
17
18
 You should have received a copy of the GNU General Public License
19
 along with Website Baker; if not, write to the Free Software
20
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21
22
*/
23
24
// Create admin object
25
require('../../config.php');
26
require_once(WB_PATH.'/framework/class.admin.php');
27
$admin = new admin('Media', 'media_rename', false);
28
29
// Include the WB functions file
30
require_once(WB_PATH.'/framework/functions.php');
31
32
// Include the basic header file
33
require(ADMIN_PATH.'/media/basic_header.html');
34
35
// Get list of file types to which we're supposed to append 'txt'
36
$get_result=$database->query("SELECT value FROM ".TABLE_PREFIX."settings WHERE name='rename_files_on_upload' LIMIT 1");
37
$file_extension_string='';
38
if ($get_result->numRows()>0) {
39
	$fetch_result=$get_result->fetchRow();
40
	$file_extension_string=$fetch_result['value'];
41
}
42
$file_extensions=explode(",",$file_extension_string);
43
44
45
// Get the current dir
46
$directory = $admin->get_post('dir');
47
if($directory == '/') {
48
	$directory = '';
49
}
50
// Check to see if it contains ../
51
if(strstr($directory, '../')) {
52
	$admin->print_header();
53
	$admin->print_error($MESSAGE['MEDIA']['DIR_DOT_DOT_SLASH']);
54
}
55
56
// Get the temp id
57
if(!is_numeric($admin->get_post('id'))) {
58
	header("Location: browse.php?dir=$directory");
59 286 stefan
	exit(0);
60 238 stefan
} else {
61
	$file_id = $admin->get_post('id');
62
}
63
64
// Get home folder not to show
65
$home_folders = get_home_folders();
66
67
// Figure out what folder name the temp id is
68
if($handle = opendir(WB_PATH.MEDIA_DIRECTORY.'/'.$directory)) {
69
	// Loop through the files and dirs an add to list
70
   while (false !== ($file = readdir($handle))) {
71
		if(substr($file, 0, 1) != '.' AND $file != '.svn' AND $file != 'index.php') {
72
			if(is_dir(WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$file)) {
73
				if(!isset($home_folders[$directory.'/'.$file])) {
74
					$DIR[] = $file;
75
				}
76
			} else {
77
				$FILE[] = $file;
78
			}
79
		}
80
	}
81
	$temp_id = 0;
82
	if(isset($DIR)) {
83 384 Ruebenwurz
		sort($DIR);
84 238 stefan
		foreach($DIR AS $name) {
85
			$temp_id++;
86
			if($file_id == $temp_id) {
87
				$rename_file = $name;
88
				$type = 'folder';
89
			}
90
		}
91
	}
92
	if(isset($FILE)) {
93 384 Ruebenwurz
		sort($FILE);
94 238 stefan
		foreach($FILE AS $name) {
95
			$temp_id++;
96
			if($file_id == $temp_id) {
97
				$rename_file = $name;
98
				$type = 'file';
99
			}
100
		}
101
	}
102
}
103
104
if(!isset($rename_file)) {
105
	$admin->print_error($MESSAGE['MEDIA']['FILE_NOT_FOUND'], "browse.php?dir=$directory", false);
106
}
107
108
// Check if they entered a new name
109
if(media_filename($admin->get_post('name')) == "") {
110
	$admin->print_error($MESSAGE['MEDIA']['BLANK_NAME'], "rename.php?dir=$directory&id=$file_id", false);
111
} else {
112
	$old_name = $admin->get_post('old_name');
113
	$new_name =  media_filename($admin->get_post('name'));
114
}
115
116
// Check if they entered an extension
117
if($type == 'file') {
118
	if(media_filename($admin->get_post('extension')) == "") {
119
		$admin->print_error($MESSAGE['MEDIA']['BLANK_EXTENSION'], "rename.php?dir=$directory&id=$file_id", false);
120
	} else {
121
		$extension = media_filename($admin->get_post('extension'));
122
	}
123
} else {
124
	$extension = '';
125
}
126
127
// Join new name and extension
128
$name = $new_name.$extension;
129
130
// Check if the name contains ..
131
if(strstr($name, '..')) {
132
	$admin->print_error($MESSAGE['MEDIA']['NAME_DOT_DOT_SLASH'], "rename.php?dir=$directory&id=$file_id", false);
133
}
134
135
// Check if the name is index.php
136
if($name == 'index.php') {
137
	$admin->print_error($MESSAGE['MEDIA']['NAME_INDEX_PHP'], "rename.php?dir=$directory&id=$file_id", false);
138
}
139
140
// Check that the name still has a value
141
if($name == '') {
142
	$admin->print_error($MESSAGE['MEDIA']['BLANK_NAME'], "rename.php?dir=$directory&id=$file_id", false);
143
}
144
145
// Check for potentially malicious files and append 'txt' to their name
146
foreach($file_extensions as $file_ext) {
147
	$file_ext_len=strlen($file_ext);
148
	if (substr($name,-$file_ext_len)==$file_ext) {
149
		$name.='.txt';
150
	}
151
}
152
153
154
// Check if we should overwrite or not
155
if($admin->get_post('overwrite') != 'yes' AND file_exists(WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$name) == true) {
156
	if($type == 'folder') {
157
		$admin->print_error($MESSAGE['MEDIA']['DIR_EXISTS'], "rename.php?dir=$directory&id=$file_id", false);
158
	} else {
159
		$admin->print_error($MESSAGE['MEDIA']['FILE_EXISTS'], "rename.php?dir=$directory&id=$file_id", false);
160
	}
161
}
162
163
// Try and rename the file/folder
164
if(rename(WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$rename_file, WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$name)) {
165
	$admin->print_success($MESSAGE['MEDIA']['RENAMED'], "browse.php?dir=$directory");
166
} else {
167
	$admin->print_error($MESSAGE['MEDIA']['CANNOT_RENAME'], "rename.php?dir=$directory&id=$file_id", false);
168
}
169 239 stefan
?>