diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 10:56:39 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 10:56:39 +0200 |
commit | 3f6db4c1ab1dfff61f27101219baf5f88a114409 (patch) | |
tree | a520023610f980e72de1f8438a69b37106df20c1 /lib | |
parent | 3d45d0bd1d507548ce99fe975e03ef60eec17d4f (diff) | |
parent | 628bb3fb3ec3f3343d869cfe31c84d1b6e221369 (diff) | |
download | nextcloud-server-3f6db4c1ab1dfff61f27101219baf5f88a114409.tar.gz nextcloud-server-3f6db4c1ab1dfff61f27101219baf5f88a114409.zip |
Merge pull request #15425 from owncloud/failing-stable8-tests
Fix failing tests related to timezones on stable8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/datetimezone.php | 16 | ||||
-rw-r--r-- | lib/public/idatetimezone.php | 3 |
2 files changed, 14 insertions, 5 deletions
diff --git a/lib/private/datetimezone.php b/lib/private/datetimezone.php index 727ce321dba..fcf1883cb4c 100644 --- a/lib/private/datetimezone.php +++ b/lib/private/datetimezone.php @@ -38,13 +38,14 @@ class DateTimeZone implements IDateTimeZone { /** * Get the timezone of the current user, based on his session information and config data * + * @param bool|int $timestamp * @return \DateTimeZone */ - public function getTimeZone() { + public function getTimeZone($timestamp = false) { $timeZone = $this->config->getUserValue($this->session->get('user_id'), 'core', 'timezone', null); if ($timeZone === null) { if ($this->session->exists('timezone')) { - return $this->guessTimeZoneFromOffset($this->session->get('timezone')); + return $this->guessTimeZoneFromOffset($this->session->get('timezone'), $timestamp); } $timeZone = $this->getDefaultTimeZone(); } @@ -64,9 +65,10 @@ class DateTimeZone implements IDateTimeZone { * we try to find it manually, before falling back to UTC. * * @param mixed $offset + * @param bool|int $timestamp * @return \DateTimeZone */ - protected function guessTimeZoneFromOffset($offset) { + protected function guessTimeZoneFromOffset($offset, $timestamp) { try { // Note: the timeZone name is the inverse to the offset, // so a positive offset means negative timeZone @@ -83,7 +85,13 @@ class DateTimeZone implements IDateTimeZone { // we try to guess one timezone that has the same offset foreach (\DateTimeZone::listIdentifiers() as $timeZone) { $dtz = new \DateTimeZone($timeZone); - $dtOffset = $dtz->getOffset(new \DateTime()); + $dateTime = new \DateTime(); + + if ($timestamp !== false) { + $dateTime->setTimestamp($timestamp); + } + + $dtOffset = $dtz->getOffset($dateTime); if ($dtOffset == 3600 * $offset) { return $dtz; } diff --git a/lib/public/idatetimezone.php b/lib/public/idatetimezone.php index fb4c89538d5..24dc70a82fe 100644 --- a/lib/public/idatetimezone.php +++ b/lib/public/idatetimezone.php @@ -15,7 +15,8 @@ namespace OCP; interface IDateTimeZone { /** + * @param bool|int $timestamp * @return \DateTimeZone */ - public function getTimeZone(); + public function getTimeZone($timestamp = false); } |