Disable the highlights page when not connected
[quassel.git] / src / qtui / qtuiapplication.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "qtuiapplication.h"
22
23 #include <QIcon>
24 #include <QDir>
25 #include <QStringList>
26
27 #ifdef HAVE_KDE4
28 #  include <KStandardDirs>
29 #endif
30
31 #include "client.h"
32 #include "cliparser.h"
33 #include "mainwin.h"
34 #include "qtui.h"
35 #include "qtuisettings.h"
36
37 QtUiApplication::QtUiApplication(int &argc, char **argv)
38 #ifdef HAVE_KDE4
39     : KApplication()  // KApplication is deprecated in KF5
40 #else
41     : QApplication(argc, argv)
42 #endif
43 {
44 #ifdef HAVE_KDE4
45     Q_UNUSED(argc); Q_UNUSED(argv);
46
47     // Setup KDE's data dirs
48     // Because we can't use KDE stuff in (the class) Quassel directly, we need to do this here...
49     QStringList dataDirs = KGlobal::dirs()->findDirs("data", "");
50
51     // Just in case, also check our install prefix
52     dataDirs << QCoreApplication::applicationDirPath() + "/../share/apps/";
53
54     // Normalize and append our application name
55     for (int i = 0; i < dataDirs.count(); i++)
56         dataDirs[i] = QDir::cleanPath(dataDirs.at(i)) + "/quassel/";
57
58     // Add resource path and just in case.
59     // Workdir should have precedence
60     dataDirs.prepend(QCoreApplication::applicationDirPath() + "/data/");
61     dataDirs.append(":/data/");
62
63     // Append trailing '/' and check for existence
64     auto iter = dataDirs.begin();
65     while (iter != dataDirs.end()) {
66         if (!iter->endsWith(QDir::separator()) && !iter->endsWith('/'))
67             iter->append(QDir::separator());
68         if (!QFile::exists(*iter))
69             iter = dataDirs.erase(iter);
70         else
71             ++iter;
72     }
73
74     dataDirs.removeDuplicates();
75     Quassel::setDataDirPaths(dataDirs);
76
77 #else /* HAVE_KDE4 */
78
79     Quassel::setDataDirPaths(Quassel::findDataDirPaths());
80
81 #endif /* HAVE_KDE4 */
82
83 #if defined(HAVE_KDE4) || defined(Q_OS_MAC)
84     Quassel::disableCrashHandler();
85 #endif /* HAVE_KDE4 || Q_OS_MAC */
86
87     Quassel::setRunMode(Quassel::ClientOnly);
88
89 #if QT_VERSION < 0x050000
90     qInstallMsgHandler(Client::logMessage);
91 #else
92     qInstallMessageHandler(Client::logMessage);
93     connect(this, &QGuiApplication::commitDataRequest, this, &QtUiApplication::commitData, Qt::DirectConnection);
94     connect(this, &QGuiApplication::saveStateRequest, this, &QtUiApplication::saveState, Qt::DirectConnection);
95 #endif
96
97 #if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
98     QGuiApplication::setFallbackSessionManagementEnabled(false);
99 #endif
100 }
101
102
103 bool QtUiApplication::init()
104 {
105     if (Quassel::init()) {
106         // FIXME: MIGRATION 0.3 -> 0.4: Move database and core config to new location
107         // Move settings, note this does not delete the old files
108 #ifdef Q_OS_MAC
109         QSettings newSettings("quassel-irc.org", "quasselclient");
110 #else
111
112 # ifdef Q_OS_WIN
113         QSettings::Format format = QSettings::IniFormat;
114 # else
115         QSettings::Format format = QSettings::NativeFormat;
116 # endif
117
118         QString newFilePath = Quassel::configDirPath() + "quasselclient"
119                               + ((format == QSettings::NativeFormat) ? QLatin1String(".conf") : QLatin1String(".ini"));
120         QSettings newSettings(newFilePath, format);
121 #endif /* Q_OS_MAC */
122
123         if (newSettings.value("Config/Version").toUInt() == 0) {
124 #     ifdef Q_OS_MAC
125             QString org = "quassel-irc.org";
126 #     else
127             QString org = "Quassel Project";
128 #     endif
129             QSettings oldSettings(org, "Quassel Client");
130             if (oldSettings.allKeys().count()) {
131                 qWarning() << "\n\n*** IMPORTANT: Config and data file locations have changed. Attempting to auto-migrate your client settings...";
132                 foreach(QString key, oldSettings.allKeys())
133                 newSettings.setValue(key, oldSettings.value(key));
134                 newSettings.setValue("Config/Version", 1);
135                 qWarning() << "*   Your client settings have been migrated to" << newSettings.fileName();
136                 qWarning() << "*** Migration completed.\n\n";
137             }
138         }
139
140         // MIGRATION end
141
142         // Settings upgrade/downgrade handling
143         if (!migrateSettings()) {
144             qCritical() << "Could not load or upgrade client settings, terminating!";
145             return false;
146         }
147
148         // Checking if settings Icon Theme is valid
149         QString savedIcontheme = QtUiSettings().value("IconTheme", QVariant("")).toString();
150 #ifndef WITH_OXYGEN
151         if (savedIcontheme == "oxygen")
152             QtUiSettings().remove("IconTheme");
153 #endif
154 #ifndef WITH_BREEZE
155         if (savedIcontheme == "breeze")
156             QtUiSettings().remove("IconTheme");
157 #endif
158 #ifndef WITH_BREEZE_DARK
159         if (savedIcontheme == "breezedark")
160             QtUiSettings().remove("IconTheme");
161 #endif
162
163         // Set the icon theme
164         if (Quassel::isOptionSet("icontheme"))
165             QIcon::setThemeName(Quassel::optionValue("icontheme"));
166         else if (QtUiSettings().value("IconTheme", QVariant("")).toString() != "")
167             QIcon::setThemeName(QtUiSettings().value("IconTheme").toString());
168         else if (QIcon::themeName().isEmpty())
169             // Some platforms don't set a default icon theme; chances are we can find our bundled theme though
170             QIcon::setThemeName("breeze");
171
172         Client::init(new QtUi());
173
174         // Init UI only after the event loop has started
175         // TODO Qt5: Make this a lambda
176         QTimer::singleShot(0, this, SLOT(initUi()));
177
178         Quassel::registerQuitHandler([]() {
179             QtUi::mainWindow()->quit();
180         });
181
182
183         return true;
184     }
185     return false;
186 }
187
188
189 QtUiApplication::~QtUiApplication()
190 {
191     Client::destroy();
192     Quassel::destroy();
193 }
194
195
196 void QtUiApplication::initUi()
197 {
198     QtUi::instance()->init();
199     resumeSessionIfPossible();
200 }
201
202
203 bool QtUiApplication::migrateSettings()
204 {
205     // --------
206     // Check major settings version.  This represents incompatible changes between settings
207     // versions.  So far, we only have 1.
208     QtUiSettings s;
209     uint versionMajor = s.version();
210     if (versionMajor != 1) {
211         qCritical() << qPrintable(QString("Invalid client settings version '%1'")
212                                   .arg(versionMajor));
213         return false;
214     }
215
216     // --------
217     // Check minor settings version, handling upgrades/downgrades as needed
218     // Current minor version
219     //
220     // NOTE:  If you increase the minor version, you MUST ALSO add new version upgrade logic in
221     // applySettingsMigration()!  Otherwise, settings upgrades will fail.
222     const uint VERSION_MINOR_CURRENT = 7;
223     // Stored minor version
224     uint versionMinor = s.versionMinor();
225
226     if (versionMinor == VERSION_MINOR_CURRENT) {
227         // At latest version, no need to migrate defaults or other settings
228         return true;
229     } else if (versionMinor == 0) {
230         // New configuration, store as current version
231         qDebug() << qPrintable(QString("Set up new client settings v%1.%2")
232                                .arg(versionMajor).arg(VERSION_MINOR_CURRENT));
233         s.setVersionMinor(VERSION_MINOR_CURRENT);
234
235         // Update the settings stylesheet for first setup.  We don't know if older content exists,
236         // if the configuration got erased separately, etc.
237         QtUiStyle qtUiStyle;
238         qtUiStyle.generateSettingsQss();
239         return true;
240     } else if (versionMinor < VERSION_MINOR_CURRENT) {
241         // We're upgrading - apply the neccessary upgrades from each interim version
242         // curVersion will never equal VERSION_MINOR_CURRENT, as it represents the version before
243         // the most recent applySettingsMigration() call.
244         for (uint curVersion = versionMinor; curVersion < VERSION_MINOR_CURRENT; curVersion++) {
245             if (!applySettingsMigration(s, curVersion + 1)) {
246                 // Something went wrong, time to bail out
247                 qCritical() << qPrintable(QString("Could not migrate client settings from v%1.%2 "
248                                                   "to v%1.%3")
249                                           .arg(versionMajor).arg(curVersion).arg(curVersion + 1));
250                 // Keep track of the last successful upgrade to avoid repeating it on next start
251                 s.setVersionMinor(curVersion);
252                 return false;
253             }
254         }
255         // Migration successful!
256         qDebug() << qPrintable(QString("Successfully migrated client settings from v%1.%2 to "
257                                        "v%1.%3")
258                                .arg(versionMajor).arg(versionMinor).arg(VERSION_MINOR_CURRENT));
259         // Store the new minor version
260         s.setVersionMinor(VERSION_MINOR_CURRENT);
261         return true;
262     } else {
263         // versionMinor > VERSION_MINOR_CURRENT
264         // The user downgraded to an older version of Quassel.  Let's hope for the best.
265         // Don't change the minorVersion as the newer version's upgrade logic has already run.
266         qWarning() << qPrintable(QString("Client settings v%1.%2 is newer than latest known v%1.%3,"
267                                          " things might not work!")
268                                  .arg(versionMajor).arg(versionMinor).arg(VERSION_MINOR_CURRENT));
269         return true;
270     }
271 }
272
273
274 bool QtUiApplication::applySettingsMigration(QtUiSettings settings, const uint newVersion)
275 {
276     switch (newVersion) {
277     // Version 0 and 1 aren't valid upgrade paths - one represents no version, the other is the
278     // oldest version.  Ignore those, start from 2 and higher.
279     // Each missed version will be called in sequence.  E.g. to upgrade from '1' to '3', this
280     // function will be called with '2', then '3'.
281     // Use explicit scope via { ... } to avoid cross-initialization
282     //
283     // In most cases, the goal is to preserve the older default values for keys that haven't been
284     // saved.  Exceptions will be noted below.
285     // NOTE:  If you add new upgrade logic here, you MUST ALSO increase VERSION_MINOR_CURRENT in
286     // migrateSettings()!  Otherwise, your upgrade logic won't ever be called.
287     case 7:
288     {
289         // New default changes: UseProxy is no longer used in CoreAccountSettings
290         CoreAccountSettings s;
291         for (auto &&accountId : s.knownAccounts()) {
292             auto map = s.retrieveAccountData(accountId);
293             if (!map.value("UseProxy", false).toBool()) {
294                 map["ProxyType"] = static_cast<int>(QNetworkProxy::ProxyType::NoProxy);
295             }
296             map.remove("UseProxy");
297             s.storeAccountData(accountId, map);
298         }
299
300         // Migration complete!
301         return true;
302     }
303     case 6:
304     {
305         // New default changes: sender colors switched around to Tango-ish theme
306
307         // --------
308         // QtUiStyle settings
309         QtUiStyleSettings settingsUiStyleColors("Colors");
310         // Preserve the old default values for all variants
311         const QColor oldDefaultSenderColorSelf = QColor(0, 0, 0);
312         const QList<QColor> oldDefaultSenderColors = QList<QColor> {
313             QColor(204,  13, 127),  /// Sender00
314             QColor(142,  85, 233),  /// Sender01
315             QColor(179,  14,  14),  /// Sender02
316             QColor( 23, 179,  57),  /// Sender03
317             QColor( 88, 175, 179),  /// Sender04
318             QColor(157,  84, 179),  /// Sender05
319             QColor(179, 151, 117),  /// Sender06
320             QColor( 49, 118, 179),  /// Sender07
321             QColor(233,  13, 127),  /// Sender08
322             QColor(142,  85, 233),  /// Sender09
323             QColor(179,  14,  14),  /// Sender10
324             QColor( 23, 179,  57),  /// Sender11
325             QColor( 88, 175, 179),  /// Sender12
326             QColor(157,  84, 179),  /// Sender13
327             QColor(179, 151, 117),  /// Sender14
328             QColor( 49, 118, 179),  /// Sender15
329         };
330         if (!settingsUiStyleColors.valueExists("SenderSelf")) {
331             // Preserve the old default sender color if none set
332             settingsUiStyleColors.setValue("SenderSelf", oldDefaultSenderColorSelf);
333         }
334         QString senderColorId;
335         for (int i = 0; i < oldDefaultSenderColors.count(); i++) {
336             // Get the sender color ID for each available color
337             QString dez = QString::number(i);
338             if (dez.length() == 1) dez.prepend('0');
339             senderColorId = QString("Sender" + dez);
340             if (!settingsUiStyleColors.valueExists(senderColorId)) {
341                 // Preserve the old default sender color if none set
342                 settingsUiStyleColors.setValue(senderColorId, oldDefaultSenderColors[i]);
343             }
344         }
345
346         // Update the settings stylesheet with old defaults
347         QtUiStyle qtUiStyle;
348         qtUiStyle.generateSettingsQss();
349         // --------
350
351         // Migration complete!
352         return true;
353     }
354     case 5:
355     {
356         // New default changes: sender colors apply to nearly all messages with nicks
357
358         // --------
359         // QtUiStyle settings
360         QtUiStyleSettings settingsUiStyleColors("Colors");
361         const QString useNickGeneralColorsId = "UseNickGeneralColors";
362         if (!settingsUiStyleColors.valueExists(useNickGeneralColorsId)) {
363             // New default is true, preserve previous behavior by setting to false
364             settingsUiStyleColors.setValue(useNickGeneralColorsId, false);
365         }
366
367         // Update the settings stylesheet with old defaults
368         QtUiStyle qtUiStyle;
369         qtUiStyle.generateSettingsQss();
370         // --------
371
372         // Migration complete!
373         return true;
374     }
375     case 4:
376     {
377         // New default changes: system locale used to generate a timestamp format string, deciding
378         // 24-hour or 12-hour timestamp.
379
380         // --------
381         // ChatView settings
382         const QString useCustomTimestampFormatId = "ChatView/__default__/UseCustomTimestampFormat";
383         if (!settings.valueExists(useCustomTimestampFormatId)) {
384             // New default value is false, preserve previous behavior by setting to true
385             settings.setValue(useCustomTimestampFormatId, true);
386         }
387         // --------
388
389         // Migration complete!
390         return true;
391     }
392     case 3:
393     {
394         // New default changes: per-chat history and line wrapping enabled by default.
395
396         // --------
397         // InputWidget settings
398         UiSettings settingsInputWidget("InputWidget");
399         const QString enableInputPerChatId = "EnablePerChatHistory";
400         if (!settingsInputWidget.valueExists(enableInputPerChatId)) {
401             // New default value is true, preserve previous behavior by setting to false
402             settingsInputWidget.setValue(enableInputPerChatId, false);
403         }
404
405         const QString enableInputLinewrap = "EnableLineWrap";
406         if (!settingsInputWidget.valueExists(enableInputLinewrap)) {
407             // New default value is true, preserve previous behavior by setting to false
408             settingsInputWidget.setValue(enableInputLinewrap, false);
409         }
410         // --------
411
412         // Migration complete!
413         return true;
414     }
415     case 2:
416     {
417         // New default changes: sender <nick> brackets disabled, sender colors and sender CTCP
418         // colors enabled.
419
420         // --------
421         // ChatView settings
422         const QString timestampFormatId = "ChatView/__default__/TimestampFormat";
423         if (!settings.valueExists(timestampFormatId)) {
424             // New default value is " hh:mm:ss", preserve old default of "[hh:mm:ss]"
425             settings.setValue(timestampFormatId, "[hh:mm:ss]");
426         }
427
428         const QString showSenderBracketsId = "ChatView/__default__/ShowSenderBrackets";
429         if (!settings.valueExists(showSenderBracketsId)) {
430             // New default is false, preserve previous behavior by setting to true
431             settings.setValue(showSenderBracketsId, true);
432         }
433         // --------
434
435         // --------
436         // QtUiStyle settings
437         QtUiStyleSettings settingsUiStyleColors("Colors");
438         const QString useSenderColorsId = "UseSenderColors";
439         if (!settingsUiStyleColors.valueExists(useSenderColorsId)) {
440             // New default is true, preserve previous behavior by setting to false
441             settingsUiStyleColors.setValue(useSenderColorsId, false);
442         }
443
444         const QString useSenderActionColorsId = "UseSenderActionColors";
445         if (!settingsUiStyleColors.valueExists(useSenderActionColorsId)) {
446             // New default is true, preserve previous behavior by setting to false
447             settingsUiStyleColors.setValue(useSenderActionColorsId, false);
448         }
449
450         // Update the settings stylesheet with old defaults
451         QtUiStyle qtUiStyle;
452         qtUiStyle.generateSettingsQss();
453         // --------
454
455         // Migration complete!
456         return true;
457     }
458     default:
459         // Something unexpected happened
460         return false;
461     }
462 }
463
464
465 void QtUiApplication::commitData(QSessionManager &manager)
466 {
467     Q_UNUSED(manager)
468     _aboutToQuit = true;
469 }
470
471
472 void QtUiApplication::saveState(QSessionManager &manager)
473 {
474     //qDebug() << QString("saving session state to id %1").arg(manager.sessionId());
475     // AccountId activeCore = Client::currentCoreAccount().accountId(); // FIXME store this!
476     SessionSettings s(manager.sessionId());
477     s.setSessionAge(0);
478     QtUi::mainWindow()->saveStateToSettings(s);
479 }
480
481
482 void QtUiApplication::resumeSessionIfPossible()
483 {
484     // load all sessions
485     if (isSessionRestored()) {
486         qDebug() << QString("restoring from session %1").arg(sessionId());
487         SessionSettings s(sessionId());
488         s.sessionAging();
489         s.setSessionAge(0);
490         QtUi::mainWindow()->restoreStateFromSettings(s);
491         s.cleanup();
492     }
493     else {
494         SessionSettings s(QString("1"));
495         s.sessionAging();
496         s.cleanup();
497     }
498 }