2013-08-17 13:16:48 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Olivier Paroz <github@oparoz.com>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
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,
|
|
|
|
* 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;
|
|
|
|
|
2014-12-15 01:54:31 +03:00
|
|
|
use \OCP\AppFramework\Utility\IControllerMethodReflector;
|
|
|
|
|
2013-08-17 13:16:48 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads and parses annotations from doc comments
|
|
|
|
*/
|
2014-12-15 01:54:31 +03:00
|
|
|
class ControllerMethodReflector implements IControllerMethodReflector{
|
2013-08-17 13:16:48 +04:00
|
|
|
|
|
|
|
private $annotations;
|
2014-05-06 18:29:19 +04:00
|
|
|
private $types;
|
|
|
|
private $parameters;
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$this->types = array();
|
|
|
|
$this->parameters = array();
|
|
|
|
$this->annotations = array();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
*/
|
2014-05-06 18:29:19 +04:00
|
|
|
public function reflect($object, $method){
|
2013-08-17 13:16:48 +04:00
|
|
|
$reflection = new \ReflectionMethod($object, $method);
|
|
|
|
$docs = $reflection->getDocComment();
|
|
|
|
|
|
|
|
// extract everything prefixed by @ and first letter uppercase
|
|
|
|
preg_match_all('/@([A-Z]\w+)/', $docs, $matches);
|
|
|
|
$this->annotations = $matches[1];
|
2014-05-06 18:29:19 +04:00
|
|
|
|
|
|
|
// extract type parameter information
|
2015-06-21 01:44:02 +03:00
|
|
|
preg_match_all('/@param\h+(?P<type>\w+)\h+\$(?P<var>\w+)/', $docs, $matches);
|
2015-07-02 12:54:17 +03:00
|
|
|
$this->types = array_combine($matches['var'], $matches['type']);
|
2014-07-11 16:27:43 +04:00
|
|
|
|
2014-05-06 18:29:19 +04:00
|
|
|
foreach ($reflection->getParameters() as $param) {
|
2015-07-02 12:54:17 +03:00
|
|
|
// extract type information from PHP 7 scalar types and prefer them
|
|
|
|
// over phpdoc annotations
|
|
|
|
if (method_exists($param, 'getType')) {
|
|
|
|
$type = $param->getType();
|
|
|
|
if ($type !== null) {
|
|
|
|
$this->types[$param->getName()] = (string) $type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-13 12:40:49 +04:00
|
|
|
if($param->isOptional()) {
|
|
|
|
$default = $param->getDefaultValue();
|
|
|
|
} else {
|
|
|
|
$default = null;
|
|
|
|
}
|
|
|
|
$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
|
|
|
*/
|
|
|
|
public function getType($parameter) {
|
2014-05-07 22:07:52 +04:00
|
|
|
if(array_key_exists($parameter, $this->types)) {
|
|
|
|
return $this->types[$parameter];
|
|
|
|
} else {
|
|
|
|
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
|
|
|
*/
|
|
|
|
public function getParameters() {
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
public function hasAnnotation($name){
|
|
|
|
return in_array($name, $this->annotations);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|