2013-08-17 13:16:48 +04:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-02-21 16:06:51 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2013-08-17 13:16:48 +04:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Daniel Kesselberg <mail@danielkesselberg.de>
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Olivier Paroz <github@oparoz.com>
|
2019-12-03 21:57:53 +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>
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-08-17 13:16:48 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-08-17 13:16:48 +04:00
|
|
|
namespace OC\AppFramework\Utility;
|
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCP\AppFramework\Utility\IControllerMethodReflector;
|
2014-12-15 01:54:31 +03:00
|
|
|
|
2013-08-17 13:16:48 +04:00
|
|
|
/**
|
|
|
|
* Reads and parses annotations from doc comments
|
|
|
|
*/
|
2017-04-12 21:32:48 +03:00
|
|
|
class ControllerMethodReflector implements IControllerMethodReflector {
|
|
|
|
public $annotations = [];
|
|
|
|
private $types = [];
|
|
|
|
private $parameters = [];
|
2013-08-17 13:16:48 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param object $object an object or classname
|
2014-05-06 18:29:19 +04:00
|
|
|
* @param string $method the method which we want to inspect
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public function reflect($object, string $method) {
|
2013-08-17 13:16:48 +04:00
|
|
|
$reflection = new \ReflectionMethod($object, $method);
|
|
|
|
$docs = $reflection->getDocComment();
|
|
|
|
|
2018-02-21 22:38:14 +03:00
|
|
|
if ($docs !== false) {
|
|
|
|
// extract everything prefixed by @ and first letter uppercase
|
|
|
|
preg_match_all('/^\h+\*\h+@(?P<annotation>[A-Z]\w+)((?P<parameter>.*))?$/m', $docs, $matches);
|
|
|
|
foreach ($matches['annotation'] as $key => $annontation) {
|
2020-06-23 21:18:23 +03:00
|
|
|
$annontation = strtolower($annontation);
|
2018-02-21 22:38:14 +03:00
|
|
|
$annotationValue = $matches['parameter'][$key];
|
|
|
|
if (isset($annotationValue[0]) && $annotationValue[0] === '(' && $annotationValue[\strlen($annotationValue) - 1] === ')') {
|
|
|
|
$cutString = substr($annotationValue, 1, -1);
|
|
|
|
$cutString = str_replace(' ', '', $cutString);
|
|
|
|
$splittedArray = explode(',', $cutString);
|
|
|
|
foreach ($splittedArray as $annotationValues) {
|
|
|
|
list($key, $value) = explode('=', $annotationValues);
|
|
|
|
$this->annotations[$annontation][$key] = $value;
|
|
|
|
}
|
|
|
|
continue;
|
2017-04-12 21:32:48 +03:00
|
|
|
}
|
2018-02-21 22:38:14 +03:00
|
|
|
|
|
|
|
$this->annotations[$annontation] = [$annotationValue];
|
2017-04-12 21:32:48 +03:00
|
|
|
}
|
|
|
|
|
2018-02-21 22:38:14 +03:00
|
|
|
// extract type parameter information
|
|
|
|
preg_match_all('/@param\h+(?P<type>\w+)\h+\$(?P<var>\w+)/', $docs, $matches);
|
|
|
|
$this->types = array_combine($matches['var'], $matches['type']);
|
2017-01-17 16:36:44 +03:00
|
|
|
}
|
2014-05-06 18:29:19 +04:00
|
|
|
|
|
|
|
foreach ($reflection->getParameters() as $param) {
|
2019-10-12 23:55:07 +03:00
|
|
|
// extract type information from PHP 7 scalar types and prefer them over phpdoc annotations
|
|
|
|
$type = $param->getType();
|
|
|
|
if ($type instanceof \ReflectionNamedType) {
|
|
|
|
$this->types[$param->getName()] = $type->getName();
|
2015-07-02 12:54:17 +03:00
|
|
|
}
|
|
|
|
|
2018-02-21 16:06:51 +03:00
|
|
|
$default = null;
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($param->isOptional()) {
|
2014-05-13 12:40:49 +04:00
|
|
|
$default = $param->getDefaultValue();
|
|
|
|
}
|
|
|
|
$this->parameters[$param->name] = $default;
|
2014-05-06 18:29:19 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inspects the PHPDoc parameters for types
|
2015-07-02 12:54:17 +03:00
|
|
|
* @param string $parameter the parameter whose type comments should be
|
2014-05-06 18:29:19 +04:00
|
|
|
* parsed
|
2015-07-02 12:54:17 +03:00
|
|
|
* @return string|null type in the type parameters (@param int $something)
|
2014-05-07 22:07:52 +04:00
|
|
|
* would return int or null if not existing
|
2014-05-06 18:29:19 +04:00
|
|
|
*/
|
2018-02-21 16:06:51 +03:00
|
|
|
public function getType(string $parameter) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (array_key_exists($parameter, $this->types)) {
|
2014-05-07 22:07:52 +04:00
|
|
|
return $this->types[$parameter];
|
|
|
|
}
|
2018-02-21 16:06:51 +03:00
|
|
|
|
|
|
|
return null;
|
2014-05-06 18:29:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-13 12:40:49 +04:00
|
|
|
* @return array the arguments of the method with key => default value
|
2014-05-06 18:29:19 +04:00
|
|
|
*/
|
2018-02-21 16:06:51 +03:00
|
|
|
public function getParameters(): array {
|
2014-05-06 18:29:19 +04:00
|
|
|
return $this->parameters;
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a method contains an annotation
|
|
|
|
* @param string $name the name of the annotation
|
|
|
|
* @return bool true if the annotation is found
|
|
|
|
*/
|
2018-02-21 16:06:51 +03:00
|
|
|
public function hasAnnotation(string $name): bool {
|
2020-06-23 21:18:23 +03:00
|
|
|
$name = strtolower($name);
|
2017-01-17 16:36:44 +03:00
|
|
|
return array_key_exists($name, $this->annotations);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-04-12 21:32:48 +03:00
|
|
|
* Get optional annotation parameter by key
|
|
|
|
*
|
2017-01-17 16:36:44 +03:00
|
|
|
* @param string $name the name of the annotation
|
2017-04-12 21:32:48 +03:00
|
|
|
* @param string $key the string of the annotation
|
2017-01-17 16:36:44 +03:00
|
|
|
* @return string
|
|
|
|
*/
|
2018-02-21 16:06:51 +03:00
|
|
|
public function getAnnotationParameter(string $name, string $key): string {
|
2020-06-23 21:18:23 +03:00
|
|
|
$name = strtolower($name);
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($this->annotations[$name][$key])) {
|
2017-04-12 21:32:48 +03:00
|
|
|
return $this->annotations[$name][$key];
|
2017-01-17 16:36:44 +03:00
|
|
|
}
|
|
|
|
|
2017-04-12 21:32:48 +03:00
|
|
|
return '';
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
}
|