2013-09-10 22:19:42 +04:00
|
|
|
<?php
|
2013-10-02 20:23:47 +04:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Damjan Georgievski <gdamjan@gmail.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author ideaship <ideaship@users.noreply.github.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2013-10-02 20:23:47 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-01-20 12:20:36 +03:00
|
|
|
namespace OC\Core\Controller;
|
2013-09-10 22:19:42 +04:00
|
|
|
|
2015-03-11 01:44:29 +03:00
|
|
|
use OC\Setup;
|
2018-04-25 16:22:28 +03:00
|
|
|
use OCP\ILogger;
|
2014-10-27 14:51:26 +03:00
|
|
|
|
2016-01-20 12:20:36 +03:00
|
|
|
class SetupController {
|
2015-03-11 01:44:29 +03:00
|
|
|
/** @var Setup */
|
|
|
|
protected $setupHelper;
|
|
|
|
/** @var string */
|
2014-11-19 01:47:00 +03:00
|
|
|
private $autoConfigFile;
|
|
|
|
|
2014-10-27 14:51:26 +03:00
|
|
|
/**
|
2015-03-11 01:44:29 +03:00
|
|
|
* @param Setup $setupHelper
|
2014-10-27 14:51:26 +03:00
|
|
|
*/
|
2020-04-10 17:54:27 +03:00
|
|
|
public function __construct(Setup $setupHelper) {
|
2016-08-02 16:28:19 +03:00
|
|
|
$this->autoConfigFile = \OC::$configDir.'autoconfig.php';
|
2015-03-11 01:44:29 +03:00
|
|
|
$this->setupHelper = $setupHelper;
|
2014-10-27 14:51:26 +03:00
|
|
|
}
|
|
|
|
|
2014-12-05 21:57:06 +03:00
|
|
|
/**
|
|
|
|
* @param $post
|
|
|
|
*/
|
2013-09-10 22:19:42 +04:00
|
|
|
public function run($post) {
|
|
|
|
// Check for autosetup:
|
|
|
|
$post = $this->loadAutoConfig($post);
|
2015-03-11 01:44:29 +03:00
|
|
|
$opts = $this->setupHelper->getSystemInfo();
|
2013-09-10 22:19:42 +04:00
|
|
|
|
2015-03-07 16:10:43 +03:00
|
|
|
// convert 'abcpassword' to 'abcpass'
|
|
|
|
if (isset($post['adminpassword'])) {
|
|
|
|
$post['adminpass'] = $post['adminpassword'];
|
|
|
|
}
|
|
|
|
if (isset($post['dbpassword'])) {
|
|
|
|
$post['dbpass'] = $post['dbpassword'];
|
|
|
|
}
|
|
|
|
|
2019-04-05 00:32:00 +03:00
|
|
|
if (!is_file(\OC::$configDir.'/CAN_INSTALL')) {
|
|
|
|
$this->displaySetupForbidden();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($post['install']) and $post['install']=='true') {
|
2013-09-10 22:19:42 +04:00
|
|
|
// We have to launch the installation process :
|
2015-03-11 01:44:29 +03:00
|
|
|
$e = $this->setupHelper->install($post);
|
2020-03-26 11:30:18 +03:00
|
|
|
$errors = ['errors' => $e];
|
2013-09-10 22:19:42 +04:00
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if (count($e) > 0) {
|
2014-03-13 23:05:11 +04:00
|
|
|
$options = array_merge($opts, $post, $errors);
|
2013-09-10 22:19:42 +04:00
|
|
|
$this->display($options);
|
2014-09-22 21:43:55 +04:00
|
|
|
} else {
|
2019-11-26 20:15:10 +03:00
|
|
|
$this->finishSetup(isset($post['install-recommended-apps']));
|
2013-09-10 22:19:42 +04:00
|
|
|
}
|
2014-09-22 21:43:55 +04:00
|
|
|
} else {
|
2014-03-13 23:05:11 +04:00
|
|
|
$options = array_merge($opts, $post);
|
|
|
|
$this->display($options);
|
2013-09-10 22:19:42 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-05 00:32:00 +03:00
|
|
|
private function displaySetupForbidden() {
|
|
|
|
\OC_Template::printGuestPage('', 'installation_forbidden');
|
|
|
|
}
|
|
|
|
|
2013-09-10 22:19:42 +04:00
|
|
|
public function display($post) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$defaults = [
|
2014-01-31 19:57:49 +04:00
|
|
|
'adminlogin' => '',
|
|
|
|
'adminpass' => '',
|
|
|
|
'dbuser' => '',
|
|
|
|
'dbpass' => '',
|
|
|
|
'dbname' => '',
|
|
|
|
'dbtablespace' => '',
|
2014-07-04 15:24:00 +04:00
|
|
|
'dbhost' => 'localhost',
|
2014-03-13 23:05:11 +04:00
|
|
|
'dbtype' => '',
|
2020-03-26 11:30:18 +03:00
|
|
|
];
|
2014-01-31 19:57:49 +04:00
|
|
|
$parameters = array_merge($defaults, $post);
|
2014-01-31 19:43:12 +04:00
|
|
|
|
2014-01-31 19:57:49 +04:00
|
|
|
\OC_Template::printGuestPage('', 'installation', $parameters);
|
2013-09-10 22:19:42 +04:00
|
|
|
}
|
|
|
|
|
2019-11-26 20:15:10 +03:00
|
|
|
private function finishSetup(bool $installRecommended) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (file_exists($this->autoConfigFile)) {
|
2014-11-19 01:47:00 +03:00
|
|
|
unlink($this->autoConfigFile);
|
|
|
|
}
|
2016-01-22 13:49:28 +03:00
|
|
|
\OC::$server->getIntegrityCodeChecker()->runInstanceVerification();
|
2019-04-05 00:32:00 +03:00
|
|
|
|
|
|
|
if (\OC_Util::getChannel() !== 'git' && is_file(\OC::$configDir.'/CAN_INSTALL')) {
|
|
|
|
if (!unlink(\OC::$configDir.'/CAN_INSTALL')) {
|
|
|
|
\OC_Template::printGuestPage('', 'installation_incomplete');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-26 20:15:10 +03:00
|
|
|
if ($installRecommended) {
|
|
|
|
$urlGenerator = \OC::$server->getURLGenerator();
|
2019-12-04 22:18:58 +03:00
|
|
|
$location = $urlGenerator->getAbsoluteURL('index.php/core/apps/recommended');
|
2019-11-26 20:15:10 +03:00
|
|
|
header('Location: ' . $location);
|
|
|
|
exit();
|
|
|
|
}
|
2014-09-22 21:43:55 +04:00
|
|
|
\OC_Util::redirectToDefaultPage();
|
2013-09-10 22:19:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function loadAutoConfig($post) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (file_exists($this->autoConfigFile)) {
|
2019-02-25 23:28:22 +03:00
|
|
|
\OCP\Util::writeLog('core', 'Autoconfig file found, setting up Nextcloud…', ILogger::INFO);
|
2020-03-26 11:30:18 +03:00
|
|
|
$AUTOCONFIG = [];
|
2014-11-19 01:47:00 +03:00
|
|
|
include $this->autoConfigFile;
|
2020-04-09 17:05:56 +03:00
|
|
|
$post = array_merge($post, $AUTOCONFIG);
|
2013-09-10 22:19:42 +04:00
|
|
|
}
|
2014-01-31 19:43:12 +04:00
|
|
|
|
2014-02-05 21:23:40 +04:00
|
|
|
$dbIsSet = isset($post['dbtype']);
|
|
|
|
$directoryIsSet = isset($post['directory']);
|
|
|
|
$adminAccountIsSet = isset($post['adminlogin']);
|
|
|
|
|
2020-04-09 15:04:56 +03:00
|
|
|
if ($dbIsSet and $directoryIsSet and $adminAccountIsSet) {
|
2014-01-31 19:43:12 +04:00
|
|
|
$post['install'] = 'true';
|
|
|
|
}
|
|
|
|
$post['dbIsSet'] = $dbIsSet;
|
|
|
|
$post['directoryIsSet'] = $directoryIsSet;
|
|
|
|
|
2013-09-10 22:19:42 +04:00
|
|
|
return $post;
|
|
|
|
}
|
|
|
|
}
|