1) { $urlDir .= '/'; } return $urlDir; } /** * If current URL is "http://example.org/dir1/dir2/index.php?param1=value1¶m2=value2" * will return "/dir1/dir2/index.php" * * @return string */ static public function getCurrentScriptName() { $url = ''; if (!empty($_SERVER['REQUEST_URI'])) { $url = $_SERVER['REQUEST_URI']; // strip http://host (Apache+Rails anomaly) if (preg_match('~^https?://[^/]+($|/.*)~D', $url, $matches)) { $url = $matches[1]; } // strip parameters if (($pos = strpos($url, "?")) !== false) { $url = substr($url, 0, $pos); } // strip path_info if (isset($_SERVER['PATH_INFO'])) { $url = substr($url, 0, -strlen($_SERVER['PATH_INFO'])); } } /** * SCRIPT_NAME is our fallback, though it may not be set correctly * * @see http://php.net/manual/en/reserved.variables.php */ if (empty($url)) { if (isset($_SERVER['SCRIPT_NAME'])) { $url = $_SERVER['SCRIPT_NAME']; } elseif (isset($_SERVER['SCRIPT_FILENAME'])) { $url = $_SERVER['SCRIPT_FILENAME']; } elseif (isset($_SERVER['argv'])) { $url = $_SERVER['argv'][0]; } } if (!isset($url[0]) || $url[0] !== '/') { $url = '/' . $url; } return $url; } /** * If the current URL is 'http://example.org/dir1/dir2/index.php?param1=value1¶m2=value2" * will return 'http' * * @return string 'https' or 'http' */ static public function getCurrentScheme() { try { $assume_secure_protocol = @Config::getInstance()->General['assume_secure_protocol']; } catch (Exception $e) { $assume_secure_protocol = false; } if ($assume_secure_protocol || (isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] == 'on' || $_SERVER['HTTPS'] === true)) || (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') ) { return 'https'; } return 'http'; } /** * Validate "Host" (untrusted user input) * * @param string|bool $host Contents of Host: header from Request. If false, gets the * value from the request. * * @return bool True if valid; false otherwise */ static public function isValidHost($host = false) { // only do trusted host check if it's enabled if (isset(Config::getInstance()->General['enable_trusted_host_check']) && Config::getInstance()->General['enable_trusted_host_check'] == 0 ) { return true; } if ($host === false) { $host = @$_SERVER['HTTP_HOST']; if (empty($host)) // if no current host, assume valid { return true; } } // if host is in hardcoded whitelist, assume it's valid if (in_array($host, self::$alwaysTrustedHosts)) { return true; } $trustedHosts = @Config::getInstance()->General['trusted_hosts']; // if no trusted hosts, just assume it's valid if (empty($trustedHosts)) { self::saveTrustedHostnameInConfig($host); return true; } // Only punctuation we allow is '[', ']', ':', '.' and '-' $hostLength = Common::strlen($host); if ($hostLength !== strcspn($host, '`~!@#$%^&*()_+={}\\|;"\'<>,?/ ')) { return false; } foreach ($trustedHosts as &$trustedHost) { $trustedHost = preg_quote($trustedHost); } $untrustedHost = Common::mb_strtolower($host); $untrustedHost = rtrim($untrustedHost, '.'); $hostRegex = Common::mb_strtolower('/(^|.)' . implode('|', $trustedHosts) . '$/'); $result = preg_match($hostRegex, $untrustedHost); return 0 !== $result; } /** * Records one host, or an array of hosts in the config file, * if user is super user * * @static * @param $host string|array * @return bool */ public static function saveTrustedHostnameInConfig($host) { if (Piwik::isUserIsSuperUser() && file_exists(Config::getLocalConfigPath()) ) { $general = Config::getInstance()->General; if (!is_array($host)) { $host = array($host); } $host = array_filter($host); if (empty($host)) { return false; } $general['trusted_hosts'] = $host; Config::getInstance()->General = $general; Config::getInstance()->forceSave(); return true; } return false; } /** * Get host * * @param bool $checkIfTrusted Whether to do trusted host check. Should ALWAYS be true, * except in Controller. * @return string|bool false if no host found */ static public function getHost($checkIfTrusted = true) { // HTTP/1.1 request if (isset($_SERVER['HTTP_HOST']) && strlen($host = $_SERVER['HTTP_HOST']) && (!$checkIfTrusted || self::isValidHost($host)) ) { return $host; } // HTTP/1.0 request doesn't include Host: header if (isset($_SERVER['SERVER_ADDR'])) { return $_SERVER['SERVER_ADDR']; } return false; } /** * If current URL is "http://example.org/dir1/dir2/index.php?param1=value1¶m2=value2" * will return "example.org" * * @param string $default Default value to return if host unknown * @param bool $checkTrustedHost Whether to do trusted host check. Should ALWAYS be true, * except in Controller. * @return string */ static public function getCurrentHost($default = 'unknown', $checkTrustedHost = true) { $hostHeaders = @Config::getInstance()->General['proxy_host_headers']; if (!is_array($hostHeaders)) { $hostHeaders = array(); } $host = self::getHost($checkTrustedHost); $default = Common::sanitizeInputValue($host ? $host : $default); return IP::getNonProxyIpFromHeader($default, $hostHeaders); } /** * If current URL is "http://example.org/dir1/dir2/index.php?param1=value1¶m2=value2" * will return "?param1=value1¶m2=value2" * * @return string */ static public function getCurrentQueryString() { $url = ''; if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING']) ) { $url .= "?" . $_SERVER['QUERY_STRING']; } return $url; } /** * If current URL is "http://example.org/dir1/dir2/index.php?param1=value1¶m2=value2" * will return * array * 'param1' => string 'value1' * 'param2' => string 'value2' * * @return array */ static function getArrayFromCurrentQueryString() { $queryString = self::getCurrentQueryString(); $urlValues = UrlHelper::getArrayFromQueryString($queryString); return $urlValues; } /** * Given an array of name-values, it will return the current query string * with the new requested parameter key-values; * If a parameter wasn't found in the current query string, the new key-value will be added to the returned query string. * * @param array $params array ( 'param3' => 'value3' ) * @return string ?param2=value2¶m3=value3 */ static function getCurrentQueryStringWithParametersModified($params) { $urlValues = self::getArrayFromCurrentQueryString(); foreach ($params as $key => $value) { $urlValues[$key] = $value; } $query = self::getQueryStringFromParameters($urlValues); if (strlen($query) > 0) { return '?' . $query; } return ''; } /** * Given an array of parameters name->value, returns the query string. * Also works with array values using the php array syntax for GET parameters. * * @param array $parameters eg. array( 'param1' => 10, 'param2' => array(1,2)) * @return string eg. "param1=10¶m2[]=1¶m2[]=2" */ static public function getQueryStringFromParameters($parameters) { $query = ''; foreach ($parameters as $name => $value) { if (is_null($value) || $value === false) { continue; } if (is_array($value)) { foreach ($value as $theValue) { $query .= $name . "[]=" . $theValue . "&"; } } else { $query .= $name . "=" . $value . "&"; } } $query = substr($query, 0, -1); return $query; } /** * Redirects the user to the referrer if found. * If the user doesn't have a referrer set, it redirects to the current URL without query string. */ static public function redirectToReferer() { $referrer = self::getReferer(); if ($referrer !== false) { self::redirectToUrl($referrer); } self::redirectToUrl(self::getCurrentUrlWithoutQueryString()); } /** * Redirects the user to the specified URL * * @param string $url */ static public function redirectToUrl($url) { if (UrlHelper::isLookLikeUrl($url) || strpos($url, 'index.php') === 0 ) { @header("Location: $url"); } else { echo "Invalid URL to redirect to."; } exit; } /** * Returns the HTTP_REFERER header, false if not found. * * @return string|bool */ static public function getReferer() { if (!empty($_SERVER['HTTP_REFERER'])) { return $_SERVER['HTTP_REFERER']; } return false; } /** * Is the URL on the same host? * * @param string $url * @return bool True if local; false otherwise. */ static public function isLocalUrl($url) { if (empty($url)) { return true; } // handle host name mangling $requestUri = isset($_SERVER['SCRIPT_URI']) ? $_SERVER['SCRIPT_URI'] : ''; $parseRequest = @parse_url($requestUri); $hosts = array(self::getHost(), self::getCurrentHost()); if (!empty($parseRequest['host'])) { $hosts[] = $parseRequest['host']; } // drop port numbers from hostnames and IP addresses $hosts = array_map(array('Piwik\IP', 'sanitizeIp'), $hosts); $disableHostCheck = Config::getInstance()->General['enable_trusted_host_check'] == 0; // compare scheme and host $parsedUrl = @parse_url($url); $host = IP::sanitizeIp(@$parsedUrl['host']); return !empty($host) && ($disableHostCheck || in_array($host, $hosts)) && !empty($parsedUrl['scheme']) && in_array($parsedUrl['scheme'], array('http', 'https')); } }