Also here the upload path needs to be included, else the files cannot be
[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;
166                 global $data;
167                 global $_SESSION;
168
169                 $file_data['uploaded_file_name'] = basename($file_data['name']);
170                 $file_data['target_file_name'] = $file_data['uploaded_file_name'];
171
172                 // Generating random file name
173                 if ($settings['random_name_len'] !== false) {
174                         do {
175                                 $file_data['target_file_name'] = '';
176                                 while (strlen($file_data['target_file_name']) < $settings['random_name_len'])
177                                         $file_data['target_file_name'] .= $settings['random_name_alphabet'][mt_rand(0, strlen($settings['random_name_alphabet']) - 1)];
178                                 if ($settings['random_name_keep_type'])
179                                         $file_data['target_file_name'] .= '.' . pathinfo($file_data['uploaded_file_name'], PATHINFO_EXTENSION);
180                         } while (file_exists($file_data['target_file_name']));
181                 }
182                 $file_data['upload_target_file'] = $data['uploaddir'] . DIRECTORY_SEPARATOR . $file_data['target_file_name'];
183
184                 // Do now allow to overwriting files
185                 if (file_exists($file_data['upload_target_file'])) {
186                         echo 'File name already exists' . "\n";
187                         return;
188                 }
189
190                 // Moving uploaded file OK
191                 if (move_uploaded_file($file_data['tmp_name'], $file_data['upload_target_file'])) {
192                         if ($settings['allow_deletion'] || $settings['allow_private'])
193                                 $_SESSION['upload_user_files'][] = $file_data['target_file_name'];
194                         echo $settings['url'] .  $file_data['target_file_name'] . "\n";
195                 } else {
196                         echo 'Error: unable to upload the file.';
197                 }
198         }
199
200
201         // Files are being POSEed. Uploading them one by one.
202         if (isset($_FILES['file'])) {
203                 header('Content-type: text/plain');
204                 if (is_array($_FILES['file'])) {
205                         $file_array = diverseArray($_FILES['file']);
206                         foreach ($file_array as $file_data)
207                                 uploadFile($file_data);
208                 } else
209                         uploadFile($_FILES['file']);
210                 exit;
211         }
212
213         // Other file functions (delete, private).
214         if (isset($_POST)) {
215                 if ($settings['allow_deletion'])
216                         if (isset($_POST['action']) && $_POST['action'] === 'delete')
217                                 if (in_array(substr($_POST['target'], 1), $_SESSION['upload_user_files']) || in_array($_POST['target'], $_SESSION['upload_user_files'])) {
218                                         $fqfn = $data['uploaddir'] . DIRECTORY_SEPARATOR . $_POST['target'];
219                                         if (file_exists($fqfn)) {
220                                                 unlink($fqfn);
221                                                 echo 'File has been removed';
222                                                 exit;
223                                         }
224                                 }
225
226                 if ($settings['allow_private'])
227                         if (isset($_POST['action']) && $_POST['action'] === 'privatetoggle')
228                                 if (in_array(substr($_POST['target'], 1), $_SESSION['upload_user_files']) || in_array($_POST['target'], $_SESSION['upload_user_files'])) {
229                                         $fqfn = $data['uploaddir'] . DIRECTORY_SEPARATOR . $_POST['target'];
230                                         if (file_exists($fqfn)) {
231                                                 if ($_POST['target'][0] === '.') {
232                                                         rename($fqfn, substr($fqfn, 1));
233                                                         echo 'File has been made visible';
234                                                 } else {
235                                                         rename($fqfn, $data['uploaddir'] . DIRECTORY_SEPARATOR . '.' . $_POST['target']);
236                                                         echo 'File has been hidden';
237                                                 }
238                                                 exit;
239                                         }
240                                 }
241         }
242
243         // List files in a given directory, excluding certain files
244         function listFiles ($dir, $exclude) {
245                 $file_array = array();
246                 $dh = opendir($dir);
247                         while (false !== ($filename = readdir($dh))) {
248                                 $fqfn = $dir . DIRECTORY_SEPARATOR . $filename;
249                                 if (is_file($fqfn) && !in_array($filename, $exclude))
250                                         $file_array[filemtime($fqfn)] = $filename;
251                         }
252
253                 ksort($file_array);
254                 $file_array = array_reverse($file_array, true);
255                 return $file_array;
256         }
257
258         // Removes old files
259         function removeOldFiles ($dir) {
260                 global $file_array, $settings;
261                 foreach ($file_array as $file) {
262                         $fqfn = $dir . DIRECTORY_SEPARATOR . $file;
263                         if ($settings['time_limit'] < time() - filemtime($fqfn))
264                                 unlink($fqfn);
265                 }
266         }
267
268         // Only read files if the feature is enabled
269         if ($settings['listfiles']) {
270                 $file_array = listFiles($data['uploaddir'], $data['ignores']);
271
272                 // Removing old files
273                 if ($settings['remove_old_files'])
274                         removeOldFiles($data['uploaddir']);
275
276                 $file_array = listFiles($data['uploaddir'], $data['ignores']);
277         }
278 ?>
279 <!DOCTYPE html>
280 <html lang="<?=$settings['lang']?>" dir="<?=$settings['lang_dir']?>">
281         <head>
282                 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
283                 <meta http-equiv="Content-Script-Type" content="text/javascript">
284                 <meta name="robots" content="noindex">
285                 <meta name="referrer" content="origin-when-crossorigin">
286                 <title><?=$settings['title']?></title>
287                 <style media="screen">
288                 <!--
289                         body {
290                                 background: #111;
291                                 margin: 0;
292                                 color: #ddd;
293                                 font-family: sans-serif;
294                         }
295
296                         body > h1 {
297                                 display: block;
298                                 background: rgba(255, 255, 255, 0.05);
299                                 padding: 8px 16px;
300                                 text-align: center;
301                                 margin: 0;
302                         }
303
304                         body > form {
305                                 display: block;
306                                 background: rgba(255, 255, 255, 0.075);
307                                 padding: 16px 16px;
308                                 margin: 0;
309                                 text-align: center;
310                         }
311
312                         body > ul {
313                                 display: block;
314                                 padding: 0;
315                                 max-width: 1000px;
316                                 margin: 32px auto;
317                         }
318
319                         body > ul > li {
320                                 display: block;
321                                 margin: 0;
322                                 padding: 0;
323                         }
324
325                         body > ul > li > a {
326                                 display: block;
327                                 margin: 0 0 1px 0;
328                                 list-style: none;
329                                 background: rgba(255, 255, 255, 0.1);
330                                 padding: 8px 16px;
331                                 text-decoration: none;
332                                 color: inherit;
333                                 opacity: 0.5;
334                         }
335
336                         body > ul > li > a:hover {
337                                 opacity: 1;
338                         }
339
340                         body > ul > li > a:active {
341                                 opacity: 0.5;
342                         }
343
344                         body > ul > li > a > span {
345                                 float: right;
346                                 font-size: 90%;
347                         }
348
349                         body > ul > li > form {
350                                 display: inline-block;
351                                 padding: 0;
352                                 margin: 0;
353                         }
354
355                         body > ul > li.owned {
356                                 margin: 8px;
357                         }
358
359                         body > ul > li > form > button {
360                                 opacity: 0.5;
361                                 display: inline-block;
362                                 padding: 4px 16px;
363                                 margin: 0;
364                                 border: 0;
365                                 background: rgba(255, 255, 255, 0.1);
366                                 color: inherit;
367                         }
368
369                         body > ul > li > form > button:hover {
370                                 opacity: 1;
371                         }
372
373                         body > ul > li > form > button:active {
374                                 opacity: 0.5;
375                         }
376
377                         body > ul > li.uploading {
378                                 animation: upanim 2s linear 0s infinite alternate;
379                         }
380
381                         @keyframes upanim {
382                                 from {
383                                         opacity: 0.3;
384                                 }
385                                 to {
386                                         opacity: 0.8;
387                                 }
388                         }
389                 //-->
390                 </style>
391         </head>
392         <body>
393                 <h1><?=$settings['title']?></h1>
394                 <form action="<?= $data['scriptname'] ?>" method="POST" enctype="multipart/form-data" class="dropzone" id="simpleupload-form">
395                         Maximum upload size: <?php echo $data['max_upload_size']; ?><br />
396                         <input type="file" name="file[]" multiple required id="simpleupload-input"/>
397                 </form>
398                 <?php if ($settings['listfiles']) { ?>
399                         <ul id="simpleupload-ul">
400                                 <?php
401                                         foreach ($file_array as $mtime => $filename) {
402                                                 $fqfn = $data['uploaddir'] . DIRECTORY_SEPARATOR . $filename;
403                                                 $file_info = array();
404                                                 $file_owner = false;
405                                                 $file_private = $filename[0] === '.';
406
407                                                 if ($settings['listfiles_size'])
408                                                         $file_info[] = formatSize(filesize($fqfn));
409
410                                                 if ($settings['listfiles_size'])
411                                                         $file_info[] = date($settings['listfiles_date_format'], $mtime);
412
413                                                 if ($settings['allow_deletion'] || $settings['allow_private'])
414                                                         if (in_array(substr($filename, 1), $_SESSION['upload_user_files']) || in_array($filename, $_SESSION['upload_user_files']))
415                                                                 $file_owner = true;
416
417                                                 $file_info = implode(', ', $file_info);
418
419                                                 if (strlen($file_info) > 0)
420                                                         $file_info = ' (' . $file_info . ')';
421
422                                                 $class = '';
423                                                 if ($file_owner)
424                                                         $class = 'owned';
425
426                                                 if (!$file_private || $file_owner) {
427                                                         echo "<li class=\"' . $class . '\">";
428
429                                                         $url = str_replace('/./', '/', sprintf('%s%s/%s', $settings['url'], $settings['uploaddir'], $filename));
430
431                                                         echo "<a href=\"$url\" target=\"_blank\">$filename<span>$file_info</span></a>";
432
433                                                         if ($file_owner) {
434                                                                 if ($settings['allow_deletion'])
435                                                                         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>';
436
437                                                                 if ($settings['allow_private'])
438                                                                         if ($file_private)
439                                                                                 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>';
440                                                                         else
441                                                                                 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>';
442                                                         }
443
444                                                         echo "</li>";
445                                                 }
446                                         }
447                                 ?>
448                         </ul>
449                 <?php } ?>
450                 <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>
451                 <script type="text/javascript">
452                 <!--
453                         var target_form = document.getElementById('simpleupload-form'),
454                                 target_ul = document.getElementById('simpleupload-ul'),
455                                 target_input = document.getElementById('simpleupload-input');
456
457                         target_form.addEventListener('dragover', function (event) {
458                                 event.preventDefault();
459                         }, false);
460
461                         function AddFileLi (name, info) {
462                                 target_form.style.display = 'none';
463
464                                 var new_li = document.createElement('li');
465                                 new_li.className = 'uploading';
466
467                                 var new_a = document.createElement('a');
468                                 new_a.innerHTML = name;
469                                 new_li.appendChild(new_a);
470
471                                 var new_span = document.createElement('span');
472                                 new_span.innerHTML = info;
473                                 new_a.appendChild(new_span);
474
475                                 target_ul.insertBefore(new_li, target_ul.firstChild);
476                         }
477
478                         function HandleFiles (event) {
479                                 event.preventDefault();
480
481                                 var i = 0,
482                                         files = event.dataTransfer.files,
483                                         len = files.length;
484
485                                 var form = new FormData();
486
487                                 for (; i < len; i++) {
488                                         form.append('file[]', files[i]);
489                                         AddFileLi(files[i].name, files[i].size + ' bytes');
490                                 }
491
492                                 var xhr = new XMLHttpRequest();
493                                 xhr.onload = function() {
494                                         window.location.reload();
495                                 };
496
497                                 xhr.open('post', '<?php echo $data['scriptname']; ?>', true);
498                                 xhr.send(form);
499                         }
500
501                         target_form.addEventListener('drop', HandleFiles, false);
502
503                         document.getElementById('simpleupload-input').onchange = function () {
504                                 AddFileLi('Uploading...', '');
505                                 target_form.submit();
506                         };
507                 //-->
508                 </script>
509         </body>
510 </html>