2013-03-29 19:28:48 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Andreas Fischer <bantu@owncloud.com>
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2015-10-26 15:54:55 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
*/
|
2017-09-06 16:55:05 +03:00
|
|
|
|
2013-03-29 19:28:48 +04:00
|
|
|
namespace OC\Setup;
|
|
|
|
|
2013-04-03 00:01:23 +04:00
|
|
|
class OCI extends AbstractDatabase {
|
2013-04-03 19:52:18 +04:00
|
|
|
public $dbprettyname = 'Oracle';
|
|
|
|
|
2013-04-03 00:01:23 +04:00
|
|
|
protected $dbtablespace;
|
|
|
|
|
|
|
|
public function initialize($config) {
|
|
|
|
parent::initialize($config);
|
2013-07-10 01:49:05 +04:00
|
|
|
if (array_key_exists('dbtablespace', $config)) {
|
|
|
|
$this->dbtablespace = $config['dbtablespace'];
|
2013-04-03 00:01:23 +04:00
|
|
|
} else {
|
|
|
|
$this->dbtablespace = 'USERS';
|
|
|
|
}
|
2014-08-28 17:54:28 +04:00
|
|
|
// allow empty hostname for oracle
|
2015-07-29 19:09:23 +03:00
|
|
|
$this->dbHost = $config['dbhost'];
|
2015-01-23 13:13:47 +03:00
|
|
|
|
2017-03-18 01:37:48 +03:00
|
|
|
$this->config->setValues([
|
2017-09-06 16:55:05 +03:00
|
|
|
'dbhost' => $this->dbHost,
|
|
|
|
'dbtablespace' => $this->dbtablespace,
|
2015-01-23 13:13:47 +03:00
|
|
|
]);
|
2013-04-03 00:01:23 +04:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:54:28 +04:00
|
|
|
public function validate($config) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$errors = [];
|
2017-09-06 16:55:05 +03:00
|
|
|
if (empty($config['dbuser']) && empty($config['dbname'])) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$errors[] = $this->trans->t("%s enter the database username and name.", [$this->dbprettyname]);
|
2020-04-10 11:35:09 +03:00
|
|
|
} elseif (empty($config['dbuser'])) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$errors[] = $this->trans->t("%s enter the database username.", [$this->dbprettyname]);
|
2020-04-10 11:35:09 +03:00
|
|
|
} elseif (empty($config['dbname'])) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$errors[] = $this->trans->t("%s enter the database name.", [$this->dbprettyname]);
|
2014-08-28 17:54:28 +04:00
|
|
|
}
|
|
|
|
return $errors;
|
|
|
|
}
|
|
|
|
|
2013-04-10 22:03:54 +04:00
|
|
|
public function setupDatabase($username) {
|
2017-09-06 16:55:05 +03:00
|
|
|
try {
|
|
|
|
$this->connect();
|
|
|
|
} catch (\Exception $e) {
|
2013-11-28 15:04:28 +04:00
|
|
|
$errorMessage = $this->getLastError();
|
|
|
|
if ($errorMessage) {
|
2014-11-26 14:30:07 +03:00
|
|
|
throw new \OC\DatabaseSetupException($this->trans->t('Oracle connection could not be established'),
|
2017-09-06 16:55:05 +03:00
|
|
|
$errorMessage . ' Check environment: ORACLE_HOME=' . getenv('ORACLE_HOME')
|
|
|
|
. ' ORACLE_SID=' . getenv('ORACLE_SID')
|
|
|
|
. ' LD_LIBRARY_PATH=' . getenv('LD_LIBRARY_PATH')
|
|
|
|
. ' NLS_LANG=' . getenv('NLS_LANG')
|
2021-01-07 23:04:11 +03:00
|
|
|
. ' tnsnames.ora is ' . (is_readable(getenv('ORACLE_HOME') . '/network/admin/tnsnames.ora') ? '' : 'not ') . 'readable', 0, $e);
|
2013-03-29 19:28:48 +04:00
|
|
|
}
|
2014-11-26 14:30:07 +03:00
|
|
|
throw new \OC\DatabaseSetupException($this->trans->t('Oracle username and/or password not valid'),
|
2017-09-06 16:55:05 +03:00
|
|
|
'Check environment: ORACLE_HOME=' . getenv('ORACLE_HOME')
|
|
|
|
. ' ORACLE_SID=' . getenv('ORACLE_SID')
|
|
|
|
. ' LD_LIBRARY_PATH=' . getenv('LD_LIBRARY_PATH')
|
|
|
|
. ' NLS_LANG=' . getenv('NLS_LANG')
|
2021-01-07 23:04:11 +03:00
|
|
|
. ' tnsnames.ora is ' . (is_readable(getenv('ORACLE_HOME') . '/network/admin/tnsnames.ora') ? '' : 'not ') . 'readable', 0, $e);
|
2015-01-23 13:13:47 +03:00
|
|
|
}
|
2013-03-29 19:28:48 +04:00
|
|
|
|
2017-03-18 01:37:48 +03:00
|
|
|
$this->config->setValues([
|
2017-09-06 16:55:05 +03:00
|
|
|
'dbuser' => $this->dbUser,
|
|
|
|
'dbname' => $this->dbName,
|
|
|
|
'dbpassword' => $this->dbPassword,
|
2015-01-23 13:13:47 +03:00
|
|
|
]);
|
2013-03-29 19:28:48 +04:00
|
|
|
}
|
2013-11-28 15:04:28 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param resource $connection
|
2013-12-02 11:42:28 +04:00
|
|
|
* @return string
|
2013-11-28 15:04:28 +04:00
|
|
|
*/
|
|
|
|
protected function getLastError($connection = null) {
|
|
|
|
if ($connection) {
|
|
|
|
$error = oci_error($connection);
|
|
|
|
} else {
|
|
|
|
$error = oci_error();
|
|
|
|
}
|
2020-03-26 11:30:18 +03:00
|
|
|
foreach (['message', 'code'] as $key) {
|
2013-11-28 15:04:28 +04:00
|
|
|
if (isset($error[$key])) {
|
|
|
|
return $error[$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
}
|
2013-03-29 19:28:48 +04:00
|
|
|
}
|