]> jfr.im git - uguu.git/blob - src/static/php/upload.php
replace name generator method
[uguu.git] / src / static / php / upload.php
1 <?php
2 /*
3 * Uguu
4 *
5 * @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <neku@pomf.se>
6 *
7 * Note that this was previously distributed under the MIT license 2015-2022.
8 *
9 * If you are a company that wants to use Uguu I urge you to contact me to
10 * solve any potential license issues rather then using pre-2022 code.
11 *
12 * A special thanks goes out to the open source community around the world
13 * for supporting and being the backbone of projects like Uguu.
14 *
15 * This project can be found at <https://github.com/nokonoko/Uguu>.
16 *
17 * This program is free software: you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation, either version 3 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program. If not, see <https://www.gnu.org/licenses/>.
29 */
30
31 require_once __DIR__ . '/../vendor/autoload.php';
32 use Pomf\Uguu\Classes\Upload;
33 use Pomf\Uguu\Classes\Response;
34
35 function handleFiles(string $outputFormat, array $files):void
36 {
37 $upload = new Upload($outputFormat);
38 $files = $upload->reFiles($files);
39 $fCount = count($files);
40 $upload->fingerPrint($fCount);
41 $res = [];
42 $i = 0;
43 while ($i < $fCount) {
44 $res[] = $upload->uploadFile();
45 $i++;
46 }
47 if (!empty($res)) {
48 $upload->send($res);
49 }
50 }
51
52 $resType = (isset($_GET['output']) and !empty($_GET['output'])) ? strtolower(preg_replace('/[^a-zA-Z]/', '', $_GET['output'])) : 'json';
53 $response = new Response($resType);
54 if (!isset($_FILES['files']) or empty($_FILES['files'])) {
55 $response->error(400, 'No input file(s)');
56 }
57 handleFiles($resType, $_FILES['files']);