console.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Bart Visscher <bartv@thisnet.nl>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author Lukas Reschke <lukas@statuscode.ch>
  8. * @author Morris Jobke <hey@morrisjobke.de>
  9. * @author Thomas Müller <thomas.mueller@tmit.eu>
  10. * @author Victor Dubiniuk <dubiniuk@owncloud.com>
  11. *
  12. * @license AGPL-3.0
  13. *
  14. * This code is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU Affero General Public License, version 3,
  16. * as published by the Free Software Foundation.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Affero General Public License, version 3,
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>
  25. *
  26. */
  27. use OC\Console\Application;
  28. use Symfony\Component\Console\Input\ArgvInput;
  29. use Symfony\Component\Console\Output\ConsoleOutput;
  30. define('OC_CONSOLE', 1);
  31. // Show warning if a PHP version below 5.4.0 is used, this has to happen here
  32. // because base.php will already use 5.4 syntax.
  33. if (version_compare(PHP_VERSION, '5.4.0') === -1) {
  34. echo 'This version of Nextcloud requires at least PHP 5.4.0'.PHP_EOL;
  35. echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.'.PHP_EOL;
  36. return;
  37. }
  38. // Show warning if PHP 7.1 is used as Nextcloud is not compatible with PHP 7.1 for now
  39. // @see https://github.com/nextcloud/docker-ci/issues/10
  40. if (version_compare(PHP_VERSION, '7.1.0') !== -1) {
  41. echo 'This version of Nextcloud is not compatible with PHP 7.1.<br/>';
  42. echo 'You are currently running ' . PHP_VERSION . '.';
  43. return;
  44. }
  45. function exceptionHandler($exception) {
  46. echo "An unhandled exception has been thrown:" . PHP_EOL;
  47. echo $exception;
  48. exit(1);
  49. }
  50. try {
  51. require_once __DIR__ . '/lib/base.php';
  52. // set to run indefinitely if needed
  53. set_time_limit(0);
  54. if (!OC::$CLI) {
  55. echo "This script can be run from the command line only" . PHP_EOL;
  56. exit(0);
  57. }
  58. set_exception_handler('exceptionHandler');
  59. if (!function_exists('posix_getuid')) {
  60. echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL;
  61. exit(0);
  62. }
  63. $user = posix_getpwuid(posix_getuid());
  64. $configUser = posix_getpwuid(fileowner(OC::$configDir . 'config.php'));
  65. if ($user['name'] !== $configUser['name']) {
  66. echo "Console has to be executed with the user that owns the file config/config.php" . PHP_EOL;
  67. echo "Current user: " . $user['name'] . PHP_EOL;
  68. echo "Owner of config.php: " . $configUser['name'] . PHP_EOL;
  69. echo "Try adding 'sudo -u " . $configUser['name'] . " ' to the beginning of the command (without the single quotes)" . PHP_EOL;
  70. exit(0);
  71. }
  72. $oldWorkingDir = getcwd();
  73. if ($oldWorkingDir === false) {
  74. echo "This script can be run from the ownCloud root directory only." . PHP_EOL;
  75. echo "Can't determine current working dir - the script will continue to work but be aware of the above fact." . PHP_EOL;
  76. } else if ($oldWorkingDir !== __DIR__ && !chdir(__DIR__)) {
  77. echo "This script can be run from the ownCloud root directory only." . PHP_EOL;
  78. echo "Can't change to ownCloud root directory." . PHP_EOL;
  79. exit(1);
  80. }
  81. if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) {
  82. echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php" . PHP_EOL;
  83. }
  84. $application = new Application(\OC::$server->getConfig(), \OC::$server->getEventDispatcher(), \OC::$server->getRequest());
  85. $application->loadCommands(new ArgvInput(), new ConsoleOutput());
  86. $application->run();
  87. } catch (Exception $ex) {
  88. exceptionHandler($ex);
  89. } catch (Error $ex) {
  90. exceptionHandler($ex);
  91. }