-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathimgupload.class.php
423 lines (371 loc) · 12.1 KB
/
imgupload.class.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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<?php
##########################################
# ImageUpload Class version: 0.1 Beta #
# Created by: icecub #
##########################################
Class ImageUpload {
private $host = DB_HOST;
private $user = DB_USER;
private $pass = DB_PASS;
private $dbname = DB_NAME;
private $table = DB_TABLE;
private $dbh;
private $error = array();
private $info = array();
private $ids = array();
private $obj;
private $stmt;
private $mtype;
private $folder = F_PATH;
private $htaccess = H_FILE;
private $f_size = F_SIZE;
/* Set up a PDO instance */
public function __construct(){
// Set DSN
$dsn = 'mysql:host=' . $this->host . ';dbname=' . $this->dbname;
// Set options
$options = array(
PDO::ATTR_PERSISTENT => true,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
);
// Create a new PDO instance
try{
$this->dbh = new PDO($dsn, $this->user, $this->pass, $options);
}
// Catch any errors
catch(PDOException $e){
array_push($this->error, $e->getMessage());
$this->obj->error = $this->error;
return $this->obj;
}
$this->obj = new StdClass;
}
/* Custom bindParam function */
private function bind($param, $value, $type = null){
if (is_null($type)) {
switch (true) {
case is_int($value):
$type = PDO::PARAM_INT;
break;
case is_bool($value):
$type = PDO::PARAM_BOOL;
break;
case is_null($value):
$type = PDO::PARAM_NULL;
break;
default:
$type = PDO::PARAM_STR;
}
}
$this->stmt->bindValue($param, $value, $type);
}
/* Checks if the table already exists. If not, creates one */
private function createTable(){
// Check if table already exists
$this->stmt = $this->dbh->prepare("SHOW TABLES LIKE '". DB_TABLE ."'");
try{
$this->stmt->execute();
}
catch(PDOException $e){
array_push($this->error, $e->getMessage());
return false;
}
$cnt = $this->stmt->rowCount();
if($cnt > 0){
return true;
} else {
// Create table
$this->stmt = $this->dbh->prepare("
CREATE TABLE `". DB_TABLE ."` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(64) NOT NULL,
`original_name` VARCHAR(64) NOT NULL,
`mime_type` VARCHAR(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;");
try{
$this->stmt->execute();
return true;
}
catch(PDOException $e){
array_push($this->error, $e->getMessage());
return false;
}
}
}
/* Checks if the htaccess file exists. If not, creates one */
private function createHtaccess(){
if (!file_exists($this->folder."/.htaccess")){
try {
$file = fopen($this->folder."/.htaccess","w");
$txt = "order deny,allow\n";
$txt .= "deny from all\n";
$txt .="allow from 127.0.0.1";
fwrite($file, $txt);
fclose($file);
return true;
} catch (Exception $e) {
return false;
}
} else {
return true;
}
}
/* Checks if required PHP extensions are loaded. Tries to load them if not */
private function check_phpExt(){
if (!extension_loaded('fileinfo')) {
// dl() is disabled in the PHP-FPM since php7 so we check if it's available first
if(function_exists('dl')){
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
if (!dl('fileinfo.dll')) {
return false;
} else {
return true;
}
} else {
if (!dl('fileinfo.so')) {
return false;
} else {
return true;
}
}
} else {
return false;
}
} else {
return true;
}
}
/* Check if a folder exist. Try to create one with 755 permission if it does not */
private function check_image_folder($path) {
if (!is_dir($path)) {
return @mkdir($path, '755', true);
} else {
return true;
}
}
/* Creates a file with a random name */
private function tempnam_sfx($path, $suffix){
do {
$file = $path."/".mt_rand().$suffix;
$fp = @fopen($file, 'x');
}
while(!$fp);
fclose($fp);
return $file;
}
/* Checks the true mime type of the given file */
private function check_img_mime($tmpname){
$finfo = finfo_open( FILEINFO_MIME_TYPE );
$mtype = finfo_file( $finfo, $tmpname );
$this->mtype = $mtype;
if(strpos($mtype, 'image/') === 0){
return true;
} else {
return false;
}
finfo_close( $finfo );
}
/* Checks if the image isn't to large */
private function check_img_size($tmpname){
$size_conf = substr(F_SIZE, -1);
$max_size = (int)substr(F_SIZE, 0, -1);
switch($size_conf){
case 'k':
case 'K':
$max_size *= 1024;
break;
case 'm':
case 'M':
$max_size *= 1024;
$max_size *= 1024;
break;
default:
$max_size = 1024000;
}
if(filesize($tmpname) > $max_size){
return false;
} else {
return true;
}
}
/* Re-arranges the $_FILES array */
private function reArrayFiles($files){
$file_ary = array();
$file_count = count($files['name']);
$file_keys = array_keys($files);
for ($i=0; $i<$file_count; $i++) {
foreach ($file_keys as $key) {
$file_ary[$i][$key] = $files[$key][$i];
}
}
return $file_ary;
}
/* Handles the uploading of images */
public function uploadImages($files){
// Checks if the required PHP extension(s) are loaded
if($this->check_phpExt()){
// Checks if db table exists. Creates it if nessesary
if($this->createTable()){
// Checks if a htaccess file should be created and creates one if needed
if($this->htaccess){
if(!$this->createHtaccess()){
array_push($this->error, "Unable to create htaccess file.");
$this->obj->error = $this->error;
return $this->obj;
}
}
// Re-arranges the $_FILES array
$files = $this->reArrayFiles($files);
foreach($files as $file){
// Checks if $file['tmp_name'] is empty. This occurs when a file is bigger than allowed by the 'post_max_size' and/or 'upload_max_filesize' settings in php.ini
if(!empty($file['tmp_name'])){
// Checks the true MIME type of the file
if($this->check_img_mime($file['tmp_name'])){
// Checks the size of the the image
if($this->check_img_size($file['tmp_name'])){
// Creates a folder to store the images if it does not exist
if($this->check_image_folder($this->folder)) {
// Creates a file in the upload directory with a random name
$uploadfile = $this->tempnam_sfx($this->folder, ".tmp");
// Moves the image to the created file
if (move_uploaded_file($file['tmp_name'], $uploadfile)) {
// Inserts the file data into the db
$this->stmt = $this->dbh->prepare("INSERT INTO ". DB_TABLE ." (name, original_name, mime_type) VALUES (:name, :oriname, :mime)");
$this->bind(':name', basename($uploadfile));
$this->bind(':oriname', basename($file['name']));
$this->bind(':mime', $this->mtype);
try{
$this->stmt->execute();
}
catch(PDOException $e){
array_push($this->error, $e->getMessage());
$this->obj->error = $this->error;
return $this->obj;
}
array_push($this->ids, $this->dbh->lastInsertId());
array_push($this->info, "File: ". $file['name'] ." was succesfully uploaded!");
continue;
} else {
unlink($file['tmp_name']);
array_push($this->info, "Unable to move file: ". $file['name'] ." to target folder. The file is removed!");
}
} else {
unlink($file['tmp_name']);
array_push($this->info, "Unable to move file: ". $file['name'] .". The target folder does not exist and cannot be created. The file is removed!");
}
} else {
array_push($this->info, "File: ". $file['name'] ." exceeds the maximum file size of: ". F_SIZE ."B. The file is removed!");
}
} else {
unlink($file['tmp_name']);
array_push($this->info, "File: ". $file['name'] ." is not an image. The file is removed!");
}
} else {
array_push($this->info, "File: ". $file['name'] ." exceeds the maximum file size that this server allowes to be uploaded!");
}
}
// Checks if the error array is empty
foreach ($this->error as $key => $value) {
if (empty($value)) {
unset($this->error[$key]);
}
}
if (empty($this->error)) {
$this->obj->info = $this->info;
$this->obj->ids = $this->ids;
return $this->obj;
} else {
$this->error = array_unique($this->error);
$this->obj->error = $this->error;
return $this->obj;
}
} else {
if($this->error !== NULL){
$this->obj->error = $this->error;
return $this->obj;
} else {
// This should never happen, but it's here just in case
array_push($this->error, "Unknown error! Failed to load ImageUpload class!");
$this->obj->error = $this->error;
return $this->obj;
}
}
} else {
array_push($this->error, "The PHP fileinfo extension isn't loaded and ImageUpload was unable to load it for you.");
$this->obj->error = $this->error;
return $this->obj;
}
}
/* Show the image in the browser */
public function showImage($id){
$this->stmt = $this->dbh->prepare("SELECT name, original_name, mime_type FROM ". DB_TABLE ." WHERE id=:id");
$this->bind(':id', $id);
try{
$this->stmt->execute();
$result = $this->stmt->fetch(PDO::FETCH_ASSOC);
}
catch(PDOException $e){
array_push($this->error, $e->getMessage());
$this->obj->error = $this->error;
return $this->obj;
}
$newfile = $result['original_name'];
/* Send headers and file to visitor for display */
header("Content-Type: " . $result['mime_type']);
readfile(F_PATH.'/'.$result['name']);
}
/* Force a download of the image */
public function downloadImage($id){
$this->stmt = $this->dbh->prepare("SELECT name, original_name, mime_type FROM ". DB_TABLE ." WHERE id=:id");
$this->bind(':id', $id);
try{
$this->stmt->execute();
$result = $this->stmt->fetch(PDO::FETCH_ASSOC);
}
catch(PDOException $e){
array_push($this->error, $e->getMessage());
$this->obj->error = $this->error;
return $this->obj;
}
$newfile = $result['original_name'];
/* Send headers and file to visitor for download */
header('Content-Description: File Transfer');
header('Content-Disposition: attachment; filename='.basename($newfile));
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize(F_PATH.'/'.$result['name']));
header("Content-Type: " . $result['mime_type']);
readfile(F_PATH.'/'.$result['name']);
}
/* Delete an image */
public function deleteImage($id){
$this->stmt = $this->dbh->prepare("SELECT name, original_name, FROM ". DB_TABLE ." WHERE id=:id");
$this->bind(':id', $id);
try{
$this->stmt->execute();
$result = $this->stmt->fetch(PDO::FETCH_ASSOC);
}
catch(PDOException $e){
array_push($this->error, $e->getMessage());
$this->obj->error = $this->error;
return $this->obj;
}
unlink(F_PATH.'/'.$result['name']);
$this->stmt = $this->dbh->prepare("DELETE FROM ". DB_TABLE ." WHERE id=:id");
$this->bind(':id', $id);
try{
$this->stmt->execute();
}
catch(PDOException $e){
array_push($this->error, $e->getMessage());
$this->obj->error = $this->error;
return $this->obj;
}
array_push($this->info, "File: ". $result['original_name'] ." succesfully deleted.");
$this->obj->info = $this->info;
return $this->obj;
}
}
?>