BadRequestException.php
6 years ago
ControllerResolver.php
5 years ago
HttpCodeException.php
6 years ago
Router.php
5 years ago
Router.php
38 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Matomo - free/libre analytics platform |
| 4 | * |
| 5 | * @link https://matomo.org |
| 6 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 7 | */ |
| 8 | |
| 9 | namespace Piwik\Http; |
| 10 | |
| 11 | /** |
| 12 | * Router |
| 13 | */ |
| 14 | class Router |
| 15 | { |
| 16 | /** |
| 17 | * Filters some malformed URL by suggesting to redirect them. |
| 18 | * |
| 19 | * E.g. /index.php/.html?... can be interpreted as HTML by old browsers |
| 20 | * even though the Content-Type says JSON. |
| 21 | * @link https://github.com/piwik/piwik/issues/6156 |
| 22 | * |
| 23 | * @param string $url The URL to filter. |
| 24 | * |
| 25 | * @return string|null If not null, then the application should redirect to that URL. |
| 26 | */ |
| 27 | public function filterUrl($url) |
| 28 | { |
| 29 | $path = parse_url($url, PHP_URL_PATH); |
| 30 | |
| 31 | if (strpos($path, 'index.php/') !== false) { |
| 32 | return preg_replace('#index\.php/([^\?]*)#', 'index.php', $url, 1); |
| 33 | } |
| 34 | |
| 35 | return null; |
| 36 | } |
| 37 | } |
| 38 |