2013-08-02 13:36:54 +00:00
< ? php
/**
2016-07-21 15:07:57 +00:00
* @ copyright Copyright ( c ) 2016 , ownCloud , Inc .
*
2015-03-26 10:44:34 +00:00
* @ author Bart Visscher < bartv @ thisnet . nl >
2019-12-03 18:57:53 +00:00
* @ author Estelle Poulin < dev @ inspiredby . es >
2016-07-21 15:07:57 +00:00
* @ author Joas Schilling < coding @ schilljs . com >
2017-11-06 14:56:42 +00:00
* @ author Ko - < k . stoffelen @ cs . ru . nl >
2016-05-26 17:56:05 +00:00
* @ author Lukas Reschke < lukas @ statuscode . ch >
2019-12-03 18:57:53 +00:00
* @ author Michael Weimann < mail @ michael - weimann . eu >
2015-03-26 10:44:34 +00:00
* @ author Morris Jobke < hey @ morrisjobke . de >
2017-11-06 14:56:42 +00:00
* @ author Patrick Paysant < patrick . paysant @ linagora . com >
* @ author RealRancor < fisch . 666 @ gmx . de >
2019-12-03 18:57:53 +00:00
* @ author Roeland Jago Douma < roeland @ famdouma . nl >
2015-03-26 10:44:34 +00:00
* @ author Thomas Müller < thomas . mueller @ tmit . eu >
2016-03-01 16:25:15 +00:00
* @ author Victor Dubiniuk < dubiniuk @ owncloud . com >
2015-03-26 10:44:34 +00:00
*
* @ license AGPL - 3.0
*
* This code is free software : you can redistribute it and / or modify
* it under the terms of the GNU Affero General Public License , version 3 ,
* as published by the Free Software Foundation .
*
* 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 , version 3 ,
2019-12-03 18:57:53 +00:00
* along with this program . If not , see < http :// www . gnu . org / licenses />
2015-03-26 10:44:34 +00:00
*
2013-08-02 13:36:54 +00:00
*/
2015-02-26 10:37:37 +00:00
2017-10-13 19:30:29 +00:00
require_once __DIR__ . '/lib/versioncheck.php' ;
2015-04-08 08:53:03 +00:00
use OC\Console\Application ;
2016-02-17 23:42:00 +00:00
use Symfony\Component\Console\Input\ArgvInput ;
2015-04-08 08:53:03 +00:00
use Symfony\Component\Console\Output\ConsoleOutput ;
2013-09-01 14:40:50 +00:00
2015-02-21 19:52:32 +00:00
define ( 'OC_CONSOLE' , 1 );
2016-04-18 20:30:01 +00:00
function exceptionHandler ( $exception ) {
echo " An unhandled exception has been thrown: " . PHP_EOL ;
echo $exception ;
exit ( 1 );
}
2014-05-19 13:26:57 +00:00
try {
2016-10-06 10:13:02 +00:00
require_once __DIR__ . '/lib/base.php' ;
2013-08-02 13:36:54 +00:00
2015-02-16 08:16:32 +00:00
// set to run indefinitely if needed
2017-03-11 16:04:21 +00:00
if ( strpos ( @ ini_get ( 'disable_functions' ), 'set_time_limit' ) === false ) {
@ set_time_limit ( 0 );
}
2015-02-16 08:16:32 +00:00
2014-05-19 13:26:57 +00:00
if ( ! OC :: $CLI ) {
echo " This script can be run from the command line only " . PHP_EOL ;
2016-10-13 13:45:43 +00:00
exit ( 1 );
2014-05-19 13:26:57 +00:00
}
2013-08-02 19:23:50 +00:00
2016-04-18 20:30:01 +00:00
set_exception_handler ( 'exceptionHandler' );
2016-07-08 13:55:17 +00:00
if ( ! function_exists ( 'posix_getuid' )) {
echo " The posix extensions are required - see http://php.net/manual/en/book.posix.php " . PHP_EOL ;
2016-10-13 13:45:43 +00:00
exit ( 1 );
2016-07-08 13:55:17 +00:00
}
$user = posix_getpwuid ( posix_getuid ());
$configUser = posix_getpwuid ( fileowner ( OC :: $configDir . 'config.php' ));
if ( $user [ 'name' ] !== $configUser [ 'name' ]) {
echo " Console has to be executed with the user that owns the file config/config.php " . PHP_EOL ;
echo " Current user: " . $user [ 'name' ] . PHP_EOL ;
echo " Owner of config.php: " . $configUser [ 'name' ] . PHP_EOL ;
2016-10-15 11:22:25 +00:00
echo " Try adding 'sudo -u " . $configUser [ 'name' ] . " ' to the beginning of the command (without the single quotes) " . PHP_EOL ;
2019-01-03 16:14:34 +00:00
echo " If running with 'docker exec' try adding the option '-u " . $configUser [ 'name' ] . " ' to the docker command (without the single quotes) " . PHP_EOL ;
2016-10-13 13:45:43 +00:00
exit ( 1 );
2015-01-12 15:49:36 +00:00
}
2015-12-17 09:48:29 +00:00
$oldWorkingDir = getcwd ();
if ( $oldWorkingDir === false ) {
2017-08-11 13:47:24 +00:00
echo " This script can be run from the Nextcloud root directory only. " . PHP_EOL ;
2015-12-17 09:48:29 +00:00
echo " Can't determine current working dir - the script will continue to work but be aware of the above fact. " . PHP_EOL ;
} else if ( $oldWorkingDir !== __DIR__ && ! chdir ( __DIR__ )) {
2017-08-11 13:47:24 +00:00
echo " This script can be run from the Nextcloud root directory only. " . PHP_EOL ;
echo " Can't change to Nextcloud root directory. " . PHP_EOL ;
2015-12-17 09:48:29 +00:00
exit ( 1 );
}
2016-02-25 09:05:34 +00:00
if ( ! function_exists ( 'pcntl_signal' ) && ! in_array ( '--no-warnings' , $argv )) {
2016-01-29 15:03:35 +00:00
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 ;
}
2018-08-04 19:53:50 +00:00
$application = new Application (
\OC :: $server -> getConfig (),
\OC :: $server -> getEventDispatcher (),
\OC :: $server -> getRequest (),
\OC :: $server -> getLogger (),
\OC :: $server -> query ( \OC\MemoryInfo :: class )
);
2016-02-17 23:42:00 +00:00
$application -> loadCommands ( new ArgvInput (), new ConsoleOutput ());
2014-05-19 13:26:57 +00:00
$application -> run ();
} catch ( Exception $ex ) {
2016-04-18 20:30:01 +00:00
exceptionHandler ( $ex );
2016-04-20 16:01:47 +00:00
} catch ( Error $ex ) {
exceptionHandler ( $ex );
2013-09-13 16:10:04 +00:00
}