2013-09-10 22:19:42 +04:00
|
|
|
<?php
|
2013-10-02 20:23:47 +04:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
|
2014-10-27 14:51:26 +03:00
|
|
|
* Copyright (c) 2014 Lukas Reschke <lukas@owncloud.com>
|
2013-10-02 20:23:47 +04:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2013-09-10 22:19:42 +04:00
|
|
|
|
|
|
|
namespace OC\Core\Setup;
|
|
|
|
|
2014-12-05 21:57:06 +03:00
|
|
|
use bantu\IniGetWrapper\IniGetWrapper;
|
2014-10-27 14:51:26 +03:00
|
|
|
use OCP\IConfig;
|
2014-12-05 21:57:06 +03:00
|
|
|
use OCP\IL10N;
|
2014-10-27 14:51:26 +03:00
|
|
|
|
2013-09-10 22:19:42 +04:00
|
|
|
class Controller {
|
2014-11-19 01:47:00 +03:00
|
|
|
/**
|
|
|
|
* @var \OCP\IConfig
|
|
|
|
*/
|
2014-10-27 14:51:26 +03:00
|
|
|
protected $config;
|
2014-12-05 21:57:06 +03:00
|
|
|
/** @var IniGetWrapper */
|
|
|
|
protected $iniWrapper;
|
|
|
|
/** @var IL10N */
|
|
|
|
protected $l10n;
|
|
|
|
/** @var \OC_Defaults */
|
|
|
|
protected $defaults;
|
2014-10-27 14:51:26 +03:00
|
|
|
|
2014-11-19 01:47:00 +03:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $autoConfigFile;
|
|
|
|
|
2014-10-27 14:51:26 +03:00
|
|
|
/**
|
|
|
|
* @param IConfig $config
|
2014-12-05 21:57:06 +03:00
|
|
|
* @param IniGetWrapper $iniWrapper
|
|
|
|
* @param IL10N $l10n
|
|
|
|
* @param \OC_Defaults $defaults
|
2014-10-27 14:51:26 +03:00
|
|
|
*/
|
2014-12-05 21:57:06 +03:00
|
|
|
function __construct(IConfig $config,
|
|
|
|
IniGetWrapper $iniWrapper,
|
|
|
|
IL10N $l10n,
|
|
|
|
\OC_Defaults $defaults) {
|
2014-11-19 01:47:00 +03:00
|
|
|
$this->autoConfigFile = \OC::$SERVERROOT.'/config/autoconfig.php';
|
2014-10-27 14:51:26 +03:00
|
|
|
$this->config = $config;
|
2014-12-05 21:57:06 +03:00
|
|
|
$this->iniWrapper = $iniWrapper;
|
|
|
|
$this->l10n = $l10n;
|
|
|
|
$this->defaults = $defaults;
|
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);
|
|
|
|
$opts = $this->getSystemInfo();
|
|
|
|
|
|
|
|
if(isset($post['install']) AND $post['install']=='true') {
|
|
|
|
// We have to launch the installation process :
|
|
|
|
$e = \OC_Setup::install($post);
|
|
|
|
$errors = array('errors' => $e);
|
|
|
|
|
|
|
|
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 {
|
2013-09-10 22:19:42 +04:00
|
|
|
$this->finishSetup();
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function display($post) {
|
2014-01-31 19:57:49 +04:00
|
|
|
$defaults = array(
|
|
|
|
'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' => '',
|
2014-01-31 19:57:49 +04:00
|
|
|
);
|
|
|
|
$parameters = array_merge($defaults, $post);
|
2014-01-31 19:43:12 +04:00
|
|
|
|
2014-11-06 16:47:58 +03:00
|
|
|
\OC_Util::addVendorScript('strengthify/jquery.strengthify');
|
|
|
|
\OC_Util::addVendorStyle('strengthify/strengthify');
|
2013-09-10 22:19:42 +04:00
|
|
|
\OC_Util::addScript('setup');
|
2014-01-31 19:57:49 +04:00
|
|
|
\OC_Template::printGuestPage('', 'installation', $parameters);
|
2013-09-10 22:19:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function finishSetup() {
|
2014-11-19 01:47:00 +03:00
|
|
|
if( file_exists( $this->autoConfigFile )) {
|
|
|
|
unlink($this->autoConfigFile);
|
|
|
|
}
|
2014-09-22 21:43:55 +04:00
|
|
|
\OC_Util::redirectToDefaultPage();
|
2013-09-10 22:19:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function loadAutoConfig($post) {
|
2014-11-19 01:47:00 +03:00
|
|
|
if( file_exists($this->autoConfigFile)) {
|
2013-09-10 22:19:42 +04:00
|
|
|
\OC_Log::write('core', 'Autoconfig file found, setting up owncloud...', \OC_Log::INFO);
|
2014-02-05 21:23:40 +04:00
|
|
|
$AUTOCONFIG = array();
|
2014-11-19 01:47:00 +03:00
|
|
|
include $this->autoConfigFile;
|
2013-09-10 22:19:42 +04:00
|
|
|
$post = array_merge ($post, $AUTOCONFIG);
|
|
|
|
}
|
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']);
|
|
|
|
|
2014-01-31 19:43:12 +04:00
|
|
|
if ($dbIsSet AND $directoryIsSet AND $adminAccountIsSet) {
|
|
|
|
$post['install'] = 'true';
|
|
|
|
}
|
|
|
|
$post['dbIsSet'] = $dbIsSet;
|
|
|
|
$post['directoryIsSet'] = $directoryIsSet;
|
|
|
|
|
2013-09-10 22:19:42 +04:00
|
|
|
return $post;
|
|
|
|
}
|
|
|
|
|
2014-03-20 15:31:36 +04: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
|
|
|
|
*/
|
2013-09-10 22:19:42 +04:00
|
|
|
public function getSystemInfo() {
|
2014-10-27 14:51:26 +03:00
|
|
|
$setup = new \OC_Setup($this->config);
|
|
|
|
$databases = $setup->getSupportedDatabases();
|
|
|
|
|
2014-10-27 21:53:12 +03:00
|
|
|
$dataDir = $this->config->getSystemValue('datadirectory', \OC::$SERVERROOT.'/data');
|
2013-09-10 22:19:42 +04:00
|
|
|
$vulnerableToNullByte = false;
|
|
|
|
if(@file_exists(__FILE__."\0Nullbyte")) { // Check if the used PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)
|
|
|
|
$vulnerableToNullByte = true;
|
|
|
|
}
|
|
|
|
|
2013-09-11 00:05:20 +04:00
|
|
|
$errors = array();
|
|
|
|
|
2014-09-26 19:25:28 +04: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.
|
2014-10-27 21:53:12 +03:00
|
|
|
@mkdir($dataDir);
|
|
|
|
$htAccessWorking = true;
|
|
|
|
if (is_dir($dataDir) && is_writable($dataDir)) {
|
2014-09-18 16:23:38 +04:00
|
|
|
// Protect data directory here, so we can test if the protection is working
|
|
|
|
\OC_Setup::protectDataDirectory();
|
2014-09-26 19:25:28 +04:00
|
|
|
|
2014-09-18 16:23:38 +04:00
|
|
|
try {
|
2014-10-27 21:53:12 +03:00
|
|
|
$htAccessWorking = \OC_Util::isHtaccessWorking();
|
2014-09-18 16:23:38 +04:00
|
|
|
} catch (\OC\HintException $e) {
|
|
|
|
$errors[] = array(
|
|
|
|
'error' => $e->getMessage(),
|
|
|
|
'hint' => $e->getHint()
|
|
|
|
);
|
2014-10-27 21:53:12 +03:00
|
|
|
$htAccessWorking = false;
|
2014-09-18 16:23:38 +04:00
|
|
|
}
|
2013-09-11 00:05:20 +04:00
|
|
|
}
|
2013-09-10 22:19:42 +04:00
|
|
|
|
2014-12-05 21:57:06 +03:00
|
|
|
|
2014-03-20 15:31:36 +04:00
|
|
|
if (\OC_Util::runningOnMac()) {
|
|
|
|
$errors[] = array(
|
2014-12-05 21:57:06 +03:00
|
|
|
'error' => $this->l10n->t(
|
2014-03-20 15:31:36 +04:00
|
|
|
'Mac OS X is not supported and %s will not work properly on this platform. ' .
|
|
|
|
'Use it at your own risk! ',
|
2014-12-05 21:57:06 +03:00
|
|
|
$this->defaults->getName()
|
|
|
|
),
|
|
|
|
'hint' => $this->l10n->t('For the best results, please consider using a GNU/Linux server instead.')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($this->iniWrapper->getString('open_basedir') !== '' && PHP_INT_SIZE === 4) {
|
|
|
|
$errors[] = array(
|
|
|
|
'error' => $this->l10n->t(
|
2015-01-11 15:36:19 +03:00
|
|
|
'It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. ' .
|
2014-12-05 21:57:06 +03:00
|
|
|
'This will lead to problems with files over 4GB and is highly discouraged.',
|
|
|
|
$this->defaults->getName()
|
|
|
|
),
|
2015-01-11 15:36:19 +03:00
|
|
|
'hint' => $this->l10n->t('Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP.')
|
2014-12-05 21:57:06 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
if(!function_exists('curl_init') && PHP_INT_SIZE === 4) {
|
|
|
|
$errors[] = array(
|
|
|
|
'error' => $this->l10n->t(
|
2015-01-11 15:36:19 +03:00
|
|
|
'It seems that this %s instance is running on a 32-bit PHP environment and cURL is not installed. ' .
|
2014-12-05 21:57:06 +03:00
|
|
|
'This will lead to problems with files over 4GB and is highly discouraged.',
|
|
|
|
$this->defaults->getName()
|
2014-03-20 15:31:36 +04:00
|
|
|
),
|
2014-12-05 21:57:06 +03:00
|
|
|
'hint' => $this->l10n->t('Please install the cURL extension and restart your webserver.')
|
2014-03-20 15:31:36 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-09-10 22:19:42 +04:00
|
|
|
return array(
|
2014-10-27 14:51:26 +03:00
|
|
|
'hasSQLite' => isset($databases['sqlite']),
|
|
|
|
'hasMySQL' => isset($databases['mysql']),
|
2014-11-08 16:27:20 +03:00
|
|
|
'hasPostgreSQL' => isset($databases['pgsql']),
|
2014-10-27 14:51:26 +03:00
|
|
|
'hasOracle' => isset($databases['oci']),
|
|
|
|
'hasMSSQL' => isset($databases['mssql']),
|
2014-01-31 20:31:19 +04:00
|
|
|
'databases' => $databases,
|
2014-10-27 21:53:12 +03:00
|
|
|
'directory' => $dataDir,
|
|
|
|
'htaccessWorking' => $htAccessWorking,
|
2013-09-10 22:19:42 +04:00
|
|
|
'vulnerableToNullByte' => $vulnerableToNullByte,
|
2013-09-11 00:05:20 +04:00
|
|
|
'errors' => $errors,
|
2013-09-10 22:19:42 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|