Fred Gleason ac594cc68b 2021-09-01 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up deprecation warnings for 'QString::sprintf()'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2021-09-01 19:59:37 -04:00

171 lines
4.4 KiB
C++

// createdb.cpp
//
// Create Rivendell MySQL database RDDbConfig
//
// (C) Copyright 2002-2021 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public
// License along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#include <QApplication>
#include <QProcess>
#include <QMessageBox>
#include <rdconfig.h>
#include <rdpaths.h>
#include "createdb.h"
CreateDb::CreateDb(QString host,QString database,QString username,QString password)
{
db_host=host;
db_name=database;
db_user=username;
db_pass=password;
}
bool CreateDb::create(QWidget *parent,QString *err_str,RDConfig *rd_config)
{
QString sql;
//
// Open Database
//
QSqlDatabase db=QSqlDatabase::addDatabase(rd_config->mysqlDriver(),"createDb");
if(!db.isValid()) {
*err_str+= QString(QObject::tr("Couldn't initialize MySql driver!"));
return true;
}
db.setHostName(db_host);
db.setDatabaseName("mysql");
db.setUserName(db_user);
db.setPassword(db_pass);
if(!db.open()) {
*err_str+=QString::asprintf("Couldn't open MySQL connection on %s",
db_host.toUtf8().constData());
return true;
}
QSqlQuery *q;
sql=QString::asprintf("drop database if exists `%s`",
db_name.toUtf8().constData());
q=new QSqlQuery(sql,db);
if (!q->isActive()) {
*err_str+=QString(QObject::tr("Could not remove old database"));
return true;
}
delete q;
sql=QString::asprintf("create database if not exists `%s`",
db_name.toUtf8().constData());
q=new QSqlQuery(sql,db);
if (!q->isActive()) {
*err_str+=QString(QObject::tr("Could not create new database"));
return true;
}
delete q;
//
// Drop any existing 'rduser'@'%' and 'rduser'@'localhost' users
//
sql=QString::asprintf("drop user '%s'@'%%'",
rd_config->mysqlUsername().toUtf8().constData());
q=new QSqlQuery(sql,db);
delete q;
sql=QString::asprintf("drop user '%s'@'localhost'",
rd_config->mysqlUsername().toUtf8().constData());
q=new QSqlQuery(sql,db);
delete q;
sql=QString("flush privileges");
q=new QSqlQuery(sql,db);
delete q;
sql=QString::asprintf("create user '%s'@'%%' identified by '%s'",
rd_config->mysqlUsername().toUtf8().constData(),
rd_config->mysqlPassword().toUtf8().constData());
q=new QSqlQuery(sql,db);
if (!q->isActive()) {
*err_str+=QString::asprintf("Could not create user: '%s'@'%%'",
sql.toUtf8().constData());
return true;
}
delete q;
sql=QString::asprintf("create user '%s'@'localhost' identified by '%s'",
rd_config->mysqlUsername().toUtf8().constData(),
rd_config->mysqlPassword().toUtf8().constData());
q=new QSqlQuery(sql,db);
if (!q->isActive()) {
*err_str+=QString::asprintf("Could not create user: '%s'@'localhost'",
sql.toUtf8().constData());
return true;
}
delete q;
sql=QString("grant ")+
"SELECT,"+
"INSERT,"+
"UPDATE,"+
"DELETE,"+
"CREATE,"+
"DROP,"+
"INDEX,"+
"ALTER,"+
"LOCK TABLES "+
"on `"+db_name+"`.* to `"+rd_config->mysqlUsername()+"`";
q=new QSqlQuery(sql,db);
if (!q->isActive()) {
*err_str+=QString::asprintf("Could not set permissions: %s",
sql.toUtf8().constData());
return true;
}
delete q;
QProcess rddbmgrProcess(parent);
QStringList args;
args << QString("--create");
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
rddbmgrProcess.start(QString(RD_PREFIX)+"/sbin/rddbmgr",args);
rddbmgrProcess.waitForFinished();
QApplication::restoreOverrideCursor();
if (rddbmgrProcess.exitCode()) {
*err_str+=
QString::asprintf("Failed to create %s database. Rddbmgr exit code=%d",
db_name.toUtf8().constData(),
rddbmgrProcess.exitCode());
return true;
}
return false;
}
CreateDb::~CreateDb()
{
{
QSqlDatabase db=QSqlDatabase::database("createDb");
db.close();
}
QSqlDatabase::removeDatabase("createDb");
}
bool CreateDb::isOpen()
{
QSqlDatabase db=QSqlDatabase::database("createDb");
return db.isOpen();
}