2011-04-17 02:45:05 +04:00
|
|
|
<?php
|
|
|
|
|
2013-01-15 00:36:50 +04:00
|
|
|
class DatabaseSetupException extends Exception
|
2013-01-14 23:57:40 +04:00
|
|
|
{
|
|
|
|
private $hint;
|
|
|
|
|
|
|
|
public function __construct($message, $hint, $code = 0, Exception $previous = null) {
|
|
|
|
$this->hint = $hint;
|
|
|
|
parent::__construct($message, $code, $previous);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __toString() {
|
|
|
|
return __CLASS__ . ": [{$this->code}]: {$this->message} ({$this->hint})\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHint() {
|
|
|
|
return $this->hint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
class OC_Setup {
|
2011-05-18 00:34:31 +04:00
|
|
|
public static function install($options) {
|
|
|
|
$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'])) {
|
2011-08-13 07:37:12 +04:00
|
|
|
$error[] = 'Set an admin username.';
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
|
|
|
if(empty($options['adminpass'])) {
|
2011-08-13 07:37:12 +04:00
|
|
|
$error[] = 'Set an admin password.';
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
|
|
|
if(empty($options['directory'])) {
|
2011-08-13 07:37:12 +04:00
|
|
|
$error[] = 'Specify a data folder.';
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
2011-08-07 23:06:53 +04:00
|
|
|
|
2012-07-30 22:53:21 +04:00
|
|
|
if($dbtype=='mysql' or $dbtype == 'pgsql' or $dbtype == 'oci') { //mysql and postgresql needs more config options
|
2011-08-09 13:32:22 +04:00
|
|
|
if($dbtype=='mysql')
|
|
|
|
$dbprettyname = 'MySQL';
|
2012-09-10 16:14:36 +04:00
|
|
|
else if($dbtype=='pgsql')
|
2013-01-14 23:57:40 +04:00
|
|
|
$dbprettyname = 'PostgreSQL';
|
2012-09-10 16:14:36 +04:00
|
|
|
else
|
2013-01-14 23:57:40 +04:00
|
|
|
$dbprettyname = 'Oracle';
|
2012-07-30 22:53:21 +04:00
|
|
|
|
2011-08-09 13:32:22 +04:00
|
|
|
|
2011-05-18 00:34:31 +04:00
|
|
|
if(empty($options['dbuser'])) {
|
2011-08-13 07:37:12 +04:00
|
|
|
$error[] = "$dbprettyname enter the database username.";
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
|
|
|
if(empty($options['dbname'])) {
|
2011-08-13 07:37:12 +04:00
|
|
|
$error[] = "$dbprettyname enter the database name.";
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
2012-11-04 13:46:32 +04:00
|
|
|
if(substr_count($options['dbname'], '.') >= 1) {
|
2012-10-28 17:11:41 +04:00
|
|
|
$error[] = "$dbprettyname you may not use dots in the database name";
|
|
|
|
}
|
2012-09-11 20:12:38 +04:00
|
|
|
if($dbtype != 'oci' && empty($options['dbhost'])) {
|
2011-08-13 07:37:12 +04:00
|
|
|
$error[] = "$dbprettyname set the database host.";
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
2011-08-07 23:06:53 +04:00
|
|
|
}
|
|
|
|
|
2011-05-18 00:34:31 +04:00
|
|
|
if(count($error) == 0) { //no errors, good
|
|
|
|
$username = htmlspecialchars_decode($options['adminlogin']);
|
|
|
|
$password = htmlspecialchars_decode($options['adminpass']);
|
|
|
|
$datadir = htmlspecialchars_decode($options['directory']);
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2011-06-16 16:56:49 +04:00
|
|
|
//use sqlite3 when available, otherise sqlite2 will be used.
|
2012-09-07 17:22:01 +04:00
|
|
|
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
|
|
|
|
2012-06-08 14:42:35 +04:00
|
|
|
//generate a random salt that is used to salt the local user passwords
|
2012-09-29 18:44:02 +04:00
|
|
|
$salt = OC_Util::generate_random_bytes(30);
|
2012-06-08 14:42:35 +04:00
|
|
|
OC_Config::setValue('passwordsalt', $salt);
|
|
|
|
|
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);
|
2012-08-29 22:34:44 +04:00
|
|
|
OC_Config::setValue('dbtype', $dbtype);
|
2012-11-04 14:10:46 +04:00
|
|
|
OC_Config::setValue('version', implode('.', OC_Util::getVersion()));
|
2011-05-18 00:34:31 +04:00
|
|
|
if($dbtype == 'mysql') {
|
|
|
|
$dbuser = $options['dbuser'];
|
|
|
|
$dbpass = $options['dbpass'];
|
|
|
|
$dbname = $options['dbname'];
|
|
|
|
$dbhost = $options['dbhost'];
|
2012-01-10 18:41:08 +04:00
|
|
|
$dbtableprefix = isset($options['dbtableprefix']) ? $options['dbtableprefix'] : 'oc_';
|
2012-10-27 00:46:12 +04:00
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Config::setValue('dbname', $dbname);
|
|
|
|
OC_Config::setValue('dbhost', $dbhost);
|
2011-10-16 23:06:48 +04:00
|
|
|
OC_Config::setValue('dbtableprefix', $dbtableprefix);
|
2011-05-07 00:50:18 +04:00
|
|
|
|
2012-10-27 00:46:12 +04:00
|
|
|
try {
|
|
|
|
self::setupMySQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $username);
|
2013-01-15 00:36:50 +04:00
|
|
|
} catch (DatabaseSetupException $e) {
|
2013-01-14 23:57:40 +04:00
|
|
|
$error[] = array(
|
|
|
|
'error' => $e->getMessage(),
|
|
|
|
'hint' => $e->getHint()
|
|
|
|
);
|
|
|
|
return($error);
|
2012-10-27 00:46:12 +04:00
|
|
|
} catch (Exception $e) {
|
2011-05-18 00:34:31 +04:00
|
|
|
$error[] = array(
|
2013-01-14 23:57:40 +04:00
|
|
|
'error' => $e->getMessage(),
|
|
|
|
'hint' => ''
|
2011-05-18 00:34:31 +04:00
|
|
|
);
|
2012-06-01 18:33:24 +04:00
|
|
|
return($error);
|
2011-05-18 00:34:31 +04:00
|
|
|
}
|
|
|
|
}
|
2011-08-07 23:06:53 +04:00
|
|
|
elseif($dbtype == 'pgsql') {
|
2011-08-09 13:32:22 +04:00
|
|
|
$dbuser = $options['dbuser'];
|
|
|
|
$dbpass = $options['dbpass'];
|
|
|
|
$dbname = $options['dbname'];
|
|
|
|
$dbhost = $options['dbhost'];
|
2012-05-29 00:56:21 +04:00
|
|
|
$dbtableprefix = isset($options['dbtableprefix']) ? $options['dbtableprefix'] : 'oc_';
|
2012-10-27 00:46:12 +04:00
|
|
|
|
|
|
|
OC_Config::setValue('dbname', $dbname);
|
|
|
|
OC_Config::setValue('dbhost', $dbhost);
|
|
|
|
OC_Config::setValue('dbtableprefix', $dbtableprefix);
|
|
|
|
|
|
|
|
try {
|
|
|
|
self::setupPostgreSQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $username);
|
|
|
|
} catch (Exception $e) {
|
2011-08-07 23:06:53 +04:00
|
|
|
$error[] = array(
|
2011-08-13 07:37:12 +04:00
|
|
|
'error' => 'PostgreSQL username and/or password not valid',
|
|
|
|
'hint' => 'You need to enter either an existing account or the administrator.'
|
2011-08-07 23:06:53 +04:00
|
|
|
);
|
2012-06-28 04:23:42 +04:00
|
|
|
return $error;
|
2011-08-07 23:06:53 +04:00
|
|
|
}
|
|
|
|
}
|
2012-09-10 16:14:36 +04:00
|
|
|
elseif($dbtype == 'oci') {
|
|
|
|
$dbuser = $options['dbuser'];
|
|
|
|
$dbpass = $options['dbpass'];
|
|
|
|
$dbname = $options['dbname'];
|
|
|
|
$dbtablespace = $options['dbtablespace'];
|
2012-09-11 20:12:38 +04:00
|
|
|
$dbhost = isset($options['dbhost'])?$options['dbhost']:'';
|
2012-09-10 16:14:36 +04:00
|
|
|
$dbtableprefix = isset($options['dbtableprefix']) ? $options['dbtableprefix'] : 'oc_';
|
2012-10-27 00:46:12 +04:00
|
|
|
|
|
|
|
OC_Config::setValue('dbname', $dbname);
|
|
|
|
OC_Config::setValue('dbtablespace', $dbtablespace);
|
|
|
|
OC_Config::setValue('dbhost', $dbhost);
|
|
|
|
OC_Config::setValue('dbtableprefix', $dbtableprefix);
|
|
|
|
|
|
|
|
try {
|
|
|
|
self::setupOCIDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $dbtablespace, $username);
|
|
|
|
} catch (Exception $e) {
|
2012-09-10 16:14:36 +04:00
|
|
|
$error[] = array(
|
|
|
|
'error' => 'Oracle username and/or password not valid',
|
|
|
|
'hint' => 'You need to enter either an existing account or the administrator.'
|
|
|
|
);
|
|
|
|
return $error;
|
|
|
|
}
|
|
|
|
}
|
2011-05-18 00:34:31 +04:00
|
|
|
else {
|
2011-05-28 17:51:39 +04:00
|
|
|
//delete the old sqlite database first, might cause infinte loops otherwise
|
2012-09-07 17:22:01 +04:00
|
|
|
if(file_exists("$datadir/owncloud.db")) {
|
2011-07-21 02:52:48 +04:00
|
|
|
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
|
|
|
}
|
2011-05-18 00:34:31 +04:00
|
|
|
|
2012-05-08 02:12:30 +04:00
|
|
|
//create the user and group
|
|
|
|
try {
|
|
|
|
OC_User::createUser($username, $password);
|
|
|
|
}
|
|
|
|
catch(Exception $exception) {
|
|
|
|
$error[] = $exception->getMessage();
|
|
|
|
}
|
|
|
|
|
2011-05-18 00:34:31 +04:00
|
|
|
if(count($error) == 0) {
|
2012-10-24 00:53:54 +04:00
|
|
|
OC_Appconfig::setValue('core', 'installedat', microtime(true));
|
|
|
|
OC_Appconfig::setValue('core', 'lastupdatedat', microtime(true));
|
2013-01-07 23:15:51 +04:00
|
|
|
OC_AppConfig::setValue('core', 'remote_core.css', '/core/minimizer.php');
|
|
|
|
OC_AppConfig::setValue('core', 'remote_core.js', '/core/minimizer.php');
|
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Group::createGroup('admin');
|
|
|
|
OC_Group::addToGroup($username, 'admin');
|
2011-08-11 18:21:40 +04:00
|
|
|
OC_User::login($username, $password);
|
2011-05-07 00:50:18 +04:00
|
|
|
|
2011-06-20 00:42:33 +04:00
|
|
|
//guess what this does
|
2011-09-28 00:36:14 +04:00
|
|
|
OC_Installer::installShippedApps();
|
2011-06-19 02:55:19 +04:00
|
|
|
|
2011-04-18 16:05:21 +04:00
|
|
|
//create htaccess files for apache hosts
|
2012-07-13 15:25:43 +04:00
|
|
|
if (isset($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache')) {
|
2011-08-08 23:41:20 +04:00
|
|
|
self::createHtaccess();
|
|
|
|
}
|
2013-01-14 23:30:39 +04:00
|
|
|
|
2011-04-17 13:59:15 +04:00
|
|
|
//and we are done
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Config::setValue('installed', true);
|
2011-04-17 13:59:15 +04:00
|
|
|
}
|
2011-04-17 02:45:05 +04:00
|
|
|
}
|
2011-05-18 00:34:31 +04:00
|
|
|
|
2011-04-17 02:45:05 +04:00
|
|
|
return $error;
|
|
|
|
}
|
2011-05-07 00:50:18 +04:00
|
|
|
|
2012-10-29 03:50:26 +04:00
|
|
|
private static function setupMySQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $username) {
|
2012-10-27 00:46:12 +04:00
|
|
|
//check if the database user has admin right
|
|
|
|
$connection = @mysql_connect($dbhost, $dbuser, $dbpass);
|
|
|
|
if(!$connection) {
|
2013-01-15 00:36:50 +04:00
|
|
|
throw new DatabaseSetupException('MySQL username and/or password not valid','You need to enter either an existing account or the administrator.');
|
2012-10-27 00:46:12 +04:00
|
|
|
}
|
|
|
|
$oldUser=OC_Config::getValue('dbuser', false);
|
|
|
|
|
|
|
|
$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)) {
|
|
|
|
//use the admin login data for the new database user
|
|
|
|
|
|
|
|
//add prefix to the mysql user name to prevent collisions
|
|
|
|
$dbusername=substr('oc_'.$username, 0, 16);
|
|
|
|
if($dbusername!=$oldUser) {
|
|
|
|
//hash the password so we don't need to store the admin config in the config file
|
2012-10-29 03:50:26 +04:00
|
|
|
$dbpassword=md5(time().$dbpass);
|
2012-10-27 00:46:12 +04:00
|
|
|
|
|
|
|
self::createDBUser($dbusername, $dbpassword, $connection);
|
|
|
|
|
|
|
|
OC_Config::setValue('dbuser', $dbusername);
|
|
|
|
OC_Config::setValue('dbpassword', $dbpassword);
|
|
|
|
}
|
|
|
|
|
|
|
|
//create the database
|
|
|
|
self::createMySQLDatabase($dbname, $dbusername, $connection);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if($dbuser!=$oldUser) {
|
|
|
|
OC_Config::setValue('dbuser', $dbuser);
|
|
|
|
OC_Config::setValue('dbpassword', $dbpass);
|
|
|
|
}
|
|
|
|
|
|
|
|
//create the database
|
|
|
|
self::createMySQLDatabase($dbname, $dbuser, $connection);
|
|
|
|
}
|
|
|
|
|
|
|
|
//fill the database if needed
|
|
|
|
$query="select count(*) from information_schema.tables where table_schema='$dbname' AND table_name = '{$dbtableprefix}users';";
|
|
|
|
$result = mysql_query($query, $connection);
|
|
|
|
if($result) {
|
|
|
|
$row=mysql_fetch_row($result);
|
|
|
|
}
|
|
|
|
if(!$result or $row[0]==0) {
|
|
|
|
OC_DB::createDbFromStructure('db_structure.xml');
|
|
|
|
}
|
|
|
|
mysql_close($connection);
|
|
|
|
}
|
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
private static function createMySQLDatabase($name, $user, $connection) {
|
2011-11-13 19:06:29 +04:00
|
|
|
//we cant use OC_BD functions here because we need to connect as the administrative user.
|
2011-05-18 00:34:31 +04:00
|
|
|
$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'";
|
2011-05-18 00:34:31 +04:00
|
|
|
$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
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
private static function createDBUser($name, $password, $connection) {
|
2011-09-18 22:57:05 +04:00
|
|
|
// we need to create 2 accounts, one for global use and one for local user. if we don't specify the local one,
|
2011-05-18 00:34:31 +04:00
|
|
|
// the anonymous user would take precedence when there is one.
|
|
|
|
$query = "CREATE USER '$name'@'localhost' IDENTIFIED BY '$password'";
|
|
|
|
$result = mysql_query($query, $connection);
|
2013-01-11 02:43:08 +04:00
|
|
|
if (!$result) {
|
2013-01-15 00:36:50 +04:00
|
|
|
throw new DatabaseSetupException("MySQL user '" . "$name" . "'@'localhost' already exists","Delete this user from MySQL.");
|
2013-01-11 02:43:08 +04:00
|
|
|
}
|
2011-05-18 00:34:31 +04:00
|
|
|
$query = "CREATE USER '$name'@'%' IDENTIFIED BY '$password'";
|
|
|
|
$result = mysql_query($query, $connection);
|
2013-01-11 02:43:08 +04:00
|
|
|
if (!$result) {
|
2013-01-15 00:36:50 +04:00
|
|
|
throw new DatabaseSetupException("MySQL user '" . "$name" . "'@'%' already exists","Delete this user from MySQL.");
|
2013-01-11 02:43:08 +04:00
|
|
|
}
|
2011-04-17 02:45:05 +04:00
|
|
|
}
|
2011-05-07 00:50:18 +04:00
|
|
|
|
2012-10-27 00:46:12 +04:00
|
|
|
private static function setupPostgreSQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $username) {
|
|
|
|
$e_host = addslashes($dbhost);
|
|
|
|
$e_user = addslashes($dbuser);
|
|
|
|
$e_password = addslashes($dbpass);
|
|
|
|
|
|
|
|
//check if the database user has admin rights
|
|
|
|
$connection_string = "host='$e_host' dbname=postgres user='$e_user' password='$e_password'";
|
|
|
|
$connection = @pg_connect($connection_string);
|
|
|
|
if(!$connection) {
|
|
|
|
throw new Exception('PostgreSQL username and/or password not valid');
|
|
|
|
}
|
|
|
|
$e_user = pg_escape_string($dbuser);
|
|
|
|
//check for roles creation rights in postgresql
|
|
|
|
$query="SELECT 1 FROM pg_roles WHERE rolcreaterole=TRUE AND rolname='$e_user'";
|
|
|
|
$result = pg_query($connection, $query);
|
|
|
|
if($result and pg_num_rows($result) > 0) {
|
|
|
|
//use the admin login data for the new database user
|
|
|
|
|
|
|
|
//add prefix to the postgresql user name to prevent collisions
|
|
|
|
$dbusername='oc_'.$username;
|
|
|
|
//create a new password so we don't need to store the admin config in the config file
|
|
|
|
$dbpassword=md5(time());
|
|
|
|
|
|
|
|
self::pg_createDBUser($dbusername, $dbpassword, $connection);
|
|
|
|
|
|
|
|
OC_Config::setValue('dbuser', $dbusername);
|
|
|
|
OC_Config::setValue('dbpassword', $dbpassword);
|
|
|
|
|
|
|
|
//create the database
|
|
|
|
self::pg_createDatabase($dbname, $dbusername, $connection);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
OC_Config::setValue('dbuser', $dbuser);
|
|
|
|
OC_Config::setValue('dbpassword', $dbpass);
|
|
|
|
|
|
|
|
//create the database
|
|
|
|
self::pg_createDatabase($dbname, $dbuser, $connection);
|
|
|
|
}
|
|
|
|
|
|
|
|
// the connection to dbname=postgres is not needed anymore
|
|
|
|
pg_close($connection);
|
|
|
|
|
|
|
|
// connect to the ownCloud database (dbname=$dbname) and check if it needs to be filled
|
|
|
|
$dbuser = OC_Config::getValue('dbuser');
|
|
|
|
$dbpass = OC_Config::getValue('dbpassword');
|
|
|
|
|
|
|
|
$e_host = addslashes($dbhost);
|
|
|
|
$e_dbname = addslashes($dbname);
|
|
|
|
$e_user = addslashes($dbuser);
|
|
|
|
$e_password = addslashes($dbpass);
|
|
|
|
|
|
|
|
$connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' password='$e_password'";
|
|
|
|
$connection = @pg_connect($connection_string);
|
|
|
|
if(!$connection) {
|
|
|
|
throw new Exception('PostgreSQL username and/or password not valid');
|
|
|
|
}
|
|
|
|
$query = "select count(*) FROM pg_class WHERE relname='{$dbtableprefix}users' limit 1";
|
|
|
|
$result = pg_query($connection, $query);
|
|
|
|
if($result) {
|
|
|
|
$row = pg_fetch_row($result);
|
|
|
|
}
|
|
|
|
if(!$result or $row[0]==0) {
|
|
|
|
OC_DB::createDbFromStructure('db_structure.xml');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
private static function pg_createDatabase($name, $user, $connection) {
|
2011-11-13 19:06:29 +04:00
|
|
|
//we cant use OC_BD functions here because we need to connect as the administrative user.
|
2012-05-05 02:54:55 +04:00
|
|
|
$e_name = pg_escape_string($name);
|
|
|
|
$e_user = pg_escape_string($user);
|
2012-06-28 23:37:29 +04:00
|
|
|
$query = "select datname from pg_database where datname = '$e_name'";
|
2011-08-07 23:06:53 +04:00
|
|
|
$result = pg_query($connection, $query);
|
|
|
|
if(!$result) {
|
|
|
|
$entry='DB Error: "'.pg_last_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
2012-06-28 23:37:29 +04:00
|
|
|
if(! pg_fetch_row($result)) {
|
|
|
|
//The database does not exists... let's create it
|
|
|
|
$query = "CREATE DATABASE \"$e_name\" OWNER \"$e_user\"";
|
|
|
|
$result = pg_query($connection, $query);
|
|
|
|
if(!$result) {
|
|
|
|
$entry='DB Error: "'.pg_last_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
2012-12-04 00:20:17 +04:00
|
|
|
else {
|
|
|
|
$query = "REVOKE ALL PRIVILEGES ON DATABASE \"$e_name\" FROM PUBLIC";
|
|
|
|
$result = pg_query($connection, $query);
|
|
|
|
}
|
2012-06-28 23:37:29 +04:00
|
|
|
}
|
2011-08-07 23:06:53 +04:00
|
|
|
}
|
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
private static function pg_createDBUser($name, $password, $connection) {
|
2012-05-05 02:54:55 +04:00
|
|
|
$e_name = pg_escape_string($name);
|
|
|
|
$e_password = pg_escape_string($password);
|
2012-06-28 23:37:29 +04:00
|
|
|
$query = "select * from pg_roles where rolname='$e_name';";
|
2011-08-07 23:06:53 +04:00
|
|
|
$result = pg_query($connection, $query);
|
|
|
|
if(!$result) {
|
|
|
|
$entry='DB Error: "'.pg_last_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
2012-06-28 23:37:29 +04:00
|
|
|
|
|
|
|
if(! pg_fetch_row($result)) {
|
|
|
|
//user does not exists let's create it :)
|
|
|
|
$query = "CREATE USER \"$e_name\" CREATEDB PASSWORD '$e_password';";
|
|
|
|
$result = pg_query($connection, $query);
|
|
|
|
if(!$result) {
|
|
|
|
$entry='DB Error: "'.pg_last_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { // change password of the existing role
|
|
|
|
$query = "ALTER ROLE \"$e_name\" WITH PASSWORD '$e_password';";
|
|
|
|
$result = pg_query($connection, $query);
|
|
|
|
if(!$result) {
|
|
|
|
$entry='DB Error: "'.pg_last_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
}
|
2011-08-07 23:06:53 +04:00
|
|
|
}
|
2012-10-27 00:46:12 +04:00
|
|
|
|
|
|
|
private static function setupOCIDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $dbtablespace, $username) {
|
|
|
|
$e_host = addslashes($dbhost);
|
|
|
|
$e_dbname = addslashes($dbname);
|
|
|
|
//check if the database user has admin right
|
|
|
|
if ($e_host == '') {
|
|
|
|
$easy_connect_string = $e_dbname; // use dbname as easy connect name
|
|
|
|
} else {
|
|
|
|
$easy_connect_string = '//'.$e_host.'/'.$e_dbname;
|
|
|
|
}
|
|
|
|
$connection = @oci_connect($dbuser, $dbpass, $easy_connect_string);
|
|
|
|
if(!$connection) {
|
|
|
|
$e = oci_error();
|
|
|
|
throw new Exception('Oracle username and/or password not valid');
|
|
|
|
}
|
|
|
|
//check for roles creation rights in oracle
|
|
|
|
|
|
|
|
$query="SELECT count(*) FROM user_role_privs, role_sys_privs WHERE user_role_privs.granted_role = role_sys_privs.role AND privilege = 'CREATE ROLE'";
|
|
|
|
$stmt = oci_parse($connection, $query);
|
|
|
|
if (!$stmt) {
|
|
|
|
$entry='DB Error: "'.oci_last_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
$result = oci_execute($stmt);
|
|
|
|
if($result) {
|
|
|
|
$row = oci_fetch_row($stmt);
|
|
|
|
}
|
|
|
|
if($result and $row[0] > 0) {
|
|
|
|
//use the admin login data for the new database user
|
|
|
|
|
|
|
|
//add prefix to the oracle user name to prevent collisions
|
|
|
|
$dbusername='oc_'.$username;
|
|
|
|
//create a new password so we don't need to store the admin config in the config file
|
|
|
|
$dbpassword=md5(time().$dbpass);
|
|
|
|
|
|
|
|
//oracle passwords are treated as identifiers:
|
|
|
|
// must start with aphanumeric char
|
|
|
|
// needs to be shortened to 30 bytes, as the two " needed to escape the identifier count towards the identifier length.
|
|
|
|
$dbpassword=substr($dbpassword, 0, 30);
|
|
|
|
|
|
|
|
self::oci_createDBUser($dbusername, $dbpassword, $dbtablespace, $connection);
|
|
|
|
|
|
|
|
OC_Config::setValue('dbuser', $dbusername);
|
|
|
|
OC_Config::setValue('dbname', $dbusername);
|
|
|
|
OC_Config::setValue('dbpassword', $dbpassword);
|
|
|
|
|
|
|
|
//create the database not neccessary, oracle implies user = schema
|
|
|
|
//self::oci_createDatabase($dbname, $dbusername, $connection);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
OC_Config::setValue('dbuser', $dbuser);
|
|
|
|
OC_Config::setValue('dbname', $dbname);
|
|
|
|
OC_Config::setValue('dbpassword', $dbpass);
|
|
|
|
|
|
|
|
//create the database not neccessary, oracle implies user = schema
|
|
|
|
//self::oci_createDatabase($dbname, $dbuser, $connection);
|
|
|
|
}
|
|
|
|
|
|
|
|
//FIXME check tablespace exists: select * from user_tablespaces
|
|
|
|
|
|
|
|
// the connection to dbname=oracle is not needed anymore
|
|
|
|
oci_close($connection);
|
|
|
|
|
|
|
|
// connect to the oracle database (schema=$dbuser) an check if the schema needs to be filled
|
|
|
|
$dbuser = OC_Config::getValue('dbuser');
|
|
|
|
//$dbname = OC_Config::getValue('dbname');
|
|
|
|
$dbpass = OC_Config::getValue('dbpassword');
|
|
|
|
|
|
|
|
$e_host = addslashes($dbhost);
|
|
|
|
$e_dbname = addslashes($dbname);
|
|
|
|
|
|
|
|
if ($e_host == '') {
|
|
|
|
$easy_connect_string = $e_dbname; // use dbname as easy connect name
|
|
|
|
} else {
|
|
|
|
$easy_connect_string = '//'.$e_host.'/'.$e_dbname;
|
|
|
|
}
|
|
|
|
$connection = @oci_connect($dbuser, $dbpass, $easy_connect_string);
|
|
|
|
if(!$connection) {
|
|
|
|
throw new Exception('Oracle username and/or password not valid');
|
|
|
|
}
|
|
|
|
$query = "SELECT count(*) FROM user_tables WHERE table_name = :un";
|
|
|
|
$stmt = oci_parse($connection, $query);
|
|
|
|
$un = $dbtableprefix.'users';
|
|
|
|
oci_bind_by_name($stmt, ':un', $un);
|
|
|
|
if (!$stmt) {
|
|
|
|
$entry='DB Error: "'.oci_last_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
$result = oci_execute($stmt);
|
|
|
|
|
|
|
|
if($result) {
|
|
|
|
$row = oci_fetch_row($stmt);
|
|
|
|
}
|
|
|
|
if(!$result or $row[0]==0) {
|
|
|
|
OC_DB::createDbFromStructure('db_structure.xml');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-10 16:14:36 +04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param String $name
|
|
|
|
* @param String $password
|
|
|
|
* @param String $tablespace
|
|
|
|
* @param resource $connection
|
|
|
|
*/
|
|
|
|
private static function oci_createDBUser($name, $password, $tablespace, $connection) {
|
|
|
|
|
|
|
|
$query = "SELECT * FROM all_users WHERE USERNAME = :un";
|
|
|
|
$stmt = oci_parse($connection, $query);
|
|
|
|
if (!$stmt) {
|
|
|
|
$entry='DB Error: "'.oci_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
oci_bind_by_name($stmt, ':un', $name);
|
|
|
|
$result = oci_execute($stmt);
|
|
|
|
if(!$result) {
|
|
|
|
$entry='DB Error: "'.oci_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(! oci_fetch_row($stmt)) {
|
|
|
|
//user does not exists let's create it :)
|
|
|
|
//password must start with alphabetic character in oracle
|
|
|
|
$query = 'CREATE USER '.$name.' IDENTIFIED BY "'.$password.'" DEFAULT TABLESPACE '.$tablespace; //TODO set default tablespace
|
|
|
|
$stmt = oci_parse($connection, $query);
|
|
|
|
if (!$stmt) {
|
|
|
|
$entry='DB Error: "'.oci_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
//oci_bind_by_name($stmt, ':un', $name);
|
|
|
|
$result = oci_execute($stmt);
|
|
|
|
if(!$result) {
|
|
|
|
$entry='DB Error: "'.oci_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.', name:'.$name.', password:'.$password.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
} else { // change password of the existing role
|
|
|
|
$query = "ALTER USER :un IDENTIFIED BY :pw";
|
|
|
|
$stmt = oci_parse($connection, $query);
|
|
|
|
if (!$stmt) {
|
|
|
|
$entry='DB Error: "'.oci_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
oci_bind_by_name($stmt, ':un', $name);
|
|
|
|
oci_bind_by_name($stmt, ':pw', $password);
|
|
|
|
$result = oci_execute($stmt);
|
|
|
|
if(!$result) {
|
|
|
|
$entry='DB Error: "'.oci_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// grant neccessary roles
|
|
|
|
$query = 'GRANT CREATE SESSION, CREATE TABLE, CREATE SEQUENCE, CREATE TRIGGER, UNLIMITED TABLESPACE TO '.$name;
|
|
|
|
$stmt = oci_parse($connection, $query);
|
|
|
|
if (!$stmt) {
|
|
|
|
$entry='DB Error: "'.oci_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
$result = oci_execute($stmt);
|
|
|
|
if(!$result) {
|
|
|
|
$entry='DB Error: "'.oci_error($connection).'"<br />';
|
|
|
|
$entry.='Offending command was: '.$query.', name:'.$name.', password:'.$password.'<br />';
|
|
|
|
echo($entry);
|
|
|
|
}
|
|
|
|
}
|
2011-08-07 23:06:53 +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";
|
|
|
|
$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";
|
2012-05-11 19:09:10 +04:00
|
|
|
$content.= "RewriteRule ^apps/([^/]*)/(.*\.(css|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";
|
2011-06-24 01:41:53 +04:00
|
|
|
$content.= "Options -Indexes\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() {
|
2011-08-31 13:28:18 +04:00
|
|
|
$content = "deny from all\n";
|
|
|
|
$content.= "IndexIgnore *";
|
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
|
|
|
|
if (OC_Util::isWebDAVWorking()) {
|
|
|
|
header("Location: ".OC::$WEBROOT.'/');
|
|
|
|
} else {
|
|
|
|
$l=OC_L10N::get('lib');
|
|
|
|
|
|
|
|
$error = $l->t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.');
|
|
|
|
$hint = $l->t('Please double check the <a href=\'%s\'>installation guides</a>.', 'http://doc.owncloud.org/server/5.0/admin_manual/installation.html');
|
|
|
|
|
|
|
|
$tmpl = new OC_Template('', 'error', 'guest');
|
|
|
|
$tmpl->assign('errors', array(1 => array('error' => $error, 'hint' => $hint)), false);
|
|
|
|
$tmpl->printPage();
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2011-04-17 02:45:05 +04:00
|
|
|
}
|