Skip to content
Snippets Groups Projects
Commit 0e1cb001 authored by Robin Appelman's avatar Robin Appelman
Browse files

Cache generated urls for routes

parent f17674fe
No related branches found
No related tags found
No related merge requests found
<?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;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment