]> git.mxchange.org Git - simple-upload.git/blob - index.php
Use even more braces and save returned target file name
[simple-upload.git] / index.php
1 <?php
2         /*
3                 This program is free software: you can redistribute it and/or modify
4                 it under the terms of the GNU General Public License as published by
5                 the Free Software Foundation, either version 3 of the License, or
6                 (at your option) any later version.
7
8                 This program is distributed in the hope that it will be useful,
9                 but WITHOUT ANY WARRANTY; without even the implied warranty of
10                 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11                 GNU General Public License for more details.
12
13                 You should have received a copy of the GNU General Public License
14                 along with this program.  If not, see <http://www.gnu.org/licenses/>.
15         */
16
17         // =============={ Configuration Begin }==============
18         $settings = array(
19
20                 // Website title
21                 'title' => 'strace.club',
22
23                 // Directory to store uploaded files
24                 'uploaddir' => '.',
25
26                 // Display list uploaded files
27                 'listfiles' => true,
28
29                 // Allow users to delete files that they have uploaded (will enable sessions)
30                 'allow_deletion' => true,
31
32                 // Allow users to mark files as hidden
33                 'allow_private' => true,
34
35                 // Display file sizes
36                 'listfiles_size' => true,
37
38                 // Display file dates
39                 'listfiles_date' => true,
40
41                 // Display file dates format
42                 'listfiles_date_format' => 'F d Y H:i:s',
43
44                 // Randomize file names (number of 'false')
45                 'random_name_len' => 8,
46
47                 // Keep filetype information (if random name is activated)
48                 'random_name_keep_type' => true,
49
50                 // Random file name letters
51                 'random_name_alphabet' => 'qazwsxedcrfvtgbyhnujmikolp1234567890',
52
53                 // Display debugging information
54                 'debug' => false,
55
56                 // Complete URL to your directory (including tracing slash)
57                 'url' => 'http://strace.club/',
58
59                 // Amount of seconds that each file should be stored for (0 for no limit)
60                 // Default 30 days
61                 'time_limit' => 60 * 60 * 24 * 30,
62
63                 // Files that will be ignored
64                 'ignores' => array('.', '..', 'LICENSE', 'README.md'),
65
66                 // Language code
67                 'lang' => 'en',
68
69                 // Language direction
70                 'lang_dir' => 'ltr',
71
72                 // Remove old files?
73                 'remove_old_files' => true,
74
75                 // Privacy: Allow external references (the "fork me" ribbon)
76                 'allow_external_refs' => true,
77         );
78         // =============={ Configuration End }==============
79
80         // Is the local config file there?
81         if (isReadableFile('config-local.php')) {
82                 // Load it then
83                 include('config-local.php');
84         }
85
86         // Enabling error reporting
87         if ($settings['debug']) {
88                 error_reporting(E_ALL);
89                 ini_set('display_startup_errors',1);
90                 ini_set('display_errors',1);
91         }
92
93         $data = array();
94
95         // Name of this file
96         $data['scriptname'] = $settings['url'] . '/' . pathinfo(__FILE__, PATHINFO_BASENAME);
97
98         // Adding current script name to ignore list
99         $data['ignores'] = $settings['ignores'];
100         $data['ignores'][] = basename($data['scriptname']);
101
102         // Use canonized path
103         $data['uploaddir'] = realpath(dirname(__FILE__) . DIRECTORY_SEPARATOR . $settings['uploaddir']);
104
105         // Maximum upload size, set by system
106         $data['max_upload_size'] = ini_get('upload_max_filesize');
107
108         // If file deletion or private files are allowed, starting a session.
109         // This is required for user authentification
110         if ($settings['allow_deletion'] || $settings['allow_private']) {
111                 session_start();
112
113                 // 'User ID'
114                 if (!isset($_SESSION['upload_user_id']))
115                         $_SESSION['upload_user_id'] = mt_rand(100000, 999999);
116
117                 // List of filenames that were uploaded by this user
118                 if (!isset($_SESSION['upload_user_files']))
119                         $_SESSION['upload_user_files'] = array();
120         }
121
122         // If debug is enabled, logging all variables
123         if ($settings['debug']) {
124                 // Displaying debug information
125                 echo '<h2>Settings:</h2>';
126                 echo '<pre>';
127                 print_r($settings);
128                 echo '</pre>';
129
130                 // Displaying debug information
131                 echo '<h2>Data:</h2>';
132                 echo '<pre>';
133                 print_r($data);
134                 echo '</pre>';
135                 echo '</pre>';
136
137                 // Displaying debug information
138                 echo '<h2>SESSION:</h2>';
139                 echo '<pre>';
140                 print_r($_SESSION);
141                 echo '</pre>';
142         }
143
144         // Format file size
145         function formatSize ($bytes) {
146                 $units = array('B', 'KB', 'MB', 'GB', 'TB');
147
148                 $bytes = max($bytes, 0);
149                 $pow = floor(($bytes ? log($bytes) : 0) / log(1024));
150                 $pow = min($pow, count($units) - 1);
151
152                 $bytes /= pow(1024, $pow);
153
154                 return ceil($bytes) . ' ' . $units[$pow];
155         }
156
157         // Rotating a two-dimensional array
158         function diverseArray ($vector) {
159                 $result = array();
160                 foreach ($vector as $key1 => $value1)
161                         foreach ($value1 as $key2 => $value2)
162                                 $result[$key2][$key1] = $value2;
163                 return $result;
164         }
165
166         // Handling file upload
167         function uploadFile ($file_data) {
168                 global $settings, $data;
169
170                 $file_data['uploaded_file_name'] = basename($file_data['name']);
171                 $file_data['target_file_name'] = $file_data['uploaded_file_name'];
172
173                 // Generating random file name
174                 if ($settings['random_name_len'] !== false) {
175                         do {
176                                 $file_data['target_file_name'] = '';
177                                 while (strlen($file_data['target_file_name']) < $settings['random_name_len'])
178                                         $file_data['target_file_name'] .= $settings['random_name_alphabet'][mt_rand(0, strlen($settings['random_name_alphabet']) - 1)];
179                                 if ($settings['random_name_keep_type'])
180                                         $file_data['target_file_name'] .= '.' . pathinfo($file_data['uploaded_file_name'], PATHINFO_EXTENSION);
181                         } while (isReadableFile($file_data['target_file_name']));
182                 }
183                 $file_data['upload_target_file'] = $data['uploaddir'] . DIRECTORY_SEPARATOR . $file_data['target_file_name'];
184
185                 // Do now allow to overwriting files
186                 if (isReadableFile($file_data['upload_target_file'])) {
187                         echo 'File name already exists' . "\n";
188                         return false;
189                 }
190
191                 // Moving uploaded file OK
192                 if (move_uploaded_file($file_data['tmp_name'], $file_data['upload_target_file'])) {
193                         if ($settings['allow_deletion'] || $settings['allow_private'])
194                                 $_SESSION['upload_user_files'][] = $file_data['target_file_name'];
195                         echo $settings['url'] .  $file_data['target_file_name'] . "\n";
196
197                         // Return target file name for later handling
198                         return $file_data['upload_target_file'];
199                 } else {
200                         echo 'Error: unable to upload the file.';
201                         return false;
202                 }
203         }
204
205         // Delete file
206         function deleteFile ($file) {
207                 global $data;
208
209                 if (in_array(substr($file, 1), $_SESSION['upload_user_files']) || in_array($file, $_SESSION['upload_user_files'])) {
210                         $fqfn = $data['uploaddir'] . DIRECTORY_SEPARATOR . $file;
211                         if (!in_array($file, $data['ignores']) && isReadableFile($fqfn)) {
212                                 unlink($fqfn);
213                                 echo 'File has been removed';
214                                 exit;
215                         }
216                 }
217         }
218
219         // Mark/unmark file as hidden
220         function markUnmarkHidden ($file) {
221                 global $data;
222
223                 if (in_array(substr($file, 1), $_SESSION['upload_user_files']) || in_array($file, $_SESSION['upload_user_files'])) {
224                         $fqfn = $data['uploaddir'] . DIRECTORY_SEPARATOR . $file;
225                         if (!in_array($file, $data['ignores']) && isReadableFile($fqfn)) {
226                                 if (substr($file, 0, 1) === '.') {
227                                         rename($fqfn, substr($fqfn, 1));
228                                         echo 'File has been made visible';
229                                 } else {
230                                         rename($fqfn, $data['uploaddir'] . DIRECTORY_SEPARATOR . '.' . $file);
231                                         echo 'File has been hidden';
232                                 }
233                                 exit;
234                         }
235                 }
236         }
237
238         // Checks if the given file is a file and is readable
239         function isReadableFile ($file) {
240                 return (is_file($file) && is_readable($file));
241         }
242
243         // Files are being POSEed. Uploading them one by one.
244         if (isset($_FILES['file'])) {
245                 header('Content-type: text/plain');
246                 if (is_array($_FILES['file'])) {
247                         $file_array = diverseArray($_FILES['file']);
248                         foreach ($file_array as $file_data) {
249                                 $targetFile = uploadFile($file_data);
250                         }
251                 } else {
252                         $targetFile = uploadFile($_FILES['file']);
253                 }
254                 exit;
255         }
256
257         // Other file functions (delete, private).
258         if (isset($_POST)) {
259                 if ($settings['allow_deletion'] && (isset($_POST['target'])) && isset($_POST['action']) && $_POST['action'] === 'delete')
260                         deleteFile($_POST['target']);
261
262                 if ($settings['allow_private'] && (isset($_POST['target'])) && isset($_POST['action']) && $_POST['action'] === 'privatetoggle')
263                         markUnmarkHidden($_POST['target']);
264         }
265
266         // List files in a given directory, excluding certain files
267         function createArrayFromPath ($dir) {
268                 global $data;
269
270                 $file_array = array();
271
272                 $dh = opendir($dir);
273
274                 while ($filename = readdir($dh)) {
275                         $fqfn = $dir . DIRECTORY_SEPARATOR . $filename;
276                         if (isReadableFile($fqfn) && !in_array($filename, $data['ignores']))
277                                 $file_array[filemtime($fqfn)] = $filename;
278                 }
279
280                 ksort($file_array);
281
282                 $file_array = array_reverse($file_array, true);
283
284                 return $file_array;
285         }
286
287         // Removes old files
288         function removeOldFiles ($dir) {
289                 global $file_array, $settings;
290
291                 foreach ($file_array as $file) {
292                         $fqfn = $dir . DIRECTORY_SEPARATOR . $file;
293                         if ($settings['time_limit'] < time() - filemtime($fqfn))
294                                 unlink($fqfn);
295                 }
296         }
297
298         // Only read files if the feature is enabled
299         if ($settings['listfiles']) {
300                 $file_array = createArrayFromPath($data['uploaddir']);
301
302                 // Removing old files
303                 if ($settings['remove_old_files'])
304                         removeOldFiles($data['uploaddir']);
305
306                 $file_array = createArrayFromPath($data['uploaddir']);
307         }
308 ?>
309 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
310 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?=$settings['lang']?>" lang="<?=$settings['lang']?>" dir="<?=$settings['lang_dir']?>">
311         <head>
312                 <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
313                 <meta http-equiv="content-style-type" content="text/css" />
314                 <meta http-equiv="content-script-type" content="text/javascript" />
315                 <meta http-equiv="language" content="de" />
316
317                 <meta name="robots" content="noindex" />
318                 <meta name="referrer" content="origin-when-crossorigin" />
319                 <title><?=$settings['title']?></title>
320                 <style type="text/css" media="screen">
321                         body {
322                                 background: #111;
323                                 margin: 0;
324                                 color: #ddd;
325                                 font-family: sans-serif;
326                         }
327
328                         body > h1 {
329                                 display: block;
330                                 background: rgba(255, 255, 255, 0.05);
331                                 padding: 8px 16px;
332                                 text-align: center;
333                                 margin: 0;
334                         }
335
336                         body > form {
337                                 display: block;
338                                 background: rgba(255, 255, 255, 0.075);
339                                 padding: 16px 16px;
340                                 margin: 0;
341                                 text-align: center;
342                         }
343
344                         body > ul {
345                                 display: block;
346                                 padding: 0;
347                                 max-width: 1000px;
348                                 margin: 32px auto;
349                         }
350
351                         body > ul > li {
352                                 display: block;
353                                 margin: 0;
354                                 padding: 0;
355                         }
356
357                         body > ul > li > a {
358                                 display: block;
359                                 margin: 0 0 1px 0;
360                                 list-style: none;
361                                 background: rgba(255, 255, 255, 0.1);
362                                 padding: 8px 16px;
363                                 text-decoration: none;
364                                 color: inherit;
365                                 opacity: 0.5;
366                         }
367
368                         body > ul > li > a:hover {
369                                 opacity: 1;
370                         }
371
372                         body > ul > li > a:active {
373                                 opacity: 0.5;
374                         }
375
376                         body > ul > li > a > span {
377                                 float: right;
378                                 font-size: 90%;
379                         }
380
381                         body > ul > li > form {
382                                 display: inline-block;
383                                 padding: 0;
384                                 margin: 0;
385                         }
386
387                         body > ul > li.owned {
388                                 margin: 8px;
389                         }
390
391                         body > ul > li > form > button {
392                                 opacity: 0.5;
393                                 display: inline-block;
394                                 padding: 4px 16px;
395                                 margin: 0;
396                                 border: 0;
397                                 background: rgba(255, 255, 255, 0.1);
398                                 color: inherit;
399                         }
400
401                         body > ul > li > form > button:hover {
402                                 opacity: 1;
403                         }
404
405                         body > ul > li > form > button:active {
406                                 opacity: 0.5;
407                         }
408
409                         body > ul > li.uploading {
410                                 animation: upanim 2s linear 0s infinite alternate;
411                         }
412
413                         @keyframes upanim {
414                                 from {
415                                         opacity: 0.3;
416                                 }
417                                 to {
418                                         opacity: 0.8;
419                                 }
420                         }
421                 </style>
422         </head>
423         <body>
424                 <h1><?=$settings['title']?></h1>
425                 <form action="<?= $data['scriptname'] ?>" method="post" enctype="multipart/form-data" class="dropzone" id="simpleupload-form">
426                         Maximum upload size: <?php echo $data['max_upload_size']; ?><br />
427                         <input type="file" name="file[]" id="simpleupload-input" />
428                 </form>
429                 <?php if ($settings['listfiles']) { ?>
430                         <ul id="simpleupload-ul">
431                                 <?php
432                                         foreach ($file_array as $mtime => $filename) {
433                                                 $fqfn = $data['uploaddir'] . DIRECTORY_SEPARATOR . $filename;
434                                                 $file_info = array();
435                                                 $file_owner = false;
436                                                 $file_private = $filename[0] === '.';
437
438                                                 if ($settings['listfiles_size'])
439                                                         $file_info[] = formatSize(filesize($fqfn));
440
441                                                 if ($settings['listfiles_size'])
442                                                         $file_info[] = date($settings['listfiles_date_format'], $mtime);
443
444                                                 if ($settings['allow_deletion'] || $settings['allow_private'])
445                                                         if (in_array(substr($filename, 1), $_SESSION['upload_user_files']) || in_array($filename, $_SESSION['upload_user_files']))
446                                                                 $file_owner = true;
447
448                                                 $file_info = implode(', ', $file_info);
449
450                                                 if (strlen($file_info) > 0)
451                                                         $file_info = ' (' . $file_info . ')';
452
453                                                 $class = '';
454                                                 if ($file_owner)
455                                                         $class = 'owned';
456
457                                                 if (!$file_private || $file_owner) {
458                                                         echo "<li class=\"' . $class . '\">";
459
460                                                         // Create full-qualified URL and clean it a bit
461                                                         $url = str_replace('/./', '/', sprintf('%s%s/%s', $settings['url'], $settings['uploaddir'], $filename));
462
463                                                         echo "<a href=\"$url\" target=\"_blank\">$filename<span>$file_info</span></a>";
464
465                                                         if ($file_owner) {
466                                                                 if ($settings['allow_deletion'])
467                                                                         echo '<form action="' . $data['scriptname'] . '" method="post"><input type="hidden" name="target" value="' . $filename . '" /><input type="hidden" name="action" value="delete" /><button type="submit">delete</button></form>';
468
469                                                                 if ($settings['allow_private'])
470                                                                         if ($file_private)
471                                                                                 echo '<form action="' . $data['scriptname'] . '" method="post"><input type="hidden" name="target" value="' . $filename . '" /><input type="hidden" name="action" value="privatetoggle" /><button type="submit">make public</button></form>';
472                                                                         else
473                                                                                 echo '<form action="' . $data['scriptname'] . '" method="post"><input type="hidden" name="target" value="' . $filename . '" /><input type="hidden" name="action" value="privatetoggle" /><button type="submit">make private</button></form>';
474                                                         }
475
476                                                         echo "</li>";
477                                                 }
478                                         }
479                                 ?>
480                         </ul>
481                 <?php
482                 }
483
484                 if ($settings['allow_external_refs']) {
485                 ?>
486                         <a href="https://github.com/muchweb/simple-php-upload" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
487                 <?php
488                 } else {
489                 ?>
490                         <a href="https://github.com/muchweb/simple-php-upload" target="_blank">Fork me on GitHub</a>
491                 <?php
492                 }
493                 ?>
494                 <script type="text/javascript">
495                 <!--
496                         // Init some variales to shorten code
497                         var target_form        = document.getElementById('simpleupload-form');
498                         var target_ul          = document.getElementById('simpleupload-ul');
499                         var target_input       = document.getElementById('simpleupload-input');
500                         var settings_listfiles = <?=($settings['listfiles'] ? 'true' : 'false')?>;
501
502                         /**
503                          * Initializes the upload form
504                          */
505                         function init () {
506                                 // Register drag-over event listener
507                                 target_form.addEventListener('dragover', function (event) {
508                                         event.preventDefault();
509                                 }, false);
510
511                                 // ... and the drop event listener
512                                 target_form.addEventListener('drop', handleFiles, false);
513
514                                 // Register onchange-event function
515                                 target_input.onchange = function () {
516                                         addFileLi('Uploading...', '');
517                                         target_form.submit();
518                                 };
519                         }
520
521                         /**
522                          * Adds given file in a new li-tag to target_ul list
523                          *
524                          * @param name Name of the file
525                          * @param info Some more informations
526                          */
527                         function addFileLi (name, info) {
528                                 if (settings_listfiles == false) {
529                                         return;
530                                 }
531
532                                 target_form.style.display = 'none';
533
534                                 var new_li = document.createElement('li');
535                                 new_li.className = 'uploading';
536
537                                 var new_a = document.createElement('a');
538                                 new_a.innerHTML = name;
539                                 new_li.appendChild(new_a);
540
541                                 var new_span = document.createElement('span');
542                                 new_span.innerHTML = info;
543                                 new_a.appendChild(new_span);
544
545                                 target_ul.insertBefore(new_li, target_ul.firstChild);
546                         }
547
548                         /**
549                          * Handles given event for file upload
550                          *
551                          * @param event Event to handle file upload for
552                          */
553                         function handleFiles (event) {
554                                 event.preventDefault();
555
556                                 var files = event.dataTransfer.files;
557
558                                 var form = new FormData();
559
560                                 for (var i = 0; i < files.length; i++) {
561                                         form.append('file[]', files[i]);
562                                         addFileLi(files[i].name, files[i].size + ' bytes');
563                                 }
564
565                                 var xhr = new XMLHttpRequest();
566                                 xhr.onload = function() {
567                                         window.location.reload();
568                                 };
569
570                                 xhr.open('post', '<?php echo $data['scriptname']; ?>', true);
571                                 xhr.send(form);
572                         }
573
574                         // Initialize upload form
575                         init();
576
577                 //-->
578                 </script>
579         </body>
580 </html>