BadRequestException.php
1 year ago
ControllerResolver.php
4 months ago
HttpCodeException.php
2 years ago
Router.php
1 year ago
Router.php
36 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Matomo - free/libre analytics platform |
| 5 | * |
| 6 | * @link https://matomo.org |
| 7 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 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 | if (strpos($path, 'index.php/') !== \false) { |
| 31 | return preg_replace('#index\\.php/([^\\?]*)#', 'index.php', $url, 1); |
| 32 | } |
| 33 | return null; |
| 34 | } |
| 35 | } |
| 36 |