Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        admin
5
 * @package         admintools
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id: create.php 1473 2011-07-09 00:40:50Z Luisehahne $
14
 * @filesource		$HeadURL:  $
15
 * @lastmodified    $Date:  $
16
 *
17
 */
18

    
19
// Print admin header
20
require('../../config.php');
21
require_once(WB_PATH.'/framework/class.admin.php');
22
// suppress to print the header, so no new FTAN will be set
23
$admin = new admin('Media', 'media_create', false);
24

    
25
// Get dir name and target location
26
$requestMethod = '_'.strtoupper($_SERVER['REQUEST_METHOD']);
27
$name = (isset(${$requestMethod}['name'])) ? ${$requestMethod}['name'] : '';
28
if($name == '') {
29
	header("Location: index.php");
30
	exit(0);
31
}
32

    
33
// Target location
34
$requestMethod = '_'.strtoupper($_SERVER['REQUEST_METHOD']);
35
$target = (isset(${$requestMethod}['target'])) ? ${$requestMethod}['target'] : '';
36
if($target == '') {
37
	header("Location: index.php");
38
	exit(0);
39
}
40

    
41
require_once(WB_PATH.'/framework/class.admin.php');
42
// suppress to print the header, so no new FTAN will be set
43
$admin = new admin('Media', 'media_create', false);
44
if (!$admin->checkFTAN())
45
{
46
	$admin->print_header();
47
	$admin->print_error($MESSAGE['GENERIC_SECURITY_ACCESS']);
48
}
49
// After check print the header
50
$admin->print_header();
51

    
52
// Include the WB functions file
53
require_once(WB_PATH.'/framework/functions.php');
54

    
55
// Check to see if name or target contains ../
56
if(strstr($name, '..')) {
57
	$admin->print_error($MESSAGE['MEDIA']['NAME_DOT_DOT_SLASH']);
58
}
59
if (!check_media_path($target, false)) {
60
	w_debug("target: $target");
61
	$admin->print_error($MESSAGE['MEDIA']['TARGET_DOT_DOT_SLASH']);
62
}
63

    
64
// Remove bad characters
65
$name = media_filename($name);
66
  
67
// Create relative path of the new dir name
68
$directory = WB_PATH.$target.'/'.$name;
69

    
70
/*  */
71
// Check to see if the folder already exists
72
if(file_exists($directory)) {
73
	$admin->print_error($MESSAGE['MEDIA']['DIR_EXISTS']);
74
}
75

    
76

    
77
if ( sizeof(createFolderProtectFile( $directory )) )
78
{
79
	$admin->print_error($MESSAGE['MEDIA']['DIR_NOT_MADE']);
80
} else {
81
	$usedFiles = array();
82
    // feature freeze
83
	// require_once(ADMIN_PATH.'/media/dse.php');
84
	$admin->print_success($MESSAGE['MEDIA']['DIR_MADE']);
85
}
86

    
87
// Print admin
88
$admin->print_footer();
(4-4/16)