2013-08-17 05:16:48 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-01-13 08:00:51 -05:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2013-08-17 05:16:48 -04:00
|
|
|
/**
|
2022-12-22 14:09:25 -05:00
|
|
|
* @copyright Copyright (c) 2022, Joas Schilling <coding@schilljs.com>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2013-08-17 05:16:48 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @license AGPL-3.0
|
2013-08-17 05:16:48 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
|
* as published by the Free Software Foundation.
|
2013-08-17 05:16:48 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-08-17 05:16:48 -04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 06:44:34 -04:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-08-17 05:16:48 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-08-17 05:16:48 -04:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
namespace OC\AppFramework\Utility;
|
|
|
|
|
|
2014-12-20 09:52:25 -05:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
|
|
|
|
2013-08-17 05:16:48 -04:00
|
|
|
/**
|
2022-12-22 14:09:25 -05:00
|
|
|
* Use this to get a timestamp or DateTime object in code to remain testable
|
|
|
|
|
*
|
|
|
|
|
* @since 8.0.0
|
|
|
|
|
* @since 26.0.0 Extends the \Psr\Clock\ClockInterface interface
|
|
|
|
|
* @ref https://www.php-fig.org/psr/psr-20/#21-clockinterface
|
2013-08-17 05:16:48 -04:00
|
|
|
*/
|
2014-12-20 09:52:25 -05:00
|
|
|
class TimeFactory implements ITimeFactory {
|
2022-12-22 14:09:25 -05:00
|
|
|
protected \DateTimeZone $timezone;
|
|
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
|
$this->timezone = new \DateTimeZone('UTC');
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-17 05:16:48 -04:00
|
|
|
/**
|
|
|
|
|
* @return int the result of a call to time()
|
2022-12-22 14:09:25 -05:00
|
|
|
* @since 8.0.0
|
|
|
|
|
* @deprecated 26.0.0 {@see ITimeFactory::now()}
|
2013-08-17 05:16:48 -04:00
|
|
|
*/
|
2018-10-09 09:24:28 -04:00
|
|
|
public function getTime(): int {
|
2013-08-17 05:16:48 -04:00
|
|
|
return time();
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-09 09:24:28 -04:00
|
|
|
/**
|
|
|
|
|
* @param string $time
|
|
|
|
|
* @param \DateTimeZone $timezone
|
|
|
|
|
* @return \DateTime
|
|
|
|
|
* @since 15.0.0
|
2022-12-22 14:09:25 -05:00
|
|
|
* @deprecated 26.0.0 {@see ITimeFactory::now()}
|
2018-10-09 09:24:28 -04:00
|
|
|
*/
|
|
|
|
|
public function getDateTime(string $time = 'now', \DateTimeZone $timezone = null): \DateTime {
|
|
|
|
|
return new \DateTime($time, $timezone);
|
|
|
|
|
}
|
2022-12-22 14:09:25 -05:00
|
|
|
|
|
|
|
|
public function now(): \DateTimeImmutable {
|
|
|
|
|
return new \DateTimeImmutable('now', $this->timezone);
|
|
|
|
|
}
|
|
|
|
|
public function withTimeZone(\DateTimeZone $timezone): static {
|
|
|
|
|
$clone = clone $this;
|
|
|
|
|
$clone->timezone = $timezone;
|
|
|
|
|
|
|
|
|
|
return $clone;
|
|
|
|
|
}
|
2013-08-17 05:16:48 -04:00
|
|
|
}
|