123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?php
- /**
- * @copyright Copyright (c) 2017 Morris Jobke <hey@morrisjobke.de>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * 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
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- $expectedFiles = [
- '.',
- '..',
- '.devcontainer',
- '.drone.yml',
- '.editorconfig',
- '.eslintignore',
- '.eslintrc.js',
- '.git',
- '.gitattributes',
- '.github',
- '.gitignore',
- '.gitmodules',
- '.htaccess',
- '.idea',
- '.jshintrc',
- '.mailmap',
- '.npmignore',
- '.php-cs-fixer.dist.php',
- '.pre-commit-config.yaml',
- '.scrutinizer.yml',
- '.tag',
- '.tx',
- '.user.ini',
- '__mocks__',
- '__tests__',
- '3rdparty',
- 'AUTHORS',
- 'CHANGELOG.md',
- 'CODE_OF_CONDUCT.md',
- 'COPYING',
- 'COPYING-README',
- 'DESIGN.md',
- 'Makefile',
- 'README.md',
- 'SECURITY.md',
- 'apps',
- 'autotest-checkers.sh',
- 'autotest-external.sh',
- 'autotest.sh',
- 'babel.config.js',
- 'build',
- 'codecov.yml',
- 'composer.json',
- 'composer.lock',
- 'config',
- 'console.php',
- 'contribute',
- 'core',
- 'cron.php',
- 'custom.d.ts',
- 'cypress.config.ts',
- 'cypress.d.ts',
- 'cypress',
- 'dist',
- 'index.html',
- 'index.php',
- 'jest.config.ts',
- 'lib',
- 'occ',
- 'ocs',
- 'ocs-provider',
- 'package-lock.json',
- 'package.json',
- 'psalm-ocp.xml',
- 'psalm.xml',
- 'public.php',
- 'remote.php',
- 'resources',
- 'robots.txt',
- 'status.php',
- 'tests',
- 'themes',
- 'tsconfig.json',
- 'vendor-bin',
- 'version.php',
- 'webpack.common.js',
- 'webpack.config.js',
- 'webpack.modules.js',
- ];
- $actualFiles = [];
- $files = new \DirectoryIterator(__DIR__ . '/..');
- foreach ($files as $file) {
- $actualFiles[] = $file->getFilename();
- }
- $additionalFiles = array_diff($actualFiles, $expectedFiles);
- $missingFiles = array_diff($expectedFiles, $actualFiles);
- $failed = false;
- if (count($additionalFiles) > 0) {
- echo sprintf('ERROR: There were %d additional files:', count($additionalFiles)) . PHP_EOL;
- echo implode(PHP_EOL, $additionalFiles) . PHP_EOL;
- $failed = true;
- }
- if (count($missingFiles) > 0) {
- echo sprintf('ERROR: There were %d missing files:', count($missingFiles)) . PHP_EOL;
- echo implode(PHP_EOL, $missingFiles) . PHP_EOL;
- $failed = true;
- }
- if ($failed) {
- echo 'ERROR: Please remove or add those files again or inform the release team about those now files to be included or excluded from the release tar ball.' . PHP_EOL;
- exit(1);
- }
- echo 'OK: all expected files are present and no additional files are there.' . PHP_EOL;
- exit(0);
|