matrixion/src/MainWindow.cpp

490 lines
17 KiB
C++
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
2021-03-05 02:35:15 +03:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
2017-04-06 02:06:42 +03:00
2017-09-24 17:39:06 +03:00
#include <QApplication>
#include <QMessageBox>
2017-10-28 15:46:39 +03:00
2023-06-02 02:37:53 +03:00
#include <mtx/events/collections.hpp>
#include <mtx/requests.hpp>
2020-10-27 19:45:28 +03:00
#include <mtx/responses/login.hpp>
2022-07-08 18:28:28 +03:00
#include "AliasEditModel.h"
2022-01-12 21:09:46 +03:00
#include "BlurhashProvider.h"
#include "Cache.h"
2020-12-17 00:10:09 +03:00
#include "Cache_p.h"
2017-10-28 15:46:39 +03:00
#include "ChatPage.h"
2022-01-12 21:09:46 +03:00
#include "Clipboard.h"
#include "ColorImageProvider.h"
#include "CombinedImagePackModel.h"
#include "CompletionProxyModel.h"
2017-10-28 15:46:39 +03:00
#include "Config.h"
2022-01-12 21:09:46 +03:00
#include "EventAccessors.h"
2023-05-19 04:15:55 +03:00
#include "GridImagePackModel.h"
2022-01-12 21:09:46 +03:00
#include "ImagePackListModel.h"
#include "InviteesModel.h"
2020-12-25 17:14:00 +03:00
#include "JdenticonProvider.h"
2018-07-17 16:37:25 +03:00
#include "Logging.h"
2017-10-28 15:46:39 +03:00
#include "LoginPage.h"
#include "MainWindow.h"
#include "MatrixClient.h"
2021-05-30 04:09:21 +03:00
#include "MemberList.h"
2022-01-12 21:09:46 +03:00
#include "MxcImageProvider.h"
2022-05-27 17:31:54 +03:00
#include "PowerlevelsEditModels.h"
2022-01-12 21:09:46 +03:00
#include "ReadReceiptsModel.h"
2017-10-28 15:46:39 +03:00
#include "RegisterPage.h"
2022-01-12 21:09:46 +03:00
#include "RoomDirectoryModel.h"
#include "RoomsModel.h"
#include "SingleImagePackModel.h"
2017-10-28 15:46:39 +03:00
#include "TrayIcon.h"
#include "UserDirectoryModel.h"
2017-11-02 01:41:13 +03:00
#include "UserSettingsPage.h"
2022-01-12 21:09:46 +03:00
#include "UsersModel.h"
2018-09-21 11:30:02 +03:00
#include "Utils.h"
#include "dock/Dock.h"
2022-01-12 21:09:46 +03:00
#include "emoji/Provider.h"
#include "encryption/DeviceVerificationFlow.h"
#include "encryption/SelfVerificationStatus.h"
#include "timeline/DelegateChooser.h"
#include "timeline/TimelineFilter.h"
2022-01-12 21:09:46 +03:00
#include "timeline/TimelineViewManager.h"
#include "ui/HiddenEvents.h"
2022-01-12 21:09:46 +03:00
#include "ui/MxcAnimatedImage.h"
#include "ui/MxcMediaProxy.h"
#include "ui/NhekoCursorShape.h"
#include "ui/NhekoDropArea.h"
#include "ui/NhekoEventObserver.h"
2022-01-12 21:09:46 +03:00
#include "ui/NhekoGlobalObject.h"
#include "ui/RoomSummary.h"
2022-01-12 21:09:46 +03:00
#include "ui/UIA.h"
2022-06-16 02:19:26 +03:00
#include "voip/CallManager.h"
#include "voip/WebRTCSession.h"
#ifdef NHEKO_DBUS_SYS
#include "dbus/NhekoDBusApi.h"
#endif
MainWindow *MainWindow::instance_ = nullptr;
2022-01-12 21:09:46 +03:00
MainWindow::MainWindow(QWindow *parent)
: QQuickView(parent)
, userSettings_{UserSettings::instance()}
2017-04-06 02:06:42 +03:00
{
2021-09-18 01:22:33 +03:00
instance_ = this;
2022-01-12 21:09:46 +03:00
MainWindow::setWindowTitle(0);
setObjectName(QStringLiteral("MainWindow"));
2022-01-12 21:09:46 +03:00
setResizeMode(QQuickView::SizeRootObjectToView);
setMinimumHeight(conf::window::minHeight);
setMinimumWidth(conf::window::minWidth);
2022-01-12 21:09:46 +03:00
restoreWindowSize();
2021-09-18 01:22:33 +03:00
2022-01-12 21:09:46 +03:00
chat_page_ = new ChatPage(userSettings_, this);
registerQmlTypes();
2021-09-18 01:22:33 +03:00
2022-01-12 21:09:46 +03:00
setColor(Theme::paletteFromTheme(userSettings_->theme()).window().color());
setSource(QUrl(QStringLiteral("qrc:///qml/Root.qml")));
2021-09-18 01:22:33 +03:00
2022-01-12 21:09:46 +03:00
trayIcon_ = new TrayIcon(QStringLiteral(":/logos/nheko.svg"), this);
2021-09-18 01:22:33 +03:00
2022-01-24 02:41:55 +03:00
connect(chat_page_, &ChatPage::closing, this, [this] { switchToLoginPage(""); });
2021-09-18 01:22:33 +03:00
connect(chat_page_, &ChatPage::unreadMessages, this, &MainWindow::setWindowTitle);
connect(chat_page_, SIGNAL(unreadMessages(int)), trayIcon_, SLOT(setUnreadCount(int)));
2022-01-30 21:14:33 +03:00
connect(chat_page_, &ChatPage::showLoginPage, this, &MainWindow::switchToLoginPage);
connect(chat_page_, &ChatPage::showNotification, this, &MainWindow::showNotification);
2021-09-18 01:22:33 +03:00
2022-01-09 02:28:03 +03:00
connect(userSettings_.get(), &UserSettings::trayChanged, trayIcon_, &TrayIcon::setVisible);
2021-09-18 01:22:33 +03:00
connect(trayIcon_,
SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
this,
SLOT(iconActivated(QSystemTrayIcon::ActivationReason)));
trayIcon_->setVisible(userSettings_->tray());
dock_ = new Dock(this);
connect(chat_page_, SIGNAL(unreadMessages(int)), dock_, SLOT(setUnreadCount(int)));
2021-09-18 01:22:33 +03:00
// load cache on event loop
QTimer::singleShot(0, this, [this] {
if (hasActiveUser()) {
QString token = userSettings_->accessToken();
QString home_server = userSettings_->homeserver();
QString user_id = userSettings_->userId();
QString device_id = userSettings_->deviceId();
http::client()->set_access_token(token.toStdString());
http::client()->set_server(home_server.toStdString());
http::client()->set_device_id(device_id.toStdString());
try {
using namespace mtx::identifiers;
http::client()->set_user(parse<User>(user_id.toStdString()));
} catch (const std::invalid_argument &) {
nhlog::ui()->critical("bootstrapped with invalid user_id: {}",
user_id.toStdString());
}
2022-01-12 21:09:46 +03:00
nhlog::ui()->info("User already signed in, showing chat page");
2021-09-18 01:22:33 +03:00
showChatPage();
}
});
2017-04-06 02:06:42 +03:00
}
2022-01-12 21:09:46 +03:00
void
MainWindow::registerQmlTypes()
{
qmlRegisterUncreatableMetaObject(qml_mtx_events::staticMetaObject,
"im.nheko",
1,
0,
"MtxEvent",
QStringLiteral("Can't instantiate enum!"));
qmlRegisterUncreatableMetaObject(
olm::staticMetaObject, "im.nheko", 1, 0, "Olm", QStringLiteral("Can't instantiate enum!"));
qmlRegisterUncreatableMetaObject(crypto::staticMetaObject,
"im.nheko",
1,
0,
"Crypto",
QStringLiteral("Can't instantiate enum!"));
qmlRegisterUncreatableMetaObject(verification::staticMetaObject,
"im.nheko",
1,
0,
"VerificationStatus",
QStringLiteral("Can't instantiate enum!"));
qmlRegisterType<DelegateChoice>("im.nheko", 1, 0, "DelegateChoice");
qmlRegisterType<DelegateChooser>("im.nheko", 1, 0, "DelegateChooser");
qmlRegisterType<NhekoDropArea>("im.nheko", 1, 0, "NhekoDropArea");
qmlRegisterType<NhekoCursorShape>("im.nheko", 1, 0, "CursorShape");
qmlRegisterType<NhekoEventObserver>("im.nheko", 1, 0, "EventObserver");
2022-01-12 21:09:46 +03:00
qmlRegisterType<MxcAnimatedImage>("im.nheko", 1, 0, "MxcAnimatedImage");
qmlRegisterType<MxcMediaProxy>("im.nheko", 1, 0, "MxcMedia");
qmlRegisterType<RoomDirectoryModel>("im.nheko", 1, 0, "RoomDirectoryModel");
qmlRegisterType<UserDirectoryModel>("im.nheko", 1, 0, "UserDirectoryModel");
2022-01-24 02:41:55 +03:00
qmlRegisterType<LoginPage>("im.nheko", 1, 0, "Login");
2022-01-28 17:24:56 +03:00
qmlRegisterType<RegisterPage>("im.nheko", 1, 0, "Registration");
qmlRegisterType<HiddenEvents>("im.nheko", 1, 0, "HiddenEvents");
qmlRegisterType<TimelineFilter>("im.nheko", 1, 0, "TimelineFilter");
qmlRegisterUncreatableType<RoomSummary>(
"im.nheko",
1,
0,
"RoomSummary",
QStringLiteral("Please use joinRoom to create a room summary."));
2022-07-08 18:28:28 +03:00
qmlRegisterUncreatableType<AliasEditingModel>(
"im.nheko",
1,
0,
"AliasEditingModel",
QStringLiteral("Please use editAliases to create the models"));
2022-05-27 17:31:54 +03:00
qmlRegisterUncreatableType<PowerlevelEditingModels>(
"im.nheko",
1,
0,
"PowerlevelEditingModels",
QStringLiteral("Please use editPowerlevels to create the models"));
2022-01-12 21:09:46 +03:00
qmlRegisterUncreatableType<DeviceVerificationFlow>(
"im.nheko",
1,
0,
"DeviceVerificationFlow",
QStringLiteral("Can't create verification flow from QML!"));
qmlRegisterUncreatableType<UserProfile>(
"im.nheko",
1,
0,
"UserProfileModel",
QStringLiteral("UserProfile needs to be instantiated on the C++ side"));
qmlRegisterUncreatableType<MemberList>(
"im.nheko",
1,
0,
"MemberList",
QStringLiteral("MemberList needs to be instantiated on the C++ side"));
qmlRegisterUncreatableType<RoomSettings>(
"im.nheko",
1,
0,
"RoomSettingsModel",
QStringLiteral("Room Settings needs to be instantiated on the C++ side"));
qmlRegisterUncreatableType<TimelineModel>(
"im.nheko", 1, 0, "Room", QStringLiteral("Room needs to be instantiated on the C++ side"));
qmlRegisterUncreatableType<ImagePackListModel>(
"im.nheko",
1,
0,
"ImagePackListModel",
QStringLiteral("ImagePackListModel needs to be instantiated on the C++ side"));
qmlRegisterUncreatableType<SingleImagePackModel>(
"im.nheko",
1,
0,
"SingleImagePackModel",
QStringLiteral("SingleImagePackModel needs to be instantiated on the C++ side"));
qmlRegisterUncreatableType<InviteesModel>(
"im.nheko",
1,
0,
"InviteesModel",
QStringLiteral("InviteesModel needs to be instantiated on the C++ side"));
qmlRegisterUncreatableType<ReadReceiptsProxy>(
"im.nheko",
1,
0,
"ReadReceiptsProxy",
QStringLiteral("ReadReceiptsProxy needs to be instantiated on the C++ side"));
qmlRegisterSingletonType<Clipboard>(
"im.nheko", 1, 0, "Clipboard", [](QQmlEngine *, QJSEngine *) -> QObject * {
return new Clipboard();
});
qmlRegisterSingletonType<Nheko>(
"im.nheko", 1, 0, "Nheko", [](QQmlEngine *, QJSEngine *) -> QObject * {
return new Nheko();
});
qmlRegisterSingletonType<UserSettingsModel>(
"im.nheko", 1, 0, "UserSettingsModel", [](QQmlEngine *, QJSEngine *) -> QObject * {
return new UserSettingsModel();
});
qmlRegisterSingletonInstance("im.nheko", 1, 0, "Settings", userSettings_.data());
qmlRegisterUncreatableType<FilteredCommunitiesModel>(
"im.nheko",
1,
0,
"FilteredCommunitiesModel",
QStringLiteral("Use Communities.filtered() to create a FilteredCommunitiesModel"));
2022-03-21 07:05:29 +03:00
qmlRegisterUncreatableType<MediaUpload>(
"im.nheko", 1, 0, "MediaUpload", QStringLiteral("MediaUploads can not be created in Qml"));
2022-01-12 21:09:46 +03:00
qmlRegisterUncreatableMetaObject(emoji::staticMetaObject,
"im.nheko.EmojiModel",
1,
0,
"EmojiCategory",
QStringLiteral("Error: Only enums"));
qmlRegisterType<RoomDirectoryModel>("im.nheko", 1, 0, "RoomDirectoryModel");
qmlRegisterSingletonType<SelfVerificationStatus>(
"im.nheko", 1, 0, "SelfVerificationStatus", [](QQmlEngine *, QJSEngine *) -> QObject * {
auto ptr = new SelfVerificationStatus();
QObject::connect(ChatPage::instance(),
&ChatPage::initializeEmptyViews,
ptr,
&SelfVerificationStatus::invalidate);
return ptr;
});
qmlRegisterSingletonInstance("im.nheko", 1, 0, "MainWindow", this);
qmlRegisterSingletonInstance("im.nheko", 1, 0, "UIA", UIA::instance());
qmlRegisterSingletonInstance(
"im.nheko", 1, 0, "CallManager", ChatPage::instance()->callManager());
imgProvider = new MxcImageProvider();
engine()->addImageProvider(QStringLiteral("MxcImage"), imgProvider);
engine()->addImageProvider(QStringLiteral("colorimage"), new ColorImageProvider());
engine()->addImageProvider(QStringLiteral("blurhash"), new BlurhashProvider());
if (JdenticonProvider::isAvailable())
engine()->addImageProvider(QStringLiteral("jdenticon"), new JdenticonProvider());
2022-01-29 19:38:59 +03:00
QObject::connect(engine(), &QQmlEngine::quit, &QGuiApplication::quit);
#ifdef NHEKO_DBUS_SYS
if (UserSettings::instance()->exposeDBusApi()) {
if (QDBusConnection::sessionBus().isConnected() &&
QDBusConnection::sessionBus().registerService(NHEKO_DBUS_SERVICE_NAME)) {
nheko::dbus::init();
nhlog::ui()->info("Initialized D-Bus");
dbusAvailable_ = true;
} else
nhlog::ui()->warn("Could not connect to D-Bus!");
}
#endif
2022-01-12 21:09:46 +03:00
}
2020-10-22 02:20:02 +03:00
void
MainWindow::setWindowTitle(int notificationCount)
{
QString name = QStringLiteral("nheko");
2021-09-18 01:22:33 +03:00
if (!userSettings_.data()->profile().isEmpty())
name += " | " + userSettings_.data()->profile();
if (notificationCount > 0) {
name.append(QString{QStringLiteral(" (%1)")}.arg(notificationCount));
2021-09-18 01:22:33 +03:00
}
2022-01-12 21:09:46 +03:00
QQuickView::setTitle(name);
2020-10-22 02:20:02 +03:00
}
// HACK: https://bugreports.qt.io/browse/QTBUG-83972, qtwayland cannot auto hide menu
void
MainWindow::mousePressEvent(QMouseEvent *event)
{
2023-01-26 15:34:38 +03:00
#if defined(Q_OS_LINUX)
if (QGuiApplication::platformName() == "wayland") {
2023-01-28 12:10:45 +03:00
emit hideMenu();
}
2023-01-26 15:34:38 +03:00
#endif
return QQuickView::mousePressEvent(event);
}
2017-08-20 13:47:22 +03:00
void
MainWindow::restoreWindowSize()
{
int savedWidth = userSettings_->qsettings()->value(QStringLiteral("window/width")).toInt();
int savedheight = userSettings_->qsettings()->value(QStringLiteral("window/height")).toInt();
2021-08-29 15:57:32 +03:00
2021-09-18 01:22:33 +03:00
nhlog::ui()->info("Restoring window size {}x{}", savedWidth, savedheight);
2017-09-10 12:58:00 +03:00
2021-09-18 01:22:33 +03:00
if (savedWidth == 0 || savedheight == 0)
resize(conf::window::width, conf::window::height);
else
resize(savedWidth, savedheight);
}
2017-08-20 13:47:22 +03:00
void
MainWindow::saveCurrentWindowSize()
{
2021-09-18 01:22:33 +03:00
auto settings = userSettings_->qsettings();
QSize current = size();
settings->setValue(QStringLiteral("window/width"), current.width());
settings->setValue(QStringLiteral("window/height"), current.height());
}
2017-08-20 13:47:22 +03:00
void
MainWindow::showChatPage()
2017-04-06 02:06:42 +03:00
{
2021-09-18 01:22:33 +03:00
auto userid = QString::fromStdString(http::client()->user_id().to_string());
auto device_id = QString::fromStdString(http::client()->device_id());
auto homeserver = QString::fromStdString(http::client()->server_url());
2021-09-18 01:22:33 +03:00
auto token = QString::fromStdString(http::client()->access_token());
userSettings_.data()->setUserId(userid);
userSettings_.data()->setAccessToken(token);
userSettings_.data()->setDeviceId(device_id);
userSettings_.data()->setHomeserver(homeserver);
chat_page_->bootstrap(userid, homeserver, token);
2022-01-09 02:28:03 +03:00
connect(cache::client(), &Cache::databaseReady, this, &MainWindow::secretsChanged);
connect(cache::client(), &Cache::secretChanged, this, &MainWindow::secretsChanged);
2022-01-12 21:09:46 +03:00
2021-09-18 01:22:33 +03:00
emit reload();
2022-01-12 21:09:46 +03:00
nhlog::ui()->info("Switching to chat page");
emit switchToChatPage();
2017-04-06 02:06:42 +03:00
}
2017-08-20 13:47:22 +03:00
void
MainWindow::closeEvent(QCloseEvent *event)
2017-05-21 16:36:06 +03:00
{
2021-09-18 01:22:33 +03:00
if (WebRTCSession::instance().state() != webrtc::State::DISCONNECTED) {
if (QMessageBox::question(
2022-01-12 21:09:46 +03:00
nullptr, QStringLiteral("nheko"), QStringLiteral("A call is in progress. Quit?")) !=
2021-09-18 01:22:33 +03:00
QMessageBox::Yes) {
event->ignore();
return;
}
2021-09-18 01:22:33 +03:00
}
2021-09-18 01:22:33 +03:00
if (!qApp->isSavingSession() && isVisible() && pageSupportsTray() && userSettings_->tray()) {
event->ignore();
hide();
2023-06-03 02:43:48 +03:00
return;
2021-09-18 01:22:33 +03:00
}
2017-05-21 16:36:06 +03:00
}
2017-08-20 13:47:22 +03:00
void
MainWindow::iconActivated(QSystemTrayIcon::ActivationReason reason)
2017-05-21 16:36:06 +03:00
{
2021-09-18 01:22:33 +03:00
switch (reason) {
case QSystemTrayIcon::Trigger:
if (!isVisible()) {
show();
} else {
hide();
2017-09-10 12:58:00 +03:00
}
2021-09-18 01:22:33 +03:00
break;
default:
break;
}
2017-05-21 16:36:06 +03:00
}
2017-08-20 13:47:22 +03:00
bool
MainWindow::hasActiveUser()
{
2021-09-18 01:22:33 +03:00
auto settings = userSettings_->qsettings();
QString prefix;
if (userSettings_->profile() != QLatin1String(""))
2021-09-18 01:22:33 +03:00
prefix = "profile/" + userSettings_->profile() + "/";
return settings->contains(prefix + "auth/access_token") &&
settings->contains(prefix + "auth/home_server") &&
settings->contains(prefix + "auth/user_id");
}
bool
MainWindow::pageSupportsTray() const
{
2022-01-29 21:07:27 +03:00
return !http::client()->access_token().empty();
}
2018-08-11 13:50:56 +03:00
2018-09-21 11:30:02 +03:00
inline void
MainWindow::showDialog(QWidget *dialog)
{
2022-01-29 21:07:27 +03:00
dialog->setWindowFlags(Qt::WindowType::Dialog | Qt::WindowType::WindowCloseButtonHint |
Qt::WindowType::WindowTitleHint);
2021-09-18 01:22:33 +03:00
dialog->raise();
dialog->show();
2022-01-29 21:07:27 +03:00
utils::centerWidget(dialog, this);
dialog->window()->windowHandle()->setTransientParent(this);
2018-09-21 11:30:02 +03:00
}
2022-05-07 19:53:16 +03:00
void
MainWindow::addPerRoomWindow(const QString &room, QWindow *window)
{
roomWindows_.insert(room, window);
}
void
MainWindow::removePerRoomWindow(const QString &room, QWindow *window)
{
roomWindows_.remove(room, window);
}
QWindow *
MainWindow::windowForRoom(const QString &room)
2022-05-07 19:53:16 +03:00
{
auto currMainWindowRoom = ChatPage::instance()->timelineManager()->rooms()->currentRoom();
if ((currMainWindowRoom && currMainWindowRoom->roomId() == room) ||
ChatPage::instance()->timelineManager()->rooms()->currentRoomPreview().roomid_ == room)
return this;
else if (auto res = roomWindows_.find(room); res != roomWindows_.end())
return res.value();
return nullptr;
}
QString
MainWindow::focusedRoom() const
{
auto focus = QGuiApplication::focusWindow();
if (!focus)
return {};
if (focus == this) {
auto currMainWindowRoom = ChatPage::instance()->timelineManager()->rooms()->currentRoom();
if (currMainWindowRoom)
return currMainWindowRoom->roomId();
else
return ChatPage::instance()->timelineManager()->rooms()->currentRoomPreview().roomid_;
}
auto i = roomWindows_.constBegin();
while (i != roomWindows_.constEnd()) {
if (i.value() == focus)
return i.key();
++i;
}
return nullptr;
}