Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Routing/RequestHelper.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\Core\Routing; use Symfony\Component\HttpFoundation\Request; /** * Provides some helper methods for dealing with the request. */ class RequestHelper { /** * Returns whether the request is using a clean URL. * * A clean URL is one that does not include the script name. For example, * - http://example.com/node/1 is a clean URL. * - http://example.com/index.php/node/1 is not a clean URL. * * Unclean URLs are required on sites hosted by web servers that cannot be * configured to implicitly route URLs to index.php. * * @param \Symfony\Component\HttpFoundation\Request $request * The request. * * @return bool * TRUE if the request is using a clean URL. */ public static function isCleanUrl(Request $request) { $base_url = $request->getBaseUrl(); return (empty($base_url) || strpos($base_url, $request->getScriptName()) === FALSE); } }