1 | /* |
---|
2 | * Copyright (C) 2010 Ixonos Plc. |
---|
3 | * Copyright (C) 2011 Philipp Spitzer, gregor herrmann |
---|
4 | * |
---|
5 | * This file is part of ConfClerk. |
---|
6 | * |
---|
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) |
---|
10 | * any later version. |
---|
11 | * |
---|
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 |
---|
15 | * more details. |
---|
16 | * |
---|
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/>. |
---|
19 | */ |
---|
20 | #include "event.h" |
---|
21 | #include "room.h" |
---|
22 | |
---|
23 | QString const Event::sTableName = QString("event"); |
---|
24 | |
---|
25 | QSqlRecord const Event::sColumns = Event::toRecord(QList<QSqlField>() |
---|
26 | << QSqlField("id", QVariant::Int) |
---|
27 | << QSqlField("xid_conference", QVariant::Int) |
---|
28 | << QSqlField("start", QVariant::DateTime) |
---|
29 | << QSqlField("duration", QVariant::Int) |
---|
30 | << QSqlField("xid_track", QVariant::Int) |
---|
31 | << QSqlField("type", QVariant::String) |
---|
32 | << QSqlField("language", QVariant::String) |
---|
33 | << QSqlField("favourite", QVariant::Bool) |
---|
34 | << QSqlField("alarm", QVariant::Bool) |
---|
35 | << QSqlField("tag", QVariant::String) |
---|
36 | << QSqlField("title", QVariant::String) |
---|
37 | << QSqlField("subtitle", QVariant::String) |
---|
38 | << QSqlField("abstract", QVariant::String) |
---|
39 | << QSqlField("description", QVariant::String)); |
---|
40 | |
---|
41 | Event::Event() : |
---|
42 | room_(NULL) |
---|
43 | { |
---|
44 | } |
---|
45 | |
---|
46 | Event Event::getById(int id, int conferenceId) |
---|
47 | { |
---|
48 | QSqlQuery query; |
---|
49 | query.prepare(selectQuery() + "WHERE id = :id AND xid_conference = :conf"); |
---|
50 | query.bindValue(":id", id); |
---|
51 | query.bindValue(":conf", conferenceId); |
---|
52 | return loadOne(query); |
---|
53 | } |
---|
54 | |
---|
55 | QList<Event> Event::getByDate(const QDate& date, int conferenceId, QString orderBy) |
---|
56 | { |
---|
57 | QSqlQuery query; |
---|
58 | query.prepare(selectQuery() + QString("WHERE xid_conference = :conf AND start >= :start AND start < :end ORDER BY %1").arg(orderBy)); |
---|
59 | query.bindValue(":conf", conferenceId); |
---|
60 | query.bindValue(":start", convertToDb(date, QVariant::DateTime)); |
---|
61 | query.bindValue(":end", convertToDb(date.addDays(1), QVariant::DateTime)); |
---|
62 | |
---|
63 | return load(query); |
---|
64 | } |
---|
65 | |
---|
66 | QList<Event> Event::getByDateAndRoom(const QDate& date, int conferenceId) |
---|
67 | { |
---|
68 | QSqlQuery query; |
---|
69 | QString aliasEvent("E"); |
---|
70 | QString aliasEventRoom("R"); |
---|
71 | query.prepare(QString("SELECT %1 FROM %2 %3, %4 %5 WHERE %3.xid_conference = :conf AND %3.start >= :start AND %3.start < :end AND %3.id = R.xid_event ORDER BY %5.xid_room, %3.start").arg( |
---|
72 | columnsForSelect(aliasEvent), Event::sTableName, aliasEvent, "EVENT_ROOM", aliasEventRoom)); |
---|
73 | query.bindValue(":conf", conferenceId); |
---|
74 | query.bindValue(":start", convertToDb(date, QVariant::DateTime)); |
---|
75 | query.bindValue(":end", convertToDb(date.addDays(1), QVariant::DateTime)); |
---|
76 | |
---|
77 | return load(query); |
---|
78 | } |
---|
79 | |
---|
80 | QList<Event> Event::nowEvents(int conferenceId, QString orderBy) |
---|
81 | { |
---|
82 | uint curTime_t = QDateTime(QDate::currentDate(),QTime::currentTime(),Qt::UTC).toTime_t(); |
---|
83 | //uint curTime_t = 1265457610; // for testing |
---|
84 | |
---|
85 | QSqlQuery query; |
---|
86 | query.prepare(selectQuery() + QString("WHERE xid_conference = :conf AND start <= :now1 AND ( start + duration ) > :now2 ORDER BY %1").arg(orderBy)); |
---|
87 | query.bindValue(":conf", conferenceId); |
---|
88 | query.bindValue(":now1", convertToDb(curTime_t, QVariant::DateTime)); |
---|
89 | query.bindValue(":now2", convertToDb(curTime_t, QVariant::DateTime)); |
---|
90 | |
---|
91 | return load(query); |
---|
92 | } |
---|
93 | |
---|
94 | QList<Event> Event::conflictEvents(int aEventId, int conferenceId) |
---|
95 | { |
---|
96 | QSqlQuery query; |
---|
97 | Event event = Event::getById(aEventId,conferenceId); |
---|
98 | query.prepare(selectQuery() + "WHERE xid_conference = :conf AND ( \ |
---|
99 | ( start >= :s1 AND ( start + duration ) < :e1 ) \ |
---|
100 | OR ( ( start + duration ) > :s2 AND start < :e2 ) ) \ |
---|
101 | AND favourite = 1 AND NOT id = :id ORDER BY start"); |
---|
102 | query.bindValue(":conf", event.conferenceId()); |
---|
103 | query.bindValue(":s1", convertToDb(event.start(), QVariant::DateTime)); |
---|
104 | query.bindValue(":e1", convertToDb(event.start().toTime_t()+event.duration(), QVariant::DateTime)); |
---|
105 | query.bindValue(":s2", convertToDb(event.start(), QVariant::DateTime)); |
---|
106 | query.bindValue(":e2", convertToDb(event.start().toTime_t()+event.duration(), QVariant::DateTime)); |
---|
107 | query.bindValue(":id", event.id()); |
---|
108 | |
---|
109 | return load(query); |
---|
110 | } |
---|
111 | |
---|
112 | QList<Event> Event::getFavByDate(const QDate& date, int conferenceId) |
---|
113 | { |
---|
114 | QSqlQuery query; |
---|
115 | query.prepare(selectQuery() + QString("WHERE xid_conference = :conf AND start >= :start AND start < :end AND favourite = 1 ORDER BY start")); |
---|
116 | query.bindValue(":conf", conferenceId); |
---|
117 | query.bindValue(":start", convertToDb(date, QVariant::DateTime)); |
---|
118 | query.bindValue(":end", convertToDb(date.addDays(1), QVariant::DateTime)); |
---|
119 | |
---|
120 | return load(query); |
---|
121 | } |
---|
122 | |
---|
123 | Room* Event::room() |
---|
124 | { |
---|
125 | if (room_ == NULL) |
---|
126 | { |
---|
127 | QSqlQuery query; |
---|
128 | query.prepare("SELECT xid_room FROM event_room WHERE xid_event = :id AND xid_conference = :conf"); |
---|
129 | query.bindValue(":id", id()); |
---|
130 | query.bindValue(":conf", conferenceId()); |
---|
131 | if (!query.isActive()) |
---|
132 | if (!query.exec()) |
---|
133 | throw OrmSqlException(query.lastError().text()); |
---|
134 | if (!query.next()) |
---|
135 | { |
---|
136 | qDebug() << "No room found for event id: " << id(); |
---|
137 | throw OrmNoObjectException(); |
---|
138 | } |
---|
139 | int id = query.record().value("xid_room").toInt(); |
---|
140 | room_ = new Room(Room::retrieve(id)); |
---|
141 | } |
---|
142 | return room_; |
---|
143 | } |
---|
144 | |
---|
145 | QString Event::roomName() |
---|
146 | { |
---|
147 | return room()->name(); |
---|
148 | } |
---|
149 | |
---|
150 | int Event::roomId() |
---|
151 | { |
---|
152 | return room()->id(); |
---|
153 | } |
---|
154 | |
---|
155 | QStringList Event::persons() |
---|
156 | { |
---|
157 | if( mPersonsList.isEmpty() ) |
---|
158 | { |
---|
159 | QSqlQuery query; |
---|
160 | // TODO: conference ID isn't used here |
---|
161 | query.prepare("SELECT person.name FROM person INNER JOIN event_person ON person.id = event_person.xid_person AND event_person.xid_event = :id AND event_person.xid_conference = :conf"); |
---|
162 | query.bindValue(":id", id()); |
---|
163 | query.bindValue(":conf", conferenceId()); |
---|
164 | query.exec(); |
---|
165 | // TODO: handle qeury error |
---|
166 | //qDebug() << query.lastError(); |
---|
167 | |
---|
168 | while(query.next()) |
---|
169 | mPersonsList.append(query.record().value("name").toString()); |
---|
170 | } |
---|
171 | |
---|
172 | return mPersonsList; |
---|
173 | } |
---|
174 | |
---|
175 | QMap<QString,QString> Event::links() |
---|
176 | { |
---|
177 | if ( mLinksList.isEmpty() ) |
---|
178 | { |
---|
179 | QSqlQuery query; |
---|
180 | query.prepare("SELECT name,url FROM link WHERE xid_event = :id AND xid_conference = :conf"); |
---|
181 | query.bindValue(":id", id()); |
---|
182 | query.bindValue(":conf", conferenceId()); |
---|
183 | query.exec(); |
---|
184 | // TODO: handle qeury error |
---|
185 | //qDebug() << query.lastError(); |
---|
186 | |
---|
187 | while(query.next()) |
---|
188 | mLinksList.insert(query.record().value("name").toString(), query.record().value("url").toString()); |
---|
189 | } |
---|
190 | return mLinksList; |
---|
191 | } |
---|
192 | |
---|
193 | bool Event::hasTimeConflict() const |
---|
194 | { |
---|
195 | if(!isFavourite()) // if it's not favourite, it can't have time-conflict |
---|
196 | return false; |
---|
197 | |
---|
198 | return conflictEvents(id(),conferenceId()).count() > 0 ? true : false; |
---|
199 | } |
---|
200 | |
---|
201 | void Event::setRoom(const QString &room) |
---|
202 | { |
---|
203 | Q_UNUSED(room); |
---|
204 | |
---|
205 | qWarning("WARINING: setRoom() is NOT IMPLEMENTED YET"); |
---|
206 | // TODO: implement |
---|
207 | } |
---|
208 | |
---|
209 | void Event::setPersons(const QStringList &persons) |
---|
210 | { |
---|
211 | Q_UNUSED(persons); |
---|
212 | |
---|
213 | qWarning("WARINING: setPersons() is NOT IMPLEMENTED YET"); |
---|
214 | // TODO: implement |
---|
215 | } |
---|
216 | |
---|
217 | void Event::setLinks(const QMap<QString,QString> &aLinks) |
---|
218 | { |
---|
219 | Q_UNUSED(aLinks); |
---|
220 | |
---|
221 | qWarning("WARINING: setLinks() is NOT IMPLEMENTED YET"); |
---|
222 | // TODO: implement |
---|
223 | } |
---|
224 | |
---|
225 | QList<Event> Event::getSearchResultByDate(const QDate& date, int conferenceId, QString orderBy) |
---|
226 | { |
---|
227 | QString strQuery = QString("SELECT %1 FROM EVENT INNER JOIN SEARCH_EVENT USING (xid_conference, id) ").arg(columnsForSelect()); |
---|
228 | strQuery += QString("WHERE xid_conference = :conf AND start >= :start AND start < :end ORDER BY %1").arg(orderBy); |
---|
229 | //qDebug() << strQuery; |
---|
230 | QList<Event> list; |
---|
231 | QSqlQuery query; |
---|
232 | try{ |
---|
233 | if( !query.prepare( strQuery ) ){ |
---|
234 | qDebug() << "QSqlQuery.prepare error"; |
---|
235 | throw OrmSqlException( query.lastError().text() ); |
---|
236 | } |
---|
237 | |
---|
238 | query.bindValue(":conf", conferenceId); |
---|
239 | query.bindValue(":start", convertToDb(date, QVariant::DateTime)); |
---|
240 | query.bindValue(":end", convertToDb(date.addDays(1), QVariant::DateTime)); |
---|
241 | |
---|
242 | list = load(query); |
---|
243 | } |
---|
244 | catch(OrmException &e) |
---|
245 | { |
---|
246 | qDebug() << "getSearchResultByDate error: " << e.text(); |
---|
247 | } |
---|
248 | catch(...){ |
---|
249 | qDebug() << "getSearchResultByDate failed ..."; |
---|
250 | } |
---|
251 | return list; |
---|
252 | } |
---|
253 | |
---|