2011-04-17 02:45:05 +04:00
|
|
|
<?php
|
|
|
|
|
2013-03-03 15:06:00 +04:00
|
|
|
class DatabaseSetupException extends \OC\HintException
|
2013-01-14 23:57:40 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
class OC_Setup {
|
2013-06-27 22:19:51 +04:00
|
|
|
static $dbSetupClasses = array(
|
2013-04-03 19:52:18 +04:00
|
|
|
'mysql' => '\OC\Setup\MySQL',
|
|
|
|
'pgsql' => '\OC\Setup\PostgreSQL',
|
|
|
|
'oci' => '\OC\Setup\OCI',
|
|
|
|
'mssql' => '\OC\Setup\MSSQL',
|
|
|
|
'sqlite' => '\OC\Setup\Sqlite',
|
|
|
|
'sqlite3' => '\OC\Setup\Sqlite',
|
|
|
|
);
|
2013-02-09 22:23:36 +04:00
|
|
|
|
|
|
|
public static function getTrans(){
|
|
|
|
return OC_L10N::get('lib');
|
|
|
|
}
|
|
|
|
|
2011-05-18 00:34:31 +04:00
|
|
|
public static function install($options) {
|
2013-02-09 22:23:36 +04:00
|
|
|
$l = self::getTrans();
|
|
|
|
|
2011-05-18 00:34:31 +04:00
|
|
|
$error = array();
|
|
|
|
$dbtype = $options['dbtype'];
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2011-05-18 00:34:31 +04: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
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
if(empty($options['directory'])) {
|
2013-04-13 17:56:01 +04:00
|
|
|
$options['directory'] = OC::$SERVERROOT."/data";
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
2011-08-07 23:06:53 +04:00
|
|
|
|
2013-06-27 22:19:51 +04:00
|
|
|
if (!isset(self::$dbSetupClasses[$dbtype])) {
|
2013-04-03 19:52:18 +04:00
|
|
|
$dbtype = 'sqlite';
|
2012-10-27 00:46:12 +04:00
|
|
|
}
|
|
|
|
|
2013-06-27 22:19:51 +04:00
|
|
|
$class = self::$dbSetupClasses[$dbtype];
|
|
|
|
$dbSetup = new $class(self::getTrans(), 'db_structure.xml');
|
|
|
|
$error = array_merge($error, $dbSetup->validate($options));
|
2012-10-27 00:46:12 +04:00
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
if(count($error) != 0) {
|
|
|
|
return $error;
|
2012-10-27 00:46:12 +04:00
|
|
|
}
|
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//no errors, good
|
|
|
|
$username = htmlspecialchars_decode($options['adminlogin']);
|
|
|
|
$password = htmlspecialchars_decode($options['adminpass']);
|
|
|
|
$datadir = htmlspecialchars_decode($options['directory']);
|
2012-10-27 00:46:12 +04:00
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
if (OC_Util::runningOnWindows()) {
|
|
|
|
$datadir = rtrim(realpath($datadir), '\\');
|
2012-10-27 00:46:12 +04:00
|
|
|
}
|
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//use sqlite3 when available, otherise sqlite2 will be used.
|
|
|
|
if($dbtype=='sqlite' and 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
|
2013-08-15 10:49:19 +04:00
|
|
|
$salt = OC_Util::generateRandomBytes(30);
|
2013-03-29 19:28:48 +04:00
|
|
|
OC_Config::setValue('passwordsalt', $salt);
|
2011-05-07 00:50:18 +04:00
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//write the config file
|
2014-02-18 19:26:37 +04:00
|
|
|
OC_Config::setValue('trusted_domains', array(OC_Request::serverHost()));
|
2013-03-29 19:28:48 +04:00
|
|
|
OC_Config::setValue('datadirectory', $datadir);
|
|
|
|
OC_Config::setValue('dbtype', $dbtype);
|
|
|
|
OC_Config::setValue('version', implode('.', OC_Util::getVersion()));
|
|
|
|
try {
|
2013-06-27 22:19:51 +04:00
|
|
|
$dbSetup->initialize($options);
|
|
|
|
$dbSetup->setupDatabase($username);
|
2013-03-29 19:28:48 +04:00
|
|
|
} catch (DatabaseSetupException $e) {
|
|
|
|
$error[] = array(
|
|
|
|
'error' => $e->getMessage(),
|
|
|
|
'hint' => $e->getHint()
|
|
|
|
);
|
|
|
|
return($error);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$error[] = array(
|
|
|
|
'error' => 'Error while trying to create admin user: ' . $e->getMessage(),
|
|
|
|
'hint' => ''
|
|
|
|
);
|
|
|
|
return($error);
|
2013-01-11 02:43:08 +04:00
|
|
|
}
|
2012-10-27 00:46:12 +04:00
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//create the user and group
|
|
|
|
try {
|
|
|
|
OC_User::createUser($username, $password);
|
2012-10-27 00:46:12 +04:00
|
|
|
}
|
2013-03-29 19:28:48 +04:00
|
|
|
catch(Exception $exception) {
|
|
|
|
$error[] = $exception->getMessage();
|
2012-10-27 00:46:12 +04:00
|
|
|
}
|
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
if(count($error) == 0) {
|
2014-02-13 19:28:49 +04:00
|
|
|
$appConfig = \OC::$server->getAppConfig();
|
|
|
|
$appConfig->setValue('core', 'installedat', microtime(true));
|
|
|
|
$appConfig->setValue('core', 'lastupdatedat', microtime(true));
|
2012-10-27 00:46:12 +04:00
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
OC_Group::createGroup('admin');
|
|
|
|
OC_Group::addToGroup($username, 'admin');
|
|
|
|
OC_User::login($username, $password);
|
2012-10-27 00:46:12 +04:00
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//guess what this does
|
|
|
|
OC_Installer::installShippedApps();
|
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
|
|
|
|
file_put_contents(OC_Config::getValue('datadirectory', OC::$SERVERROOT.'/data').'/.ocdata', '');
|
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//create htaccess files for apache hosts
|
|
|
|
if (isset($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache')) {
|
|
|
|
self::createHtaccess();
|
2012-06-28 23:37:29 +04:00
|
|
|
}
|
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
//and we are done
|
|
|
|
OC_Config::setValue('installed', true);
|
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
|
|
|
|
2011-04-18 16:05:21 +04:00
|
|
|
/**
|
|
|
|
* create .htaccess files for apache hosts
|
|
|
|
*/
|
2011-05-18 00:34:31 +04:00
|
|
|
private static function createHtaccess() {
|
2012-11-09 16:30:07 +04:00
|
|
|
$content = "<IfModule mod_fcgid.c>\n";
|
|
|
|
$content.= "<IfModule mod_setenvif.c>\n";
|
|
|
|
$content.= "<IfModule mod_headers.c>\n";
|
|
|
|
$content.= "SetEnvIfNoCase ^Authorization$ \"(.+)\" XAUTHORIZATION=$1\n";
|
|
|
|
$content.= "RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION\n";
|
|
|
|
$content.= "</IfModule>\n";
|
|
|
|
$content.= "</IfModule>\n";
|
|
|
|
$content.= "</IfModule>\n";
|
|
|
|
$content.= "ErrorDocument 403 ".OC::$WEBROOT."/core/templates/403.php\n";//custom 403 error page
|
2012-05-11 19:06:04 +04:00
|
|
|
$content.= "ErrorDocument 404 ".OC::$WEBROOT."/core/templates/404.php\n";//custom 404 error page
|
2011-08-27 12:19:45 +04:00
|
|
|
$content.= "<IfModule mod_php5.c>\n";
|
|
|
|
$content.= "php_value upload_max_filesize 512M\n";//upload limit
|
|
|
|
$content.= "php_value post_max_size 512M\n";
|
2012-04-15 17:49:11 +04:00
|
|
|
$content.= "php_value memory_limit 512M\n";
|
2013-05-12 12:56:32 +04:00
|
|
|
$content.= "php_value mbstring.func_overload 0\n";
|
2012-04-15 17:49:11 +04:00
|
|
|
$content.= "<IfModule env_module>\n";
|
|
|
|
$content.= " SetEnv htaccessWorking true\n";
|
|
|
|
$content.= "</IfModule>\n";
|
2011-08-27 12:19:45 +04:00
|
|
|
$content.= "</IfModule>\n";
|
2012-01-09 01:18:21 +04:00
|
|
|
$content.= "<IfModule mod_rewrite.c>\n";
|
2011-10-13 18:31:01 +04:00
|
|
|
$content.= "RewriteEngine on\n";
|
2012-08-29 22:34:44 +04:00
|
|
|
$content.= "RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]\n";
|
2012-05-11 19:06:04 +04:00
|
|
|
$content.= "RewriteRule ^.well-known/host-meta /public.php?service=host-meta [QSA,L]\n";
|
|
|
|
$content.= "RewriteRule ^.well-known/carddav /remote.php/carddav/ [R]\n";
|
|
|
|
$content.= "RewriteRule ^.well-known/caldav /remote.php/caldav/ [R]\n";
|
2014-02-28 14:14:18 +04:00
|
|
|
$content.= "RewriteRule ^apps/([^/]*)/(.*\.(php))$ index.php?app=$1&getfile=$2 [QSA,L]\n";
|
2012-05-11 19:06:04 +04:00
|
|
|
$content.= "RewriteRule ^remote/(.*) remote.php [QSA,L]\n";
|
2011-10-13 18:31:01 +04:00
|
|
|
$content.= "</IfModule>\n";
|
2012-10-28 19:00:31 +04:00
|
|
|
$content.= "<IfModule mod_mime.c>\n";
|
|
|
|
$content.= "AddType image/svg+xml svg svgz\n";
|
|
|
|
$content.= "AddEncoding gzip svgz\n";
|
|
|
|
$content.= "</IfModule>\n";
|
2013-04-24 17:11:58 +04:00
|
|
|
$content.= "<IfModule dir_module>\n";
|
|
|
|
$content.= "DirectoryIndex index.php index.html\n";
|
|
|
|
$content.= "</IfModule>\n";
|
|
|
|
$content.= "AddDefaultCharset utf-8\n";
|
2011-06-24 01:41:53 +04:00
|
|
|
$content.= "Options -Indexes\n";
|
2014-01-08 10:56:08 +04:00
|
|
|
$content.= "<IfModule pagespeed_module>\n";
|
|
|
|
$content.= "ModPagespeed Off\n";
|
|
|
|
$content.= "</IfModule>\n";
|
2011-09-18 21:37:54 +04:00
|
|
|
@file_put_contents(OC::$SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it
|
2011-05-07 00:50:18 +04:00
|
|
|
|
2012-10-30 23:57:19 +04:00
|
|
|
self::protectDataDirectory();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function protectDataDirectory() {
|
2013-11-08 13:45:35 +04:00
|
|
|
//Require all denied
|
|
|
|
$now = date('Y-m-d H:i:s');
|
|
|
|
$content = "# Generated by ownCloud on $now\n";
|
2013-11-08 20:29:14 +04:00
|
|
|
$content.= "# line below if for Apache 2.4\n";
|
|
|
|
$content.= "<ifModule mod_authz_core>\n";
|
|
|
|
$content.= "Require all denied\n";
|
|
|
|
$content.= "</ifModule>\n\n";
|
|
|
|
$content.= "# line below if for Apache 2.2\n";
|
|
|
|
$content.= "<ifModule !mod_authz_core>\n";
|
|
|
|
$content.= "deny from all\n";
|
|
|
|
$content.= "</ifModule>\n\n";
|
2013-11-08 13:45:35 +04:00
|
|
|
$content.= "# section for Apache 2.2 and 2.4\n";
|
|
|
|
$content.= "IndexIgnore *\n";
|
2011-09-18 21:37:54 +04:00
|
|
|
file_put_contents(OC_Config::getValue('datadirectory', OC::$SERVERROOT.'/data').'/.htaccess', $content);
|
|
|
|
file_put_contents(OC_Config::getValue('datadirectory', OC::$SERVERROOT.'/data').'/index.html', '');
|
2011-04-18 16:05:21 +04:00
|
|
|
}
|
2013-02-06 20:54:20 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Post installation checks
|
|
|
|
*/
|
|
|
|
public static function postSetupCheck($params) {
|
|
|
|
// setup was successful -> webdav testing now
|
2013-02-09 22:23:36 +04:00
|
|
|
$l = self::getTrans();
|
2013-02-06 20:54:20 +04:00
|
|
|
if (OC_Util::isWebDAVWorking()) {
|
|
|
|
header("Location: ".OC::$WEBROOT.'/');
|
|
|
|
} else {
|
|
|
|
|
2013-02-15 19:04:18 +04:00
|
|
|
$error = $l->t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.');
|
2013-02-11 20:44:02 +04:00
|
|
|
$hint = $l->t('Please double check the <a href=\'%s\'>installation guides</a>.',
|
2013-11-02 22:11:46 +04:00
|
|
|
\OC_Helper::linkToDocs('admin-install'));
|
2013-02-06 20:54:20 +04:00
|
|
|
|
2013-07-22 00:30:32 +04:00
|
|
|
OC_Template::printErrorPage($error, $hint);
|
2013-02-06 20:54:20 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2011-04-17 02:45:05 +04:00
|
|
|
}
|