summaryrefslogtreecommitdiffstats
path: root/lib/private/route
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-11-27 13:51:20 +0100
committerRobin Appelman <icewind@owncloud.com>2015-11-27 14:29:06 +0100
commitb05c8faba8dd13a3110b0bbbdd02a9c60424a3c9 (patch)
treeeb315644863653b75208883d8741b92d4dbf5fef /lib/private/route
parent8fe878afe9af165b98470a75203df2f1b32cb68f (diff)
downloadnextcloud-server-b05c8faba8dd13a3110b0bbbdd02a9c60424a3c9.tar.gz
nextcloud-server-b05c8faba8dd13a3110b0bbbdd02a9c60424a3c9.zip
Dont die when we're missing a route
Diffstat (limited to 'lib/private/route')
-rw-r--r--lib/private/route/cachingrouter.php7
-rw-r--r--lib/private/route/router.php21
2 files changed, 24 insertions, 4 deletions
diff --git a/lib/private/route/cachingrouter.php b/lib/private/route/cachingrouter.php
index 734aa5aea4b..2d10b8ab691 100644
--- a/lib/private/route/cachingrouter.php
+++ b/lib/private/route/cachingrouter.php
@@ -22,6 +22,8 @@
namespace OC\Route;
+use OCP\ILogger;
+
class CachingRouter extends Router {
/**
* @var \OCP\ICache
@@ -30,10 +32,11 @@ class CachingRouter extends Router {
/**
* @param \OCP\ICache $cache
+ * @param ILogger $logger
*/
- public function __construct($cache) {
+ public function __construct($cache, ILogger $logger) {
$this->cache = $cache;
- parent::__construct();
+ parent::__construct($logger);
}
/**
diff --git a/lib/private/route/router.php b/lib/private/route/router.php
index f4abfae0f43..6d3b7c742bb 100644
--- a/lib/private/route/router.php
+++ b/lib/private/route/router.php
@@ -30,8 +30,10 @@
namespace OC\Route;
+use OCP\ILogger;
use OCP\Route\IRouter;
use OCP\AppFramework\App;
+use Symfony\Component\Routing\Exception\RouteNotFoundException;
use Symfony\Component\Routing\Matcher\UrlMatcher;
use Symfony\Component\Routing\Generator\UrlGenerator;
use Symfony\Component\Routing\RequestContext;
@@ -78,7 +80,13 @@ class Router implements IRouter {
protected $loadedApps = array();
- public function __construct() {
+ /**
+ * @var ILogger
+ */
+ protected $logger;
+
+ public function __construct(ILogger $logger) {
+ $this->logger = $logger;
$baseUrl = \OC_Helper::linkTo('', 'index.php');
if (!\OC::$CLI) {
$method = $_SERVER['REQUEST_METHOD'];
@@ -127,6 +135,7 @@ class Router implements IRouter {
/**
* loads the api routes
+ *
* @return void
*/
public function loadRoutes($app = null) {
@@ -290,6 +299,7 @@ class Router implements IRouter {
/**
* Get the url generator
+ *
* @return \Symfony\Component\Routing\Generator\UrlGenerator
*
*/
@@ -311,11 +321,17 @@ class Router implements IRouter {
*/
public function generate($name, $parameters = array(), $absolute = false) {
$this->loadRoutes();
- return $this->getGenerator()->generate($name, $parameters, $absolute);
+ try {
+ return $this->getGenerator()->generate($name, $parameters, $absolute);
+ } catch (RouteNotFoundException $e) {
+ $this->logger->logException($e);
+ return '';
+ }
}
/**
* To isolate the variable scope used inside the $file it is required in it's own method
+ *
* @param string $file the route file location to include
* @param string $appName
*/
@@ -331,6 +347,7 @@ class Router implements IRouter {
* \OCA\MyApp\AppInfo\Application. If that class does not exist, a default
* App will be intialized. This makes it optional to ship an
* appinfo/application.php by using the built in query resolver
+ *
* @param array $routes the application routes
* @param string $appName the name of the app.
*/