X-Git-Url: https://git.cweiske.de/phinde.git/blobdiff_plain/8b9ae4fc9a3f8402001dd1a054658d5e1246efff..c32d1b6ffe81afb36fdcaebe0254ad191b72bff6:/src/phinde/Helper.php diff --git a/src/phinde/Helper.php b/src/phinde/Helper.php index 8e30a19..d22b9c8 100644 --- a/src/phinde/Helper.php +++ b/src/phinde/Helper.php @@ -3,6 +3,20 @@ namespace phinde; class Helper { + public static function rewriteUrl($url) + { + if (!isset($GLOBALS['phinde']['urlRewrites']) + || count($GLOBALS['phinde']['urlRewrites']) == 0 + ) { + return $url; + } + + foreach ($GLOBALS['phinde']['urlRewrites'] as $pattern => $replacement) { + $url = preg_replace('#' . $pattern . '#', $replacement, $url); + } + return $url; + } + public static function isUrlAllowed($url) { $urlDomain = parse_url($url, PHP_URL_HOST); @@ -65,5 +79,26 @@ class Helper return $prot . '://' . $_SERVER['HTTP_HOST'] . $path; } + static $timer = []; + + public static function start($timer = 'timer') + { + static::$timer[$timer] = microtime(true); + } + + public static function stop($timer = 'timer') + { + $diff = microtime(true) - static::$timer[$timer]; + echo '+timer: ' . number_format($diff, 3) . 'ms ' . $timer . "\n"; + } + + public static function baseDoc($url) + { + $esDoc = new \stdClass(); + $esDoc->status = new \stdClass(); + $esDoc->url = $url; + $esDoc->schemalessUrl = Helper::noSchema($url); + return $esDoc; + } } ?>