forked from geoffhumphrey/brewcompetitiononlineentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandle.php
126 lines (103 loc) · 4.47 KB
/
handle.php
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
<?php
require('paths.php');
require('includes/url_variables.inc.php');
// Force download of uploaded scoresheet PDF
// Discourages random viewing of scoresheets by inputting direct URL
if ((isset($_SESSION['loginUsername'])) && ($section == "pdf-download")) {
header("Content-disposition: attachment; filename=$id.pdf");
header("Content-type: application/pdf");
readfile(USER_DOCS."$id.pdf");
}
// Upload Function
elseif ((isset($_SESSION['loginUsername'])) && ($_SESSION['userLevel'] == "0") && ($section == "default")) {
// Redirect if script accessed directly
if (empty($_FILES['file'])) {
$errorGoTo = "index.php?section=admin&go=upload&msg=0";
header(sprintf("Location: %s", $errorGoTo));
exit;
}
// Define variables directory to upload to
$ds = DIRECTORY_SEPARATOR; // Directory separator
if (($action == "default") || ($action == "html")) $target_path = USER_IMAGES;
if (($action == "docs") || ($action == "html_docs")) $target_path = USER_DOCS;
$backlist = array('php', 'php3', 'php4', 'phtml', 'exe'); // Restrict file extensions
$valid_chars_regex = "A-Za-z0-9_-\s "; // Characters allowed in the file name (in a Regular Expression format)
/*
// Commenting out by request - GitHub Issue #623
// Change chmod permission if needed
chmod($target_path, 0755);
// Redirect if chmod can't be changed via php
if (!chmod($target_path,0755)) {
$errorGoTo = "index.php?section=admin&go=upload&msg=755";
header(sprintf("Location: %s", $errorGoTo));
exit;
}
*/
// Security check variables
$max_size = 10000000; // Limit size of upload to 10MB
$file_mimes = array('image/jpeg','image/jpg','image/gif','image/png','application/pdf'); // Allowable file mime types
$file_exts = array('.jpeg','.jpg','.png','.gif','.pdf'); // Allowable file extensions
// If file present without errors
if ((!empty($_FILES['file'])) && ($_FILES['file']['error'] == 0)) {
$file_type = $_FILES['file']['type'];
$file_ext = strtolower(substr($_FILES['file']['name'],strrpos($_FILES['file']['name'],".")));
/*
echo $file_type."<br>";
echo $file_ext."<br>";
echo $_FILES['file']['name']."<br>";
echo $target_path;
*/
// If file type is on the blacklist
$file_extension = explode('.', $_FILES['file']['name']);
if ((in_array(end($file_extension), $backlist)) || (!in_array($file_ext, $file_exts))) {
if ($action == "html") $errorGoTo = "index.php?section=admin&go=upload&action=html&msg=30";
else $errorGoTo = "index.php?section=admin&go=upload&msg=30";
header(sprintf("Location: %s", $errorGoTo));
exit;
}
// Do upload if all parameters met
if (($_FILES['file']['size'] <= $max_size) && (in_array($file_type, $file_mimes)) && (in_array($file_ext, $file_exts))) {
// Generate temp file
$temp_file = $_FILES['file']['tmp_name'];
// Define the target file and path, convert to lowercase
$target_file = $target_path.strtolower($_FILES['file']['name']);
// Delete any file that has the same name as uploaded file in the target directory
if (file_exists($target_path.$_FILES['file']['name'])) unlink($target_path.$_FILES['file']['name']);
// Delete any file that has the same name as the target file in the target directory
if (file_exists($target_file)) unlink($target_file);
// Move the temp file to the target directory
move_uploaded_file($temp_file,$target_file);
// Redirect if using single upload option
if ($action == "html") {
$updateGoTo = "index.php?section=admin&go=upload&action=html&msg=29";
header(sprintf("Location: %s", $updateGoTo));
exit;
}
// Redirect if using multiple download option
if ($action == "html_docs") {
$updateGoTo = "index.php?section=admin&go=upload_scoresheets&action=html&msg=29";
header(sprintf("Location: %s", $updateGoTo));
exit;
}
}
}
else {
// Redirect if using single upload option
if ($action == "html") {
$updateGoTo = "index.php?section=admin&go=upload&action=html&msg=3";
header(sprintf("Location: %s", $updateGoTo));
exit;
}
if ($action == "html_docs") {
$updateGoTo = "index.php?section=admin&go=upload_scoresheets&action=html_docs&msg=3";
header(sprintf("Location: %s", $updateGoTo));
exit;
}
}
}
// Redirect if script accessed directly and/or session parameters not met
else {
$errorGoTo = "index.php?section=login&msg=0";
header(sprintf("Location: %s", $errorGoTo));
}
?>