forked from gbishop/TarHeelReaderTheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
image-upload.php
259 lines (224 loc) · 6.64 KB
/
image-upload.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<?php
/*
Template Name: UploadImage
Allow users to upload images
*/
/** started life as php.php from https://github.com/valums/file-uploader **/
/**
* Handle file uploads via XMLHttpRequest
*/
class qqUploadedFileXhr
{
/**
* Save the file to the specified path
* @return boolean TRUE on success
*/
function save($path)
{
$input = fopen("php://input", "r");
$temp = tmpfile();
$realSize = stream_copy_to_stream($input, $temp);
fclose($input);
if ($realSize != $this->getSize()) {
return false;
}
$target = fopen($path, "w");
fseek($temp, 0, SEEK_SET);
stream_copy_to_stream($temp, $target);
fclose($target);
return true;
}
function getName()
{
return $_GET['qqfile'];
}
function getSize()
{
if (isset($_SERVER["CONTENT_LENGTH"])) {
return (int) $_SERVER["CONTENT_LENGTH"];
} else {
throw new Exception('Getting content length is not supported.');
}
}
}
/**
* Handle file uploads via regular form post (uses the $_FILES array)
*/
class qqUploadedFileForm
{
/**
* Save the file to the specified path
* @return boolean TRUE on success
*/
function save($path)
{
if (!move_uploaded_file($_FILES['qqfile']['tmp_name'], $path)) {
return false;
}
return true;
}
function getName()
{
return $_FILES['qqfile']['name'];
}
function getSize()
{
return $_FILES['qqfile']['size'];
}
}
class qqFileUploader
{
private $allowedExtensions = array();
private $sizeLimit = 10485760;
private $file;
function __construct(
array $allowedExtensions = array(),
$sizeLimit = 10485760
) {
$allowedExtensions = array_map("strtolower", $allowedExtensions);
$this->allowedExtensions = $allowedExtensions;
$this->sizeLimit = $sizeLimit;
$this->checkServerSettings();
if (isset($_GET['qqfile'])) {
$this->file = new qqUploadedFileXhr();
} elseif (isset($_FILES['qqfile'])) {
$this->file = new qqUploadedFileForm();
} else {
$this->file = false;
}
}
private function checkServerSettings()
{
$postSize = $this->toBytes(ini_get('post_max_size'));
$uploadSize = $this->toBytes(ini_get('upload_max_filesize'));
if ($postSize < $this->sizeLimit || $uploadSize < $this->sizeLimit) {
$size = max(1, $this->sizeLimit / 1024 / 1024) . 'M';
die(
"{'error':'increase post_max_size and upload_max_filesize to $size'}"
);
}
}
private function toBytes($str)
{
$val = trim($str);
$last = strtolower($str[strlen($str) - 1]);
switch ($last) {
case 'g':
$val *= 1024;
case 'm':
$val *= 1024;
case 'k':
$val *= 1024;
}
return $val;
}
/**
* Returns array('success'=>true) or array('error'=>'error message')
*/
function handleUpload($uploadDirectory)
{
if (!is_writable($uploadDirectory)) {
return array(
'error' => "Server error. Upload directory isn't writable."
);
}
if (!$this->file) {
return array('error' => 'No files were uploaded.');
}
$size = $this->file->getSize();
if ($size == 0) {
return array('error' => 'File is empty');
}
if ($size > $this->sizeLimit) {
return array('error' => 'File is too large');
}
$pathinfo = pathinfo($this->file->getName());
$ext = strtolower($pathinfo['extension']);
if (
$this->allowedExtensions &&
!in_array(strtolower($ext), $this->allowedExtensions)
) {
$these = implode(', ', $this->allowedExtensions);
return array(
'error' =>
'File has an invalid extension, it should be one of ' .
$these .
'.'
);
}
$path = $uploadDirectory . uniqid() . '.' . $ext;
if ($this->file->save($path)) {
return array('success' => true, 'path' => $path, 'type' => $ext);
} else {
return array(
'error' =>
'Could not save uploaded file.' .
'The upload was cancelled, or server error encountered'
);
}
}
}
function processUploadedImage($path, $type)
{
if ($type == 'gif') {
$im = imagecreatefromgif($path);
} elseif ($type == 'png') {
$im = imagecreatefrompng($path);
} elseif ($type == 'jpg' || $type == 'jpeg') {
$im = imagecreatefromjpeg($path);
// fix the orientation
$exif = exif_read_data($path);
if (!empty($exif['Orientation'])) {
switch ($exif['Orientation']) {
case 3:
$im = imagerotate($im, 180, 0);
break;
case 6:
$im = imagerotate($im, -90, 0);
break;
case 8:
$im = imagerotate($im, 90, 0);
break;
}
}
} else {
return array('error' => 'invalid file type ' . $type);
}
if (!$im) {
return array('error' => 'bad image file');
}
$userdata = wp_get_current_user();
$userid = $userdata->ID;
$upl = wp_upload_dir();
$basename = '/' . $userid . '-' . uniqid();
// let the book POST code handle saving the thumbnail.
// save the medium size
list($nim, $nw, $nh) = resizeImage($im, 500, false);
$mname = $basename . '.jpg';
$path = $upl['path'] . $mname;
imagejpeg($nim, $path);
return array(
'success' => true,
'url' => $upl['url'] . $mname,
'width' => $nw,
'height' => $nh,
'path' => $path
);
}
if (!current_user_can('edit_posts')) {
header("HTTP/1.0 401 Not Authorized");
die();
}
// list of valid extensions, ex. array("jpeg", "xml", "bmp")
$allowedExtensions = array("jpg", "jpeg", "png", "gif");
// max file size in bytes
$sizeLimit = 10 * 1024 * 1024;
$uploader = new qqFileUploader($allowedExtensions, $sizeLimit);
$result = $uploader->handleUpload('/var/tmp/');
if ($result['success']) {
$path = $result['path'];
$result = processUploadedImage($path, $result['type']);
unlink($path);
}
// to pass data through iframe you will need to encode all html tags
echo htmlspecialchars(json_encode($result), ENT_NOQUOTES);