2012-07-23 20:58:52 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
namespace OC\Route;
|
|
|
|
|
|
|
|
use OCP\Route\IRouter;
|
2012-07-23 20:58:52 +04:00
|
|
|
use Symfony\Component\Routing\Matcher\UrlMatcher;
|
2012-09-12 20:00:33 +04:00
|
|
|
use Symfony\Component\Routing\Generator\UrlGenerator;
|
2012-07-23 20:58:52 +04:00
|
|
|
use Symfony\Component\Routing\RequestContext;
|
|
|
|
use Symfony\Component\Routing\RouteCollection;
|
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
class Router implements IRouter {
|
|
|
|
/**
|
|
|
|
* @var \Symfony\Component\Routing\RouteCollection[]
|
|
|
|
*/
|
2012-07-23 20:58:52 +04:00
|
|
|
protected $collections = array();
|
2014-03-10 17:04:58 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Symfony\Component\Routing\RouteCollection
|
|
|
|
*/
|
2012-07-23 20:58:52 +04:00
|
|
|
protected $collection = null;
|
2014-03-10 17:04:58 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Symfony\Component\Routing\RouteCollection
|
|
|
|
*/
|
2012-08-02 23:51:31 +04:00
|
|
|
protected $root = null;
|
2012-08-02 19:59:18 +04:00
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
/**
|
|
|
|
* @var \Symfony\Component\Routing\Generator\UrlGenerator
|
|
|
|
*/
|
2012-10-28 20:53:05 +04:00
|
|
|
protected $generator = null;
|
2014-03-10 17:04:58 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string[]
|
|
|
|
*/
|
|
|
|
protected $routingFiles;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $cacheKey;
|
|
|
|
|
|
|
|
protected $loaded = false;
|
2012-09-12 20:00:33 +04:00
|
|
|
|
2014-03-24 18:41:46 +04:00
|
|
|
protected $loadedApps = array();
|
|
|
|
|
2012-08-11 02:04:43 +04:00
|
|
|
public function __construct() {
|
2014-03-10 17:04:58 +04:00
|
|
|
$baseUrl = \OC_Helper::linkTo('', 'index.php');
|
|
|
|
if (!\OC::$CLI) {
|
2013-02-07 21:28:56 +04:00
|
|
|
$method = $_SERVER['REQUEST_METHOD'];
|
2014-03-10 17:04:58 +04:00
|
|
|
} else {
|
2013-02-07 21:28:56 +04:00
|
|
|
$method = 'GET';
|
|
|
|
}
|
2014-03-10 17:04:58 +04:00
|
|
|
$host = \OC_Request::serverHost();
|
|
|
|
$schema = \OC_Request::serverProtocol();
|
2012-09-12 20:00:33 +04:00
|
|
|
$this->context = new RequestContext($baseUrl, $method, $host, $schema);
|
2012-08-11 02:04:43 +04:00
|
|
|
// TODO cache
|
|
|
|
$this->root = $this->getCollection('root');
|
|
|
|
}
|
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
/**
|
|
|
|
* Get the files to load the routes from
|
|
|
|
*
|
|
|
|
* @return string[]
|
|
|
|
*/
|
2012-10-28 20:53:05 +04:00
|
|
|
public function getRoutingFiles() {
|
2014-03-10 17:04:58 +04:00
|
|
|
if (!isset($this->routingFiles)) {
|
|
|
|
$this->routingFiles = array();
|
|
|
|
foreach (\OC_APP::getEnabledApps() as $app) {
|
|
|
|
$file = \OC_App::getAppPath($app) . '/appinfo/routes.php';
|
|
|
|
if (file_exists($file)) {
|
|
|
|
$this->routingFiles[$app] = $file;
|
2012-10-28 20:53:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-10 17:04:58 +04:00
|
|
|
return $this->routingFiles;
|
2012-10-28 20:53:05 +04:00
|
|
|
}
|
|
|
|
|
2014-04-16 00:55:20 +04:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-10-28 20:53:05 +04:00
|
|
|
public function getCacheKey() {
|
2014-03-10 17:04:58 +04:00
|
|
|
if (!isset($this->cacheKey)) {
|
2012-10-28 20:53:05 +04:00
|
|
|
$files = $this->getRoutingFiles();
|
2012-10-28 22:29:49 +04:00
|
|
|
$files[] = 'settings/routes.php';
|
2012-10-28 20:53:05 +04:00
|
|
|
$files[] = 'core/routes.php';
|
2013-01-08 00:57:13 +04:00
|
|
|
$files[] = 'ocs/routes.php';
|
2014-05-12 18:23:33 +04:00
|
|
|
$this->cacheKey = \OC\Cache::generateCacheKeyFromFiles($files);
|
2012-10-28 20:53:05 +04:00
|
|
|
}
|
2014-03-10 17:04:58 +04:00
|
|
|
return $this->cacheKey;
|
2012-10-28 20:53:05 +04:00
|
|
|
}
|
|
|
|
|
2012-07-30 22:48:03 +04:00
|
|
|
/**
|
|
|
|
* loads the api routes
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return void
|
2012-07-30 22:48:03 +04:00
|
|
|
*/
|
2014-03-24 18:41:46 +04:00
|
|
|
public function loadRoutes($app = null) {
|
2014-03-10 17:04:58 +04:00
|
|
|
if ($this->loaded) {
|
|
|
|
return;
|
|
|
|
}
|
2014-03-24 18:41:46 +04:00
|
|
|
if (is_null($app)) {
|
|
|
|
$this->loaded = true;
|
|
|
|
$routingFiles = $this->getRoutingFiles();
|
|
|
|
} else {
|
|
|
|
if (isset($this->loadedApps[$app])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$file = \OC_App::getAppPath($app) . '/appinfo/routes.php';
|
|
|
|
if (file_exists($file)) {
|
2014-03-25 17:04:18 +04:00
|
|
|
$routingFiles = array($app => $file);
|
2014-03-24 18:41:46 +04:00
|
|
|
} else {
|
|
|
|
$routingFiles = array();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach ($routingFiles as $app => $file) {
|
2014-03-26 16:02:11 +04:00
|
|
|
if (!isset($this->loadedApps[$app])) {
|
2014-03-25 17:28:30 +04:00
|
|
|
$this->loadedApps[$app] = true;
|
|
|
|
$this->useCollection($app);
|
2014-04-10 00:45:34 +04:00
|
|
|
$this->requireRouteFile($file);
|
2014-03-25 17:28:30 +04:00
|
|
|
$collection = $this->getCollection($app);
|
|
|
|
$collection->addPrefix('/apps/' . $app);
|
|
|
|
$this->root->addCollection($collection);
|
|
|
|
}
|
2012-07-30 22:48:03 +04:00
|
|
|
}
|
2014-03-24 18:41:46 +04:00
|
|
|
if (!isset($this->loadedApps['core'])) {
|
|
|
|
$this->loadedApps['core'] = true;
|
|
|
|
$this->useCollection('root');
|
|
|
|
require_once 'settings/routes.php';
|
|
|
|
require_once 'core/routes.php';
|
|
|
|
|
|
|
|
// include ocs routes
|
|
|
|
require_once 'ocs/routes.php';
|
|
|
|
$collection = $this->getCollection('ocs');
|
|
|
|
$collection->addPrefix('/ocs');
|
|
|
|
$this->root->addCollection($collection);
|
|
|
|
}
|
2012-07-30 22:48:03 +04:00
|
|
|
}
|
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
/**
|
|
|
|
* @param string $name
|
|
|
|
* @return \Symfony\Component\Routing\RouteCollection
|
|
|
|
*/
|
2012-08-02 23:51:31 +04:00
|
|
|
protected function getCollection($name) {
|
2012-07-23 20:58:52 +04:00
|
|
|
if (!isset($this->collections[$name])) {
|
|
|
|
$this->collections[$name] = new RouteCollection();
|
|
|
|
}
|
2012-08-02 23:51:31 +04:00
|
|
|
return $this->collections[$name];
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Sets the collection to use for adding routes
|
|
|
|
*
|
2014-03-10 17:04:58 +04:00
|
|
|
* @param string $name Name of the collection to use.
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return void
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-08-02 23:51:31 +04:00
|
|
|
public function useCollection($name) {
|
|
|
|
$this->collection = $this->getCollection($name);
|
2012-07-23 20:58:52 +04:00
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
2014-03-10 17:04:58 +04:00
|
|
|
* Create a \OC\Route\Route.
|
2012-10-05 19:42:42 +04:00
|
|
|
*
|
|
|
|
* @param string $name Name of the route to create.
|
|
|
|
* @param string $pattern The pattern to match
|
2014-03-10 17:04:58 +04:00
|
|
|
* @param array $defaults An array of default parameter values
|
|
|
|
* @param array $requirements An array of requirements for parameters (regexes)
|
|
|
|
* @return \OC\Route\Route
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-07-23 20:58:52 +04:00
|
|
|
public function create($name, $pattern, array $defaults = array(), array $requirements = array()) {
|
2014-03-10 17:04:58 +04:00
|
|
|
$route = new Route($pattern, $defaults, $requirements);
|
2012-07-23 20:58:52 +04:00
|
|
|
$this->collection->add($name, $route);
|
|
|
|
return $route;
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
2014-03-24 19:20:53 +04:00
|
|
|
* Find the route matching $url
|
2012-10-05 19:42:42 +04:00
|
|
|
*
|
|
|
|
* @param string $url The url to find
|
2014-03-10 17:04:58 +04:00
|
|
|
* @throws \Exception
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return void
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-10-27 19:45:09 +04:00
|
|
|
public function match($url) {
|
2014-03-24 18:41:46 +04:00
|
|
|
if (substr($url, 0, 6) === '/apps/') {
|
2014-03-25 16:42:47 +04:00
|
|
|
// empty string / 'apps' / $app / rest of the route
|
2014-03-24 18:41:46 +04:00
|
|
|
list(, , $app,) = explode('/', $url, 4);
|
|
|
|
$this->loadRoutes($app);
|
2014-04-03 15:01:20 +04:00
|
|
|
} else if (substr($url, 0, 6) === '/core/' or substr($url, 0, 10) === '/settings/') {
|
2014-03-24 19:20:53 +04:00
|
|
|
$this->loadRoutes('core');
|
2014-03-24 18:41:46 +04:00
|
|
|
} else {
|
|
|
|
$this->loadRoutes();
|
|
|
|
}
|
2012-09-12 20:00:33 +04:00
|
|
|
$matcher = new UrlMatcher($this->root, $this->context);
|
2012-07-23 20:58:52 +04:00
|
|
|
$parameters = $matcher->match($url);
|
|
|
|
if (isset($parameters['action'])) {
|
|
|
|
$action = $parameters['action'];
|
|
|
|
if (!is_callable($action)) {
|
2012-08-01 00:33:11 +04:00
|
|
|
var_dump($action);
|
2014-03-10 17:04:58 +04:00
|
|
|
throw new \Exception('not a callable action');
|
2012-07-23 20:58:52 +04:00
|
|
|
}
|
|
|
|
unset($parameters['action']);
|
|
|
|
call_user_func($action, $parameters);
|
|
|
|
} elseif (isset($parameters['file'])) {
|
2012-10-27 19:45:09 +04:00
|
|
|
include $parameters['file'];
|
2012-07-23 20:58:52 +04:00
|
|
|
} else {
|
2014-03-10 17:04:58 +04:00
|
|
|
throw new \Exception('no action available');
|
2012-07-23 20:58:52 +04:00
|
|
|
}
|
|
|
|
}
|
2012-09-12 20:00:33 +04:00
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Get the url generator
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return \Symfony\Component\Routing\Generator\UrlGenerator
|
2012-10-05 19:42:42 +04:00
|
|
|
*
|
|
|
|
*/
|
2014-03-10 17:04:58 +04:00
|
|
|
public function getGenerator() {
|
2012-09-12 20:00:33 +04:00
|
|
|
if (null !== $this->generator) {
|
|
|
|
return $this->generator;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->generator = new UrlGenerator($this->root, $this->context);
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Generate url based on $name and $parameters
|
|
|
|
*
|
|
|
|
* @param string $name Name of the route to use.
|
|
|
|
* @param array $parameters Parameters for the route
|
2014-03-10 17:04:58 +04:00
|
|
|
* @param bool $absolute
|
|
|
|
* @return string
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2014-03-10 17:04:58 +04:00
|
|
|
public function generate($name, $parameters = array(), $absolute = false) {
|
2014-03-24 17:55:03 +04:00
|
|
|
$this->loadRoutes();
|
2012-09-12 20:00:33 +04:00
|
|
|
return $this->getGenerator()->generate($name, $parameters, $absolute);
|
|
|
|
}
|
2012-10-05 11:42:36 +04:00
|
|
|
|
2014-04-10 00:45:34 +04:00
|
|
|
/**
|
|
|
|
* To isolate the variable scope used inside the $file it is required in it's own method
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $file
|
2014-04-10 00:45:34 +04:00
|
|
|
*/
|
|
|
|
private function requireRouteFile($file) {
|
|
|
|
require_once $file;
|
|
|
|
}
|
|
|
|
|
2012-07-23 20:58:52 +04:00
|
|
|
}
|