2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011-2017 Philipp Spitzer, gregor herrmann, Stefan Stahl
5 * This file is part of ConfClerk.
7 * ConfClerk is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation, either version 2 of the License, or (at your option)
12 * ConfClerk is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * ConfClerk. If not, see <http://www.gnu.org/licenses/>.
27 #if QT_VERSION >= 0x050000
28 #include <QStandardPaths>
30 #include <QDesktopServices>
34 #include "sqlengine.h"
36 #include "conference.h"
40 SqlEngine::SqlEngine(QObject *aParent): QObject(aParent), DATE_FORMAT("yyyy-MM-dd"), TIME_FORMAT("hh:mm") {
41 #if QT_VERSION >= 0x050000
42 QDir dbPath(QStandardPaths::writableLocation(QStandardPaths::DataLocation));
44 QDir dbPath(QDesktopServices::storageLocation(QDesktopServices::DataLocation));
46 dbFilename = dbPath.absoluteFilePath("ConfClerk.sqlite");
50 SqlEngine::~SqlEngine() {
54 void SqlEngine::open() {
55 // we may have to create the directory of the database
56 QFileInfo dbFilenameInfo(dbFilename);
58 cwd.mkpath(dbFilenameInfo.absolutePath());
59 // We don't have to handle errors because in worst case, opening the database will fail
60 // and db.isOpen() returns false.
61 db = QSqlDatabase::addDatabase("QSQLITE");
62 db.setDatabaseName(dbFilename);
67 int SqlEngine::dbSchemaVersion() {
69 if (!query.exec("PRAGMA user_version")) {
70 emitSqlQueryError(query);
74 int version = query.value(0).toInt();
76 // check whether the tables are existing
77 if (!query.exec("select count(*) from sqlite_master where name='CONFERENCE'")) {
78 emitSqlQueryError(query);
82 if (query.value(0).toInt() == 1) return 0; // tables are existing
83 return -1; // database seems to be empty (or has other tables)
89 bool SqlEngine::updateDbSchemaVersion000To001() {
90 return applySqlFile(":/dbschema000to001.sql");
94 bool SqlEngine::updateDbSchemaVersion001To002() {
95 return applySqlFile(":/dbschema001to002.sql");
99 bool SqlEngine::createCurrentDbSchema() {
100 return applySqlFile(":/dbschema002.sql");
104 bool SqlEngine::createOrUpdateDbSchema() {
105 int version = dbSchemaVersion();
108 // the error has already been emitted by the previous function
112 return createCurrentDbSchema();
114 // db schema version 0
115 return updateDbSchemaVersion000To001();
117 // db schema version 1
118 return updateDbSchemaVersion001To002();
123 // unsupported schema
124 emit dbError(tr("Unsupported database schema version %1.").arg(version));
130 bool SqlEngine::applySqlFile(const QString sqlFile) {
132 file.open(QIODevice::ReadOnly | QIODevice::Text);
133 QString allSqlStatements = file.readAll();
135 foreach(QString sql, allSqlStatements.split(";")) {
136 if (sql.trimmed().isEmpty()) // do not execute empty queries like the last character from create_tables.sql
138 if (!query.exec(sql)) {
139 emitSqlQueryError(query);
147 void SqlEngine::addConferenceToDB(QHash<QString,QString> &aConference, int conferenceId) {
149 bool insert = conferenceId <= 0;
150 if (insert) { // insert conference
151 query.prepare("INSERT INTO CONFERENCE (title,url,subtitle,venue,city,start,end,"
152 "day_change,timeslot_duration,utc_offset,display_time_shift,active) "
153 " VALUES (:title,:url,:subtitle,:venue,:city,:start,:end,"
154 ":day_change,:timeslot_duration,:utc_offset,:display_time_shift,:active)");
155 } else { // update conference
156 query.prepare("UPDATE CONFERENCE set title=:title, url=:url, subtitle=:subtitle, venue=:venue, city=:city, start=:start, end=:end,"
157 "day_change=:day_change, timeslot_duration=:timeslot_duration, utc_offset=:utc_offset, display_time_shift=:display_time_shift, active=:active "
160 foreach (QString prop_name, (QList<QString>() << "title" << "url" << "subtitle" << "venue" << "city")) {
161 query.bindValue(QString(":") + prop_name, aConference[prop_name]);
163 query.bindValue(":start", QDateTime(QDate::fromString(aConference["start"],DATE_FORMAT),QTime(0,0),Qt::UTC).toTime_t());
164 query.bindValue(":end", QDateTime(QDate::fromString(aConference["end"],DATE_FORMAT),QTime(0,0),Qt::UTC).toTime_t());
165 QTime dayChange = QTime::fromString(aConference["day_change"].left(TIME_FORMAT.size()), TIME_FORMAT);
166 query.bindValue(":day_change", QTime(0, 0).secsTo(dayChange));
167 query.bindValue(":timeslot_duration", -QTime::fromString(aConference["timeslot_duration"],TIME_FORMAT).secsTo(QTime(0,0)));
169 if (!aConference.value("utc_offset").isEmpty()) utc_offset = aConference["utc_offset"].toInt();
170 query.bindValue(":utc_offset", utc_offset);
171 QVariant display_time_shift;
172 if (!aConference.value("display_time_shift").isEmpty()) display_time_shift = aConference["display_time_shift"].toInt();
173 query.bindValue(":display_time_shift", display_time_shift);
174 query.bindValue(":active", 1);
175 if (!insert) query.bindValue(":id", conferenceId);
177 emitSqlQueryError(query);
179 aConference["id"] = query.lastInsertId().toString(); // 'id' is assigned automatically
181 aConference["id"] = QVariant(conferenceId).toString();
186 void SqlEngine::addEventToDB(QHash<QString,QString> &aEvent) {
187 int conferenceId = aEvent["conference_id"].toInt();
188 Conference conference = Conference::getById(conferenceId);
190 // insert event track to table and get track id
193 QString trackName = aEvent["track"];
194 if (trackName.isEmpty()) trackName = tr("No track");
197 track = Track::retrieveByName(conferenceId, trackName);
198 trackId = track.id();
200 catch (OrmNoObjectException &e) {
201 track.setConference(conferenceId);
202 track.setName(trackName);
203 trackId = track.insert();
205 QDate startDate = QDate::fromString(aEvent["date"], DATE_FORMAT);
206 QTime startTime = QTime::fromString(aEvent["start"], TIME_FORMAT);
207 QDateTime startDateTime;
208 startDateTime.setTimeSpec(Qt::UTC);
209 startDateTime = QDateTime(startDate, startTime, Qt::UTC);
211 bool event_exists = false;
213 QSqlQuery check_event_query;
214 check_event_query.prepare("SELECT * FROM EVENT WHERE xid_conference = :xid_conference AND id = :id");
215 check_event_query.bindValue(":xid_conference", aEvent["conference_id"]);
216 check_event_query.bindValue(":id", aEvent["id"]);
217 if (!check_event_query.exec()) {
218 qWarning() << "check event failed, conference id:" << aEvent["xid_conference"]
219 << "event id:" << aEvent["id"]
220 << "error:" << check_event_query.lastError()
224 if (check_event_query.isActive() and check_event_query.isSelect() and check_event_query.next()) {
231 result.prepare("UPDATE EVENT SET"
233 ", duration = :duration"
234 ", xid_track = :xid_track"
236 ", language = :language"
239 ", subtitle = :subtitle"
240 ", abstract = :abstract"
241 ", description = :description"
242 " WHERE id = :id AND xid_conference = :xid_conference");
244 result.prepare("INSERT INTO EVENT "
245 " (xid_conference, id, start, duration, xid_track, type, "
246 " language, tag, title, subtitle, abstract, description) "
247 " VALUES (:xid_conference, :id, :start, :duration, :xid_track, :type, "
248 ":language, :tag, :title, :subtitle, :abstract, :description)");
250 result.bindValue(":xid_conference", aEvent["conference_id"]);
251 result.bindValue(":start", QString::number(startDateTime.toTime_t()));
252 result.bindValue(":duration", -QTime::fromString(aEvent["duration"],TIME_FORMAT).secsTo(QTime(0,0)));
253 result.bindValue(":xid_track", trackId);
254 static const QList<QString> props = QList<QString>()
255 << "id" << "type" << "language" << "tag" << "title" << "subtitle" << "abstract" << "description";
256 foreach (QString prop_name, props) {
257 result.bindValue(QString(":") + prop_name, aEvent[prop_name]);
259 if (!result.exec()) {
260 qWarning() << "event insert/update failed:" << result.lastError();
265 void SqlEngine::addPersonToDB(QHash<QString,QString> &aPerson) {
267 query.prepare("INSERT INTO PERSON (xid_conference,id,name) VALUES (:xid_conference, :id, :name)");
268 query.bindValue(":xid_conference", aPerson["conference_id"]);
269 query.bindValue(":id", aPerson["id"]);
270 query.bindValue(":name", aPerson["name"]);
271 query.exec(); // TODO some queries fail due to the unique key constraint
272 // if (!query.exec()) qDebug() << "SQL query 'insert into person' failed: " << query.lastError();
274 query = QSqlQuery(db);
275 query.prepare("INSERT INTO EVENT_PERSON (xid_conference,xid_event,xid_person) VALUES (:xid_conference, :xid_event, :xid_person)");
276 query.bindValue(":xid_conference", aPerson["conference_id"]);
277 query.bindValue(":xid_event", aPerson["event_id"]);
278 query.bindValue(":xid_person", aPerson["id"]);
279 query.exec(); // TODO some queries fail due to the unique key constraint
280 // if (!query.exec()) qDebug() << "SQL query 'insert into event_person' failed: " << query.lastError();
284 void SqlEngine::addRoomToDB(QHash<QString,QString> &aRoom) {
286 query.prepare("SELECT id FROM ROOM WHERE xid_conference=:conference_id and name=:name");
287 query.bindValue(":conference_id", aRoom["conference_id"]);
288 query.bindValue(":name", aRoom["name"]);
290 emitSqlQueryError(query);
291 // now we have to check whether ROOM record with 'name' exists or not,
292 // - if it doesn't exist yet, then we have to add that record to 'ROOM' table
293 // and assign autoincremented 'id' to aRoom
294 // - if it exists, then we need to get its 'id' and assign it to aRoom
296 if(query.next()) // ROOM record with 'name' already exists: we need to get its 'id'
298 aRoom["id"] = query.value(0).toString();
300 else // ROOM record doesn't exist yet, need to create it
302 query = QSqlQuery(db);
303 query.prepare("INSERT INTO ROOM (xid_conference,name) VALUES (:xid_conference, :name)");
304 query.bindValue(":xid_conference", aRoom["conference_id"]);
305 query.bindValue(":name", aRoom["name"]);
307 emitSqlQueryError(query);
308 aRoom["id"]= query.lastInsertId().toString(); // 'id' is assigned automatically
309 //LOG_AUTOTEST(query);
312 // remove previous conference/room records; room names might have changed
313 query = QSqlQuery(db);
314 query.prepare("DELETE FROM EVENT_ROOM WHERE xid_conference=:conference_id AND xid_event=:event_id");
315 query.bindValue(":conference_id", aRoom["conference_id"]);
316 query.bindValue(":event_id", aRoom["event_id"]);
318 emitSqlQueryError(query);
319 // and insert new ones
320 query = QSqlQuery(db);
321 query.prepare("INSERT INTO EVENT_ROOM (xid_conference,xid_event,xid_room) VALUES (:conference_id, :event_id, :room_id)");
322 query.bindValue(":conference_id", aRoom["conference_id"]);
323 query.bindValue(":event_id", aRoom["event_id"]);
324 query.bindValue(":room_id", aRoom["id"]);
326 emitSqlQueryError(query);
330 void SqlEngine::addLinkToDB(QHash<QString,QString> &aLink) {
331 //TODO: check if the link doesn't exist before inserting
333 query.prepare("INSERT INTO LINK (xid_event, xid_conference, name, url) VALUES (:xid_event, :xid_conference, :name, :url)");
334 query.bindValue(":xid_event", aLink["event_id"]);
335 query.bindValue(":xid_conference", aLink["conference_id"]);
336 query.bindValue(":name", aLink["name"]);
337 query.bindValue(":url", aLink["url"]);
339 emitSqlQueryError(query);
343 bool SqlEngine::searchEvent(int aConferenceId, const QMultiHash<QString,QString> &aColumns, const QString &aKeyword) {
344 if (aColumns.empty()) return false;
348 query.exec("DROP TABLE IF EXISTS SEARCH_EVENT");
349 emitSqlQueryError(query);
352 query.exec("CREATE TEMP TABLE SEARCH_EVENT ( xid_conference INTEGER NOT NULL, id INTEGER NOT NULL )");
353 emitSqlQueryError(query);
356 QString sql = QString("INSERT INTO SEARCH_EVENT ( xid_conference, id ) "
357 "SELECT DISTINCT EVENT.xid_conference, EVENT.id FROM EVENT ");
358 if( aColumns.contains("ROOM") ){
359 sql += "LEFT JOIN EVENT_ROOM ON ( EVENT.xid_conference = EVENT_ROOM.xid_conference AND EVENT.id = EVENT_ROOM.xid_event ) ";
360 sql += "LEFT JOIN ROOM ON ( EVENT_ROOM.xid_room = ROOM.id ) ";
362 if( aColumns.contains("PERSON") ){
363 sql += "LEFT JOIN EVENT_PERSON ON ( EVENT.xid_conference = EVENT_PERSON.xid_conference AND EVENT.id = EVENT_PERSON.xid_event ) ";
364 sql += "LEFT JOIN PERSON ON ( EVENT_PERSON.xid_person = PERSON.id ) ";
366 sql += QString("WHERE EVENT.xid_conference = %1 AND (").arg( aConferenceId );
368 QStringList searchKeywords = aKeyword.trimmed().split(QRegExp("\\s+"));
369 QStringList whereAnd;
370 for (int i=0; i < searchKeywords.count(); i++) {
372 foreach (QString table, aColumns.uniqueKeys()) {
373 foreach (QString column, aColumns.values(table)){
374 whereOr.append(QString("%1.%2 LIKE '\%' || :%1%2%3 || '\%'").arg(table).arg(column).arg(i));
377 whereAnd.append(whereOr.join(" OR "));
379 sql += whereAnd.join(") AND (");
383 for (int i = 0; i != searchKeywords.size(); ++i) {
384 QString keyword = searchKeywords[i];
385 foreach (QString table, aColumns.uniqueKeys()) {
386 foreach (QString column, aColumns.values(table)) {
387 query.bindValue(QString(":%1%2%3").arg(table).arg(column).arg(i), keyword );
392 bool success = query.exec();
393 emitSqlQueryError(query);
398 bool SqlEngine::beginTransaction() {
400 bool success = query.exec("BEGIN IMMEDIATE TRANSACTION");
401 emitSqlQueryError(query);
406 bool SqlEngine::commitTransaction() {
408 bool success = query.exec("COMMIT");
409 emitSqlQueryError(query);
414 bool SqlEngine::rollbackTransaction() {
416 bool success = query.exec("ROLLBACK");
417 emitSqlQueryError(query);
422 bool SqlEngine::deleteConference(int id) {
424 bool success = query.exec("BEGIN IMMEDIATE TRANSACTION");
425 emitSqlQueryError(query);
428 sqlList << "DELETE FROM LINK WHERE xid_conference = ?"
429 << "DELETE FROM EVENT_ROOM WHERE xid_conference = ?"
430 << "DELETE FROM EVENT_PERSON WHERE xid_conference = ?"
431 << "DELETE FROM EVENT WHERE xid_conference = ?"
432 << "DELETE FROM ROOM WHERE xid_conference = ?"
433 << "DELETE FROM PERSON WHERE xid_conference = ?"
434 << "DELETE FROM TRACK WHERE xid_conference = ?"
435 << "DELETE FROM CONFERENCE WHERE id = ?";
437 foreach (const QString& sql, sqlList) {
439 query.bindValue(0, id);
440 success &= query.exec();
441 emitSqlQueryError(query);
444 success &= query.exec("COMMIT");
445 emitSqlQueryError(query);
451 void SqlEngine::emitSqlQueryError(const QSqlQuery &query) {
452 QSqlError error = query.lastError();
453 if (error.type() == QSqlError::NoError) return;
454 emit dbError(error.text());