]> jfr.im git - uguu.git/blame - src/UploadGateway.php
add padding
[uguu.git] / src / UploadGateway.php
CommitLineData
e480c0e5
GJ
1<?php
2
3/**
4 * Uguu
5 *
6 * @copyright Copyright (c) 2022 Go Johansson (nokonoko) <neku@pomf.se>
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22namespace Pomf\Uguu;
23
24use Exception;
25use Pomf\Uguu\Classes\Response;
26
27class UploadGateway extends Classes\Upload
28{
29 /**
30 * @throws Exception
31 */
32 public function handleFile($output, $files)
33 {
34 $type = $output ?? 'json';
35 $response = (new Response($type));
36 if (isset($_FILES['files'])) {
37 $files = $this->reFiles($files);
38 try {
39 $this->fingerPrint(count($files));
40 foreach ($files as $ignored) {
41 $res[] = $this->uploadFile();
42 }
43 if (isset($res)) {
44 $response->send($res);
45 }
46 } catch (Exception $e) {
47 $response->error($e->getCode(), $e->getMessage());
48 }
49 } else {
50 $response->error(400, 'No input file(s)');
51 }
52 }
53}