nextcloud/lib/router.php

147 lines
3.9 KiB
PHP
Raw Normal View History

<?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.
*/
use Symfony\Component\Routing\Matcher\UrlMatcher;
2012-09-12 20:00:33 +04:00
use Symfony\Component\Routing\Generator\UrlGenerator;
use Symfony\Component\Routing\RequestContext;
use Symfony\Component\Routing\RouteCollection;
//use Symfony\Component\Routing\Route;
class OC_Router {
protected $collections = array();
protected $collection = null;
protected $root = null;
2012-09-12 20:00:33 +04:00
protected $generator= null;
public function __construct() {
2012-09-12 20:00:33 +04:00
$baseUrl = OC_Helper::linkTo('', 'index.php');
$method = $_SERVER['REQUEST_METHOD'];
$host = OC_Request::serverHost();
$schema = OC_Request::serverProtocol();
$this->context = new RequestContext($baseUrl, $method, $host, $schema);
// TODO cache
$this->root = $this->getCollection('root');
}
2012-07-30 22:48:03 +04:00
/**
* loads the api routes
*/
public function loadRoutes() {
2012-07-30 22:48:03 +04:00
foreach(OC_APP::getEnabledApps() as $app){
$file = OC_App::getAppPath($app).'/appinfo/routes.php';
2012-10-27 19:45:09 +04:00
if(file_exists($file)) {
$this->useCollection($app);
2012-10-27 19:45:09 +04:00
require_once $file;
$collection = $this->getCollection($app);
$this->root->addCollection($collection, '/apps/'.$app);
2012-07-30 22:48:03 +04:00
}
}
2012-08-12 18:52:36 +04:00
$this->useCollection('root');
require_once('core/routes.php');
2012-07-30 22:48:03 +04:00
}
protected function getCollection($name) {
if (!isset($this->collections[$name])) {
$this->collections[$name] = new RouteCollection();
}
return $this->collections[$name];
}
/**
* Sets the collection to use for adding routes
*
* @param string $name Name of the colletion to use.
*/
public function useCollection($name) {
$this->collection = $this->getCollection($name);
}
/**
* Create a OC_Route.
*
* @param string $name Name of the route to create.
* @param string $pattern The pattern to match
* @param array $defaults An array of default parameter values
* @param array $requirements An array of requirements for parameters (regexes)
*/
public function create($name, $pattern, array $defaults = array(), array $requirements = array()) {
$route = new OC_Route($pattern, $defaults, $requirements);
$this->collection->add($name, $route);
return $route;
}
/**
* Find the route matching $url.
*
* @param string $url The url to find
*/
2012-10-27 19:45:09 +04:00
public function match($url) {
2012-09-12 20:00:33 +04:00
$matcher = new UrlMatcher($this->root, $this->context);
$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);
throw new Exception('not a callable action');
}
unset($parameters['action']);
call_user_func($action, $parameters);
} elseif (isset($parameters['file'])) {
2012-10-27 19:45:09 +04:00
include $parameters['file'];
} else {
throw new Exception('no action available');
}
}
2012-09-12 20:00:33 +04:00
/**
* Get the url generator
*
*/
2012-09-12 20:00:33 +04:00
public function getGenerator()
{
if (null !== $this->generator) {
return $this->generator;
}
return $this->generator = new UrlGenerator($this->root, $this->context);
}
/**
* Generate url based on $name and $parameters
*
* @param string $name Name of the route to use.
* @param array $parameters Parameters for the route
*/
2012-09-12 20:00:33 +04:00
public function generate($name, $parameters = array(), $absolute = false)
{
return $this->getGenerator()->generate($name, $parameters, $absolute);
}
2012-10-05 11:42:36 +04:00
/**
* Generate JSON response for routing in javascript
*/
2012-10-05 11:42:36 +04:00
public static function JSRoutes()
{
// TODO: http caching
$routes = array();
$router = OC::getRouter();
$root = $router->getCollection('root');
foreach($root->all() as $name => $route) {
$compiled_route = $route->compile();
$defaults = $route->getDefaults();
unset($defaults['action']);
$routes[$name] = array(
'tokens' => $compiled_route->getTokens(),
'defaults' => $defaults,
);
}
OCP\JSON::success ( array( 'data' => $routes ) );
}
}