diff --git a/lib/SimpleSAML/Logger/LoggingHandlerFile.php b/lib/SimpleSAML/Logger/LoggingHandlerFile.php index 9ed795e85770cb8ae5ea37093a328a7734e00d85..feab4377032cb7cccf6ae0364860141bd3d1f066 100644 --- a/lib/SimpleSAML/Logger/LoggingHandlerFile.php +++ b/lib/SimpleSAML/Logger/LoggingHandlerFile.php @@ -56,7 +56,7 @@ class SimpleSAML_Logger_LoggingHandlerFile implements SimpleSAML_Logger_LoggingH } } - SimpleSAML_Utilities::initTimezone(); + SimpleSAML\Utils\Time::initTimezone(); } diff --git a/lib/SimpleSAML/Utilities.php b/lib/SimpleSAML/Utilities.php index 2b825caef7f46646cf825c4a20b74d1de54584b6..87227ce3868dc842ae39e3dfa160d2041b9f769b 100644 --- a/lib/SimpleSAML/Utilities.php +++ b/lib/SimpleSAML/Utilities.php @@ -1376,47 +1376,10 @@ class SimpleSAML_Utilities { /** - * Initialize the timezone. - * - * This function should be called before any calls to date(). + * @deprecated This function will be removed in SSP 2.0. Please use SimpleSAML\Utils\Time::initTimezone() instead. */ public static function initTimezone() { - static $initialized = FALSE; - - if ($initialized) { - return; - } - - $initialized = TRUE; - - $globalConfig = SimpleSAML_Configuration::getInstance(); - - $timezone = $globalConfig->getString('timezone', NULL); - if ($timezone !== NULL) { - if (!date_default_timezone_set($timezone)) { - throw new SimpleSAML_Error_Exception('Invalid timezone set in the \'timezone\'-option in config.php.'); - } - return; - } - - /* We don't have a timezone configured. */ - - /* - * The date_default_timezone_get()-function is likely to cause a warning. - * Since we have a custom error handler which logs the errors with a backtrace, - * this error will be logged even if we prefix the function call with '@'. - * Instead we temporarily replace the error handler. - */ - function ignoreError() { - /* Don't do anything with this error. */ - return TRUE; - } - set_error_handler('ignoreError'); - $serverTimezone = date_default_timezone_get(); - restore_error_handler(); - - /* Set the timezone to the default. */ - date_default_timezone_set($serverTimezone); + return SimpleSAML\Utils\Time::initTimezone(); } /** diff --git a/lib/SimpleSAML/Utils/Time.php b/lib/SimpleSAML/Utils/Time.php index 50d8f5b67839e81ea9b3eac1d3bc32ed1110df7c..46dfb339818c897bfb01752594f5c7ec1566912c 100644 --- a/lib/SimpleSAML/Utils/Time.php +++ b/lib/SimpleSAML/Utils/Time.php @@ -26,4 +26,49 @@ class Time } return gmdate('Y-m-d\TH:i:s\Z', $instant); } + + + /** + * Initialize the timezone. + * + * This function should be called before any calls to date(). + * + * @author Olav Morken, UNINETT AS <olav.morken@uninett.no> + */ + public static function initTimezone() + { + static $initialized = false; + + if ($initialized) { + return; + } + + $initialized = true; + + $globalConfig = \SimpleSAML_Configuration::getInstance(); + + $timezone = $globalConfig->getString('timezone', null); + if ($timezone !== null) { + if (!date_default_timezone_set($timezone)) { + throw new \SimpleSAML_Error_Exception('Invalid timezone set in the "timezone" option in config.php.'); + } + return; + } + // we don't have a timezone configured + + /* + * The date_default_timezone_get() function is likely to cause a warning. + * Since we have a custom error handler which logs the errors with a backtrace, + * this error will be logged even if we prefix the function call with '@'. + * Instead we temporarily replace the error handler. + */ + set_error_handler(function (){ + return true; + }); + $serverTimezone = date_default_timezone_get(); + restore_error_handler(); + + // set the timezone to the default + date_default_timezone_set($serverTimezone); + } } \ No newline at end of file diff --git a/modules/statistics/bin/loganalyzer.php b/modules/statistics/bin/loganalyzer.php index 7ea016eccd476635dcb3d86cd8147559bf1be66a..7186890f4b6e8a633ca4a3519b7b4233e5fee344 100755 --- a/modules/statistics/bin/loganalyzer.php +++ b/modules/statistics/bin/loganalyzer.php @@ -11,7 +11,7 @@ require_once($baseDir . '/lib/_autoload.php'); /* Initialize the configuration. */ SimpleSAML_Configuration::setConfigDir($baseDir . '/config'); -SimpleSAML_Utilities::initTimezone(); +SimpleSAML\Utils\Time::initTimezone(); $progName = array_shift($argv); $debug = FALSE; diff --git a/www/_include.php b/www/_include.php index 4b52a300bc139a40688bc7df8625c35c6384d723..37f0c883f894f6a1b5711d622a333d0853a2455d 100644 --- a/www/_include.php +++ b/www/_include.php @@ -106,6 +106,6 @@ if (!file_exists($configdir . '/config.php')) { } /* Set the timezone. */ -SimpleSAML_Utilities::initTimezone(); +SimpleSAML\Utils\Time::initTimezone(); /* Disable XML external entity loading explicitly. */ libxml_disable_entity_loader();