nextcloud/lib/private/setup/abstractdatabase.php

80 lines
2.3 KiB
PHP
Raw Normal View History

2013-04-03 00:01:23 +04:00
<?php
2015-03-26 13:44:34 +03:00
/**
* @author Bart Visscher <bartv@thisnet.nl>
* @author Joas Schilling <nickvergessen@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @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,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
2013-04-03 00:01:23 +04:00
namespace OC\Setup;
abstract class AbstractDatabase {
2013-12-02 11:42:28 +04:00
/**
* @var \OC_L10N
*/
2013-04-03 00:01:23 +04:00
protected $trans;
2013-06-27 22:19:51 +04:00
protected $dbDefinitionFile;
2013-04-03 00:01:23 +04:00
protected $dbuser;
protected $dbpassword;
protected $dbname;
protected $dbhost;
protected $tableprefix;
2013-06-27 22:19:51 +04:00
public function __construct($trans, $dbDefinitionFile) {
2013-04-03 00:01:23 +04:00
$this->trans = $trans;
2013-06-27 22:19:51 +04:00
$this->dbDefinitionFile = $dbDefinitionFile;
}
public function validate($config) {
$errors = array();
if(empty($config['dbuser'])) {
$errors[] = $this->trans->t("%s enter the database username.", array($this->dbprettyname));
}
if(empty($config['dbname'])) {
$errors[] = $this->trans->t("%s enter the database name.", array($this->dbprettyname));
}
if(substr_count($config['dbname'], '.') >= 1) {
$errors[] = $this->trans->t("%s you may not use dots in the database name", array($this->dbprettyname));
}
return $errors;
2013-04-03 00:01:23 +04:00
}
public function initialize($config) {
2015-01-26 14:59:25 +03:00
$dbUser = $config['dbuser'];
$dbPass = $config['dbpass'];
$dbName = $config['dbname'];
$dbHost = !empty($config['dbhost']) ? $config['dbhost'] : 'localhost';
$dbTablePrefix = isset($config['dbtableprefix']) ? $config['dbtableprefix'] : 'oc_';
2013-04-03 00:01:23 +04:00
\OC_Config::setValues([
2015-01-26 14:59:25 +03:00
'dbname' => $dbName,
'dbhost' => $dbHost,
'dbtableprefix' => $dbTablePrefix,
]);
2013-04-03 00:01:23 +04:00
2015-01-26 14:59:25 +03:00
$this->dbuser = $dbUser;
$this->dbpassword = $dbPass;
$this->dbname = $dbName;
$this->dbhost = $dbHost;
$this->tableprefix = $dbTablePrefix;
2013-04-03 00:01:23 +04:00
}
2015-01-26 14:59:25 +03:00
abstract public function setupDatabase($userName);
2013-04-03 00:01:23 +04:00
}