2014-03-24 14:42:21 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 15:07:57 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-03-31 08:49:10 +00:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-05-26 17:56:05 +00:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 16:13:36 +00:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 10:44:34 +00:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 18:57:53 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 10:44:34 +00:00
|
|
|
*
|
2014-03-24 14:42:21 +00:00
|
|
|
*/
|
|
|
|
namespace OC\Route;
|
|
|
|
|
2023-02-13 13:47:50 +00:00
|
|
|
use OCP\Diagnostics\IEventLogger;
|
|
|
|
use OCP\ICache;
|
|
|
|
use OCP\ICacheFactory;
|
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\IRequest;
|
|
|
|
use Psr\Container\ContainerInterface;
|
2022-03-17 15:42:53 +00:00
|
|
|
use Psr\Log\LoggerInterface;
|
2015-11-27 12:51:20 +00:00
|
|
|
|
2014-03-24 14:42:21 +00:00
|
|
|
class CachingRouter extends Router {
|
2023-02-13 13:47:50 +00:00
|
|
|
protected ICache $cache;
|
2014-03-24 14:42:21 +00:00
|
|
|
|
2023-02-13 13:47:50 +00:00
|
|
|
public function __construct(
|
|
|
|
ICacheFactory $cacheFactory,
|
|
|
|
LoggerInterface $logger,
|
|
|
|
IRequest $request,
|
|
|
|
IConfig $config,
|
|
|
|
IEventLogger $eventLogger,
|
|
|
|
ContainerInterface $container
|
|
|
|
) {
|
|
|
|
$this->cache = $cacheFactory->createLocal('route');
|
|
|
|
parent::__construct($logger, $request, $config, $eventLogger, $container);
|
2014-03-24 14:42:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate url based on $name and $parameters
|
|
|
|
*
|
|
|
|
* @param string $name Name of the route to use.
|
|
|
|
* @param array $parameters Parameters for the route
|
|
|
|
* @param bool $absolute
|
|
|
|
* @return string
|
|
|
|
*/
|
2020-03-26 08:30:18 +00:00
|
|
|
public function generate($name, $parameters = [], $absolute = false) {
|
2014-04-29 09:55:19 +00:00
|
|
|
asort($parameters);
|
2018-01-25 22:06:53 +00:00
|
|
|
$key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . $name . sha1(json_encode($parameters)) . (int)$absolute;
|
2016-04-19 10:07:54 +00:00
|
|
|
$cachedKey = $this->cache->get($key);
|
|
|
|
if ($cachedKey) {
|
|
|
|
return $cachedKey;
|
2014-03-24 14:42:21 +00:00
|
|
|
} else {
|
|
|
|
$url = parent::generate($name, $parameters, $absolute);
|
2019-10-18 16:20:25 +00:00
|
|
|
if ($url) {
|
|
|
|
$this->cache->set($key, $url, 3600);
|
|
|
|
}
|
2014-03-24 14:42:21 +00:00
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|