console.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Bart Visscher <bartv@thisnet.nl>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Estelle Poulin <dev@inspiredby.es>
  8. * @author Joas Schilling <coding@schilljs.com>
  9. * @author Ko- <k.stoffelen@cs.ru.nl>
  10. * @author Lukas Reschke <lukas@statuscode.ch>
  11. * @author Michael Weimann <mail@michael-weimann.eu>
  12. * @author Morris Jobke <hey@morrisjobke.de>
  13. * @author Patrick Paysant <patrick.paysant@linagora.com>
  14. * @author RealRancor <fisch.666@gmx.de>
  15. * @author Roeland Jago Douma <roeland@famdouma.nl>
  16. * @author Thomas Müller <thomas.mueller@tmit.eu>
  17. * @author Victor Dubiniuk <dubiniuk@owncloud.com>
  18. *
  19. * @license AGPL-3.0
  20. *
  21. * This code is free software: you can redistribute it and/or modify
  22. * it under the terms of the GNU Affero General Public License, version 3,
  23. * as published by the Free Software Foundation.
  24. *
  25. * This program is distributed in the hope that it will be useful,
  26. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  27. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  28. * GNU Affero General Public License for more details.
  29. *
  30. * You should have received a copy of the GNU Affero General Public License, version 3,
  31. * along with this program. If not, see <http://www.gnu.org/licenses/>
  32. *
  33. */
  34. require_once __DIR__ . '/lib/versioncheck.php';
  35. use OC\Console\Application;
  36. use Symfony\Component\Console\Input\ArgvInput;
  37. use Symfony\Component\Console\Output\ConsoleOutput;
  38. define('OC_CONSOLE', 1);
  39. function exceptionHandler($exception) {
  40. echo "An unhandled exception has been thrown:" . PHP_EOL;
  41. echo $exception;
  42. exit(1);
  43. }
  44. try {
  45. require_once __DIR__ . '/lib/base.php';
  46. // set to run indefinitely if needed
  47. if (strpos(@ini_get('disable_functions'), 'set_time_limit') === false) {
  48. @set_time_limit(0);
  49. }
  50. if (!OC::$CLI) {
  51. echo "This script can be run from the command line only" . PHP_EOL;
  52. exit(1);
  53. }
  54. set_exception_handler('exceptionHandler');
  55. if (!function_exists('posix_getuid')) {
  56. echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL;
  57. exit(1);
  58. }
  59. $user = posix_getpwuid(posix_getuid());
  60. $configUser = posix_getpwuid(fileowner(OC::$configDir . 'config.php'));
  61. if ($user['name'] !== $configUser['name']) {
  62. echo "Console has to be executed with the user that owns the file config/config.php" . PHP_EOL;
  63. echo "Current user: " . $user['name'] . PHP_EOL;
  64. echo "Owner of config.php: " . $configUser['name'] . PHP_EOL;
  65. echo "Try adding 'sudo -u " . $configUser['name'] . " ' to the beginning of the command (without the single quotes)" . PHP_EOL;
  66. echo "If running with 'docker exec' try adding the option '-u " . $configUser['name'] . "' to the docker command (without the single quotes)" . PHP_EOL;
  67. exit(1);
  68. }
  69. $oldWorkingDir = getcwd();
  70. if ($oldWorkingDir === false) {
  71. echo "This script can be run from the Nextcloud root directory only." . PHP_EOL;
  72. echo "Can't determine current working dir - the script will continue to work but be aware of the above fact." . PHP_EOL;
  73. } elseif ($oldWorkingDir !== __DIR__ && !chdir(__DIR__)) {
  74. echo "This script can be run from the Nextcloud root directory only." . PHP_EOL;
  75. echo "Can't change to Nextcloud root directory." . PHP_EOL;
  76. exit(1);
  77. }
  78. if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) {
  79. 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;
  80. }
  81. $application = new Application(
  82. \OC::$server->getConfig(),
  83. \OC::$server->getEventDispatcher(),
  84. \OC::$server->getRequest(),
  85. \OC::$server->getLogger(),
  86. \OC::$server->query(\OC\MemoryInfo::class)
  87. );
  88. $application->loadCommands(new ArgvInput(), new ConsoleOutput());
  89. $application->run();
  90. } catch (Exception $ex) {
  91. exceptionHandler($ex);
  92. } catch (Error $ex) {
  93. exceptionHandler($ex);
  94. }