1 |
238
|
stefan
|
<?php
|
2 |
1400
|
FrankH
|
/**
|
3 |
|
|
*
|
4 |
|
|
* @category admin
|
5 |
1476
|
Luisehahne
|
* @package media
|
6 |
1818
|
Luisehahne
|
* @author Ryan Djurovich (2004-2009), WebsiteBaker Project
|
7 |
|
|
* @copyright 2009-2012, WebsiteBaker Org. e.V.
|
8 |
1400
|
FrankH
|
* @link http://www.websitebaker2.org/
|
9 |
|
|
* @license http://www.gnu.org/licenses/gpl.html
|
10 |
|
|
* @platform WebsiteBaker 2.8.x
|
11 |
|
|
* @requirements PHP 5.2.2 and higher
|
12 |
|
|
* @version $Id$
|
13 |
1818
|
Luisehahne
|
* @filesource $HeadURL$
|
14 |
|
|
* @lastmodified $Date$
|
15 |
1400
|
FrankH
|
*
|
16 |
|
|
*/
|
17 |
238
|
stefan
|
|
18 |
1818
|
Luisehahne
|
if(!defined('WB_URL'))
|
19 |
|
|
{
|
20 |
|
|
$config_file = realpath('../../config.php');
|
21 |
|
|
if(file_exists($config_file) && !defined('WB_URL'))
|
22 |
|
|
{
|
23 |
|
|
require($config_file);
|
24 |
|
|
}
|
25 |
|
|
}
|
26 |
|
|
if(!class_exists('admin', false)){ include(WB_PATH.'/framework/class.admin.php'); }
|
27 |
238
|
stefan
|
|
28 |
1818
|
Luisehahne
|
$admin = new admin('Media', 'media', false);
|
29 |
|
|
|
30 |
238
|
stefan
|
// Include the WB functions file
|
31 |
1824
|
Luisehahne
|
if(!function_exists('directory_list')) { require(WB_PATH.'/framework/functions.php'); }
|
32 |
238
|
stefan
|
|
33 |
|
|
// Get the current dir
|
34 |
1457
|
Luisehahne
|
$requestMethod = '_'.strtoupper($_SERVER['REQUEST_METHOD']);
|
35 |
|
|
$directory = (isset(${$requestMethod}['dir'])) ? ${$requestMethod}['dir'] : '';
|
36 |
1475
|
Luisehahne
|
$directory = ($directory == '/') ? '' : $directory;
|
37 |
1400
|
FrankH
|
|
38 |
1475
|
Luisehahne
|
$dirlink = 'browse.php?dir='.$directory;
|
39 |
|
|
$rootlink = 'browse.php?dir=';
|
40 |
|
|
// $file_id = intval($admin->get_post('id'));
|
41 |
|
|
|
42 |
1818
|
Luisehahne
|
// Get the current dir
|
43 |
|
|
$currentHome = $admin->get_home_folder();
|
44 |
|
|
// check for correct directory
|
45 |
|
|
if ($currentHome && stripos(WB_PATH.MEDIA_DIRECTORY.$rootlink,WB_PATH.MEDIA_DIRECTORY.$currentHome)===false) {
|
46 |
|
|
$rootlink = $currentHome;
|
47 |
|
|
}
|
48 |
|
|
|
49 |
1475
|
Luisehahne
|
// first Check to see if it contains ..
|
50 |
1400
|
FrankH
|
if (!check_media_path($directory)) {
|
51 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_DIR_DOT_DOT_SLASH'],$rootlink, false);
|
52 |
238
|
stefan
|
}
|
53 |
|
|
|
54 |
|
|
// Get the temp id
|
55 |
1475
|
Luisehahne
|
$file_id = intval($admin->checkIDKEY('id', false, $_SERVER['REQUEST_METHOD']));
|
56 |
1400
|
FrankH
|
if (!$file_id) {
|
57 |
1475
|
Luisehahne
|
$admin->print_error($MESSAGE['GENERIC_SECURITY_ACCESS'],$dirlink, false);
|
58 |
238
|
stefan
|
}
|
59 |
|
|
|
60 |
1476
|
Luisehahne
|
// Check for potentially malicious files
|
61 |
|
|
$forbidden_file_types = preg_replace( '/\s*[,;\|#]\s*/','|',RENAME_FILES_ON_UPLOAD);
|
62 |
238
|
stefan
|
// Get home folder not to show
|
63 |
|
|
$home_folders = get_home_folders();
|
64 |
|
|
|
65 |
|
|
// Figure out what folder name the temp id is
|
66 |
|
|
if($handle = opendir(WB_PATH.MEDIA_DIRECTORY.'/'.$directory)) {
|
67 |
|
|
// Loop through the files and dirs an add to list
|
68 |
|
|
while (false !== ($file = readdir($handle))) {
|
69 |
1475
|
Luisehahne
|
$info = pathinfo($file);
|
70 |
|
|
$ext = isset($info['extension']) ? $info['extension'] : '';
|
71 |
238
|
stefan
|
if(substr($file, 0, 1) != '.' AND $file != '.svn' AND $file != 'index.php') {
|
72 |
1475
|
Luisehahne
|
if( !preg_match('/'.$forbidden_file_types.'$/i', $ext) ) {
|
73 |
|
|
if(is_dir(WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$file)) {
|
74 |
|
|
if(!isset($home_folders[$directory.'/'.$file])) {
|
75 |
|
|
$DIR[] = $file;
|
76 |
|
|
}
|
77 |
|
|
} else {
|
78 |
|
|
$FILE[] = $file;
|
79 |
238
|
stefan
|
}
|
80 |
|
|
}
|
81 |
|
|
}
|
82 |
|
|
}
|
83 |
|
|
$temp_id = 0;
|
84 |
|
|
if(isset($DIR)) {
|
85 |
384
|
Ruebenwurz
|
sort($DIR);
|
86 |
238
|
stefan
|
foreach($DIR AS $name) {
|
87 |
|
|
$temp_id++;
|
88 |
|
|
if($file_id == $temp_id) {
|
89 |
|
|
$rename_file = $name;
|
90 |
|
|
$type = 'folder';
|
91 |
|
|
}
|
92 |
|
|
}
|
93 |
|
|
}
|
94 |
|
|
if(isset($FILE)) {
|
95 |
384
|
Ruebenwurz
|
sort($FILE);
|
96 |
238
|
stefan
|
foreach($FILE AS $name) {
|
97 |
|
|
$temp_id++;
|
98 |
|
|
if($file_id == $temp_id) {
|
99 |
|
|
$rename_file = $name;
|
100 |
|
|
$type = 'file';
|
101 |
|
|
}
|
102 |
|
|
}
|
103 |
|
|
}
|
104 |
|
|
}
|
105 |
1475
|
Luisehahne
|
|
106 |
1457
|
Luisehahne
|
$file_id = $admin->getIDKEY($file_id);
|
107 |
1475
|
Luisehahne
|
|
108 |
238
|
stefan
|
if(!isset($rename_file)) {
|
109 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_FILE_NOT_FOUND'], $dirlink, false);
|
110 |
238
|
stefan
|
}
|
111 |
|
|
|
112 |
|
|
// Check if they entered a new name
|
113 |
|
|
if(media_filename($admin->get_post('name')) == "") {
|
114 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_BLANK_NAME'], "rename.php?dir=$directory&id=$file_id", false);
|
115 |
238
|
stefan
|
} else {
|
116 |
|
|
$old_name = $admin->get_post('old_name');
|
117 |
|
|
$new_name = media_filename($admin->get_post('name'));
|
118 |
|
|
}
|
119 |
|
|
|
120 |
|
|
// Check if they entered an extension
|
121 |
|
|
if($type == 'file') {
|
122 |
|
|
if(media_filename($admin->get_post('extension')) == "") {
|
123 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_BLANK_EXTENSION'], "rename.php?dir=$directory&id=$file_id", false);
|
124 |
238
|
stefan
|
} else {
|
125 |
|
|
$extension = media_filename($admin->get_post('extension'));
|
126 |
|
|
}
|
127 |
|
|
} else {
|
128 |
|
|
$extension = '';
|
129 |
|
|
}
|
130 |
|
|
|
131 |
|
|
// Join new name and extension
|
132 |
|
|
$name = $new_name.$extension;
|
133 |
|
|
|
134 |
1475
|
Luisehahne
|
$info = pathinfo(WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$name);
|
135 |
|
|
$ext = isset($info['extension']) ? $info['extension'] : '';
|
136 |
|
|
$dots = (substr($info['basename'], 0, 1) == '.') || (substr($info['basename'], -1, 1) == '.');
|
137 |
|
|
|
138 |
|
|
if( preg_match('/'.$forbidden_file_types.'$/i', $ext) || $dots == '.' ) {
|
139 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_CANNOT_RENAME'], "rename.php?dir=$directory&id=$file_id", false);
|
140 |
1475
|
Luisehahne
|
}
|
141 |
|
|
|
142 |
238
|
stefan
|
// Check if the name contains ..
|
143 |
|
|
if(strstr($name, '..')) {
|
144 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_NAME_DOT_DOT_SLASH'], "rename.php?dir=$directory&id=$file_id", false);
|
145 |
238
|
stefan
|
}
|
146 |
|
|
|
147 |
|
|
// Check if the name is index.php
|
148 |
|
|
if($name == 'index.php') {
|
149 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_NAME_INDEX_PHP'], "rename.php?dir=$directory&id=$file_id", false);
|
150 |
238
|
stefan
|
}
|
151 |
|
|
|
152 |
|
|
// Check that the name still has a value
|
153 |
|
|
if($name == '') {
|
154 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_BLANK_NAME'], "rename.php?dir=$directory&id=$file_id", false);
|
155 |
238
|
stefan
|
}
|
156 |
|
|
|
157 |
1475
|
Luisehahne
|
$info = pathinfo(WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$rename_file);
|
158 |
|
|
$ext = isset($info['extension']) ? $info['extension'] : '';
|
159 |
|
|
$dots = (substr($info['basename'], 0, 1) == '.') || (substr($info['basename'], -1, 1) == '.');
|
160 |
238
|
stefan
|
|
161 |
1475
|
Luisehahne
|
if( preg_match('/'.$forbidden_file_types.'$/i', $ext) || $dots == '.' ) {
|
162 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_CANNOT_RENAME'], "rename.php?dir=$directory&id=$file_id", false);
|
163 |
1475
|
Luisehahne
|
}
|
164 |
238
|
stefan
|
|
165 |
|
|
// Check if we should overwrite or not
|
166 |
|
|
if($admin->get_post('overwrite') != 'yes' AND file_exists(WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$name) == true) {
|
167 |
|
|
if($type == 'folder') {
|
168 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_DIR_EXISTS'], "rename.php?dir=$directory&id=$file_id", false);
|
169 |
238
|
stefan
|
} else {
|
170 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_FILE_EXISTS'], "rename.php?dir=$directory&id=$file_id", false);
|
171 |
238
|
stefan
|
}
|
172 |
|
|
}
|
173 |
|
|
|
174 |
|
|
// Try and rename the file/folder
|
175 |
|
|
if(rename(WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$rename_file, WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$name)) {
|
176 |
1457
|
Luisehahne
|
$usedFiles = array();
|
177 |
|
|
// feature freeze
|
178 |
|
|
// require_once(ADMIN_PATH.'/media/dse.php');
|
179 |
|
|
|
180 |
1818
|
Luisehahne
|
$admin->print_success($MESSAGE['MEDIA_RENAMED'], $dirlink);
|
181 |
238
|
stefan
|
} else {
|
182 |
1818
|
Luisehahne
|
$admin->print_error($MESSAGE['MEDIA_CANNOT_RENAME'], "rename.php?dir=$directory&id=$file_id", false);
|
183 |
238
|
stefan
|
}
|