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