1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
/*
* This file is part of the xTuple ERP: PostBooks Edition, a free and
* open source Enterprise Resource Planning software suite,
* Copyright (c) 1999-2010 by OpenMFG LLC, d/b/a xTuple.
* It is licensed to you under the Common Public Attribution License
* version 1.0, the full text of which (including xTuple-specific Exhibits)
* is available at www.xtuple.com/CPAL. By using this software, you agree
* to be bound by its terms.
*/
#include <QApplication>
#include <QMainWindow>
#include <QMessageBox>
#include <QSqlDatabase>
#include <QSqlError>
#include <QIcon>
#include <dbtools.h>
#include <login2.h>
#include <parameter.h>
#include <xsqlquery.h>
#include "data.h"
#include "loaderwindow.h"
QString _databaseURL = "";
bool _autoRun = false;
int main(int argc, char* argv[])
{
QString username = "";
bool haveUsername = FALSE;
bool haveDatabaseURL = FALSE;
_loggedIn = FALSE;
bool multitrans = false;
bool debugpkg = false;
bool autoRunArg = false;
bool autoRunCheck = false;
QString pkgfile = "";
QApplication app(argc, argv);
app.addLibraryPath(".");
#ifndef Q_WS_MACX
app.setWindowIcon(QIcon(":/images/updater-32x32.png"));
#endif
if (argc > 1)
{
haveUsername = FALSE;
bool havePasswd = FALSE;
QString passwd = "";
for (int intCounter = 1; intCounter < argc; intCounter++)
{
QString argument(argv[intCounter]);
if (argument.startsWith("-help", Qt::CaseInsensitive))
{
qWarning("%s [ -databaseURL=PSQL7://hostname:port/databasename |"
" -username=databaseUserName -passwd=databasePassword |"
" -noauth ]"
" [ -multitrans ]"
" [ -debug ]"
" [ -file=updaterFile.gz ]"
" [ -autorun ]",
argv[0]);
return 0;
}
else if (argument.startsWith("-databaseURL=", Qt::CaseInsensitive))
{
haveDatabaseURL = TRUE;
_databaseURL = argument.right(argument.length() - 13);
}
else if (argument.startsWith("-username=", Qt::CaseInsensitive))
{
haveUsername = TRUE;
username = argument.right(argument.length() - 10);
}
else if (argument.startsWith("-passwd=", Qt::CaseInsensitive))
{
havePasswd = TRUE;
passwd = argument.right(argument.length() - 8);
}
else if (argument.toLower() == "-noauth")
{
haveUsername = TRUE;
havePasswd = TRUE;
}
else if (argument.toLower() == "-multitrans")
multitrans = true;
else if (argument.toLower() == "-debug")
debugpkg = true;
else if (argument.startsWith("-file=", Qt::CaseInsensitive))
pkgfile = argument.right(argument.size() - argument.indexOf("=") - 1);
else if (argument.toLower() == "-autorun")
autoRunArg = true;
}
if ( (haveDatabaseURL) && (haveUsername) && (havePasswd) )
{
QSqlDatabase db;
QString protocol;
QString hostName;
QString dbName;
QString port;
db = QSqlDatabase::addDatabase("QPSQL7");
if (!db.isValid())
{
QMessageBox::critical(0, QObject::tr("Can not load database driver"), QObject::tr("Unable to load the databse driver. Please contact your systems adminstrator."));
QApplication::exit(-1);
}
parseDatabaseURL(_databaseURL, protocol, hostName, dbName, port);
db.setDatabaseName(dbName);
db.setUserName(username);
db.setPassword(passwd);
db.setHostName(hostName);
db.setPort(port.toInt());
if (!db.open())
{
QMessageBox::critical(0, QObject::tr("Unable to connect to database"), QObject::tr("Unable to connect to the database with the given information."));
QApplication::exit(-1);
}
else
_loggedIn = TRUE;
}
}
if(!_loggedIn)
{
ParameterList params;
params.append("name", _name);
params.append("copyright", _copyright.toAscii().data());
params.append("version", _version.toAscii().data());
params.append("build", __DATE__ " " __TIME__); // use C++ string concat
if (haveUsername)
params.append("username", _user);
if (haveDatabaseURL)
params.append("databaseURL", _databaseURL.toAscii().data());
if (_evaluation)
params.append("evaluation");
login2 newdlg(0, "", TRUE);
newdlg.set(params, 0);
if (newdlg.exec() == QDialog::Rejected)
return -1;
else
{
_databaseURL = newdlg._databaseURL;
_user = newdlg._user;
_loggedIn = TRUE;
}
QSqlQuery su;
su.prepare("SELECT rolsuper FROM pg_roles WHERE (rolname=:user);");
su.bindValue(":user", _user);
su.exec();
if (su.first())
{
if (! su.value(0).toBool() &&
QMessageBox::question(0, QObject::tr("Not Super User"),
QObject::tr("You are not logged in as a "
"database super user. The update "
"may fail. Are you sure you want "
"to continue?"),
QMessageBox::Yes,
QMessageBox::No | QMessageBox::Default) == QMessageBox::No)
return -2;
}
else if (su.lastError().type() != QSqlError::NoError &&
QMessageBox::question(0, QObject::tr("System Error"),
QObject::tr("<p>The application received a database "
"error while trying to check the user "
"status of %1. Would you like to try to "
"update anyway?<br><pre>%2")
.arg(_user)
.arg(su.lastError().databaseText()),
QMessageBox::Yes,
QMessageBox::No | QMessageBox::Default) == QMessageBox::No)
return -3;
}
LoaderWindow * mainwin = new LoaderWindow();
mainwin->setMultipleTransactions(multitrans);
mainwin->setDebugPkg(debugpkg);
if (! pkgfile.isEmpty())
{
autoRunCheck = mainwin->openFile(pkgfile);
}
// Start the upgrade if the -autoRun argument is used and file prereqs pass.
if (autoRunArg)
{
bool successful = autoRunCheck && ! pkgfile.isEmpty();
if (successful)
{
_autoRun = true;
successful = mainwin->sStart();
}
if (successful) // not else if
return 0;
else
{
#ifdef Q_OS_WIN32
mainwin->show();
#else
qWarning("%s", qPrintable(mainwin->_text->toPlainText()));
return 1;
#endif
}
}
else
mainwin->show();
return app.exec();
}
|