The previous .htaccess used PATH_INFO (api/index.php/$1) which OVH mutualisé does not always allow, producing an Apache 500 HTML page that masked our own JSON error reporting. Switch to query-string routing (?route=...): same effect, works everywhere. Add a global exception handler in index.php that emits JSON errors only — no more opaque Apache 500. Add a /api/debug endpoint that reports PHP version, sodium availability, pdo_mysql, and whether versions.json is found. Useful for diagnosing shared-hosting setup before adding license logic. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
78 lines
2.5 KiB
PHP
78 lines
2.5 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
// Erreurs en JSON, jamais en HTML — pour ne plus avoir d'écran Apache 500 opaque.
|
|
ini_set('display_errors', '0');
|
|
ini_set('log_errors', '1');
|
|
|
|
set_error_handler(function ($severity, $message, $file, $line) {
|
|
if (!(error_reporting() & $severity)) return false;
|
|
throw new ErrorException($message, 0, $severity, $file, $line);
|
|
});
|
|
|
|
set_exception_handler(function (\Throwable $e) {
|
|
if (!headers_sent()) {
|
|
http_response_code(500);
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
}
|
|
error_log('[PSLauncher] ' . $e->getMessage() . ' @ ' . $e->getFile() . ':' . $e->getLine());
|
|
echo json_encode([
|
|
'error' => 'server_error',
|
|
'message' => $e->getMessage(),
|
|
'file' => basename($e->getFile()),
|
|
'line' => $e->getLine(),
|
|
]);
|
|
exit;
|
|
});
|
|
|
|
require __DIR__ . '/lib/Response.php';
|
|
|
|
use PSLauncher\Response;
|
|
|
|
// Charge la config (config.example.php est le template ; config.php est gitignored)
|
|
$configPath = __DIR__ . '/config.php';
|
|
if (!is_file($configPath)) {
|
|
Response::error('config_missing', 'config.php absent — copier config.example.php', 500);
|
|
}
|
|
$config = require $configPath;
|
|
|
|
// La route est passée via ?route=... par le .htaccess
|
|
$route = trim((string)($_GET['route'] ?? ''), '/');
|
|
$method = $_SERVER['REQUEST_METHOD'] ?? 'GET';
|
|
|
|
if ($method === 'GET' && ($route === '' || $route === 'manifest')) {
|
|
require __DIR__ . '/routes/Manifest.php';
|
|
\PSLauncher\Routes\Manifest::handle($config);
|
|
return;
|
|
}
|
|
|
|
if ($method === 'GET' && preg_match('#^releasenotes/([0-9]+\.[0-9]+\.[0-9]+)$#', $route, $m)) {
|
|
require __DIR__ . '/routes/Releasenotes.php';
|
|
\PSLauncher\Routes\Releasenotes::handle($m[1]);
|
|
return;
|
|
}
|
|
|
|
if ($method === 'GET' && $route === 'health') {
|
|
Response::json([
|
|
'status' => 'ok',
|
|
'serverTime' => gmdate('c'),
|
|
'phpVersion' => PHP_VERSION,
|
|
'configLoaded' => is_array($config),
|
|
]);
|
|
}
|
|
|
|
if ($method === 'GET' && $route === 'debug') {
|
|
Response::json([
|
|
'status' => 'ok',
|
|
'route' => $route,
|
|
'request_uri' => $_SERVER['REQUEST_URI'] ?? '',
|
|
'script_name' => $_SERVER['SCRIPT_NAME'] ?? '',
|
|
'php' => PHP_VERSION,
|
|
'sodium' => function_exists('sodium_crypto_sign_detached'),
|
|
'pdo_mysql' => extension_loaded('pdo_mysql'),
|
|
'manifest_file' => is_file(dirname(__DIR__) . '/manifest/versions.json'),
|
|
]);
|
|
}
|
|
|
|
Response::error('not_found', "Route not found: '{$route}'", 404);
|