console.php 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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.6.0 is used, this has to happen here
  32. // because base.php will already use 5.6 syntax.
  33. if (version_compare(PHP_VERSION, '5.6.0') === -1) {
  34. echo 'This version of Nextcloud requires at least PHP 5.6.0'.PHP_EOL;
  35. echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.'.PHP_EOL;
  36. return;
  37. }
  38. function exceptionHandler($exception) {
  39. echo "An unhandled exception has been thrown:" . PHP_EOL;
  40. echo $exception;
  41. exit(1);
  42. }
  43. try {
  44. require_once __DIR__ . '/lib/base.php';
  45. // set to run indefinitely if needed
  46. if (strpos(@ini_get('disable_functions'), 'set_time_limit') === false) {
  47. @set_time_limit(0);
  48. }
  49. if (!OC::$CLI) {
  50. echo "This script can be run from the command line only" . PHP_EOL;
  51. exit(1);
  52. }
  53. set_exception_handler('exceptionHandler');
  54. if (!function_exists('posix_getuid')) {
  55. echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL;
  56. exit(1);
  57. }
  58. $user = posix_getpwuid(posix_getuid());
  59. $configUser = posix_getpwuid(fileowner(OC::$configDir . 'config.php'));
  60. if ($user['name'] !== $configUser['name']) {
  61. echo "Console has to be executed with the user that owns the file config/config.php" . PHP_EOL;
  62. echo "Current user: " . $user['name'] . PHP_EOL;
  63. echo "Owner of config.php: " . $configUser['name'] . PHP_EOL;
  64. echo "Try adding 'sudo -u " . $configUser['name'] . " ' to the beginning of the command (without the single quotes)" . PHP_EOL;
  65. exit(1);
  66. }
  67. $oldWorkingDir = getcwd();
  68. if ($oldWorkingDir === false) {
  69. echo "This script can be run from the ownCloud root directory only." . PHP_EOL;
  70. echo "Can't determine current working dir - the script will continue to work but be aware of the above fact." . PHP_EOL;
  71. } else if ($oldWorkingDir !== __DIR__ && !chdir(__DIR__)) {
  72. echo "This script can be run from the ownCloud root directory only." . PHP_EOL;
  73. echo "Can't change to ownCloud root directory." . PHP_EOL;
  74. exit(1);
  75. }
  76. if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) {
  77. 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;
  78. }
  79. $application = new Application(\OC::$server->getConfig(), \OC::$server->getEventDispatcher(), \OC::$server->getRequest(), \OC::$server->getLogger());
  80. $application->loadCommands(new ArgvInput(), new ConsoleOutput());
  81. $application->run();
  82. } catch (Exception $ex) {
  83. exceptionHandler($ex);
  84. } catch (Error $ex) {
  85. exceptionHandler($ex);
  86. }