diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-03-24 15:42:21 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-03-24 15:42:21 +0100 |
commit | 0e1cb001b64f45597300282d41965aeff3d11188 (patch) | |
tree | 82cb968dd1b0d761950989573d531b0857c3f5cf /lib/private/route | |
parent | f17674fef281da097838c22c71e14698f842a2db (diff) | |
download | nextcloud-server-0e1cb001b64f45597300282d41965aeff3d11188.tar.gz nextcloud-server-0e1cb001b64f45597300282d41965aeff3d11188.zip |
Cache generated urls for routes
Diffstat (limited to 'lib/private/route')
-rw-r--r-- | lib/private/route/cachingrouter.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/private/route/cachingrouter.php b/lib/private/route/cachingrouter.php new file mode 100644 index 00000000000..ad25372391f --- /dev/null +++ b/lib/private/route/cachingrouter.php @@ -0,0 +1,43 @@ +<?php +/** + * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Route; + +class CachingRouter extends Router { + /** + * @var \OCP\ICache + */ + protected $cache; + + /** + * @param \OCP\ICache $cache + */ + public function __construct($cache) { + $this->cache = $cache; + parent::__construct(); + } + + /** + * 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 + */ + public function generate($name, $parameters = array(), $absolute = false) { + $key = $name . json_encode($parameters) . $absolute; + if ($this->cache->hasKey($key)) { + return $this->cache->get($key); + } else { + $url = parent::generate($name, $parameters, $absolute); + $this->cache->set($key, $url, 3600); + return $url; + } + } +} |