Renamed function as it doesn't list any files but creates an array.
[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         // =============={ Configuration End }==============
76
77         // Is the local config file there?
78         if (file_exists('config-local.php')) {
79                 // Load it then
80                 include('config-local.php');
81         }
82
83         // Enabling error reporting
84         if ($settings['debug']) {
85                 error_reporting(E_ALL);
86                 ini_set('display_startup_errors',1);
87                 ini_set('display_errors',1);
88         }
89
90         $data = array();
91
92         // Name of this file
93         $data['scriptname'] = pathinfo(__FILE__, PATHINFO_BASENAME);
94
95         // Adding current script name to ignore list
96         $data['ignores'] = $settings['ignores'];
97         $data['ignores'][] = $data['scriptname'];
98
99         // Use canonized path
100         $data['uploaddir'] = realpath(dirname(__FILE__) . DIRECTORY_SEPARATOR . $settings['uploaddir']);
101
102         // Maximum upload size, set by system
103         $data['max_upload_size'] = ini_get('upload_max_filesize');
104
105         // If file deletion or private files are allowed, starting a session.
106         // This is required for user authentification
107         if ($settings['allow_deletion'] || $settings['allow_private']) {
108                 session_start();
109
110                 // 'User ID'
111                 if (!isset($_SESSION['upload_user_id']))
112                         $_SESSION['upload_user_id'] = mt_rand(100000, 999999);
113
114                 // List of filenames that were uploaded by this user
115                 if (!isset($_SESSION['upload_user_files']))
116                         $_SESSION['upload_user_files'] = array();
117         }
118
119         // If debug is enabled, logging all variables
120         if ($settings['debug']) {
121                 // Displaying debug information
122                 echo '<h2>Settings:</h2>';
123                 echo '<pre>';
124                 print_r($settings);
125                 echo '</pre>';
126
127                 // Displaying debug information
128                 echo '<h2>Data:</h2>';
129                 echo '<pre>';
130                 print_r($data);
131                 echo '</pre>';
132                 echo '</pre>';
133
134                 // Displaying debug information
135                 echo '<h2>SESSION:</h2>';
136                 echo '<pre>';
137                 print_r($_SESSION);
138                 echo '</pre>';
139         }
140
141         // Format file size
142         function formatSize ($bytes) {
143                 $units = array('B', 'KB', 'MB', 'GB', 'TB');
144
145                 $bytes = max($bytes, 0);
146                 $pow = floor(($bytes ? log($bytes) : 0) / log(1024));
147                 $pow = min($pow, count($units) - 1);
148
149                 $bytes /= pow(1024, $pow);
150
151                 return ceil($bytes) . ' ' . $units[$pow];
152         }
153
154         // Rotating a two-dimensional array
155         function diverseArray ($vector) {
156                 $result = array();
157                 foreach ($vector as $key1 => $value1)
158                         foreach ($value1 as $key2 => $value2)
159                                 $result[$key2][$key1] = $value2;
160                 return $result;
161         }
162
163         // Handling file upload
164         function uploadFile ($file_data) {
165                 global $settings, $data;
166
167                 $file_data['uploaded_file_name'] = basename($file_data['name']);
168                 $file_data['target_file_name'] = $file_data['uploaded_file_name'];
169
170                 // Generating random file name
171                 if ($settings['random_name_len'] !== false) {
172                         do {
173                                 $file_data['target_file_name'] = '';
174                                 while (strlen($file_data['target_file_name']) < $settings['random_name_len'])
175                                         $file_data['target_file_name'] .= $settings['random_name_alphabet'][mt_rand(0, strlen($settings['random_name_alphabet']) - 1)];
176                                 if ($settings['random_name_keep_type'])
177                                         $file_data['target_file_name'] .= '.' . pathinfo($file_data['uploaded_file_name'], PATHINFO_EXTENSION);
178                         } while (file_exists($file_data['target_file_name']));
179                 }
180                 $file_data['upload_target_file'] = $data['uploaddir'] . DIRECTORY_SEPARATOR . $file_data['target_file_name'];
181
182                 // Do now allow to overwriting files
183                 if (file_exists($file_data['upload_target_file'])) {
184                         echo 'File name already exists' . "\n";
185                         return;
186                 }
187
188                 // Moving uploaded file OK
189                 if (move_uploaded_file($file_data['tmp_name'], $file_data['upload_target_file'])) {
190                         if ($settings['allow_deletion'] || $settings['allow_private'])
191                                 $_SESSION['upload_user_files'][] = $file_data['target_file_name'];
192                         echo $settings['url'] .  $file_data['target_file_name'] . "\n";
193                 } else {
194                         echo 'Error: unable to upload the file.';
195                 }
196         }
197
198         // Delete file
199         function deleteFile ($file) {
200                 global $data;
201
202                 if (in_array(substr($file, 1), $_SESSION['upload_user_files']) || in_array($file, $_SESSION['upload_user_files'])) {
203                         $fqfn = $data['uploaddir'] . DIRECTORY_SEPARATOR . $file;
204                         if (file_exists($fqfn)) {
205                                 unlink($fqfn);
206                                 echo 'File has been removed';
207                                 exit;
208                         }
209                 }
210         }
211
212         // Mark/unmark file as hidden
213         function markUnmarkHidden ($file) {
214                 global $data;
215
216                 if (in_array(substr($file, 1), $_SESSION['upload_user_files']) || in_array($file, $_SESSION['upload_user_files'])) {
217                         $fqfn = $data['uploaddir'] . DIRECTORY_SEPARATOR . $file;
218                         if (file_exists($fqfn)) {
219                                 if (substr($file, 0, 1) === '.') {
220                                         rename($fqfn, substr($fqfn, 1));
221                                         echo 'File has been made visible';
222                                 } else {
223                                         rename($fqfn, $data['uploaddir'] . DIRECTORY_SEPARATOR . '.' . $file);
224                                         echo 'File has been hidden';
225                                 }
226                                 exit;
227                         }
228                 }
229         }
230
231         // Files are being POSEed. Uploading them one by one.
232         if (isset($_FILES['file'])) {
233                 header('Content-type: text/plain');
234                 if (is_array($_FILES['file'])) {
235                         $file_array = diverseArray($_FILES['file']);
236                         foreach ($file_array as $file_data)
237                                 uploadFile($file_data);
238                 } else
239                         uploadFile($_FILES['file']);
240                 exit;
241         }
242
243         // Other file functions (delete, private).
244         if (isset($_POST)) {
245                 if ($settings['allow_deletion'] && (isset($_POST['target'])) && isset($_POST['action']) && $_POST['action'] === 'delete')
246                         deleteFile($_POST['target']);
247
248                 if ($settings['allow_private'] && (isset($_POST['target'])) && isset($_POST['action']) && $_POST['action'] === 'privatetoggle')
249                         markUnmarkHidden($_POST['target']);
250         }
251
252         // List files in a given directory, excluding certain files
253         function createArrayFromPath ($dir, $exclude) {
254                 $file_array = array();
255                 $dh = opendir($dir);
256                         while ($filename = readdir($dh)) {
257                                 $fqfn = $dir . DIRECTORY_SEPARATOR . $filename;
258                                 if (is_file($fqfn) && !in_array($filename, $exclude))
259                                         $file_array[filemtime($fqfn)] = $filename;
260                         }
261
262                 ksort($file_array);
263                 $file_array = array_reverse($file_array, true);
264                 return $file_array;
265         }
266
267         // Removes old files
268         function removeOldFiles ($dir) {
269                 global $file_array, $settings;
270
271                 foreach ($file_array as $file) {
272                         $fqfn = $dir . DIRECTORY_SEPARATOR . $file;
273                         if ($settings['time_limit'] < time() - filemtime($fqfn))
274                                 unlink($fqfn);
275                 }
276         }
277
278         // Only read files if the feature is enabled
279         if ($settings['listfiles']) {
280                 $file_array = createArrayFromPath($data['uploaddir'], $data['ignores']);
281
282                 // Removing old files
283                 if ($settings['remove_old_files'])
284                         removeOldFiles($data['uploaddir']);
285
286                 $file_array = createArrayFromPath($data['uploaddir'], $data['ignores']);
287         }
288 ?>
289 <!DOCTYPE html>
290 <html lang="<?=$settings['lang']?>" dir="<?=$settings['lang_dir']?>">
291         <head>
292                 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
293                 <meta http-equiv="Content-Script-Type" content="text/javascript">
294                 <meta name="robots" content="noindex">
295                 <meta name="referrer" content="origin-when-crossorigin">
296                 <title><?=$settings['title']?></title>
297                 <style media="screen">
298                 <!--
299                         body {
300                                 background: #111;
301                                 margin: 0;
302                                 color: #ddd;
303                                 font-family: sans-serif;
304                         }
305
306                         body > h1 {
307                                 display: block;
308                                 background: rgba(255, 255, 255, 0.05);
309                                 padding: 8px 16px;
310                                 text-align: center;
311                                 margin: 0;
312                         }
313
314                         body > form {
315                                 display: block;
316                                 background: rgba(255, 255, 255, 0.075);
317                                 padding: 16px 16px;
318                                 margin: 0;
319                                 text-align: center;
320                         }
321
322                         body > ul {
323                                 display: block;
324                                 padding: 0;
325                                 max-width: 1000px;
326                                 margin: 32px auto;
327                         }
328
329                         body > ul > li {
330                                 display: block;
331                                 margin: 0;
332                                 padding: 0;
333                         }
334
335                         body > ul > li > a {
336                                 display: block;
337                                 margin: 0 0 1px 0;
338                                 list-style: none;
339                                 background: rgba(255, 255, 255, 0.1);
340                                 padding: 8px 16px;
341                                 text-decoration: none;
342                                 color: inherit;
343                                 opacity: 0.5;
344                         }
345
346                         body > ul > li > a:hover {
347                                 opacity: 1;
348                         }
349
350                         body > ul > li > a:active {
351                                 opacity: 0.5;
352                         }
353
354                         body > ul > li > a > span {
355                                 float: right;
356                                 font-size: 90%;
357                         }
358
359                         body > ul > li > form {
360                                 display: inline-block;
361                                 padding: 0;
362                                 margin: 0;
363                         }
364
365                         body > ul > li.owned {
366                                 margin: 8px;
367                         }
368
369                         body > ul > li > form > button {
370                                 opacity: 0.5;
371                                 display: inline-block;
372                                 padding: 4px 16px;
373                                 margin: 0;
374                                 border: 0;
375                                 background: rgba(255, 255, 255, 0.1);
376                                 color: inherit;
377                         }
378
379                         body > ul > li > form > button:hover {
380                                 opacity: 1;
381                         }
382
383                         body > ul > li > form > button:active {
384                                 opacity: 0.5;
385                         }
386
387                         body > ul > li.uploading {
388                                 animation: upanim 2s linear 0s infinite alternate;
389                         }
390
391                         @keyframes upanim {
392                                 from {
393                                         opacity: 0.3;
394                                 }
395                                 to {
396                                         opacity: 0.8;
397                                 }
398                         }
399                 //-->
400                 </style>
401         </head>
402         <body>
403                 <h1><?=$settings['title']?></h1>
404                 <form action="<?= $data['scriptname'] ?>" method="POST" enctype="multipart/form-data" class="dropzone" id="simpleupload-form">
405                         Maximum upload size: <?php echo $data['max_upload_size']; ?><br />
406                         <input type="file" name="file[]" multiple required id="simpleupload-input"/>
407                 </form>
408                 <?php if ($settings['listfiles']) { ?>
409                         <ul id="simpleupload-ul">
410                                 <?php
411                                         foreach ($file_array as $mtime => $filename) {
412                                                 $fqfn = $data['uploaddir'] . DIRECTORY_SEPARATOR . $filename;
413                                                 $file_info = array();
414                                                 $file_owner = false;
415                                                 $file_private = $filename[0] === '.';
416
417                                                 if ($settings['listfiles_size'])
418                                                         $file_info[] = formatSize(filesize($fqfn));
419
420                                                 if ($settings['listfiles_size'])
421                                                         $file_info[] = date($settings['listfiles_date_format'], $mtime);
422
423                                                 if ($settings['allow_deletion'] || $settings['allow_private'])
424                                                         if (in_array(substr($filename, 1), $_SESSION['upload_user_files']) || in_array($filename, $_SESSION['upload_user_files']))
425                                                                 $file_owner = true;
426
427                                                 $file_info = implode(', ', $file_info);
428
429                                                 if (strlen($file_info) > 0)
430                                                         $file_info = ' (' . $file_info . ')';
431
432                                                 $class = '';
433                                                 if ($file_owner)
434                                                         $class = 'owned';
435
436                                                 if (!$file_private || $file_owner) {
437                                                         echo "<li class=\"' . $class . '\">";
438
439                                                         $url = str_replace('/./', '/', sprintf('%s%s/%s', $settings['url'], $settings['uploaddir'], $filename));
440
441                                                         echo "<a href=\"$url\" target=\"_blank\">$filename<span>$file_info</span></a>";
442
443                                                         if ($file_owner) {
444                                                                 if ($settings['allow_deletion'])
445                                                                         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>';
446
447                                                                 if ($settings['allow_private'])
448                                                                         if ($file_private)
449                                                                                 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>';
450                                                                         else
451                                                                                 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>';
452                                                         }
453
454                                                         echo "</li>";
455                                                 }
456                                         }
457                                 ?>
458                         </ul>
459                 <?php } ?>
460                 <a href="https://github.com/muchweb/simple-php-upload"><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>
461                 <script type="text/javascript">
462                 <!--
463                         var target_form = document.getElementById('simpleupload-form'),
464                                 target_ul = document.getElementById('simpleupload-ul'),
465                                 target_input = document.getElementById('simpleupload-input');
466
467                         target_form.addEventListener('dragover', function (event) {
468                                 event.preventDefault();
469                         }, false);
470
471                         function AddFileLi (name, info) {
472                                 target_form.style.display = 'none';
473
474                                 var new_li = document.createElement('li');
475                                 new_li.className = 'uploading';
476
477                                 var new_a = document.createElement('a');
478                                 new_a.innerHTML = name;
479                                 new_li.appendChild(new_a);
480
481                                 var new_span = document.createElement('span');
482                                 new_span.innerHTML = info;
483                                 new_a.appendChild(new_span);
484
485                                 target_ul.insertBefore(new_li, target_ul.firstChild);
486                         }
487
488                         function HandleFiles (event) {
489                                 event.preventDefault();
490
491                                 var i = 0,
492                                         files = event.dataTransfer.files,
493                                         len = files.length;
494
495                                 var form = new FormData();
496
497                                 for (; i < len; i++) {
498                                         form.append('file[]', files[i]);
499                                         AddFileLi(files[i].name, files[i].size + ' bytes');
500                                 }
501
502                                 var xhr = new XMLHttpRequest();
503                                 xhr.onload = function() {
504                                         window.location.reload();
505                                 };
506
507                                 xhr.open('post', '<?php echo $data['scriptname']; ?>', true);
508                                 xhr.send(form);
509                         }
510
511                         target_form.addEventListener('drop', HandleFiles, false);
512
513                         document.getElementById('simpleupload-input').onchange = function () {
514                                 AddFileLi('Uploading...', '');
515                                 target_form.submit();
516                         };
517                 //-->
518                 </script>
519         </body>
520 </html>