2012-07-23 20:58:52 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Vincent Petry <vincent@nextcloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2012-07-23 20:58:52 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
namespace OC\Route;
|
|
|
|
|
2020-10-31 13:03:01 +03:00
|
|
|
use OC\AppFramework\Routing\RouteParser;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCP\AppFramework\App;
|
2015-11-27 15:51:20 +03:00
|
|
|
use OCP\ILogger;
|
2014-03-10 17:04:58 +04:00
|
|
|
use OCP\Route\IRouter;
|
2015-12-08 12:18:59 +03:00
|
|
|
use OCP\Util;
|
2019-11-22 22:52:10 +03:00
|
|
|
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
|
2015-11-27 15:51:20 +03:00
|
|
|
use Symfony\Component\Routing\Exception\RouteNotFoundException;
|
2012-09-12 20:00:33 +04:00
|
|
|
use Symfony\Component\Routing\Generator\UrlGenerator;
|
2019-11-22 22:52:10 +03:00
|
|
|
use Symfony\Component\Routing\Matcher\UrlMatcher;
|
2012-07-23 20:58:52 +04:00
|
|
|
use Symfony\Component\Routing\RequestContext;
|
|
|
|
use Symfony\Component\Routing\RouteCollection;
|
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
class Router implements IRouter {
|
2015-12-08 12:18:59 +03:00
|
|
|
/** @var RouteCollection[] */
|
|
|
|
protected $collections = [];
|
|
|
|
/** @var null|RouteCollection */
|
2012-07-23 20:58:52 +04:00
|
|
|
protected $collection = null;
|
2015-12-08 12:18:59 +03:00
|
|
|
/** @var null|string */
|
2014-07-01 18:45:00 +04:00
|
|
|
protected $collectionName = null;
|
2015-12-08 12:18:59 +03:00
|
|
|
/** @var null|RouteCollection */
|
2012-08-02 23:51:31 +04:00
|
|
|
protected $root = null;
|
2015-12-08 12:18:59 +03:00
|
|
|
/** @var null|UrlGenerator */
|
2012-10-28 20:53:05 +04:00
|
|
|
protected $generator = null;
|
2015-12-08 12:18:59 +03:00
|
|
|
/** @var string[] */
|
2014-03-10 17:04:58 +04:00
|
|
|
protected $routingFiles;
|
2015-12-08 12:18:59 +03:00
|
|
|
/** @var bool */
|
2014-03-10 17:04:58 +04:00
|
|
|
protected $loaded = false;
|
2015-12-08 12:18:59 +03:00
|
|
|
/** @var array */
|
|
|
|
protected $loadedApps = [];
|
|
|
|
/** @var ILogger */
|
2015-11-27 15:51:20 +03:00
|
|
|
protected $logger;
|
2015-12-08 12:18:59 +03:00
|
|
|
/** @var RequestContext */
|
|
|
|
protected $context;
|
2015-11-27 15:51:20 +03:00
|
|
|
|
2015-02-11 03:10:03 +03:00
|
|
|
/**
|
|
|
|
* @param ILogger $logger
|
|
|
|
*/
|
2015-11-27 15:51:20 +03:00
|
|
|
public function __construct(ILogger $logger) {
|
|
|
|
$this->logger = $logger;
|
2015-02-11 03:10:03 +03:00
|
|
|
$baseUrl = \OC::$WEBROOT;
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!(\OC::$server->getConfig()->getSystemValue('htaccess.IgnoreFrontController', false) === true || getenv('front_controller_active') === 'true')) {
|
2020-08-11 23:28:29 +03:00
|
|
|
$baseUrl .= '/index.php';
|
2015-02-11 03:10:03 +03:00
|
|
|
}
|
2017-05-15 15:33:27 +03:00
|
|
|
if (!\OC::$CLI && isset($_SERVER['REQUEST_METHOD'])) {
|
2013-02-07 21:28:56 +04:00
|
|
|
$method = $_SERVER['REQUEST_METHOD'];
|
2014-03-10 17:04:58 +04:00
|
|
|
} else {
|
2013-02-07 21:28:56 +04:00
|
|
|
$method = 'GET';
|
|
|
|
}
|
2015-02-10 15:02:48 +03:00
|
|
|
$request = \OC::$server->getRequest();
|
|
|
|
$host = $request->getServerHost();
|
|
|
|
$schema = $request->getServerProtocol();
|
2012-09-12 20:00:33 +04:00
|
|
|
$this->context = new RequestContext($baseUrl, $method, $host, $schema);
|
2012-08-11 02:04:43 +04:00
|
|
|
// TODO cache
|
|
|
|
$this->root = $this->getCollection('root');
|
|
|
|
}
|
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
/**
|
|
|
|
* Get the files to load the routes from
|
|
|
|
*
|
|
|
|
* @return string[]
|
|
|
|
*/
|
2012-10-28 20:53:05 +04:00
|
|
|
public function getRoutingFiles() {
|
2014-03-10 17:04:58 +04:00
|
|
|
if (!isset($this->routingFiles)) {
|
2015-12-08 12:18:59 +03:00
|
|
|
$this->routingFiles = [];
|
2014-03-10 17:04:58 +04:00
|
|
|
foreach (\OC_APP::getEnabledApps() as $app) {
|
2016-03-24 11:19:43 +03:00
|
|
|
$appPath = \OC_App::getAppPath($app);
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($appPath !== false) {
|
2016-03-24 11:19:43 +03:00
|
|
|
$file = $appPath . '/appinfo/routes.php';
|
|
|
|
if (file_exists($file)) {
|
|
|
|
$this->routingFiles[$app] = $file;
|
|
|
|
}
|
2012-10-28 20:53:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-10 17:04:58 +04:00
|
|
|
return $this->routingFiles;
|
2012-10-28 20:53:05 +04:00
|
|
|
}
|
|
|
|
|
2014-04-16 00:55:20 +04:00
|
|
|
/**
|
2015-12-08 12:18:59 +03:00
|
|
|
* Loads the routes
|
2015-11-27 15:51:20 +03:00
|
|
|
*
|
2015-12-08 12:18:59 +03:00
|
|
|
* @param null|string $app
|
2012-07-30 22:48:03 +04:00
|
|
|
*/
|
2014-03-24 18:41:46 +04:00
|
|
|
public function loadRoutes($app = null) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (is_string($app)) {
|
2016-03-17 12:58:34 +03:00
|
|
|
$app = \OC_App::cleanAppId($app);
|
|
|
|
}
|
|
|
|
|
2014-10-15 15:53:19 +04:00
|
|
|
$requestedApp = $app;
|
2014-03-10 17:04:58 +04:00
|
|
|
if ($this->loaded) {
|
|
|
|
return;
|
|
|
|
}
|
2014-03-24 18:41:46 +04:00
|
|
|
if (is_null($app)) {
|
|
|
|
$this->loaded = true;
|
|
|
|
$routingFiles = $this->getRoutingFiles();
|
|
|
|
} else {
|
|
|
|
if (isset($this->loadedApps[$app])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$file = \OC_App::getAppPath($app) . '/appinfo/routes.php';
|
2015-12-08 12:18:59 +03:00
|
|
|
if ($file !== false && file_exists($file)) {
|
|
|
|
$routingFiles = [$app => $file];
|
2014-03-24 18:41:46 +04:00
|
|
|
} else {
|
2015-12-08 12:18:59 +03:00
|
|
|
$routingFiles = [];
|
2014-03-24 18:41:46 +04:00
|
|
|
}
|
|
|
|
}
|
2014-10-15 15:53:19 +04:00
|
|
|
\OC::$server->getEventLogger()->start('loadroutes' . $requestedApp, 'Loading Routes');
|
2014-03-24 18:41:46 +04:00
|
|
|
foreach ($routingFiles as $app => $file) {
|
2014-03-26 16:02:11 +04:00
|
|
|
if (!isset($this->loadedApps[$app])) {
|
2015-08-18 11:18:36 +03:00
|
|
|
if (!\OC_App::isAppLoaded($app)) {
|
|
|
|
// app MUST be loaded before app routes
|
|
|
|
// try again next time loadRoutes() is called
|
|
|
|
$this->loaded = false;
|
|
|
|
continue;
|
|
|
|
}
|
2014-03-25 17:28:30 +04:00
|
|
|
$this->loadedApps[$app] = true;
|
|
|
|
$this->useCollection($app);
|
2014-12-13 21:28:20 +03:00
|
|
|
$this->requireRouteFile($file, $app);
|
2014-03-25 17:28:30 +04:00
|
|
|
$collection = $this->getCollection($app);
|
|
|
|
$this->root->addCollection($collection);
|
2016-05-17 11:12:33 +03:00
|
|
|
|
|
|
|
// Also add the OCS collection
|
|
|
|
$collection = $this->getCollection($app.'.ocs');
|
2016-08-01 17:37:48 +03:00
|
|
|
$collection->addPrefix('/ocsapp');
|
2016-05-17 11:12:33 +03:00
|
|
|
$this->root->addCollection($collection);
|
2014-03-25 17:28:30 +04:00
|
|
|
}
|
2012-07-30 22:48:03 +04:00
|
|
|
}
|
2014-03-24 18:41:46 +04:00
|
|
|
if (!isset($this->loadedApps['core'])) {
|
|
|
|
$this->loadedApps['core'] = true;
|
|
|
|
$this->useCollection('root');
|
2015-12-08 12:18:59 +03:00
|
|
|
require_once __DIR__ . '/../../../core/routes.php';
|
2016-08-09 11:21:20 +03:00
|
|
|
|
|
|
|
// Also add the OCS collection
|
|
|
|
$collection = $this->getCollection('root.ocs');
|
|
|
|
$collection->addPrefix('/ocsapp');
|
|
|
|
$this->root->addCollection($collection);
|
2015-09-01 17:42:41 +03:00
|
|
|
}
|
|
|
|
if ($this->loaded) {
|
2014-03-24 18:41:46 +04:00
|
|
|
$collection = $this->getCollection('ocs');
|
|
|
|
$collection->addPrefix('/ocs');
|
|
|
|
$this->root->addCollection($collection);
|
|
|
|
}
|
2014-10-15 15:53:19 +04:00
|
|
|
\OC::$server->getEventLogger()->end('loadroutes' . $requestedApp);
|
2012-07-30 22:48:03 +04:00
|
|
|
}
|
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
/**
|
|
|
|
* @param string $name
|
|
|
|
* @return \Symfony\Component\Routing\RouteCollection
|
|
|
|
*/
|
2012-08-02 23:51:31 +04:00
|
|
|
protected function getCollection($name) {
|
2012-07-23 20:58:52 +04:00
|
|
|
if (!isset($this->collections[$name])) {
|
|
|
|
$this->collections[$name] = new RouteCollection();
|
|
|
|
}
|
2012-08-02 23:51:31 +04:00
|
|
|
return $this->collections[$name];
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Sets the collection to use for adding routes
|
|
|
|
*
|
2014-03-10 17:04:58 +04:00
|
|
|
* @param string $name Name of the collection to use.
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return void
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2012-08-02 23:51:31 +04:00
|
|
|
public function useCollection($name) {
|
|
|
|
$this->collection = $this->getCollection($name);
|
2014-07-01 18:45:00 +04:00
|
|
|
$this->collectionName = $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns the current collection name in use for adding routes
|
|
|
|
*
|
|
|
|
* @return string the collection name
|
|
|
|
*/
|
|
|
|
public function getCurrentCollection() {
|
|
|
|
return $this->collectionName;
|
2012-07-23 20:58:52 +04:00
|
|
|
}
|
|
|
|
|
2014-07-01 18:45:00 +04:00
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
2014-03-10 17:04:58 +04:00
|
|
|
* Create a \OC\Route\Route.
|
2012-10-05 19:42:42 +04:00
|
|
|
*
|
|
|
|
* @param string $name Name of the route to create.
|
|
|
|
* @param string $pattern The pattern to match
|
2014-03-10 17:04:58 +04:00
|
|
|
* @param array $defaults An array of default parameter values
|
|
|
|
* @param array $requirements An array of requirements for parameters (regexes)
|
|
|
|
* @return \OC\Route\Route
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2015-12-08 12:18:59 +03:00
|
|
|
public function create($name,
|
|
|
|
$pattern,
|
|
|
|
array $defaults = [],
|
|
|
|
array $requirements = []) {
|
2014-03-10 17:04:58 +04:00
|
|
|
$route = new Route($pattern, $defaults, $requirements);
|
2012-07-23 20:58:52 +04:00
|
|
|
$this->collection->add($name, $route);
|
|
|
|
return $route;
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
2014-03-24 19:20:53 +04:00
|
|
|
* Find the route matching $url
|
2012-10-05 19:42:42 +04:00
|
|
|
*
|
|
|
|
* @param string $url The url to find
|
2014-03-10 17:04:58 +04:00
|
|
|
* @throws \Exception
|
2020-08-05 10:49:18 +03:00
|
|
|
* @return array
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2020-08-05 10:49:18 +03:00
|
|
|
public function findMatchingRoute(string $url): array {
|
2014-03-24 18:41:46 +04:00
|
|
|
if (substr($url, 0, 6) === '/apps/') {
|
2014-03-25 16:42:47 +04:00
|
|
|
// empty string / 'apps' / $app / rest of the route
|
2021-01-12 12:15:48 +03:00
|
|
|
[, , $app,] = explode('/', $url, 4);
|
2015-03-31 15:58:24 +03:00
|
|
|
|
2016-05-17 11:12:33 +03:00
|
|
|
$app = \OC_App::cleanAppId($app);
|
|
|
|
\OC::$REQUESTEDAPP = $app;
|
|
|
|
$this->loadRoutes($app);
|
2020-04-10 11:35:09 +03:00
|
|
|
} elseif (substr($url, 0, 13) === '/ocsapp/apps/') {
|
2016-05-17 11:12:33 +03:00
|
|
|
// empty string / 'ocsapp' / 'apps' / $app / rest of the route
|
2021-01-12 12:15:48 +03:00
|
|
|
[, , , $app,] = explode('/', $url, 5);
|
2016-05-17 11:12:33 +03:00
|
|
|
|
2015-03-31 15:58:24 +03:00
|
|
|
$app = \OC_App::cleanAppId($app);
|
2014-05-10 16:00:22 +04:00
|
|
|
\OC::$REQUESTEDAPP = $app;
|
2014-03-24 18:41:46 +04:00
|
|
|
$this->loadRoutes($app);
|
2020-04-10 11:35:09 +03:00
|
|
|
} elseif (substr($url, 0, 10) === '/settings/') {
|
2019-09-17 17:33:27 +03:00
|
|
|
$this->loadRoutes('settings');
|
2020-04-10 11:35:09 +03:00
|
|
|
} elseif (substr($url, 0, 6) === '/core/') {
|
2014-05-10 16:00:22 +04:00
|
|
|
\OC::$REQUESTEDAPP = $url;
|
2019-02-06 19:08:41 +03:00
|
|
|
if (!\OC::$server->getConfig()->getSystemValueBool('maintenance') && !Util::needUpgrade()) {
|
2014-06-10 20:01:07 +04:00
|
|
|
\OC_App::loadApps();
|
|
|
|
}
|
2014-03-24 19:20:53 +04:00
|
|
|
$this->loadRoutes('core');
|
2014-03-24 18:41:46 +04:00
|
|
|
} else {
|
|
|
|
$this->loadRoutes();
|
|
|
|
}
|
2014-09-22 12:59:12 +04:00
|
|
|
|
2012-09-12 20:00:33 +04:00
|
|
|
$matcher = new UrlMatcher($this->root, $this->context);
|
2014-09-22 12:59:12 +04:00
|
|
|
try {
|
|
|
|
$parameters = $matcher->match($url);
|
|
|
|
} catch (ResourceNotFoundException $e) {
|
|
|
|
if (substr($url, -1) !== '/') {
|
|
|
|
// We allow links to apps/files? for backwards compatibility reasons
|
|
|
|
// However, since Symfony does not allow empty route names, the route
|
|
|
|
// we need to match is '/', so we need to append the '/' here.
|
|
|
|
try {
|
|
|
|
$parameters = $matcher->match($url . '/');
|
|
|
|
} catch (ResourceNotFoundException $newException) {
|
|
|
|
// If we still didn't match a route, we throw the original exception
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-05 10:49:18 +03:00
|
|
|
return $parameters;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find and execute the route matching $url
|
|
|
|
*
|
|
|
|
* @param string $url The url to find
|
|
|
|
* @throws \Exception
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function match($url) {
|
|
|
|
$parameters = $this->findMatchingRoute($url);
|
|
|
|
|
2014-10-04 00:13:55 +04:00
|
|
|
\OC::$server->getEventLogger()->start('run_route', 'Run route');
|
2020-07-01 10:45:46 +03:00
|
|
|
if (isset($parameters['caller'])) {
|
|
|
|
$caller = $parameters['caller'];
|
|
|
|
unset($parameters['caller']);
|
2020-12-16 22:31:30 +03:00
|
|
|
unset($parameters['action']);
|
2020-07-01 10:45:46 +03:00
|
|
|
$application = $this->getApplicationClass($caller[0]);
|
|
|
|
\OC\AppFramework\App::main($caller[1], $caller[2], $application->getContainer(), $parameters);
|
|
|
|
} elseif (isset($parameters['action'])) {
|
2012-07-23 20:58:52 +04:00
|
|
|
$action = $parameters['action'];
|
|
|
|
if (!is_callable($action)) {
|
2014-03-10 17:04:58 +04:00
|
|
|
throw new \Exception('not a callable action');
|
2012-07-23 20:58:52 +04:00
|
|
|
}
|
|
|
|
unset($parameters['action']);
|
2020-12-16 22:31:30 +03:00
|
|
|
unset($parameters['caller']);
|
2012-07-23 20:58:52 +04:00
|
|
|
call_user_func($action, $parameters);
|
|
|
|
} elseif (isset($parameters['file'])) {
|
2012-10-27 19:45:09 +04:00
|
|
|
include $parameters['file'];
|
2012-07-23 20:58:52 +04:00
|
|
|
} else {
|
2014-03-10 17:04:58 +04:00
|
|
|
throw new \Exception('no action available');
|
2012-07-23 20:58:52 +04:00
|
|
|
}
|
2014-10-04 00:13:55 +04:00
|
|
|
\OC::$server->getEventLogger()->end('run_route');
|
2012-07-23 20:58:52 +04:00
|
|
|
}
|
2012-09-12 20:00:33 +04:00
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Get the url generator
|
2015-11-27 15:51:20 +03:00
|
|
|
*
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return \Symfony\Component\Routing\Generator\UrlGenerator
|
2012-10-05 19:42:42 +04:00
|
|
|
*
|
|
|
|
*/
|
2014-03-10 17:04:58 +04:00
|
|
|
public function getGenerator() {
|
2012-09-12 20:00:33 +04:00
|
|
|
if (null !== $this->generator) {
|
|
|
|
return $this->generator;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->generator = new UrlGenerator($this->root, $this->context);
|
|
|
|
}
|
|
|
|
|
2012-10-05 19:42:42 +04:00
|
|
|
/**
|
|
|
|
* Generate url based on $name and $parameters
|
|
|
|
*
|
|
|
|
* @param string $name Name of the route to use.
|
|
|
|
* @param array $parameters Parameters for the route
|
2014-03-10 17:04:58 +04:00
|
|
|
* @param bool $absolute
|
|
|
|
* @return string
|
2012-10-05 19:42:42 +04:00
|
|
|
*/
|
2015-12-08 12:18:59 +03:00
|
|
|
public function generate($name,
|
|
|
|
$parameters = [],
|
|
|
|
$absolute = false) {
|
2019-01-21 14:02:30 +03:00
|
|
|
$referenceType = UrlGenerator::ABSOLUTE_URL;
|
|
|
|
if ($absolute === false) {
|
|
|
|
$referenceType = UrlGenerator::ABSOLUTE_PATH;
|
|
|
|
}
|
|
|
|
$name = $this->fixLegacyRootName($name);
|
|
|
|
if (strpos($name, '.') !== false) {
|
2021-01-12 12:15:48 +03:00
|
|
|
[$appName, $other] = explode('.', $name, 3);
|
2019-01-21 14:02:30 +03:00
|
|
|
// OCS routes are prefixed with "ocs."
|
|
|
|
if ($appName === 'ocs') {
|
|
|
|
$appName = $other;
|
|
|
|
}
|
|
|
|
$this->loadRoutes($appName);
|
|
|
|
try {
|
|
|
|
return $this->getGenerator()->generate($name, $parameters, $referenceType);
|
|
|
|
} catch (RouteNotFoundException $e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fallback load all routes
|
2014-03-24 17:55:03 +04:00
|
|
|
$this->loadRoutes();
|
2015-11-27 15:51:20 +03:00
|
|
|
try {
|
2015-12-29 19:31:28 +03:00
|
|
|
return $this->getGenerator()->generate($name, $parameters, $referenceType);
|
2015-11-27 15:51:20 +03:00
|
|
|
} catch (RouteNotFoundException $e) {
|
2020-07-24 16:39:53 +03:00
|
|
|
$this->logger->logException($e, ['level' => ILogger::INFO]);
|
2015-11-27 15:51:20 +03:00
|
|
|
return '';
|
|
|
|
}
|
2012-09-12 20:00:33 +04:00
|
|
|
}
|
2012-10-05 11:42:36 +04:00
|
|
|
|
2020-03-23 19:00:41 +03:00
|
|
|
protected function fixLegacyRootName(string $routeName): string {
|
|
|
|
if ($routeName === 'files.viewcontroller.showFile') {
|
|
|
|
return 'files.View.showFile';
|
|
|
|
}
|
|
|
|
if ($routeName === 'files_sharing.sharecontroller.showShare') {
|
|
|
|
return 'files_sharing.Share.showShare';
|
|
|
|
}
|
|
|
|
if ($routeName === 'files_sharing.sharecontroller.showAuthenticate') {
|
|
|
|
return 'files_sharing.Share.showAuthenticate';
|
|
|
|
}
|
|
|
|
if ($routeName === 'files_sharing.sharecontroller.authenticate') {
|
|
|
|
return 'files_sharing.Share.authenticate';
|
|
|
|
}
|
|
|
|
if ($routeName === 'files_sharing.sharecontroller.downloadShare') {
|
|
|
|
return 'files_sharing.Share.downloadShare';
|
|
|
|
}
|
|
|
|
if ($routeName === 'files_sharing.publicpreview.directLink') {
|
|
|
|
return 'files_sharing.PublicPreview.directLink';
|
|
|
|
}
|
|
|
|
if ($routeName === 'cloud_federation_api.requesthandlercontroller.addShare') {
|
|
|
|
return 'cloud_federation_api.RequestHandler.addShare';
|
|
|
|
}
|
|
|
|
if ($routeName === 'cloud_federation_api.requesthandlercontroller.receiveNotification') {
|
|
|
|
return 'cloud_federation_api.RequestHandler.receiveNotification';
|
|
|
|
}
|
|
|
|
return $routeName;
|
|
|
|
}
|
|
|
|
|
2014-04-10 00:45:34 +04:00
|
|
|
/**
|
|
|
|
* To isolate the variable scope used inside the $file it is required in it's own method
|
2015-11-27 15:51:20 +03:00
|
|
|
*
|
2014-12-13 21:28:20 +03:00
|
|
|
* @param string $file the route file location to include
|
|
|
|
* @param string $appName
|
2014-04-10 00:45:34 +04:00
|
|
|
*/
|
2014-12-13 21:28:20 +03:00
|
|
|
private function requireRouteFile($file, $appName) {
|
|
|
|
$this->setupRoutes(include_once $file, $appName);
|
2014-04-10 00:45:34 +04:00
|
|
|
}
|
|
|
|
|
2014-12-13 21:28:20 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If a routes.php file returns an array, try to set up the application and
|
|
|
|
* register the routes for the app. The application class will be chosen by
|
|
|
|
* camelcasing the appname, e.g.: my_app will be turned into
|
|
|
|
* \OCA\MyApp\AppInfo\Application. If that class does not exist, a default
|
|
|
|
* App will be intialized. This makes it optional to ship an
|
|
|
|
* appinfo/application.php by using the built in query resolver
|
2015-11-27 15:51:20 +03:00
|
|
|
*
|
2014-12-13 21:28:20 +03:00
|
|
|
* @param array $routes the application routes
|
|
|
|
* @param string $appName the name of the app.
|
|
|
|
*/
|
|
|
|
private function setupRoutes($routes, $appName) {
|
|
|
|
if (is_array($routes)) {
|
2020-10-31 13:03:01 +03:00
|
|
|
$routeParser = new RouteParser();
|
|
|
|
|
|
|
|
$defaultRoutes = $routeParser->parseDefaultRoutes($routes, $appName);
|
|
|
|
$ocsRoutes = $routeParser->parseOCSRoutes($routes, $appName);
|
|
|
|
|
|
|
|
$this->root->addCollection($defaultRoutes);
|
|
|
|
$ocsRoutes->addPrefix('/ocsapp');
|
|
|
|
$this->root->addCollection($ocsRoutes);
|
2020-07-01 10:45:46 +03:00
|
|
|
}
|
|
|
|
}
|
2014-12-13 21:28:20 +03:00
|
|
|
|
2020-07-01 10:45:46 +03:00
|
|
|
private function getApplicationClass(string $appName) {
|
|
|
|
$appNameSpace = App::buildAppNamespace($appName);
|
2014-12-13 21:28:20 +03:00
|
|
|
|
2020-07-01 10:45:46 +03:00
|
|
|
$applicationClassName = $appNameSpace . '\\AppInfo\\Application';
|
2014-12-13 21:28:20 +03:00
|
|
|
|
2020-07-01 10:45:46 +03:00
|
|
|
if (class_exists($applicationClassName)) {
|
|
|
|
$application = \OC::$server->query($applicationClassName);
|
|
|
|
} else {
|
|
|
|
$application = new App($appName);
|
2014-12-13 21:28:20 +03:00
|
|
|
}
|
2020-07-01 10:45:46 +03:00
|
|
|
|
|
|
|
return $application;
|
2014-12-13 21:28:20 +03:00
|
|
|
}
|
2012-07-23 20:58:52 +04:00
|
|
|
}
|