BadRequestException.php
6 years ago
ControllerResolver.php
6 years ago
HttpCodeException.php
6 years ago
Router.php
6 years ago
Router.php
40 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Piwik - 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 | use Piwik\Url; |
| 12 | |
| 13 | /** |
| 14 | * Router |
| 15 | */ |
| 16 | class Router |
| 17 | { |
| 18 | /** |
| 19 | * Filters some malformed URL by suggesting to redirect them. |
| 20 | * |
| 21 | * E.g. /index.php/.html?... can be interpreted as HTML by old browsers |
| 22 | * even though the Content-Type says JSON. |
| 23 | * @link https://github.com/piwik/piwik/issues/6156 |
| 24 | * |
| 25 | * @param string $url The URL to filter. |
| 26 | * |
| 27 | * @return string|null If not null, then the application should redirect to that URL. |
| 28 | */ |
| 29 | public function filterUrl($url) |
| 30 | { |
| 31 | $path = parse_url($url, PHP_URL_PATH); |
| 32 | |
| 33 | if (strpos($path, 'index.php/') !== false) { |
| 34 | return preg_replace('#index\.php/([^\?]*)#', 'index.php', $url, 1); |
| 35 | } |
| 36 | |
| 37 | return null; |
| 38 | } |
| 39 | } |
| 40 |