2015-01-29 00:08:50 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
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 Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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
|
|
|
*
|
2015-01-29 00:08:50 +03:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-07-07 13:08:12 +03:00
|
|
|
namespace OC\App\CodeChecker;
|
2015-01-29 00:08:50 +03:00
|
|
|
|
|
|
|
use OC\Hooks\BasicEmitter;
|
|
|
|
use PhpParser\NodeTraverser;
|
|
|
|
use PhpParser\Parser;
|
2019-02-12 19:41:52 +03:00
|
|
|
use PhpParser\ParserFactory;
|
2015-01-29 00:08:50 +03:00
|
|
|
use RecursiveCallbackFilterIterator;
|
|
|
|
use RecursiveDirectoryIterator;
|
|
|
|
use RecursiveIteratorIterator;
|
|
|
|
use RegexIterator;
|
|
|
|
use SplFileInfo;
|
|
|
|
|
|
|
|
class CodeChecker extends BasicEmitter {
|
2020-04-10 17:54:27 +03:00
|
|
|
public const CLASS_EXTENDS_NOT_ALLOWED = 1000;
|
|
|
|
public const CLASS_IMPLEMENTS_NOT_ALLOWED = 1001;
|
|
|
|
public const STATIC_CALL_NOT_ALLOWED = 1002;
|
|
|
|
public const CLASS_CONST_FETCH_NOT_ALLOWED = 1003;
|
2020-10-05 16:12:57 +03:00
|
|
|
public const CLASS_NEW_NOT_ALLOWED = 1004;
|
|
|
|
public const OP_OPERATOR_USAGE_DISCOURAGED = 1005;
|
|
|
|
public const CLASS_USE_NOT_ALLOWED = 1006;
|
|
|
|
public const CLASS_METHOD_CALL_NOT_ALLOWED = 1007;
|
2015-01-29 00:08:50 +03:00
|
|
|
|
2015-01-30 19:31:51 +03:00
|
|
|
/** @var Parser */
|
|
|
|
private $parser;
|
|
|
|
|
2015-07-07 16:37:56 +03:00
|
|
|
/** @var ICheck */
|
|
|
|
protected $checkList;
|
2015-07-07 13:08:12 +03:00
|
|
|
|
2017-06-09 15:20:44 +03:00
|
|
|
/** @var bool */
|
|
|
|
protected $checkMigrationSchema;
|
|
|
|
|
|
|
|
public function __construct(ICheck $checkList, $checkMigrationSchema) {
|
2015-07-07 16:37:56 +03:00
|
|
|
$this->checkList = $checkList;
|
2017-06-09 15:20:44 +03:00
|
|
|
$this->checkMigrationSchema = $checkMigrationSchema;
|
2019-12-18 17:39:14 +03:00
|
|
|
$this->parser = (new ParserFactory)->create(ParserFactory::ONLY_PHP7);
|
2015-01-29 00:08:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $appId
|
|
|
|
* @return array
|
2018-01-13 01:24:11 +03:00
|
|
|
* @throws \RuntimeException if app with $appId is unknown
|
2015-01-29 00:08:50 +03:00
|
|
|
*/
|
2018-01-13 01:24:11 +03:00
|
|
|
public function analyse(string $appId): array {
|
2015-01-29 00:08:50 +03:00
|
|
|
$appPath = \OC_App::getAppPath($appId);
|
|
|
|
if ($appPath === false) {
|
|
|
|
throw new \RuntimeException("No app with given id <$appId> known.");
|
|
|
|
}
|
|
|
|
|
2016-09-01 11:18:00 +03:00
|
|
|
return $this->analyseFolder($appId, $appPath);
|
2015-01-30 19:31:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-09-01 11:18:00 +03:00
|
|
|
* @param string $appId
|
2015-01-30 19:31:51 +03:00
|
|
|
* @param string $folder
|
|
|
|
* @return array
|
|
|
|
*/
|
2018-01-13 01:24:11 +03:00
|
|
|
public function analyseFolder(string $appId, string $folder): array {
|
2015-01-29 00:08:50 +03:00
|
|
|
$errors = [];
|
|
|
|
|
2018-08-09 07:44:52 +03:00
|
|
|
$excludedDirectories = ['vendor', '3rdparty', '.git', 'l10n', 'tests', 'test', 'build'];
|
2016-09-01 11:18:00 +03:00
|
|
|
if ($appId === 'password_policy') {
|
|
|
|
$excludedDirectories[] = 'lists';
|
|
|
|
}
|
|
|
|
|
2020-04-09 14:53:40 +03:00
|
|
|
$excludes = array_map(function ($item) use ($folder) {
|
2015-01-30 19:31:51 +03:00
|
|
|
return $folder . '/' . $item;
|
2016-09-01 11:18:00 +03:00
|
|
|
}, $excludedDirectories);
|
2015-01-29 00:08:50 +03:00
|
|
|
|
2015-01-30 19:31:51 +03:00
|
|
|
$iterator = new RecursiveDirectoryIterator($folder, RecursiveDirectoryIterator::SKIP_DOTS);
|
2020-04-09 14:53:40 +03:00
|
|
|
$iterator = new RecursiveCallbackFilterIterator($iterator, function ($item) use ($excludes) {
|
2015-01-29 00:08:50 +03:00
|
|
|
/** @var SplFileInfo $item */
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($excludes as $exclude) {
|
2015-01-29 00:08:50 +03:00
|
|
|
if (substr($item->getPath(), 0, strlen($exclude)) === $exclude) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
$iterator = new RecursiveIteratorIterator($iterator);
|
|
|
|
$iterator = new RegexIterator($iterator, '/^.+\.php$/i');
|
|
|
|
|
|
|
|
foreach ($iterator as $file) {
|
|
|
|
/** @var SplFileInfo $file */
|
|
|
|
$this->emit('CodeChecker', 'analyseFileBegin', [$file->getPathname()]);
|
2018-01-13 01:24:11 +03:00
|
|
|
$fileErrors = $this->analyseFile($file->__toString());
|
2015-05-05 14:57:23 +03:00
|
|
|
$this->emit('CodeChecker', 'analyseFileFinished', [$file->getPathname(), $fileErrors]);
|
2015-03-26 17:33:31 +03:00
|
|
|
$errors = array_merge($fileErrors, $errors);
|
2015-01-29 00:08:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return $errors;
|
|
|
|
}
|
|
|
|
|
2015-01-30 19:31:51 +03:00
|
|
|
|
2015-01-29 00:08:50 +03:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return array
|
|
|
|
*/
|
2018-01-13 01:24:11 +03:00
|
|
|
public function analyseFile(string $file): array {
|
2015-01-29 00:08:50 +03:00
|
|
|
$code = file_get_contents($file);
|
|
|
|
$statements = $this->parser->parse($code);
|
|
|
|
|
2015-07-07 16:37:56 +03:00
|
|
|
$visitor = new NodeVisitor($this->checkList);
|
2017-06-09 15:20:44 +03:00
|
|
|
$migrationVisitor = new MigrationSchemaChecker();
|
2015-01-29 00:08:50 +03:00
|
|
|
$traverser = new NodeTraverser;
|
|
|
|
$traverser->addVisitor($visitor);
|
|
|
|
|
2017-06-09 15:20:44 +03:00
|
|
|
if ($this->checkMigrationSchema && preg_match('#^.+\\/Migration\\/Version[^\\/]{1,255}\\.php$#i', $file)) {
|
|
|
|
$traverser->addVisitor($migrationVisitor);
|
|
|
|
}
|
|
|
|
|
2015-01-29 00:08:50 +03:00
|
|
|
$traverser->traverse($statements);
|
|
|
|
|
2017-06-09 15:20:44 +03:00
|
|
|
return array_merge($visitor->errors, $migrationVisitor->errors);
|
2015-01-29 00:08:50 +03:00
|
|
|
}
|
|
|
|
}
|