Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Allow to validate the password_policy app
  • Loading branch information
nickvergessen committed Sep 1, 2016
commit de96c5b17b72b0cd174dc1cfddc5ae3c1f94d81d
12 changes: 9 additions & 3 deletions lib/private/App/CodeChecker/CodeChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,25 @@ public function analyse($appId) {
throw new \RuntimeException("No app with given id <$appId> known.");
}

return $this->analyseFolder($appPath);
return $this->analyseFolder($appId, $appPath);
}

/**
* @param string $appId
* @param string $folder
* @return array
*/
public function analyseFolder($folder) {
public function analyseFolder($appId, $folder) {
$errors = [];

$excludedDirectories = ['vendor', '3rdparty', '.git', 'l10n', 'tests', 'test'];
if ($appId === 'password_policy') {
$excludedDirectories[] = 'lists';
}

$excludes = array_map(function($item) use ($folder) {
return $folder . '/' . $item;
}, ['vendor', '3rdparty', '.git', 'l10n', 'tests', 'test']);
}, $excludedDirectories);

$iterator = new RecursiveDirectoryIterator($folder, RecursiveDirectoryIterator::SKIP_DOTS);
$iterator = new RecursiveCallbackFilterIterator($iterator, function($item) use ($folder, $excludes){
Expand Down