1
0
mirror of https://github.com/nokonoko/Uguu.git synced 2024-01-06 13:35:15 +00:00
uguu/src/static/php/upload.php
Go Johansson (neku) 4469e4dcab v1.8.4
2023-12-31 16:11:32 +01:00

58 lines
2.2 KiB
PHP
Executable File

<?php
/*
* Uguu
*
* @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <neku@pomf.se>
*
* Note that this was previously distributed under the MIT license 2015-2022.
*
* If you are a company that wants to use Uguu I urge you to contact me to
* solve any potential license issues rather then using pre-2022 code.
*
* A special thanks goes out to the open source community around the world
* for supporting and being the backbone of projects like Uguu.
*
* This project can be found at <https://github.com/nokonoko/Uguu>.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
require_once __DIR__ . '/../vendor/autoload.php';
use Pomf\Uguu\Classes\Upload;
use Pomf\Uguu\Classes\Response;
function handleFiles(string $outputFormat, array $files):void
{
$upload = new Upload($outputFormat);
$files = $upload->reFiles($files);
$fCount = count($files);
$upload->fingerPrint($fCount);
$res = [];
$i = 0;
while ($i < $fCount) {
$res[] = $upload->uploadFile();
$i++;
}
if (!empty($res)) {
$upload->send($res);
}
}
$resType = (isset($_GET['output']) and !empty($_GET['output'])) ? strtolower(preg_replace('/[^a-zA-Z]/', '', $_GET['output'])) : 'json';
$response = new Response($resType);
if (!isset($_FILES['files']) or empty($_FILES['files'])) {
$response->error(400, 'No input file(s)');
}
handleFiles($resType, $_FILES['files']);