2011-04-17 02:45:05 +04:00
|
|
|
<?php
|
2014-10-27 14:51:26 +03:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-07 15:47:42 +03:00
|
|
|
* @author Administrator "Administrator@WINDOWS-2012"
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Brice Maron <brice@bmaron.net>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
* @author Dan Callahan <dan.callahan@gmail.com>
|
|
|
|
* @author Daniel Kesselberg <mail@danielkesselberg.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author François Kubler <francois@kubler.org>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Frank Isemann <frank@isemann.name>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author KB7777 <k.burkowski@gmail.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2019-12-19 15:16:31 +03:00
|
|
|
* @author MichaIng <28480705+MichaIng@users.noreply.github.com>
|
|
|
|
* @author MichaIng <micha@dietpi.com>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Sean Comeau <sean@ftlnetworks.ca>
|
|
|
|
* @author Serge Martin <edb@sigluy.net>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Simounet <contact@simounet.net>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @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
|
|
|
*
|
2014-10-27 14:51:26 +03:00
|
|
|
*/
|
2015-02-21 22:51:50 +03:00
|
|
|
|
|
|
|
namespace OC;
|
|
|
|
|
2015-03-11 01:44:29 +03:00
|
|
|
use bantu\IniGetWrapper\IniGetWrapper;
|
2015-02-21 22:51:50 +03:00
|
|
|
use Exception;
|
2018-09-10 23:45:40 +03:00
|
|
|
use InvalidArgumentException;
|
2017-04-23 23:10:17 +03:00
|
|
|
use OC\App\AppStore\Bundles\BundleFetcher;
|
2017-09-26 15:27:42 +03:00
|
|
|
use OC\Authentication\Token\DefaultTokenCleanupJob;
|
|
|
|
use OC\Authentication\Token\DefaultTokenProvider;
|
2017-10-23 22:26:24 +03:00
|
|
|
use OC\Log\Rotate;
|
2018-05-08 15:47:50 +03:00
|
|
|
use OC\Preview\BackgroundCleanupJob;
|
2019-12-03 21:31:31 +03:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
2017-04-07 23:42:43 +03:00
|
|
|
use OCP\Defaults;
|
2019-10-09 20:13:27 +03:00
|
|
|
use OCP\IGroup;
|
2015-03-11 01:44:29 +03:00
|
|
|
use OCP\IL10N;
|
2015-07-30 01:04:30 +03:00
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\Security\ISecureRandom;
|
2011-04-17 02:45:05 +04:00
|
|
|
|
2015-02-21 22:51:50 +03:00
|
|
|
class Setup {
|
2017-03-18 01:37:48 +03:00
|
|
|
/** @var SystemConfig */
|
2014-10-27 14:51:26 +03:00
|
|
|
protected $config;
|
2015-03-11 01:44:29 +03:00
|
|
|
/** @var IniGetWrapper */
|
|
|
|
protected $iniWrapper;
|
|
|
|
/** @var IL10N */
|
|
|
|
protected $l10n;
|
2017-04-07 23:42:43 +03:00
|
|
|
/** @var Defaults */
|
2015-03-11 01:44:29 +03:00
|
|
|
protected $defaults;
|
2015-07-30 01:04:30 +03:00
|
|
|
/** @var ILogger */
|
|
|
|
protected $logger;
|
|
|
|
/** @var ISecureRandom */
|
|
|
|
protected $random;
|
2017-11-24 12:27:58 +03:00
|
|
|
/** @var Installer */
|
|
|
|
protected $installer;
|
2014-10-27 14:51:26 +03:00
|
|
|
|
|
|
|
/**
|
2017-03-18 01:37:48 +03:00
|
|
|
* @param SystemConfig $config
|
2015-03-11 01:44:29 +03:00
|
|
|
* @param IniGetWrapper $iniWrapper
|
2017-04-23 23:10:17 +03:00
|
|
|
* @param IL10N $l10n
|
2017-04-07 23:42:43 +03:00
|
|
|
* @param Defaults $defaults
|
|
|
|
* @param ILogger $logger
|
|
|
|
* @param ISecureRandom $random
|
2017-11-24 12:27:58 +03:00
|
|
|
* @param Installer $installer
|
2014-10-27 14:51:26 +03:00
|
|
|
*/
|
2019-10-14 12:32:05 +03:00
|
|
|
public function __construct(
|
|
|
|
SystemConfig $config,
|
|
|
|
IniGetWrapper $iniWrapper,
|
|
|
|
IL10N $l10n,
|
|
|
|
Defaults $defaults,
|
|
|
|
ILogger $logger,
|
|
|
|
ISecureRandom $random,
|
|
|
|
Installer $installer
|
|
|
|
) {
|
2014-10-27 14:51:26 +03:00
|
|
|
$this->config = $config;
|
2015-03-11 01:44:29 +03:00
|
|
|
$this->iniWrapper = $iniWrapper;
|
|
|
|
$this->l10n = $l10n;
|
|
|
|
$this->defaults = $defaults;
|
2015-07-30 01:04:30 +03:00
|
|
|
$this->logger = $logger;
|
|
|
|
$this->random = $random;
|
2017-11-24 12:27:58 +03:00
|
|
|
$this->installer = $installer;
|
2014-10-27 14:51:26 +03:00
|
|
|
}
|
|
|
|
|
2020-04-10 17:48:31 +03:00
|
|
|
protected static $dbSetupClasses = [
|
2017-03-19 23:52:54 +03:00
|
|
|
'mysql' => \OC\Setup\MySQL::class,
|
|
|
|
'pgsql' => \OC\Setup\PostgreSQL::class,
|
2019-10-14 12:32:05 +03:00
|
|
|
'oci' => \OC\Setup\OCI::class,
|
2017-03-19 23:52:54 +03:00
|
|
|
'sqlite' => \OC\Setup\Sqlite::class,
|
|
|
|
'sqlite3' => \OC\Setup\Sqlite::class,
|
|
|
|
];
|
2013-02-09 22:23:36 +04:00
|
|
|
|
2014-10-27 14:51:26 +03:00
|
|
|
/**
|
|
|
|
* Wrapper around the "class_exists" PHP function to be able to mock it
|
2019-10-14 12:32:05 +03:00
|
|
|
*
|
2014-10-27 14:51:26 +03:00
|
|
|
* @param string $name
|
|
|
|
* @return bool
|
|
|
|
*/
|
2015-07-30 13:32:22 +03:00
|
|
|
protected function class_exists($name) {
|
2014-10-27 14:51:26 +03:00
|
|
|
return class_exists($name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrapper around the "is_callable" PHP function to be able to mock it
|
2019-10-14 12:32:05 +03:00
|
|
|
*
|
2014-10-27 14:51:26 +03:00
|
|
|
* @param string $name
|
|
|
|
* @return bool
|
|
|
|
*/
|
2015-07-30 13:32:22 +03:00
|
|
|
protected function is_callable($name) {
|
2014-10-27 14:51:26 +03:00
|
|
|
return is_callable($name);
|
|
|
|
}
|
|
|
|
|
2015-07-30 13:32:22 +03:00
|
|
|
/**
|
|
|
|
* Wrapper around \PDO::getAvailableDrivers
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function getAvailableDbDriversForPdo() {
|
|
|
|
return \PDO::getAvailableDrivers();
|
|
|
|
}
|
|
|
|
|
2014-10-27 14:51:26 +03:00
|
|
|
/**
|
|
|
|
* Get the available and supported databases of this instance
|
|
|
|
*
|
2015-03-11 17:47:24 +03:00
|
|
|
* @param bool $allowAllDatabases
|
2014-10-27 14:51:26 +03:00
|
|
|
* @return array
|
2015-03-11 17:47:24 +03:00
|
|
|
* @throws Exception
|
2014-10-27 14:51:26 +03:00
|
|
|
*/
|
2015-03-11 17:47:24 +03:00
|
|
|
public function getSupportedDatabases($allowAllDatabases = false) {
|
2017-09-26 15:27:42 +03:00
|
|
|
$availableDatabases = [
|
2019-10-14 12:32:05 +03:00
|
|
|
'sqlite' => [
|
2017-01-25 01:14:20 +03:00
|
|
|
'type' => 'pdo',
|
|
|
|
'call' => 'sqlite',
|
2017-09-26 15:27:42 +03:00
|
|
|
'name' => 'SQLite',
|
|
|
|
],
|
|
|
|
'mysql' => [
|
2015-07-30 13:32:22 +03:00
|
|
|
'type' => 'pdo',
|
|
|
|
'call' => 'mysql',
|
2017-09-26 15:27:42 +03:00
|
|
|
'name' => 'MySQL/MariaDB',
|
|
|
|
],
|
|
|
|
'pgsql' => [
|
2016-07-12 15:37:03 +03:00
|
|
|
'type' => 'pdo',
|
|
|
|
'call' => 'pgsql',
|
2017-09-26 15:27:42 +03:00
|
|
|
'name' => 'PostgreSQL',
|
|
|
|
],
|
|
|
|
'oci' => [
|
2014-10-27 14:51:26 +03:00
|
|
|
'type' => 'function',
|
|
|
|
'call' => 'oci_connect',
|
2017-09-26 15:27:42 +03:00
|
|
|
'name' => 'Oracle',
|
|
|
|
],
|
|
|
|
];
|
2015-03-11 17:47:24 +03:00
|
|
|
if ($allowAllDatabases) {
|
|
|
|
$configuredDatabases = array_keys($availableDatabases);
|
|
|
|
} else {
|
2017-03-18 01:37:48 +03:00
|
|
|
$configuredDatabases = $this->config->getValue('supportedDatabases',
|
2017-09-26 15:27:42 +03:00
|
|
|
['sqlite', 'mysql', 'pgsql']);
|
2015-03-11 17:47:24 +03:00
|
|
|
}
|
2019-10-14 12:32:05 +03:00
|
|
|
if (!is_array($configuredDatabases)) {
|
2014-10-27 14:51:26 +03:00
|
|
|
throw new Exception('Supported databases are not properly configured.');
|
|
|
|
}
|
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
$supportedDatabases = [];
|
2014-10-27 14:51:26 +03:00
|
|
|
|
2019-10-14 12:32:05 +03:00
|
|
|
foreach ($configuredDatabases as $database) {
|
|
|
|
if (array_key_exists($database, $availableDatabases)) {
|
2014-10-27 14:51:26 +03:00
|
|
|
$working = false;
|
2015-07-30 13:32:22 +03:00
|
|
|
$type = $availableDatabases[$database]['type'];
|
|
|
|
$call = $availableDatabases[$database]['call'];
|
|
|
|
|
2017-01-25 01:14:20 +03:00
|
|
|
if ($type === 'function') {
|
2015-07-30 13:32:22 +03:00
|
|
|
$working = $this->is_callable($call);
|
2019-10-14 12:32:05 +03:00
|
|
|
} elseif ($type === 'pdo') {
|
2017-09-26 15:27:42 +03:00
|
|
|
$working = in_array($call, $this->getAvailableDbDriversForPdo(), true);
|
2014-10-27 14:51:26 +03:00
|
|
|
}
|
2019-10-14 12:32:05 +03:00
|
|
|
if ($working) {
|
2014-10-27 14:51:26 +03:00
|
|
|
$supportedDatabases[$database] = $availableDatabases[$database]['name'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $supportedDatabases;
|
|
|
|
}
|
|
|
|
|
2015-03-11 01:44:29 +03:00
|
|
|
/**
|
|
|
|
* Gathers system information like database type and does
|
|
|
|
* a few system checks.
|
|
|
|
*
|
|
|
|
* @return array of system info, including an "errors" value
|
|
|
|
* in case of errors/warnings
|
|
|
|
*/
|
2015-03-11 17:47:24 +03:00
|
|
|
public function getSystemInfo($allowAllDatabases = false) {
|
|
|
|
$databases = $this->getSupportedDatabases($allowAllDatabases);
|
2015-03-11 01:44:29 +03:00
|
|
|
|
2019-10-14 12:32:05 +03:00
|
|
|
$dataDir = $this->config->getValue('datadirectory', \OC::$SERVERROOT . '/data');
|
2015-03-11 01:44:29 +03:00
|
|
|
|
2017-09-26 15:27:42 +03:00
|
|
|
$errors = [];
|
2015-03-11 01:44:29 +03:00
|
|
|
|
|
|
|
// Create data directory to test whether the .htaccess works
|
|
|
|
// Notice that this is not necessarily the same data directory as the one
|
|
|
|
// that will effectively be used.
|
2019-10-14 12:32:05 +03:00
|
|
|
if (!file_exists($dataDir)) {
|
2016-01-26 20:50:41 +03:00
|
|
|
@mkdir($dataDir);
|
|
|
|
}
|
2015-03-11 01:44:29 +03:00
|
|
|
$htAccessWorking = true;
|
|
|
|
if (is_dir($dataDir) && is_writable($dataDir)) {
|
|
|
|
// Protect data directory here, so we can test if the protection is working
|
2017-09-26 15:27:42 +03:00
|
|
|
self::protectDataDirectory();
|
2015-03-11 01:44:29 +03:00
|
|
|
|
|
|
|
try {
|
2015-03-26 16:51:33 +03:00
|
|
|
$util = new \OC_Util();
|
|
|
|
$htAccessWorking = $util->isHtaccessWorking(\OC::$server->getConfig());
|
2015-03-11 01:44:29 +03:00
|
|
|
} catch (\OC\HintException $e) {
|
2017-09-26 15:27:42 +03:00
|
|
|
$errors[] = [
|
2015-03-11 01:44:29 +03:00
|
|
|
'error' => $e->getMessage(),
|
2017-09-26 15:27:42 +03:00
|
|
|
'hint' => $e->getHint(),
|
|
|
|
];
|
2015-03-11 01:44:29 +03:00
|
|
|
$htAccessWorking = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (\OC_Util::runningOnMac()) {
|
2017-09-26 15:27:42 +03:00
|
|
|
$errors[] = [
|
2015-03-11 01:44:29 +03:00
|
|
|
'error' => $this->l10n->t(
|
|
|
|
'Mac OS X is not supported and %s will not work properly on this platform. ' .
|
|
|
|
'Use it at your own risk! ',
|
2017-07-24 12:36:20 +03:00
|
|
|
[$this->defaults->getName()]
|
2015-03-11 01:44:29 +03:00
|
|
|
),
|
2017-09-26 15:27:42 +03:00
|
|
|
'hint' => $this->l10n->t('For the best results, please consider using a GNU/Linux server instead.'),
|
|
|
|
];
|
2015-03-11 01:44:29 +03:00
|
|
|
}
|
|
|
|
|
2019-10-14 12:32:05 +03:00
|
|
|
if ($this->iniWrapper->getString('open_basedir') !== '' && PHP_INT_SIZE === 4) {
|
2017-09-26 15:27:42 +03:00
|
|
|
$errors[] = [
|
2015-03-11 01:44:29 +03:00
|
|
|
'error' => $this->l10n->t(
|
|
|
|
'It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. ' .
|
|
|
|
'This will lead to problems with files over 4 GB and is highly discouraged.',
|
2017-07-24 12:36:20 +03:00
|
|
|
[$this->defaults->getName()]
|
2015-03-11 01:44:29 +03:00
|
|
|
),
|
2017-09-26 15:27:42 +03:00
|
|
|
'hint' => $this->l10n->t('Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP.'),
|
|
|
|
];
|
2015-03-11 01:44:29 +03:00
|
|
|
}
|
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
return [
|
2015-03-11 01:44:29 +03:00
|
|
|
'hasSQLite' => isset($databases['sqlite']),
|
|
|
|
'hasMySQL' => isset($databases['mysql']),
|
|
|
|
'hasPostgreSQL' => isset($databases['pgsql']),
|
|
|
|
'hasOracle' => isset($databases['oci']),
|
|
|
|
'databases' => $databases,
|
|
|
|
'directory' => $dataDir,
|
|
|
|
'htaccessWorking' => $htAccessWorking,
|
|
|
|
'errors' => $errors,
|
2020-03-26 11:30:18 +03:00
|
|
|
];
|
2015-03-11 01:44:29 +03:00
|
|
|
}
|
|
|
|
|
2014-10-27 14:51:26 +03:00
|
|
|
/**
|
|
|
|
* @param $options
|
|
|
|
* @return array
|
|
|
|
*/
|
2015-03-11 01:44:29 +03:00
|
|
|
public function install($options) {
|
|
|
|
$l = $this->l10n;
|
2013-02-09 22:23:36 +04:00
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
$error = [];
|
2014-10-27 21:53:12 +03:00
|
|
|
$dbType = $options['dbtype'];
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2019-10-14 12:32:05 +03:00
|
|
|
if (empty($options['adminlogin'])) {
|
2013-02-09 22:23:36 +04:00
|
|
|
$error[] = $l->t('Set an admin username.');
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
2019-10-14 12:32:05 +03:00
|
|
|
if (empty($options['adminpass'])) {
|
2013-02-09 22:23:36 +04:00
|
|
|
$error[] = $l->t('Set an admin password.');
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
2019-10-14 12:32:05 +03:00
|
|
|
if (empty($options['directory'])) {
|
|
|
|
$options['directory'] = \OC::$SERVERROOT . "/data";
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
2011-08-07 23:06:53 +04:00
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
if (!isset(self::$dbSetupClasses[$dbType])) {
|
|
|
|
$dbType = 'sqlite';
|
2012-10-27 00:46:12 +04:00
|
|
|
}
|
|
|
|
|
2014-09-18 16:15:52 +04:00
|
|
|
$username = htmlspecialchars_decode($options['adminlogin']);
|
|
|
|
$password = htmlspecialchars_decode($options['adminpass']);
|
2014-10-27 21:53:12 +03:00
|
|
|
$dataDir = htmlspecialchars_decode($options['directory']);
|
2014-09-18 16:15:52 +04:00
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
$class = self::$dbSetupClasses[$dbType];
|
2014-09-18 16:15:52 +04:00
|
|
|
/** @var \OC\Setup\AbstractDatabase $dbSetup */
|
2017-07-18 15:20:29 +03:00
|
|
|
$dbSetup = new $class($l, $this->config, $this->logger, $this->random);
|
2013-06-27 22:19:51 +04:00
|
|
|
$error = array_merge($error, $dbSetup->validate($options));
|
2012-10-27 00:46:12 +04:00
|
|
|
|
2014-09-18 16:15:52 +04:00
|
|
|
// validate the data directory
|
2017-09-26 15:27:42 +03:00
|
|
|
if ((!is_dir($dataDir) && !mkdir($dataDir)) || !is_writable($dataDir)) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$error[] = $l->t("Can't create or write into the data directory %s", [$dataDir]);
|
2014-09-18 16:15:52 +04:00
|
|
|
}
|
|
|
|
|
2017-09-26 15:27:42 +03:00
|
|
|
if (!empty($error)) {
|
2013-03-29 19:28:48 +04:00
|
|
|
return $error;
|
2012-10-27 00:46:12 +04:00
|
|
|
}
|
|
|
|
|
2015-02-10 15:02:48 +03:00
|
|
|
$request = \OC::$server->getRequest();
|
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//no errors, good
|
2019-10-14 12:32:05 +03:00
|
|
|
if (isset($options['trusted_domains'])
|
|
|
|
&& is_array($options['trusted_domains'])) {
|
2014-06-18 00:58:08 +04:00
|
|
|
$trustedDomains = $options['trusted_domains'];
|
|
|
|
} else {
|
2015-02-18 15:59:37 +03:00
|
|
|
$trustedDomains = [$request->getInsecureServerHost()];
|
2014-06-18 00:58:08 +04:00
|
|
|
}
|
2012-10-27 00:46:12 +04:00
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
//use sqlite3 when available, otherwise sqlite2 will be used.
|
2017-09-26 15:27:42 +03:00
|
|
|
if ($dbType === 'sqlite' && class_exists('SQLite3')) {
|
|
|
|
$dbType = 'sqlite3';
|
2011-04-17 02:45:05 +04:00
|
|
|
}
|
2013-02-15 01:54:48 +04:00
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//generate a random salt that is used to salt the local user passwords
|
2016-01-11 21:59:15 +03:00
|
|
|
$salt = $this->random->generate(30);
|
2014-08-26 21:02:40 +04:00
|
|
|
// generate a secret
|
2016-01-11 21:59:15 +03:00
|
|
|
$secret = $this->random->generate(48);
|
2011-05-07 00:50:18 +04:00
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//write the config file
|
2018-02-07 13:40:35 +03:00
|
|
|
$newConfigValues = [
|
2019-10-14 12:32:05 +03:00
|
|
|
'passwordsalt' => $salt,
|
|
|
|
'secret' => $secret,
|
|
|
|
'trusted_domains' => $trustedDomains,
|
|
|
|
'datadirectory' => $dataDir,
|
|
|
|
'dbtype' => $dbType,
|
|
|
|
'version' => implode('.', \OCP\Util::getVersion()),
|
2018-02-07 13:40:35 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
if ($this->config->getValue('overwrite.cli.url', null) === null) {
|
|
|
|
$newConfigValues['overwrite.cli.url'] = $request->getServerProtocol() . '://' . $request->getInsecureServerHost() . \OC::$WEBROOT;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->config->setValues($newConfigValues);
|
2014-08-26 21:02:40 +04:00
|
|
|
|
2020-02-05 13:00:37 +03:00
|
|
|
$dbSetup->initialize($options);
|
2013-03-29 19:28:48 +04:00
|
|
|
try {
|
2013-06-27 22:19:51 +04:00
|
|
|
$dbSetup->setupDatabase($username);
|
2014-11-26 14:30:07 +03:00
|
|
|
} catch (\OC\DatabaseSetupException $e) {
|
2017-09-26 15:27:42 +03:00
|
|
|
$error[] = [
|
2013-03-29 19:28:48 +04:00
|
|
|
'error' => $e->getMessage(),
|
2017-09-26 15:27:42 +03:00
|
|
|
'hint' => $e->getHint(),
|
|
|
|
];
|
|
|
|
return $error;
|
2013-03-29 19:28:48 +04:00
|
|
|
} catch (Exception $e) {
|
2017-09-26 15:27:42 +03:00
|
|
|
$error[] = [
|
2013-03-29 19:28:48 +04:00
|
|
|
'error' => 'Error while trying to create admin user: ' . $e->getMessage(),
|
2017-09-26 15:27:42 +03:00
|
|
|
'hint' => '',
|
|
|
|
];
|
|
|
|
return $error;
|
2013-01-11 02:43:08 +04:00
|
|
|
}
|
2020-02-05 13:00:37 +03:00
|
|
|
try {
|
|
|
|
// apply necessary migrations
|
|
|
|
$dbSetup->runMigrations();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$error[] = [
|
|
|
|
'error' => 'Error while trying to initialise the database: ' . $e->getMessage(),
|
|
|
|
'hint' => '',
|
|
|
|
];
|
|
|
|
return $error;
|
|
|
|
}
|
2012-10-27 00:46:12 +04:00
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//create the user and group
|
2019-10-14 12:32:05 +03:00
|
|
|
$user = null;
|
2013-03-29 19:28:48 +04:00
|
|
|
try {
|
2015-02-21 22:51:50 +03:00
|
|
|
$user = \OC::$server->getUserManager()->createUser($username, $password);
|
|
|
|
if (!$user) {
|
|
|
|
$error[] = "User <$username> could not be created.";
|
|
|
|
}
|
2019-10-14 12:32:05 +03:00
|
|
|
} catch (Exception $exception) {
|
2013-03-29 19:28:48 +04:00
|
|
|
$error[] = $exception->getMessage();
|
2012-10-27 00:46:12 +04:00
|
|
|
}
|
|
|
|
|
2017-09-26 15:27:42 +03:00
|
|
|
if (empty($error)) {
|
2015-02-21 22:51:50 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
$config->setAppValue('core', 'installedat', microtime(true));
|
|
|
|
$config->setAppValue('core', 'lastupdatedat', microtime(true));
|
2017-02-10 08:37:00 +03:00
|
|
|
$config->setAppValue('core', 'vendor', $this->getVendor());
|
2012-10-27 00:46:12 +04:00
|
|
|
|
2019-10-14 12:32:05 +03:00
|
|
|
$group = \OC::$server->getGroupManager()->createGroup('admin');
|
|
|
|
if ($group instanceof IGroup) {
|
2019-10-09 20:13:27 +03:00
|
|
|
$group->addUser($user);
|
|
|
|
}
|
2016-04-27 13:01:13 +03:00
|
|
|
|
2017-04-23 23:10:17 +03:00
|
|
|
// Install shipped apps and specified app bundles
|
2016-04-28 16:15:34 +03:00
|
|
|
Installer::installShippedApps();
|
2017-04-23 23:10:17 +03:00
|
|
|
$bundleFetcher = new BundleFetcher(\OC::$server->getL10N('lib'));
|
|
|
|
$defaultInstallationBundles = $bundleFetcher->getDefaultInstallationBundle();
|
2019-10-14 12:32:05 +03:00
|
|
|
foreach ($defaultInstallationBundles as $bundle) {
|
2017-04-23 23:10:17 +03:00
|
|
|
try {
|
2017-11-24 12:27:58 +03:00
|
|
|
$this->installer->installAppBundle($bundle);
|
2019-10-14 12:32:05 +03:00
|
|
|
} catch (Exception $e) {
|
|
|
|
}
|
2017-04-23 23:10:17 +03:00
|
|
|
}
|
2013-02-09 22:23:36 +04:00
|
|
|
|
2014-03-14 16:03:18 +04:00
|
|
|
// create empty file in data dir, so we can later find
|
|
|
|
// out that this is indeed an ownCloud data directory
|
2019-10-14 12:32:05 +03:00
|
|
|
file_put_contents($config->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data') . '/.ocdata', '');
|
2014-03-14 16:03:18 +04:00
|
|
|
|
2015-12-01 19:06:48 +03:00
|
|
|
// Update .htaccess files
|
2017-09-26 15:27:42 +03:00
|
|
|
self::updateHtaccess();
|
|
|
|
self::protectDataDirectory();
|
2012-06-28 23:37:29 +04:00
|
|
|
|
2016-04-25 17:40:41 +03:00
|
|
|
self::installBackgroundJobs();
|
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//and we are done
|
2015-02-21 22:51:50 +03:00
|
|
|
$config->setSystemValue('installed', true);
|
2016-09-23 18:21:07 +03:00
|
|
|
|
|
|
|
// Create a session token for the newly created user
|
|
|
|
// The token provider requires a working db, so it's not injected on setup
|
|
|
|
/* @var $userSession User\Session */
|
|
|
|
$userSession = \OC::$server->getUserSession();
|
2017-09-26 15:27:42 +03:00
|
|
|
$defaultTokenProvider = \OC::$server->query(DefaultTokenProvider::class);
|
2016-09-23 18:21:07 +03:00
|
|
|
$userSession->setTokenProvider($defaultTokenProvider);
|
|
|
|
$userSession->login($username, $password);
|
|
|
|
$userSession->createSessionToken($request, $userSession->getUser()->getUID(), $username, $password);
|
2018-09-24 22:49:43 +03:00
|
|
|
|
2019-12-03 21:31:31 +03:00
|
|
|
$session = $userSession->getSession();
|
|
|
|
$session->set('last-password-confirm', \OC::$server->query(ITimeFactory::class)->getTime());
|
|
|
|
|
2018-09-24 22:49:43 +03:00
|
|
|
// Set email for admin
|
|
|
|
if (!empty($options['adminemail'])) {
|
2018-09-25 22:53:04 +03:00
|
|
|
$config->setUserValue($user->getUID(), 'settings', 'email', $options['adminemail']);
|
2018-09-24 22:49:43 +03:00
|
|
|
}
|
2012-06-28 23:37:29 +04:00
|
|
|
}
|
2012-10-27 00:46:12 +04:00
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
return $error;
|
2013-02-10 16:07:59 +04:00
|
|
|
}
|
2013-02-12 04:05:47 +04:00
|
|
|
|
2016-04-25 17:40:41 +03:00
|
|
|
public static function installBackgroundJobs() {
|
2017-10-23 22:26:24 +03:00
|
|
|
$jobList = \OC::$server->getJobList();
|
|
|
|
$jobList->add(DefaultTokenCleanupJob::class);
|
|
|
|
$jobList->add(Rotate::class);
|
2018-05-08 15:47:50 +03:00
|
|
|
$jobList->add(BackgroundCleanupJob::class);
|
2016-04-25 17:40:41 +03:00
|
|
|
}
|
|
|
|
|
2015-01-08 14:05:54 +03:00
|
|
|
/**
|
|
|
|
* @return string Absolute path to htaccess
|
|
|
|
*/
|
|
|
|
private function pathToHtaccess() {
|
2019-10-14 12:32:05 +03:00
|
|
|
return \OC::$SERVERROOT . '/.htaccess';
|
2015-01-08 14:05:54 +03:00
|
|
|
}
|
|
|
|
|
2011-04-18 16:05:21 +04:00
|
|
|
/**
|
2018-09-10 23:33:35 +03:00
|
|
|
* Find webroot from config
|
|
|
|
*
|
|
|
|
* @param SystemConfig $config
|
2018-09-10 23:45:40 +03:00
|
|
|
* @return string
|
|
|
|
* @throws InvalidArgumentException when invalid value for overwrite.cli.url
|
2011-04-18 16:05:21 +04:00
|
|
|
*/
|
2018-09-13 13:24:06 +03:00
|
|
|
private static function findWebRoot(SystemConfig $config): string {
|
2016-04-20 23:00:44 +03:00
|
|
|
// For CLI read the value from overwrite.cli.url
|
2018-09-10 23:33:35 +03:00
|
|
|
if (\OC::$CLI) {
|
2017-03-18 01:37:48 +03:00
|
|
|
$webRoot = $config->getValue('overwrite.cli.url', '');
|
2018-09-10 23:33:35 +03:00
|
|
|
if ($webRoot === '') {
|
2018-09-10 23:45:40 +03:00
|
|
|
throw new InvalidArgumentException('overwrite.cli.url is empty');
|
2016-04-20 23:00:44 +03:00
|
|
|
}
|
2018-09-28 23:32:19 +03:00
|
|
|
if (!filter_var($webRoot, FILTER_VALIDATE_URL)) {
|
2018-09-10 23:45:40 +03:00
|
|
|
throw new InvalidArgumentException('invalid value for overwrite.cli.url');
|
2018-01-13 01:56:25 +03:00
|
|
|
}
|
2018-09-28 23:32:19 +03:00
|
|
|
$webRoot = rtrim(parse_url($webRoot, PHP_URL_PATH), '/');
|
2016-04-20 23:00:44 +03:00
|
|
|
} else {
|
|
|
|
$webRoot = !empty(\OC::$WEBROOT) ? \OC::$WEBROOT : '/';
|
2015-12-08 10:17:04 +03:00
|
|
|
}
|
2016-04-20 23:00:44 +03:00
|
|
|
|
2018-09-10 23:33:35 +03:00
|
|
|
return $webRoot;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Append the correct ErrorDocument path for Apache hosts
|
|
|
|
*
|
|
|
|
* @return bool True when success, False otherwise
|
|
|
|
* @throws \OCP\AppFramework\QueryException
|
|
|
|
*/
|
|
|
|
public static function updateHtaccess() {
|
|
|
|
$config = \OC::$server->getSystemConfig();
|
2018-09-10 23:45:40 +03:00
|
|
|
|
|
|
|
try {
|
|
|
|
$webRoot = self::findWebRoot($config);
|
|
|
|
} catch (InvalidArgumentException $e) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-09-10 23:33:35 +03:00
|
|
|
|
2017-11-24 12:27:58 +03:00
|
|
|
$setupHelper = new \OC\Setup(
|
|
|
|
$config,
|
|
|
|
\OC::$server->getIniWrapper(),
|
|
|
|
\OC::$server->getL10N('lib'),
|
|
|
|
\OC::$server->query(Defaults::class),
|
|
|
|
\OC::$server->getLogger(),
|
|
|
|
\OC::$server->getSecureRandom(),
|
|
|
|
\OC::$server->query(Installer::class)
|
|
|
|
);
|
2015-01-08 14:05:54 +03:00
|
|
|
|
2015-06-23 16:24:21 +03:00
|
|
|
$htaccessContent = file_get_contents($setupHelper->pathToHtaccess());
|
2016-01-21 01:05:37 +03:00
|
|
|
$content = "#### DO NOT CHANGE ANYTHING ABOVE THIS LINE ####\n";
|
2016-05-12 10:43:26 +03:00
|
|
|
$htaccessContent = explode($content, $htaccessContent, 2)[0];
|
2016-03-17 19:59:28 +03:00
|
|
|
|
2016-05-12 10:43:26 +03:00
|
|
|
//custom 403 error page
|
2018-09-10 23:33:35 +03:00
|
|
|
$content .= "\nErrorDocument 403 " . $webRoot . '/';
|
2015-02-11 03:10:03 +03:00
|
|
|
|
2016-05-12 10:43:26 +03:00
|
|
|
//custom 404 error page
|
2018-09-10 23:33:35 +03:00
|
|
|
$content .= "\nErrorDocument 404 " . $webRoot . '/';
|
2016-04-26 14:18:18 +03:00
|
|
|
|
2016-05-12 10:43:26 +03:00
|
|
|
// Add rewrite rules if the RewriteBase is configured
|
2017-03-18 01:37:48 +03:00
|
|
|
$rewriteBase = $config->getValue('htaccess.RewriteBase', '');
|
2019-10-14 12:32:05 +03:00
|
|
|
if ($rewriteBase !== '') {
|
2016-03-17 19:59:28 +03:00
|
|
|
$content .= "\n<IfModule mod_rewrite.c>";
|
2016-05-12 10:43:26 +03:00
|
|
|
$content .= "\n Options -MultiViews";
|
|
|
|
$content .= "\n RewriteRule ^core/js/oc.js$ index.php [PT,E=PATH_INFO:$1]";
|
|
|
|
$content .= "\n RewriteRule ^core/preview.png$ index.php [PT,E=PATH_INFO:$1]";
|
2020-02-12 12:36:59 +03:00
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !\\.(css|js|svg|gif|png|html|ttf|woff2?|ico|jpg|jpeg|map|webm|mp4)$";
|
2016-05-12 10:43:26 +03:00
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/favicon.ico$";
|
2017-05-09 01:02:37 +03:00
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/manifest.json$";
|
2016-05-12 10:43:26 +03:00
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/remote.php";
|
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/public.php";
|
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/cron.php";
|
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/core/ajax/update.php";
|
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/status.php";
|
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/ocs/v1.php";
|
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/ocs/v2.php";
|
2017-03-06 23:55:29 +03:00
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/robots.txt";
|
2016-05-12 10:43:26 +03:00
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/updater/";
|
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/ocs-provider/";
|
2019-02-17 19:18:21 +03:00
|
|
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/ocm-provider/";
|
2018-02-28 16:30:18 +03:00
|
|
|
$content .= "\n RewriteCond %{REQUEST_URI} !^/\\.well-known/(acme-challenge|pki-validation)/.*";
|
2016-03-17 19:59:28 +03:00
|
|
|
$content .= "\n RewriteRule . index.php [PT,E=PATH_INFO:$1]";
|
2016-05-12 10:43:26 +03:00
|
|
|
$content .= "\n RewriteBase " . $rewriteBase;
|
2016-03-17 19:59:28 +03:00
|
|
|
$content .= "\n <IfModule mod_env.c>";
|
|
|
|
$content .= "\n SetEnv front_controller_active true";
|
|
|
|
$content .= "\n <IfModule mod_dir.c>";
|
|
|
|
$content .= "\n DirectorySlash off";
|
|
|
|
$content .= "\n </IfModule>";
|
2016-05-12 10:43:26 +03:00
|
|
|
$content .= "\n </IfModule>";
|
|
|
|
$content .= "\n</IfModule>";
|
|
|
|
}
|
2016-03-17 19:59:28 +03:00
|
|
|
|
2016-05-12 10:43:26 +03:00
|
|
|
if ($content !== '') {
|
|
|
|
//suppress errors in case we don't have permissions for it
|
2019-10-14 12:32:05 +03:00
|
|
|
return (bool)@file_put_contents($setupHelper->pathToHtaccess(), $htaccessContent . $content . "\n");
|
2015-06-23 16:24:21 +03:00
|
|
|
}
|
2016-03-17 19:59:28 +03:00
|
|
|
|
2016-09-12 16:51:33 +03:00
|
|
|
return false;
|
2012-10-30 23:57:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function protectDataDirectory() {
|
2013-11-08 13:45:35 +04:00
|
|
|
//Require all denied
|
2019-10-14 12:32:05 +03:00
|
|
|
$now = date('Y-m-d H:i:s');
|
2017-02-24 14:13:26 +03:00
|
|
|
$content = "# Generated by Nextcloud on $now\n";
|
2019-08-19 16:50:48 +03:00
|
|
|
$content .= "# Section for Apache 2.4 to 2.6\n";
|
|
|
|
$content .= "<IfModule mod_authz_core.c>\n";
|
|
|
|
$content .= " Require all denied\n";
|
|
|
|
$content .= "</IfModule>\n";
|
|
|
|
$content .= "<IfModule mod_access_compat.c>\n";
|
2019-10-31 22:15:49 +03:00
|
|
|
$content .= " Order Allow,Deny\n";
|
2019-08-19 16:50:48 +03:00
|
|
|
$content .= " Deny from all\n";
|
|
|
|
$content .= " Satisfy All\n";
|
|
|
|
$content .= "</IfModule>\n\n";
|
|
|
|
$content .= "# Section for Apache 2.2\n";
|
|
|
|
$content .= "<IfModule !mod_authz_core.c>\n";
|
|
|
|
$content .= " <IfModule !mod_access_compat.c>\n";
|
|
|
|
$content .= " <IfModule mod_authz_host.c>\n";
|
2019-10-31 22:15:49 +03:00
|
|
|
$content .= " Order Allow,Deny\n";
|
2019-08-19 16:50:48 +03:00
|
|
|
$content .= " Deny from all\n";
|
2020-01-26 17:47:04 +03:00
|
|
|
$content .= " </IfModule>\n";
|
2019-08-19 16:50:48 +03:00
|
|
|
$content .= " Satisfy All\n";
|
|
|
|
$content .= " </IfModule>\n";
|
|
|
|
$content .= "</IfModule>\n\n";
|
|
|
|
$content .= "# Section for Apache 2.2 to 2.6\n";
|
|
|
|
$content .= "<IfModule mod_autoindex.c>\n";
|
|
|
|
$content .= " IndexIgnore *\n";
|
|
|
|
$content .= "</IfModule>";
|
2015-12-02 17:56:59 +03:00
|
|
|
|
|
|
|
$baseDir = \OC::$server->getConfig()->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data');
|
|
|
|
file_put_contents($baseDir . '/.htaccess', $content);
|
|
|
|
file_put_contents($baseDir . '/index.html', '');
|
2011-04-18 16:05:21 +04:00
|
|
|
}
|
2017-02-10 08:37:00 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return vendor from which this version was published
|
|
|
|
*
|
|
|
|
* @return string Get the vendor
|
|
|
|
*
|
|
|
|
* Copy of \OC\Updater::getVendor()
|
|
|
|
*/
|
|
|
|
private function getVendor() {
|
|
|
|
// this should really be a JSON file
|
|
|
|
require \OC::$SERVERROOT . '/version.php';
|
|
|
|
/** @var string $vendor */
|
2019-10-14 12:32:05 +03:00
|
|
|
return (string)$vendor;
|
2017-02-10 08:37:00 +03:00
|
|
|
}
|
2011-04-17 02:45:05 +04:00
|
|
|
}
|