This commit is contained in:
Go Johansson 2022-12-16 22:36:32 +01:00
parent 7a464f7d36
commit f0794be379
3 changed files with 58 additions and 35 deletions

View File

@ -43,7 +43,7 @@ copy-img:
copy-php: copy-php:
cp -v $(CURDIR)/src/static/php/*.php $(CURDIR)/build/php/ cp -v $(CURDIR)/src/static/php/*.php $(CURDIR)/build/php/
cp -v $(CURDIR)/src/Classes/*.php $(CURDIR)/build/php/includes/Classes/ cp -v $(CURDIR)/src/Classes/*.php $(CURDIR)/build/php/src/Classes/
install: installdirs install: installdirs
cp -rv $(CURDIR)/build/* $(DESTDIR)/ cp -rv $(CURDIR)/build/* $(DESTDIR)/
@ -100,5 +100,5 @@ purge-container:
fi; fi;
builddirs: builddirs:
mkdir -p $(CURDIR)/build $(CURDIR)/build/img $(CURDIR)/build/html $(CURDIR)/build/html/min $(CURDIR)/build/html/unmin $(CURDIR)/build/js $(CURDIR)/build/css $(CURDIR)/build/php $(CURDIR)/build/php/includes $(CURDIR)/build/php/includes/Classes $(CURDIR)/build/public mkdir -p $(CURDIR)/build $(CURDIR)/build/img $(CURDIR)/build/html $(CURDIR)/build/html/min $(CURDIR)/build/html/unmin $(CURDIR)/build/js $(CURDIR)/build/css $(CURDIR)/build/php $(CURDIR)/build/php/src $(CURDIR)/build/php/src/Classes $(CURDIR)/build/public

View File

@ -5,8 +5,8 @@
"license": "GPL-3.0", "license": "GPL-3.0",
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Pomf\\Uguu\\": "/", "Pomf\\Uguu\\": "src/",
"Pomf\\Uguu\\Classes\\": "includes/Classes" "Pomf\\Uguu\\Classes\\": "src/Classes"
} }
}, },
"authors": [ "authors": [
@ -27,5 +27,9 @@
"friendsofphp/php-cs-fixer": "^v2.19.3", "friendsofphp/php-cs-fixer": "^v2.19.3",
"phpstan/phpstan": "^1.9.3", "phpstan/phpstan": "^1.9.3",
"vimeo/psalm": "^5.2.0" "vimeo/psalm": "^5.2.0"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true
} }
} }

View File

@ -1,32 +1,51 @@
<?php <?php
/**
/** * Uguu
* Uguu *
* * @copyright Copyright (c) 2022 Go Johansson (nokonoko) <neku@pomf.se>
* @copyright Copyright (c) 2022 Go Johansson (nokonoko) <neku@pomf.se> *
* * This program is free software: you can redistribute it and/or modify
* 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
* it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or
* the Free Software Foundation, either version 3 of the License, or * (at your option) any later version.
* (at your option) any later version. *
* * This program is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of
* but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details.
* GNU General Public License for more details. *
* * You should have received a copy of the GNU General Public License
* You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>.
* along with this program. If not, see <https://www.gnu.org/licenses/>. */
*/
function checkConfig()
error_reporting(0); {
if (!file_exists(__DIR__ . '../config.json')) {
require_once __DIR__ . '/../vendor/autoload.php'; throw new Exception('Cant read settings file.', 500);
}
use Pomf\Uguu\UploadGateway; try {
$settings = json_decode(
try { file_get_contents(__DIR__ . '../config.json'),
(new UploadGateway())->handleFile($_GET['output'], $_FILES['files']); true,
} catch (Exception $e) { );
throw new Exception($e->getMessage(), 500); if ($settings['PHP_ERRORS']) {
} error_reporting(E_ALL);
ini_set('display_errors', 1);
}
}
catch (Exception) {
throw new Exception('Cant populate settings.', 500);
}
}
checkConfig();
require_once __DIR__ . '/../vendor/autoload.php';
use Pomf\Uguu\UploadGateway;
try {
(new UploadGateway())->handleFile($_GET['output'], $_FILES['files']);
}
catch (Exception $e) {
throw new Exception($e->getMessage(), 500);
}