- Bug: dashboard toonde 0 content (AdminPluginAPI::getContentDir() gaf relatief pad terug zonder normalisatie) - Dynamische pad-resolutie: PluginAPIInterface uitgebreid met getProjectRoot/getContentDir/getPluginsDir/getVersionInfo; CMSAPI en AdminPluginAPI implementeren deze universeel - public/index.php media-serving gebruikt $config['content_dir'] i.p.v. hardcoded /content - Navigation en Logs plugins halen paden via de API i.p.v. hardcoded dirname(__DIR__) - WordPress-stijl docblocks toegevoegd voor alle classes, methods, properties en functies (~450 docblocks, @since 2.6.5) - Security: hardcoded plaintext-wachtwoord 'admin' verwijderd uit AdminAuth.php; bij eerste installatie wordt een cryptografisch veilig wachtwoord gegenereerd (random_bytes, 16 tekens) en eenmalig op het inlogscherm getoond - Security: git-geschiedenis schoongemaakt (admin.json, admin.json.example, admin-console/config/admin.json verwijderd uit alle commits; filter-branch over alle branches + tags, gc --prune --aggressive) - README.md, README.en.md, AGENTS.md bijgewerkt - Test-scripts bijgewerkt naar clean-URL structuur + actuele ARIA-waarden - Versie verhoogd naar 2.6.5 - Tests: pentest 29/29, WCAG 25/25, functioneel 16/16, enhanced 25/25
170 lines
5.3 KiB
PHP
170 lines
5.3 KiB
PHP
<?php
|
|
/**
|
|
* Router voor de PHP development-server: clean-URL support en statische bestanden.
|
|
*
|
|
* Wordt gebruikt via `php -S localhost:8080 cms/router.php`. Houdt de request-
|
|
* URI tegen de public/-map voor statische bestanden, serveert theme-, admin-
|
|
* theme- en plugin-assets buiten public/, en routeert /admin en taal-geprefixte
|
|
* paden (/nl, /en) door naar admin.php respectievelijk index.php.
|
|
*
|
|
* @since 2.6.5
|
|
* @package CodePress
|
|
*/
|
|
// Router file for PHP development server - clean URL support + static file serving
|
|
|
|
$requestUri = $_SERVER['REQUEST_URI'];
|
|
$parsedUrl = parse_url($requestUri);
|
|
$path = $parsedUrl['path'] ?? '/';
|
|
$path = rtrim($path, '/') ?: '/';
|
|
$publicDir = __DIR__ . '/../public';
|
|
|
|
$mimeTypes = [
|
|
'css' => 'text/css',
|
|
'js' => 'application/javascript',
|
|
'svg' => 'image/svg+xml',
|
|
'png' => 'image/png',
|
|
'jpg' => 'image/jpeg',
|
|
'ico' => 'image/x-icon',
|
|
'woff' => 'font/woff',
|
|
'woff2' => 'font/woff2',
|
|
'json' => 'application/json',
|
|
];
|
|
|
|
/**
|
|
* Statische bestanden uit public/ serveren met juiste MIME-type.
|
|
*
|
|
* @since 2.6.5
|
|
*/
|
|
// Serve static files from public/
|
|
$filePath = $publicDir . $path;
|
|
if (is_file($filePath)) {
|
|
$ext = strtolower(pathinfo($filePath, PATHINFO_EXTENSION));
|
|
if (isset($mimeTypes[$ext])) {
|
|
header('Content-Type: ' . $mimeTypes[$ext]);
|
|
}
|
|
readfile($filePath);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Theme-assets uit themes/<naam>/ serveren (bijv. /themes/default/js/theme.js).
|
|
*
|
|
* Path-traversal wordt afgedwongen via realpath() + prefix-controle.
|
|
*
|
|
* @since 2.6.5
|
|
*/
|
|
// Serve theme assets from the themes/ directory (e.g. /themes/default/js/theme.js)
|
|
if (preg_match('#^/themes/([^/]+)/(.+)$#', $path, $m)) {
|
|
$themeName = $m[1];
|
|
$themeRel = $m[2];
|
|
$themesDir = __DIR__ . '/../themes';
|
|
$themeFile = $themesDir . '/' . $themeName . '/' . $themeRel;
|
|
$realThemes = realpath($themesDir);
|
|
$realFile = realpath($themeFile);
|
|
if ($realFile && $realThemes && strpos($realFile, $realThemes) === 0 && is_file($realFile)) {
|
|
$ext = strtolower(pathinfo($realFile, PATHINFO_EXTENSION));
|
|
if (isset($mimeTypes[$ext])) {
|
|
header('Content-Type: ' . $mimeTypes[$ext]);
|
|
}
|
|
readfile($realFile);
|
|
return true;
|
|
}
|
|
http_response_code(404);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Admin-theme-assets serveren (bijv. /admin/assets/css/bootstrap.min.js).
|
|
*
|
|
* Bronmap: admin/theme/default/assets/.
|
|
*
|
|
* @since 2.6.5
|
|
*/
|
|
// Serve admin theme assets (e.g. /admin/assets/css/bootstrap.min.js)
|
|
// Served from admin/theme/default/assets/
|
|
if (preg_match('#^/admin/assets/(.+)$#', $path, $m)) {
|
|
$assetPath = $m[1];
|
|
$adminThemeDir = __DIR__ . '/../admin/theme/default/assets';
|
|
$assetFile = $adminThemeDir . '/' . $assetPath;
|
|
$realAdminTheme = realpath($adminThemeDir);
|
|
$realFile = realpath($assetFile);
|
|
if ($realFile && $realAdminTheme && strpos($realFile, $realAdminTheme) === 0 && is_file($realFile)) {
|
|
$ext = strtolower(pathinfo($realFile, PATHINFO_EXTENSION));
|
|
if (isset($mimeTypes[$ext])) {
|
|
header('Content-Type: ' . $mimeTypes[$ext]);
|
|
}
|
|
readfile($realFile);
|
|
return true;
|
|
}
|
|
http_response_code(404);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Plugin-assets serveren (bijv. /plugins/Navigation/assets/css/navigation.css).
|
|
*
|
|
* @since 2.6.5
|
|
*/
|
|
// Serve plugin assets (e.g. /plugins/Navigation/assets/css/navigation.css)
|
|
if (preg_match('#^/plugins/([^/]+)/assets/(.+)$#', $path, $m)) {
|
|
$pluginName = $m[1];
|
|
$assetPath = $m[2];
|
|
$pluginAssetDir = __DIR__ . '/../plugins/' . $pluginName . '/assets';
|
|
$assetFile = $pluginAssetDir . '/' . $assetPath;
|
|
$realPluginDir = realpath($pluginAssetDir);
|
|
$realFile = realpath($assetFile);
|
|
if ($realFile && $realPluginDir && strpos($realFile, $realPluginDir) === 0 && is_file($realFile)) {
|
|
$ext = strtolower(pathinfo($realFile, PATHINFO_EXTENSION));
|
|
if (isset($mimeTypes[$ext])) {
|
|
header('Content-Type: ' . $mimeTypes[$ext]);
|
|
}
|
|
readfile($realFile);
|
|
return true;
|
|
}
|
|
http_response_code(404);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Admin-routes doorsturen: /admin/<route> → admin.php?route=<route>.
|
|
*
|
|
* Default route is 'dashboard' indien geen subpad opgegeven.
|
|
*
|
|
* @since 2.6.5
|
|
*/
|
|
// Admin routes: /admin/login → admin.php?route=login
|
|
if (preg_match('#^/admin(?:/(.+))?$#', $path, $m)) {
|
|
$_GET['route'] = $m[1] ?? 'dashboard';
|
|
require $publicDir . '/admin.php';
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Taal-geprefixte routes: /nl/<page> of /en/<page> → index.php?lang=...&page=...
|
|
*
|
|
* /nl/guide activeert de guide-flag met bestaande ?page=. Default valt
|
|
* door naar index.php.
|
|
*
|
|
* @since 2.6.5
|
|
*/
|
|
// Language-prefixed routes: /nl/page/path → index.php?lang=nl&page=page/path
|
|
if (preg_match('#^/(nl|en)(?:/(.+))?$#', $path, $m)) {
|
|
$_GET['lang'] = $m[1];
|
|
if (isset($m[2]) && $m[2] !== '') {
|
|
if ($m[2] === 'guide') {
|
|
// /nl/guide → set guide flag, keep existing ?page= from query string
|
|
$_GET['guide'] = '1';
|
|
if (!isset($_GET['page'])) {
|
|
$_GET['page'] = '';
|
|
}
|
|
} else {
|
|
$_GET['page'] = $m[2];
|
|
}
|
|
}
|
|
require $publicDir . '/index.php';
|
|
return true;
|
|
}
|
|
|
|
// Root or unknown → index.php
|
|
require $publicDir . '/index.php';
|
|
return true; |