mirror of
https://github.com/error311/FileRise.git
synced 2026-05-02 18:09:55 -05:00
31 lines
810 B
PHP
31 lines
810 B
PHP
<?php
|
|
// public/api/admin/oidcTest.php
|
|
declare(strict_types=1);
|
|
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
|
|
require_once __DIR__ . '/../../../config/config.php';
|
|
require_once PROJECT_ROOT . '/src/controllers/AdminController.php';
|
|
|
|
try {
|
|
$raw = file_get_contents('php://input') ?: '';
|
|
$body = json_decode($raw, true);
|
|
if (!is_array($body)) {
|
|
$body = [];
|
|
}
|
|
|
|
$controller = new AdminController();
|
|
$result = $controller->testOidcConfig($body);
|
|
|
|
echo json_encode(
|
|
$result,
|
|
JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE
|
|
);
|
|
} catch (Throwable $e) {
|
|
error_log('[OIDC test] ' . $e->getMessage());
|
|
http_response_code(500);
|
|
echo json_encode([
|
|
'success' => false,
|
|
'error' => 'Internal error during OIDC test.',
|
|
]);
|
|
} |