You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

console.php 3.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 ownCloud 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. 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. set_time_limit(0);
  47. if (!OC::$CLI) {
  48. echo "This script can be run from the command line only" . PHP_EOL;
  49. exit(0);
  50. }
  51. set_exception_handler('exceptionHandler');
  52. if (!function_exists('posix_getuid')) {
  53. echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL;
  54. exit(0);
  55. }
  56. $user = posix_getpwuid(posix_getuid());
  57. $configUser = posix_getpwuid(fileowner(OC::$configDir . 'config.php'));
  58. if ($user['name'] !== $configUser['name']) {
  59. echo "Console has to be executed with the user that owns the file config/config.php" . PHP_EOL;
  60. echo "Current user: " . $user['name'] . PHP_EOL;
  61. echo "Owner of config.php: " . $configUser['name'] . PHP_EOL;
  62. echo "Try adding 'sudo -u " . $configUser['name'] . " ' to the beginning of the command (without the single quotes)" . PHP_EOL;
  63. exit(0);
  64. }
  65. $oldWorkingDir = getcwd();
  66. if ($oldWorkingDir === false) {
  67. echo "This script can be run from the ownCloud root directory only." . PHP_EOL;
  68. echo "Can't determine current working dir - the script will continue to work but be aware of the above fact." . PHP_EOL;
  69. } else if ($oldWorkingDir !== __DIR__ && !chdir(__DIR__)) {
  70. echo "This script can be run from the ownCloud root directory only." . PHP_EOL;
  71. echo "Can't change to ownCloud root directory." . PHP_EOL;
  72. exit(1);
  73. }
  74. if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) {
  75. 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;
  76. }
  77. $application = new Application(\OC::$server->getConfig(), \OC::$server->getEventDispatcher(), \OC::$server->getRequest());
  78. $application->loadCommands(new ArgvInput(), new ConsoleOutput());
  79. $application->run();
  80. } catch (Exception $ex) {
  81. exceptionHandler($ex);
  82. } catch (Error $ex) {
  83. exceptionHandler($ex);
  84. }