Convert routing to ownCloud fluid interface
parent
d0cae6a99a
commit
768b44b9b6
@ -0,0 +1,50 @@
|
||||
<?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\Route;
|
||||
|
||||
class OC_Route extends Route {
|
||||
public function method($method) {
|
||||
$this->setRequirement('_method', $method);
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function post() {
|
||||
$this->method('post');
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function defaults($defaults) {
|
||||
$action = $this->getDefault('action');
|
||||
$this->setDefaults($defaults);
|
||||
if (isset($defaults['action'])) {
|
||||
$action = $defaults['action'];
|
||||
}
|
||||
$this->action($action);
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function requirements($requirements) {
|
||||
$method = $this->getRequirement('_method');
|
||||
$this->setRequirements($requirements);
|
||||
if (isset($requirements['_method'])) {
|
||||
$method = $requirements['_method'];
|
||||
}
|
||||
$this->method($method);
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function action($class, $function = null) {
|
||||
$action = array($class, $function);
|
||||
if (is_null($function)) {
|
||||
$action = $class;
|
||||
}
|
||||
$this->setDefault('action', $action);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,50 @@
|
||||
<?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;
|
||||
use Symfony\Component\Routing\RequestContext;
|
||||
use Symfony\Component\Routing\RouteCollection;
|
||||
//use Symfony\Component\Routing\Route;
|
||||
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
|
||||
|
||||
class OC_Router {
|
||||
protected $collections = array();
|
||||
protected $collection = null;
|
||||
|
||||
public function useCollection($name) {
|
||||
if (!isset($this->collections[$name])) {
|
||||
$this->collections[$name] = new RouteCollection();
|
||||
}
|
||||
$this->collection = $this->collections[$name];
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
public function match($url) {
|
||||
$context = new RequestContext($_SERVER['REQUEST_URI'], $_SERVER['REQUEST_METHOD']);
|
||||
$matcher = new UrlMatcher($this->collection, $context);
|
||||
$parameters = $matcher->match($url);
|
||||
if (isset($parameters['action'])) {
|
||||
$action = $parameters['action'];
|
||||
if (!is_callable($action)) {
|
||||
var_dump($action);
|
||||
throw new Exception('not a callable action');
|
||||
}
|
||||
unset($parameters['action']);
|
||||
call_user_func($action, $parameters);
|
||||
} elseif (isset($parameters['file'])) {
|
||||
include ($parameters['file']);
|
||||
} else {
|
||||
throw new Exception('no action available');
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue