Project

General

Profile

1
<?php
2

    
3
// $Id: rename.php 915 2009-01-21 19:27:01Z Ruebenwurzel $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2009, Ryan Djurovich
9

    
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14

    
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19

    
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23

    
24
*/
25

    
26
// Create admin object
27
require('../../config.php');
28
require_once(WB_PATH.'/framework/class.admin.php');
29
$admin = new admin('Media', 'media_rename', false);
30

    
31
// Include the WB functions file
32
require_once(WB_PATH.'/framework/functions.php');
33

    
34
// Include the basic header file
35
require(ADMIN_PATH.'/media/basic_header.html');
36

    
37
// Get the current dir
38
$directory = $admin->get_get('dir');
39
if($directory == '/') {
40
	$directory = '';
41
}
42
// Check to see if it contains ../
43
if(strstr($directory, '../')) {
44
	$admin->print_error($MESSAGE['MEDIA']['DIR_DOT_DOT_SLASH'], "rename.php?dir=$directory&id=$file_id", false);
45
}
46

    
47
// Get the temp id
48
if(!is_numeric($admin->get_get('id'))) {
49
	header("Location: browse.php?dir=$directory");
50
	exit(0);
51
} else {
52
	$file_id = $admin->get_get('id');
53
}
54

    
55
// Get home folder not to show
56
$home_folders = get_home_folders();
57

    
58
// Figure out what folder name the temp id is
59
if($handle = opendir(WB_PATH.MEDIA_DIRECTORY.'/'.$directory)) {
60
	// Loop through the files and dirs an add to list
61
   while (false !== ($file = readdir($handle))) {
62
		if(substr($file, 0, 1) != '.' AND $file != '.svn' AND $file != 'index.php') {
63
			if(is_dir(WB_PATH.MEDIA_DIRECTORY.$directory.'/'.$file)) {
64
				if(!isset($home_folders[$directory.'/'.$file])) {
65
					$DIR[] = $file;
66
				}
67
			} else {
68
				$FILE[] = $file;
69
			}
70
		}
71
	}
72
	$temp_id = 0;
73
	if(isset($DIR)) {
74
		sort($DIR);
75
		foreach($DIR AS $name) {
76
			$temp_id++;
77
			if($file_id == $temp_id) {
78
				$rename_file = $name;
79
				$type = 'folder';
80
			}
81
		}
82
	}
83
	if(isset($FILE)) {
84
		sort($FILE);
85
		foreach($FILE AS $name) {
86
			$temp_id++;
87
			if($file_id == $temp_id) {
88
				$rename_file = $name;
89
				$type = 'file';
90
			}
91
		}
92
	}
93
}
94

    
95
if(!isset($rename_file)) {
96
	$admin->print_error($MESSAGE['MEDIA']['FILE_NOT_FOUND'], "browse.php?dir=$directory", false);
97
}
98

    
99
// Setup template object
100
$template = new Template(ADMIN_PATH.'/media');
101
$template->set_file('page', 'rename.html');
102
$template->set_block('page', 'main_block', 'main');
103
//echo WB_PATH.'/media/'.$directory.'/'.$rename_file;
104
if($type == 'folder') {
105
	$template->set_var('DISPlAY_EXTENSION', 'hide');
106
	$extension = '';
107
} else {
108
	$template->set_var('DISPlAY_EXTENSION', '');
109
	$extension = strstr($rename_file, '.');
110
}
111

    
112
if($type == 'folder') {
113
	$type = $TEXT['FOLDER'];
114
} else {
115
	$type = $TEXT['FILE'];
116
}
117

    
118
$template->set_var(array(
119
								'FILENAME' => $rename_file,
120
								'DIR' => $directory,
121
								'FILE_ID' => $file_id,
122
								'TYPE' => $type,
123
								'EXTENSION' => $extension
124
								)
125
						);
126

    
127

    
128
// Insert language text and messages
129
$template->set_var(array(
130
								'TEXT_TO' => $TEXT['TO'],
131
								'TEXT_RENAME' => $TEXT['RENAME'],
132
								'TEXT_CANCEL' => $TEXT['CANCEL'],
133
								'TEXT_UP' => $TEXT['UP'],
134
								'TEXT_OVERWRITE_EXISTING' => $TEXT['OVERWRITE_EXISTING']
135
								)
136
						);
137

    
138
// Parse template object
139
$template->parse('main', 'main_block', false);
140
$template->pparse('output', 'page');
141

    
142
?>
(8-8/11)