use tabs for indentation

This commit is contained in:
Jörn Friedrich Dreyer 2012-09-10 14:14:36 +02:00
parent 0444877218
commit db7a18455f
1 changed files with 172 additions and 172 deletions

View File

@ -9,7 +9,7 @@ $opts = array(
'hasSQLite' => $hasSQLite, 'hasSQLite' => $hasSQLite,
'hasMySQL' => $hasMySQL, 'hasMySQL' => $hasMySQL,
'hasPostgreSQL' => $hasPostgreSQL, 'hasPostgreSQL' => $hasPostgreSQL,
'hasOracle' => $hasOracle, 'hasOracle' => $hasOracle,
'directory' => $datadir, 'directory' => $datadir,
'errors' => array(), 'errors' => array(),
); );
@ -51,10 +51,10 @@ class OC_Setup {
if($dbtype=='mysql' or $dbtype == 'pgsql' or $dbtype == 'oci') { //mysql and postgresql needs more config options if($dbtype=='mysql' or $dbtype == 'pgsql' or $dbtype == 'oci') { //mysql and postgresql needs more config options
if($dbtype=='mysql') if($dbtype=='mysql')
$dbprettyname = 'MySQL'; $dbprettyname = 'MySQL';
else if($dbtype=='pgsql') else if($dbtype=='pgsql')
$dbprettyname = 'PostgreSQL'; $dbprettyname = 'PostgreSQL';
else else
$dbprettyname = 'Oracle'; $dbprettyname = 'Oracle';
if(empty($options['dbuser'])) { if(empty($options['dbuser'])) {
@ -232,117 +232,117 @@ class OC_Setup {
} }
} }
} }
elseif($dbtype == 'oci') { elseif($dbtype == 'oci') {
$dbuser = $options['dbuser']; $dbuser = $options['dbuser'];
$dbpass = $options['dbpass']; $dbpass = $options['dbpass'];
$dbname = $options['dbname']; $dbname = $options['dbname'];
$dbtablespace = $options['dbtablespace']; $dbtablespace = $options['dbtablespace'];
$dbhost = $options['dbhost']; $dbhost = $options['dbhost'];
$dbtableprefix = isset($options['dbtableprefix']) ? $options['dbtableprefix'] : 'oc_'; $dbtableprefix = isset($options['dbtableprefix']) ? $options['dbtableprefix'] : 'oc_';
OC_CONFIG::setValue('dbname', $dbname); OC_CONFIG::setValue('dbname', $dbname);
OC_CONFIG::setValue('dbtablespace', $dbtablespace); OC_CONFIG::setValue('dbtablespace', $dbtablespace);
OC_CONFIG::setValue('dbhost', $dbhost); OC_CONFIG::setValue('dbhost', $dbhost);
OC_CONFIG::setValue('dbtableprefix', $dbtableprefix); OC_CONFIG::setValue('dbtableprefix', $dbtableprefix);
$e_host = addslashes($dbhost); $e_host = addslashes($dbhost);
$e_dbname = addslashes($dbname); $e_dbname = addslashes($dbname);
//check if the database user has admin right //check if the database user has admin right
$connection_string = '//'.$e_host.'/'.$e_dbname; $connection_string = '//'.$e_host.'/'.$e_dbname;
$connection = @oci_connect($dbuser, $dbpass, $connection_string); $connection = @oci_connect($dbuser, $dbpass, $connection_string);
if(!$connection) { if(!$connection) {
$e = oci_error(); $e = oci_error();
$error[] = array( $error[] = array(
'error' => 'Oracle username and/or password not valid', 'error' => 'Oracle username and/or password not valid',
'hint' => 'You need to enter either an existing account or the administrator.' 'hint' => 'You need to enter either an existing account or the administrator.'
); );
return $error; return $error;
} else { } else {
//check for roles creation rights in oracle //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'"; $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); $stmt = oci_parse($connection, $query);
if (!$stmt) { if (!$stmt) {
$entry='DB Error: "'.oci_last_error($connection).'"<br />'; $entry='DB Error: "'.oci_last_error($connection).'"<br />';
$entry.='Offending command was: '.$query.'<br />'; $entry.='Offending command was: '.$query.'<br />';
echo($entry); echo($entry);
} }
$result = oci_execute($stmt); $result = oci_execute($stmt);
if($result) { if($result) {
$row = oci_fetch_row($stmt); $row = oci_fetch_row($stmt);
} }
if($result and $row[0] > 0) { if($result and $row[0] > 0) {
//use the admin login data for the new database user //use the admin login data for the new database user
//add prefix to the oracle user name to prevent collisions //add prefix to the oracle user name to prevent collisions
$dbusername='oc_'.$username; $dbusername='oc_'.$username;
//create a new password so we don't need to store the admin config in the config file //create a new password so we don't need to store the admin config in the config file
$dbpassword=md5(time().$dbpass); $dbpassword=md5(time().$dbpass);
//oracle passwords are treated as identifiers: //oracle passwords are treated as identifiers:
// must start with aphanumeric char // 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. // 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); $dbpassword=substr($dbpassword, 0, 30);
self::oci_createDBUser($dbusername, $dbpassword, $dbtablespace, $connection); self::oci_createDBUser($dbusername, $dbpassword, $dbtablespace, $connection);
OC_CONFIG::setValue('dbuser', $dbusername); OC_CONFIG::setValue('dbuser', $dbusername);
OC_CONFIG::setValue('dbname', $dbusername); OC_CONFIG::setValue('dbname', $dbusername);
OC_CONFIG::setValue('dbpassword', $dbpassword); OC_CONFIG::setValue('dbpassword', $dbpassword);
//create the database not neccessary, oracle implies user = schema //create the database not neccessary, oracle implies user = schema
//self::oci_createDatabase($dbname, $dbusername, $connection); //self::oci_createDatabase($dbname, $dbusername, $connection);
} else { } else {
OC_CONFIG::setValue('dbuser', $dbuser); OC_CONFIG::setValue('dbuser', $dbuser);
OC_CONFIG::setValue('dbname', $dbname); OC_CONFIG::setValue('dbname', $dbname);
OC_CONFIG::setValue('dbpassword', $dbpass); OC_CONFIG::setValue('dbpassword', $dbpass);
//create the database not neccessary, oracle implies user = schema //create the database not neccessary, oracle implies user = schema
//self::oci_createDatabase($dbname, $dbuser, $connection); //self::oci_createDatabase($dbname, $dbuser, $connection);
} }
//FIXME check tablespace exists: select * from user_tablespaces //FIXME check tablespace exists: select * from user_tablespaces
// the connection to dbname=oracle is not needed anymore // the connection to dbname=oracle is not needed anymore
oci_close($connection); oci_close($connection);
// connect to the oracle database (schema=$dbuser) an check if the schema needs to be filled // connect to the oracle database (schema=$dbuser) an check if the schema needs to be filled
$dbuser = OC_CONFIG::getValue('dbuser'); $dbuser = OC_CONFIG::getValue('dbuser');
//$dbname = OC_CONFIG::getValue('dbname'); //$dbname = OC_CONFIG::getValue('dbname');
$dbpass = OC_CONFIG::getValue('dbpassword'); $dbpass = OC_CONFIG::getValue('dbpassword');
$e_host = addslashes($dbhost); $e_host = addslashes($dbhost);
$e_dbname = addslashes($dbname); $e_dbname = addslashes($dbname);
$connection_string = '//'.$e_host.'/'.$e_dbname; $connection_string = '//'.$e_host.'/'.$e_dbname;
$connection = @oci_connect($dbuser, $dbpass, $connection_string); $connection = @oci_connect($dbuser, $dbpass, $connection_string);
if(!$connection) { if(!$connection) {
$error[] = array( $error[] = array(
'error' => 'Oracle username and/or password not valid', 'error' => 'Oracle username and/or password not valid',
'hint' => 'You need to enter either an existing account or the administrator.' 'hint' => 'You need to enter either an existing account or the administrator.'
); );
return $error; return $error;
} else { } else {
$query = "SELECT count(*) FROM user_tables WHERE table_name = :un"; $query = "SELECT count(*) FROM user_tables WHERE table_name = :un";
$stmt = oci_parse($connection, $query); $stmt = oci_parse($connection, $query);
$un = $dbtableprefix.'users'; $un = $dbtableprefix.'users';
oci_bind_by_name($stmt, ':un', $un); oci_bind_by_name($stmt, ':un', $un);
if (!$stmt) { if (!$stmt) {
$entry='DB Error: "'.oci_last_error($connection).'"<br />'; $entry='DB Error: "'.oci_last_error($connection).'"<br />';
$entry.='Offending command was: '.$query.'<br />'; $entry.='Offending command was: '.$query.'<br />';
echo($entry); echo($entry);
} }
$result = oci_execute($stmt); $result = oci_execute($stmt);
if($result) { if($result) {
$row = oci_fetch_row($stmt); $row = oci_fetch_row($stmt);
} }
if(!$result or $row[0]==0) { if(!$result or $row[0]==0) {
OC_DB::createDbFromStructure('db_structure.xml'); OC_DB::createDbFromStructure('db_structure.xml');
} }
} }
} }
} }
else { else {
//delete the old sqlite database first, might cause infinte loops otherwise //delete the old sqlite database first, might cause infinte loops otherwise
if(file_exists("$datadir/owncloud.db")) { if(file_exists("$datadir/owncloud.db")) {
@ -462,79 +462,79 @@ class OC_Setup {
} }
} }
} }
/** /**
* *
* @param String $name * @param String $name
* @param String $password * @param String $password
* @param String $tablespace * @param String $tablespace
* @param resource $connection * @param resource $connection
*/ */
private static function oci_createDBUser($name, $password, $tablespace, $connection) { private static function oci_createDBUser($name, $password, $tablespace, $connection) {
$query = "SELECT * FROM all_users WHERE USERNAME = :un"; $query = "SELECT * FROM all_users WHERE USERNAME = :un";
$stmt = oci_parse($connection, $query); $stmt = oci_parse($connection, $query);
if (!$stmt) { if (!$stmt) {
$entry='DB Error: "'.oci_error($connection).'"<br />'; $entry='DB Error: "'.oci_error($connection).'"<br />';
$entry.='Offending command was: '.$query.'<br />'; $entry.='Offending command was: '.$query.'<br />';
echo($entry); echo($entry);
} }
oci_bind_by_name($stmt, ':un', $name); oci_bind_by_name($stmt, ':un', $name);
$result = oci_execute($stmt); $result = oci_execute($stmt);
if(!$result) { if(!$result) {
$entry='DB Error: "'.oci_error($connection).'"<br />'; $entry='DB Error: "'.oci_error($connection).'"<br />';
$entry.='Offending command was: '.$query.'<br />'; $entry.='Offending command was: '.$query.'<br />';
echo($entry); echo($entry);
} }
if(! oci_fetch_row($stmt)) { if(! oci_fetch_row($stmt)) {
//user does not exists let's create it :) //user does not exists let's create it :)
//password must start with alphabetic character in oracle //password must start with alphabetic character in oracle
$query = 'CREATE USER '.$name.' IDENTIFIED BY "'.$password.'" DEFAULT TABLESPACE '.$tablespace; //TODO set default tablespace $query = 'CREATE USER '.$name.' IDENTIFIED BY "'.$password.'" DEFAULT TABLESPACE '.$tablespace; //TODO set default tablespace
$stmt = oci_parse($connection, $query); $stmt = oci_parse($connection, $query);
if (!$stmt) { if (!$stmt) {
$entry='DB Error: "'.oci_error($connection).'"<br />'; $entry='DB Error: "'.oci_error($connection).'"<br />';
$entry.='Offending command was: '.$query.'<br />'; $entry.='Offending command was: '.$query.'<br />';
echo($entry); echo($entry);
} }
//oci_bind_by_name($stmt, ':un', $name); //oci_bind_by_name($stmt, ':un', $name);
$result = oci_execute($stmt); $result = oci_execute($stmt);
if(!$result) { if(!$result) {
$entry='DB Error: "'.oci_error($connection).'"<br />'; $entry='DB Error: "'.oci_error($connection).'"<br />';
$entry.='Offending command was: '.$query.', name:'.$name.', password:'.$password.'<br />'; $entry.='Offending command was: '.$query.', name:'.$name.', password:'.$password.'<br />';
echo($entry); echo($entry);
} }
} else { // change password of the existing role } else { // change password of the existing role
$query = "ALTER USER :un IDENTIFIED BY :pw"; $query = "ALTER USER :un IDENTIFIED BY :pw";
$stmt = oci_parse($connection, $query); $stmt = oci_parse($connection, $query);
if (!$stmt) { if (!$stmt) {
$entry='DB Error: "'.oci_error($connection).'"<br />'; $entry='DB Error: "'.oci_error($connection).'"<br />';
$entry.='Offending command was: '.$query.'<br />'; $entry.='Offending command was: '.$query.'<br />';
echo($entry); echo($entry);
} }
oci_bind_by_name($stmt, ':un', $name); oci_bind_by_name($stmt, ':un', $name);
oci_bind_by_name($stmt, ':pw', $password); oci_bind_by_name($stmt, ':pw', $password);
$result = oci_execute($stmt); $result = oci_execute($stmt);
if(!$result) { if(!$result) {
$entry='DB Error: "'.oci_error($connection).'"<br />'; $entry='DB Error: "'.oci_error($connection).'"<br />';
$entry.='Offending command was: '.$query.'<br />'; $entry.='Offending command was: '.$query.'<br />';
echo($entry); echo($entry);
} }
} }
// grant neccessary roles // grant neccessary roles
$query = 'GRANT CREATE SESSION, CREATE TABLE, CREATE SEQUENCE, CREATE TRIGGER, UNLIMITED TABLESPACE TO '.$name; $query = 'GRANT CREATE SESSION, CREATE TABLE, CREATE SEQUENCE, CREATE TRIGGER, UNLIMITED TABLESPACE TO '.$name;
$stmt = oci_parse($connection, $query); $stmt = oci_parse($connection, $query);
if (!$stmt) { if (!$stmt) {
$entry='DB Error: "'.oci_error($connection).'"<br />'; $entry='DB Error: "'.oci_error($connection).'"<br />';
$entry.='Offending command was: '.$query.'<br />'; $entry.='Offending command was: '.$query.'<br />';
echo($entry); echo($entry);
} }
$result = oci_execute($stmt); $result = oci_execute($stmt);
if(!$result) { if(!$result) {
$entry='DB Error: "'.oci_error($connection).'"<br />'; $entry='DB Error: "'.oci_error($connection).'"<br />';
$entry.='Offending command was: '.$query.', name:'.$name.', password:'.$password.'<br />'; $entry.='Offending command was: '.$query.', name:'.$name.', password:'.$password.'<br />';
echo($entry); echo($entry);
} }
} }
/** /**
* create .htaccess files for apache hosts * create .htaccess files for apache hosts