nextcloud/lib/setup.php

201 lines
6.7 KiB
PHP
Raw Normal View History

2011-04-17 02:45:05 +04:00
<?php
2011-06-14 01:18:39 +04:00
$hasSQLite = (is_callable('sqlite_open') or class_exists('SQLite3'));
$hasMySQL = is_callable('mysql_connect');
2011-07-29 23:36:03 +04:00
$datadir = OC_Config::getValue('datadir', $SERVERROOT.'/data');
$opts = array(
'hasSQLite' => $hasSQLite,
'hasMySQL' => $hasMySQL,
'directory' => $datadir,
'errors' => array(),
);
if(isset($_POST['install']) AND $_POST['install']=='true') {
// We have to launch the installation process :
2011-07-29 23:36:03 +04:00
$e = OC_Setup::install($_POST);
$errors = array('errors' => $e);
if(count($e) > 0) {
2011-07-29 23:36:03 +04:00
//OC_Template::printGuestPage("", "error", array("errors" => $errors));
$options = array_merge($_POST, $opts, $errors);
2011-07-29 23:36:03 +04:00
OC_Template::printGuestPage("", "installation", $options);
}
else {
2011-06-20 23:09:34 +04:00
header("Location: ".$WEBROOT.'/');
2011-04-17 02:45:05 +04:00
exit();
}
}
else {
2011-07-29 23:36:03 +04:00
OC_Template::printGuestPage("", "installation", $opts);
}
2011-04-17 02:45:05 +04:00
2011-07-29 23:36:03 +04:00
class OC_Setup {
public static function install($options) {
$error = array();
$dbtype = $options['dbtype'];
if(empty($options['adminlogin'])) {
$error[] = 'STEP 1 : admin login is not set.';
}
if(empty($options['adminpass'])) {
$error[] = 'STEP 1 : admin password is not set.';
}
if(empty($options['directory'])) {
$error[] = 'STEP 2 : data directory path is not set.';
}
if($dbtype=='mysql') { //mysql needs more config options
if(empty($options['dbuser'])) {
$error[] = 'STEP 3 : MySQL database user is not set.';
}
if(empty($options['dbpass'])) {
$error[] = 'STEP 3 : MySQL database password is not set.';
}
if(empty($options['dbname'])) {
$error[] = 'STEP 3 : MySQL database name is not set.';
}
if(empty($options['dbhost'])) {
$error[] = 'STEP 3 : MySQL database host is not set.';
}
if(!isset($options['dbtableprefix'])) {
$error[] = 'STEP 3 : MySQL database table prefix is not set.';
}
2011-04-17 02:45:05 +04:00
}
if(count($error) == 0) { //no errors, good
$username = htmlspecialchars_decode($options['adminlogin']);
$password = htmlspecialchars_decode($options['adminpass']);
$datadir = htmlspecialchars_decode($options['directory']);
2011-06-14 01:18:39 +04:00
//use sqlite3 when available, otherise sqlite2 will be used.
if($dbtype=='sqlite' and class_exists('SQLite3')){
2011-06-14 01:18:39 +04:00
$dbtype='sqlite3';
}
2011-05-07 00:50:18 +04:00
2011-04-17 02:45:05 +04:00
//write the config file
2011-07-29 23:36:03 +04:00
OC_Config::setValue('datadirectory', $datadir);
OC_Config::setValue('dbtype', $dbtype);
OC_Config::setValue('version',implode('.',OC_Util::getVersion()));
if($dbtype == 'mysql') {
$dbuser = $options['dbuser'];
$dbpass = $options['dbpass'];
$dbname = $options['dbname'];
$dbhost = $options['dbhost'];
$dbtableprefix = $options['dbtableprefix'];
2011-07-29 23:36:03 +04:00
OC_Config::setValue('dbname', $dbname);
OC_Config::setValue('dbhost', $dbhost);
OC_Config::setValue('dbtableprefix', $dbtableprefix);
2011-05-07 00:50:18 +04:00
2011-04-17 02:45:05 +04:00
//check if the database user has admin right
$connection = @mysql_connect($dbhost, $dbuser, $dbpass);
2011-04-17 02:45:05 +04:00
if(!$connection) {
$error[] = array(
'error' => 'mysql username and/or password not valid',
'hint' => 'you need to enter either an existing account, or the administrative account if you wish to create a new user for ownCloud'
);
}
else {
$query="SELECT user FROM mysql.user WHERE user='$dbuser'"; //this should be enough to check for admin rights in mysql
if(mysql_query($query, $connection)) {
2011-04-17 02:45:05 +04:00
//use the admin login data for the new database user
//add prefix to the mysql user name to prevent collissions
$dbusername=substr('oc_mysql_'.$username,0,16);
//hash the password so we don't need to store the admin config in the config file
$dbpassword=md5(time().$password);
self::createDBUser($dbusername, $dbpassword, $connection);
2011-07-29 23:36:03 +04:00
OC_Config::setValue('dbuser', $dbusername);
OC_Config::setValue('dbpassword', $dbpassword);
2011-05-07 00:50:18 +04:00
2011-04-17 13:09:42 +04:00
//create the database
self::createDatabase($dbname, $dbusername, $connection);
}
else {
2011-07-29 23:36:03 +04:00
OC_Config::setValue('dbuser', $dbuser);
OC_Config::setValue('dbpassword', $dbpass);
2011-05-07 00:50:18 +04:00
2011-04-17 02:45:05 +04:00
//create the database
self::createDatabase($dbname, $dbuser, $connection);
2011-04-17 02:45:05 +04:00
}
//fill the database if needed
$query="SELECT * FROM $dbname.{$dbtableprefix}users";
$result = mysql_query($query,$connection);
if(!$result) {
OC_DB::createDbFromStructure('db_structure.xml');
}
mysql_close($connection);
2011-04-17 02:45:05 +04:00
}
}
else {
//delete the old sqlite database first, might cause infinte loops otherwise
if(file_exists("$datadir/owncloud.db")){
unlink("$datadir/owncloud.db");
}
2011-04-17 13:09:42 +04:00
//in case of sqlite, we can always fill the database
OC_DB::createDbFromStructure('db_structure.xml');
2011-04-17 02:45:05 +04:00
}
if(count($error) == 0) {
//create the user and group
2011-07-29 23:36:03 +04:00
OC_User::createUser($username, $password);
OC_Group::createGroup('admin');
OC_Group::addToGroup($username, 'admin');
2011-05-07 00:50:18 +04:00
2011-06-20 00:42:33 +04:00
//guess what this does
2011-07-29 23:36:03 +04:00
OC_Installer::installShippedApps(true);
//create htaccess files for apache hosts
self::createHtaccess(); //TODO detect if apache is used
2011-05-07 00:50:18 +04:00
//and we are done
2011-07-29 23:36:03 +04:00
OC_Config::setValue('installed', true);
}
2011-04-17 02:45:05 +04:00
}
2011-04-17 02:45:05 +04:00
return $error;
}
2011-05-07 00:50:18 +04:00
public static function createDatabase($name,$user,$connection) {
2011-04-17 02:45:05 +04:00
//we cant user OC_BD functions here because we need to connect as the administrative user.
$query = "CREATE DATABASE IF NOT EXISTS `$name`";
$result = mysql_query($query, $connection);
if(!$result) {
2011-04-17 02:45:05 +04:00
$entry='DB Error: "'.mysql_error($connection).'"<br />';
$entry.='Offending command was: '.$query.'<br />';
echo($entry);
}
$query="GRANT ALL PRIVILEGES ON `$name` . * TO '$user'";
$result = mysql_query($query, $connection); //this query will fail if there aren't the right permissons, ignore the error
2011-04-17 02:45:05 +04:00
}
2011-05-07 00:50:18 +04:00
private static function createDBUser($name,$password,$connection) {
// we need to create 2 accounts, one for global use and one for local user. if we don't speccify the local one,
// the anonymous user would take precedence when there is one.
$query = "CREATE USER '$name'@'localhost' IDENTIFIED BY '$password'";
$result = mysql_query($query, $connection);
$query = "CREATE USER '$name'@'%' IDENTIFIED BY '$password'";
$result = mysql_query($query, $connection);
2011-04-17 02:45:05 +04:00
}
2011-05-07 00:50:18 +04:00
/**
* create .htaccess files for apache hosts
*/
private static function createHtaccess() {
global $SERVERROOT;
global $WEBROOT;
2011-06-24 01:47:46 +04:00
$content = "ErrorDocument 404 /$WEBROOT/core/templates/404.php\n";//custom 404 error page
$content.= "php_value upload_max_filesize 20M\n";//upload limit
$content.= "php_value post_max_size 20M\n";
$content.= "SetEnv htaccessWorking true\n";
2011-06-24 01:41:53 +04:00
$content.= "Options -Indexes\n";
@file_put_contents($SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it
2011-05-07 00:50:18 +04:00
$content = "deny from all";
2011-07-29 23:36:03 +04:00
file_put_contents(OC_Config::getValue('datadirectory', $SERVERROOT.'/data').'/.htaccess', $content);
}
2011-04-17 02:45:05 +04:00
}
2011-06-14 01:18:39 +04:00
?>