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