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,6 +1,5 @@
<?php <?php
/**
/**
* Uguu * Uguu
* *
* @copyright Copyright (c) 2022 Go Johansson (nokonoko) <neku@pomf.se> * @copyright Copyright (c) 2022 Go Johansson (nokonoko) <neku@pomf.se>
@ -19,14 +18,34 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
error_reporting(0); function checkConfig()
{
if (!file_exists(__DIR__ . '../config.json')) {
throw new Exception('Cant read settings file.', 500);
}
try {
$settings = json_decode(
file_get_contents(__DIR__ . '../config.json'),
true,
);
if ($settings['PHP_ERRORS']) {
error_reporting(E_ALL);
ini_set('display_errors', 1);
}
}
catch (Exception) {
throw new Exception('Cant populate settings.', 500);
}
}
require_once __DIR__ . '/../vendor/autoload.php'; checkConfig();
require_once __DIR__ . '/../vendor/autoload.php';
use Pomf\Uguu\UploadGateway; use Pomf\Uguu\UploadGateway;
try { try {
(new UploadGateway())->handleFile($_GET['output'], $_FILES['files']); (new UploadGateway())->handleFile($_GET['output'], $_FILES['files']);
} catch (Exception $e) { }
catch (Exception $e) {
throw new Exception($e->getMessage(), 500); throw new Exception($e->getMessage(), 500);
} }