2012-07-23 18:58:52 +02:00
|
|
|
<?php
|
2024-05-23 09:26:56 +02:00
|
|
|
|
2012-07-23 18:58:52 +02:00
|
|
|
/**
|
2024-05-23 09:26:56 +02:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2012-07-23 18:58:52 +02:00
|
|
|
*/
|
2014-03-10 14:04:58 +01:00
|
|
|
namespace OC\Route;
|
2012-07-23 18:58:52 +02:00
|
|
|
|
2014-03-10 14:04:58 +01:00
|
|
|
use OCP\Route\IRoute;
|
|
|
|
use Symfony\Component\Routing\Route as SymfonyRoute;
|
|
|
|
|
|
|
|
class Route extends SymfonyRoute implements IRoute {
|
2012-10-05 17:42:42 +02:00
|
|
|
/**
|
|
|
|
* Specify the method when this route is to be used
|
|
|
|
*
|
|
|
|
* @param string $method HTTP method (uppercase)
|
2014-03-10 14:04:58 +01:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 17:42:42 +02:00
|
|
|
*/
|
2012-07-23 18:58:52 +02:00
|
|
|
public function method($method) {
|
2015-04-19 12:00:58 -04:00
|
|
|
$this->setMethods($method);
|
2012-07-23 18:58:52 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 17:42:42 +02:00
|
|
|
/**
|
|
|
|
* Specify POST as the method to use with this route
|
2014-04-15 22:55:20 +02:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 17:42:42 +02:00
|
|
|
*/
|
2012-07-23 18:58:52 +02:00
|
|
|
public function post() {
|
2012-07-31 22:33:11 +02:00
|
|
|
$this->method('POST');
|
2012-07-23 18:58:52 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 17:42:42 +02:00
|
|
|
/**
|
|
|
|
* Specify GET as the method to use with this route
|
2014-04-15 22:55:20 +02:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 17:42:42 +02:00
|
|
|
*/
|
2012-07-25 17:45:29 +02:00
|
|
|
public function get() {
|
2012-07-31 22:33:11 +02:00
|
|
|
$this->method('GET');
|
2012-07-25 17:45:29 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 17:42:42 +02:00
|
|
|
/**
|
|
|
|
* Specify PUT as the method to use with this route
|
2014-04-15 22:55:20 +02:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 17:42:42 +02:00
|
|
|
*/
|
2012-07-25 17:45:29 +02:00
|
|
|
public function put() {
|
2012-07-31 22:33:11 +02:00
|
|
|
$this->method('PUT');
|
2012-07-25 17:45:29 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 17:42:42 +02:00
|
|
|
/**
|
|
|
|
* Specify DELETE as the method to use with this route
|
2014-04-15 22:55:20 +02:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 17:42:42 +02:00
|
|
|
*/
|
2012-07-25 17:45:29 +02:00
|
|
|
public function delete() {
|
2012-07-31 22:33:11 +02:00
|
|
|
$this->method('DELETE');
|
2012-07-25 17:45:29 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2013-09-27 15:54:18 +02:00
|
|
|
/**
|
|
|
|
* Specify PATCH as the method to use with this route
|
2014-04-15 22:55:20 +02:00
|
|
|
* @return \OC\Route\Route
|
2013-09-27 15:54:18 +02:00
|
|
|
*/
|
|
|
|
public function patch() {
|
|
|
|
$this->method('PATCH');
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 17:42:42 +02:00
|
|
|
/**
|
|
|
|
* Defaults to use for this route
|
|
|
|
*
|
|
|
|
* @param array $defaults The defaults
|
2014-03-10 14:04:58 +01:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 17:42:42 +02:00
|
|
|
*/
|
2012-07-23 18:58:52 +02: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 17:42:42 +02:00
|
|
|
/**
|
|
|
|
* Requirements for this route
|
|
|
|
*
|
|
|
|
* @param array $requirements The requirements
|
2014-03-10 14:04:58 +01:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 17:42:42 +02:00
|
|
|
*/
|
2012-07-23 18:58:52 +02:00
|
|
|
public function requirements($requirements) {
|
2015-04-19 12:00:58 -04:00
|
|
|
$method = $this->getMethods();
|
2012-07-23 18:58:52 +02:00
|
|
|
$this->setRequirements($requirements);
|
|
|
|
if (isset($requirements['_method'])) {
|
|
|
|
$method = $requirements['_method'];
|
|
|
|
}
|
2012-08-11 00:04:43 +02:00
|
|
|
if ($method) {
|
|
|
|
$this->method($method);
|
|
|
|
}
|
2012-07-23 18:58:52 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-05 17:42:42 +02:00
|
|
|
/**
|
|
|
|
* The action to execute when this route matches
|
2014-03-10 14:04:58 +01:00
|
|
|
*
|
2012-10-05 17:42:42 +02:00
|
|
|
* @param string|callable $class the class or a callable
|
|
|
|
* @param string $function the function to use with the class
|
2014-03-10 14:04:58 +01:00
|
|
|
* @return \OC\Route\Route
|
2012-10-05 17:42:42 +02:00
|
|
|
*
|
|
|
|
* This function is called with $class set to a callable or
|
|
|
|
* to the class with $function
|
|
|
|
*/
|
2012-07-23 18:58:52 +02:00
|
|
|
public function action($class, $function = null) {
|
2020-03-26 09:30:18 +01:00
|
|
|
$action = [$class, $function];
|
2012-07-23 18:58:52 +02:00
|
|
|
if (is_null($function)) {
|
|
|
|
$action = $class;
|
|
|
|
}
|
|
|
|
$this->setDefault('action', $action);
|
|
|
|
return $this;
|
|
|
|
}
|
2012-09-28 22:19:37 +02:00
|
|
|
|
2012-10-05 17:42:42 +02:00
|
|
|
/**
|
|
|
|
* The action to execute when this route matches, includes a file like
|
|
|
|
* it is called directly
|
2014-05-11 21:51:30 +01:00
|
|
|
* @param string $file
|
2014-04-15 22:55:20 +02:00
|
|
|
* @return void
|
2012-10-05 17:42:42 +02:00
|
|
|
*/
|
2012-09-28 22:19:37 +02:00
|
|
|
public function actionInclude($file) {
|
2020-04-09 13:53:40 +02:00
|
|
|
$function = function ($param) use ($file) {
|
2017-08-06 21:52:26 +02:00
|
|
|
unset($param['_route']);
|
2020-10-05 15:12:57 +02:00
|
|
|
$_GET = array_merge($_GET, $param);
|
2017-08-06 21:52:26 +02:00
|
|
|
unset($param);
|
2017-08-09 23:51:48 +02:00
|
|
|
require_once "$file";
|
2017-08-06 21:52:26 +02:00
|
|
|
} ;
|
2012-09-28 22:19:37 +02:00
|
|
|
$this->action($function);
|
|
|
|
}
|
2012-07-23 18:58:52 +02:00
|
|
|
}
|