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;
|
2012-07-23 20:58:52 +04:00
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
use OCP\Route\IRoute;
|
|
|
|
use Symfony\Component\Routing\Route as SymfonyRoute;
|
|
|
|
|
|
|
|
class Route extends SymfonyRoute implements IRoute {
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Specify the method when this route is to be used
|
|
|
|
*
|
|
|
|
* @param string $method HTTP method (uppercase)
|
2014-03-10 17:04:58 +04:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-07-23 20:58:52 +04:00
|
|
|
public function method($method) {
|
2012-08-01 00:33:11 +04:00
|
|
|
$this->setRequirement('_method', strtoupper($method));
|
2012-07-23 20:58:52 +04:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Specify POST as the method to use with this route
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-07-23 20:58:52 +04:00
|
|
|
public function post() {
|
2012-08-01 00:33:11 +04:00
|
|
|
$this->method('POST');
|
2012-07-23 20:58:52 +04:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Specify GET as the method to use with this route
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-07-25 19:45:29 +04:00
|
|
|
public function get() {
|
2012-08-01 00:33:11 +04:00
|
|
|
$this->method('GET');
|
2012-07-25 19:45:29 +04:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Specify PUT as the method to use with this route
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-07-25 19:45:29 +04:00
|
|
|
public function put() {
|
2012-08-01 00:33:11 +04:00
|
|
|
$this->method('PUT');
|
2012-07-25 19:45:29 +04:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Specify DELETE as the method to use with this route
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-07-25 19:45:29 +04:00
|
|
|
public function delete() {
|
2012-08-01 00:33:11 +04:00
|
|
|
$this->method('DELETE');
|
2012-07-25 19:45:29 +04:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2013-09-27 17:54:18 +04:00
|
|
|
/**
|
|
|
|
* Specify PATCH as the method to use with this route
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return \OC\Route\Route
|
2013-09-27 17:54:18 +04:00
|
|
|
*/
|
|
|
|
public function patch() {
|
|
|
|
$this->method('PATCH');
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Defaults to use for this route
|
|
|
|
*
|
|
|
|
* @param array $defaults The defaults
|
2014-03-10 17:04:58 +04:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-07-23 20:58:52 +04:00
|
|
|
public function defaults($defaults) {
|
|
|
|
$action = $this->getDefault('action');
|
|
|
|
$this->setDefaults($defaults);
|
|
|
|
if (isset($defaults['action'])) {
|
|
|
|
$action = $defaults['action'];
|
|
|
|
}
|
|
|
|
$this->action($action);
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Requirements for this route
|
|
|
|
*
|
|
|
|
* @param array $requirements The requirements
|
2014-03-10 17:04:58 +04:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-07-23 20:58:52 +04:00
|
|
|
public function requirements($requirements) {
|
|
|
|
$method = $this->getRequirement('_method');
|
|
|
|
$this->setRequirements($requirements);
|
|
|
|
if (isset($requirements['_method'])) {
|
|
|
|
$method = $requirements['_method'];
|
|
|
|
}
|
2012-08-11 02:04:43 +04:00
|
|
|
if ($method) {
|
|
|
|
$this->method($method);
|
|
|
|
}
|
2012-07-23 20:58:52 +04:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* The action to execute when this route matches
|
2014-03-10 17:04:58 +04:00
|
|
|
*
|
2012-10-05 19:42:42 +04:00
|
|
|
* @param string|callable $class the class or a callable
|
|
|
|
* @param string $function the function to use with the class
|
2014-03-10 17:04:58 +04:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 19:42:42 +04:00
|
|
|
*
|
|
|
|
* This function is called with $class set to a callable or
|
|
|
|
* to the class with $function
|
|
|
|
*/
|
2012-07-23 20:58:52 +04:00
|
|
|
public function action($class, $function = null) {
|
|
|
|
$action = array($class, $function);
|
|
|
|
if (is_null($function)) {
|
|
|
|
$action = $class;
|
|
|
|
}
|
|
|
|
$this->setDefault('action', $action);
|
|
|
|
return $this;
|
|
|
|
}
|
2012-09-29 00:19:37 +04:00
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* The action to execute when this route matches, includes a file like
|
|
|
|
* it is called directly
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $file
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return void
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-09-29 00:19:37 +04:00
|
|
|
public function actionInclude($file) {
|
2012-10-27 19:45:09 +04:00
|
|
|
$function = create_function('$param',
|
|
|
|
'unset($param["_route"]);'
|
2012-11-04 14:10:46 +04:00
|
|
|
.'$_GET=array_merge($_GET, $param);'
|
2012-10-27 19:45:09 +04:00
|
|
|
.'unset($param);'
|
|
|
|
.'require_once "'.$file.'";');
|
2012-09-29 00:19:37 +04:00
|
|
|
$this->action($function);
|
|
|
|
}
|
2012-07-23 20:58:52 +04:00
|
|
|
}
|