nheko/src/ChatPage.cc

371 lines
9.8 KiB
C++
Raw Normal View History

2017-04-06 01:06:42 +02:00
/*
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "ui_ChatPage.h"
#include <QDebug>
#include <QLabel>
#include <QSettings>
#include "ChatPage.h"
#include "Sync.h"
2017-05-08 18:44:01 +02:00
#include "TimelineViewManager.h"
2017-04-06 01:06:42 +02:00
#include "UserInfoWidget.h"
#include "AliasesEventContent.h"
#include "AvatarEventContent.h"
#include "CanonicalAliasEventContent.h"
#include "CreateEventContent.h"
#include "HistoryVisibilityEventContent.h"
#include "JoinRulesEventContent.h"
2017-05-08 18:44:01 +02:00
#include "MemberEventContent.h"
#include "NameEventContent.h"
#include "PowerLevelsEventContent.h"
#include "TopicEventContent.h"
#include "StateEvent.h"
namespace events = matrix::events;
ChatPage::ChatPage(QSharedPointer<MatrixClient> client, QWidget *parent)
2017-04-06 01:06:42 +02:00
: QWidget(parent)
, ui(new Ui::ChatPage)
, sync_interval_(2000)
, client_(client)
2017-04-06 01:06:42 +02:00
{
ui->setupUi(this);
room_list_ = new RoomList(client, this);
2017-04-11 01:35:09 +02:00
ui->sideBarMainLayout->addWidget(room_list_);
2017-04-06 01:06:42 +02:00
top_bar_ = new TopRoomBar(this);
ui->topBarLayout->addWidget(top_bar_);
view_manager_ = new TimelineViewManager(client, this);
2017-04-06 01:06:42 +02:00
ui->mainContentLayout->addWidget(view_manager_);
text_input_ = new TextInputWidget(this);
ui->contentLayout->addWidget(text_input_);
user_info_widget_ = new UserInfoWidget(ui->sideBarTopWidget);
2017-04-11 01:35:09 +02:00
ui->sideBarTopUserInfoLayout->addWidget(user_info_widget_);
2017-04-06 01:06:42 +02:00
2017-04-06 14:17:58 +02:00
sync_timer_ = new QTimer(this);
2017-04-11 01:35:09 +02:00
sync_timer_->setSingleShot(true);
2017-04-06 14:17:58 +02:00
connect(sync_timer_, SIGNAL(timeout()), this, SLOT(startSync()));
connect(user_info_widget_, SIGNAL(logout()), client_.data(), SLOT(logout()));
connect(client_.data(), SIGNAL(loggedOut()), this, SLOT(logout()));
connect(room_list_, &RoomList::roomChanged, this, &ChatPage::changeTopRoomInfo);
connect(room_list_, &RoomList::roomChanged, view_manager_, &TimelineViewManager::setHistoryView);
2017-04-06 01:06:42 +02:00
connect(view_manager_,
SIGNAL(unreadMessages(const QString &, int)),
room_list_,
SLOT(updateUnreadMessageCount(const QString &, int)));
connect(room_list_,
SIGNAL(totalUnreadMessageCountUpdated(int)),
this,
SLOT(showUnreadMessageNotification(int)));
2017-04-06 01:06:42 +02:00
connect(text_input_,
SIGNAL(sendTextMessage(const QString &)),
view_manager_,
2017-04-06 01:06:42 +02:00
SLOT(sendTextMessage(const QString &)));
connect(client_.data(),
SIGNAL(roomAvatarRetrieved(const QString &, const QPixmap &)),
this,
SLOT(updateTopBarAvatar(const QString &, const QPixmap &)));
connect(client_.data(),
2017-04-11 01:35:09 +02:00
SIGNAL(initialSyncCompleted(const SyncResponse &)),
2017-04-06 01:06:42 +02:00
this,
2017-04-11 01:35:09 +02:00
SLOT(initialSyncCompleted(const SyncResponse &)));
connect(client_.data(),
2017-04-11 01:35:09 +02:00
SIGNAL(syncCompleted(const SyncResponse &)),
2017-04-06 01:06:42 +02:00
this,
2017-04-11 01:35:09 +02:00
SLOT(syncCompleted(const SyncResponse &)));
connect(client_.data(),
2017-04-11 01:35:09 +02:00
SIGNAL(syncFailed(const QString &)),
2017-04-06 01:06:42 +02:00
this,
2017-04-11 01:35:09 +02:00
SLOT(syncFailed(const QString &)));
connect(client_.data(),
2017-04-11 01:35:09 +02:00
SIGNAL(getOwnProfileResponse(const QUrl &, const QString &)),
this,
SLOT(updateOwnProfileInfo(const QUrl &, const QString &)));
connect(client_.data(),
SIGNAL(ownAvatarRetrieved(const QPixmap &)),
this,
SLOT(setOwnAvatar(const QPixmap &)));
2017-04-06 01:06:42 +02:00
}
void ChatPage::logout()
{
sync_timer_->stop();
QSettings settings;
settings.remove("auth/access_token");
settings.remove("auth/home_server");
settings.remove("auth/user_id");
settings.remove("client/transaction_id");
// Clear the environment.
room_list_->clear();
view_manager_->clearAll();
top_bar_->reset();
user_info_widget_->reset();
client_->reset();
2017-05-16 14:23:31 +02:00
state_manager_.clear();
room_avatars_.clear();
emit close();
}
2017-04-06 01:06:42 +02:00
void ChatPage::bootstrap(QString userid, QString homeserver, QString token)
{
Q_UNUSED(userid);
client_->setServer(homeserver);
client_->setAccessToken(token);
2017-04-06 01:06:42 +02:00
client_->getOwnProfile();
client_->initialSync();
2017-04-06 01:06:42 +02:00
}
void ChatPage::startSync()
{
client_->sync();
2017-04-06 01:06:42 +02:00
}
void ChatPage::setOwnAvatar(const QPixmap &img)
2017-04-06 01:06:42 +02:00
{
user_info_widget_->setAvatar(img.toImage());
2017-04-06 01:06:42 +02:00
}
2017-04-11 01:35:09 +02:00
void ChatPage::syncFailed(const QString &msg)
{
qWarning() << "Sync error:" << msg;
sync_timer_->start(sync_interval_ * 5);
}
void ChatPage::syncCompleted(const SyncResponse &response)
2017-04-06 01:06:42 +02:00
{
client_->setNextBatchToken(response.nextBatch());
2017-04-06 01:06:42 +02:00
auto joined = response.rooms().join();
for (auto it = joined.constBegin(); it != joined.constEnd(); it++) {
RoomState room_state;
if (state_manager_.contains(it.key()))
room_state = state_manager_[it.key()];
updateRoomState(room_state, it.value().state().events());
updateRoomState(room_state, it.value().timeline().events());
state_manager_.insert(it.key(), room_state);
if (it.key() == current_room_)
changeTopRoomInfo(it.key());
}
room_list_->sync(state_manager_);
2017-04-06 01:06:42 +02:00
view_manager_->sync(response.rooms());
2017-04-11 01:35:09 +02:00
sync_timer_->start(sync_interval_);
2017-04-06 01:06:42 +02:00
}
void ChatPage::initialSyncCompleted(const SyncResponse &response)
2017-04-06 01:06:42 +02:00
{
if (!response.nextBatch().isEmpty())
client_->setNextBatchToken(response.nextBatch());
2017-04-06 01:06:42 +02:00
auto joined = response.rooms().join();
for (auto it = joined.constBegin(); it != joined.constEnd(); it++) {
RoomState room_state;
updateRoomState(room_state, it.value().state().events());
updateRoomState(room_state, it.value().timeline().events());
state_manager_.insert(it.key(), room_state);
}
2017-04-06 01:06:42 +02:00
view_manager_->initialize(response.rooms());
room_list_->setInitialRooms(state_manager_);
2017-04-06 01:06:42 +02:00
sync_timer_->start(sync_interval_);
}
void ChatPage::updateTopBarAvatar(const QString &roomid, const QPixmap &img)
2017-04-06 01:06:42 +02:00
{
room_avatars_.insert(roomid, img);
2017-04-06 01:06:42 +02:00
if (current_room_ != roomid)
2017-04-06 01:06:42 +02:00
return;
2017-04-12 16:14:53 +02:00
top_bar_->updateRoomAvatar(img.toImage());
2017-04-06 01:06:42 +02:00
}
void ChatPage::updateOwnProfileInfo(const QUrl &avatar_url, const QString &display_name)
2017-04-06 01:06:42 +02:00
{
QSettings settings;
auto userid = settings.value("auth/user_id").toString();
user_info_widget_->setUserId(userid);
user_info_widget_->setDisplayName(display_name);
if (avatar_url.isValid())
client_->fetchOwnAvatar(avatar_url);
2017-04-06 01:06:42 +02:00
}
void ChatPage::changeTopRoomInfo(const QString &room_id)
2017-04-06 01:06:42 +02:00
{
if (!state_manager_.contains(room_id))
return;
2017-04-06 01:06:42 +02:00
auto state = state_manager_[room_id];
top_bar_->updateRoomName(state.resolveName());
top_bar_->updateRoomTopic(state.resolveTopic());
if (room_avatars_.contains(room_id))
top_bar_->updateRoomAvatar(room_avatars_.value(room_id).toImage());
2017-04-12 00:29:25 +02:00
else
top_bar_->updateRoomAvatarFromName(state.resolveName());
2017-04-06 01:06:42 +02:00
current_room_ = room_id;
2017-04-06 01:06:42 +02:00
}
void ChatPage::showUnreadMessageNotification(int count)
{
// TODO: Make the default title a const.
if (count == 0)
emit changeWindowTitle("nheko");
else
emit changeWindowTitle(QString("nheko (%1)").arg(count));
}
void ChatPage::updateRoomState(RoomState &room_state, const QJsonArray &events)
{
events::EventType ty;
for (const auto &event : events) {
try {
ty = events::extractEventType(event.toObject());
} catch (const DeserializationException &e) {
qWarning() << e.what() << event;
continue;
}
if (!events::isStateEvent(ty))
continue;
try {
switch (ty) {
case events::EventType::RoomAliases: {
events::StateEvent<events::AliasesEventContent> aliases;
aliases.deserialize(event);
room_state.aliases = aliases;
break;
}
case events::EventType::RoomAvatar: {
events::StateEvent<events::AvatarEventContent> avatar;
avatar.deserialize(event);
room_state.avatar = avatar;
break;
}
case events::EventType::RoomCanonicalAlias: {
events::StateEvent<events::CanonicalAliasEventContent> canonical_alias;
canonical_alias.deserialize(event);
room_state.canonical_alias = canonical_alias;
break;
}
case events::EventType::RoomCreate: {
events::StateEvent<events::CreateEventContent> create;
create.deserialize(event);
room_state.create = create;
break;
}
case events::EventType::RoomHistoryVisibility: {
events::StateEvent<events::HistoryVisibilityEventContent> history_visibility;
history_visibility.deserialize(event);
room_state.history_visibility = history_visibility;
break;
}
case events::EventType::RoomJoinRules: {
events::StateEvent<events::JoinRulesEventContent> join_rules;
join_rules.deserialize(event);
room_state.join_rules = join_rules;
break;
}
case events::EventType::RoomName: {
events::StateEvent<events::NameEventContent> name;
name.deserialize(event);
room_state.name = name;
break;
}
2017-05-08 18:44:01 +02:00
case events::EventType::RoomMember: {
events::StateEvent<events::MemberEventContent> member;
member.deserialize(event);
auto display_name = member.content().displayName();
if (display_name.isEmpty())
display_name = member.stateKey();
2017-05-10 17:04:57 +02:00
auto current_name = TimelineViewManager::DISPLAY_NAMES.value(member.stateKey());
if (current_name.isEmpty() || current_name == member.stateKey())
TimelineViewManager::DISPLAY_NAMES.insert(member.stateKey(), display_name);
2017-05-08 18:44:01 +02:00
break;
}
case events::EventType::RoomPowerLevels: {
events::StateEvent<events::PowerLevelsEventContent> power_levels;
power_levels.deserialize(event);
room_state.power_levels = power_levels;
break;
}
case events::EventType::RoomTopic: {
events::StateEvent<events::TopicEventContent> topic;
topic.deserialize(event);
room_state.topic = topic;
break;
}
default: {
continue;
}
}
} catch (const DeserializationException &e) {
qWarning() << e.what() << event;
continue;
}
}
}
2017-04-06 01:06:42 +02:00
ChatPage::~ChatPage()
{
sync_timer_->stop();
delete ui;
}