nheko/src/ChatPage.cc

230 lines
5.7 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"
#include "UserInfoWidget.h"
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 HistoryViewManager(this);
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()));
2017-04-06 01:06:42 +02:00
connect(room_list_,
SIGNAL(roomChanged(const RoomInfo &)),
this,
SLOT(changeTopRoomInfo(const RoomInfo &)));
connect(room_list_,
SIGNAL(roomChanged(const RoomInfo &)),
view_manager_,
SLOT(setHistoryView(const RoomInfo &)));
connect(text_input_,
SIGNAL(sendTextMessage(const QString &)),
this,
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 &)));
connect(client_.data(),
2017-04-06 01:06:42 +02:00
SIGNAL(messageSent(QString, int)),
this,
SLOT(messageSent(QString, int)));
}
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();
room_avatars_.clear();
emit close();
}
2017-04-06 01:06:42 +02:00
void ChatPage::messageSent(QString event_id, int txn_id)
{
Q_UNUSED(event_id);
QSettings settings;
settings.setValue("client/transaction_id", txn_id + 1);
}
void ChatPage::sendTextMessage(const QString &msg)
{
auto room = current_room_;
client_->sendTextMessage(current_room_.id(), msg);
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
/* room_list_->sync(response.rooms()); */
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
view_manager_->initialize(response.rooms());
room_list_->setInitialRooms(response.rooms());
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_.id() != roomid)
2017-04-06 01:06:42 +02:00
return;
QIcon icon(img);
this->top_bar_->updateRoomAvatar(icon);
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);
client_->fetchOwnAvatar(avatar_url);
2017-04-06 01:06:42 +02:00
}
void ChatPage::changeTopRoomInfo(const RoomInfo &info)
{
top_bar_->updateRoomName(info.name());
top_bar_->updateRoomTopic(info.topic());
if (room_avatars_.contains(info.id())) {
QIcon icon(room_avatars_.value(info.id()));
top_bar_->updateRoomAvatar(icon);
} else {
top_bar_->updateRoomAvatarFromName(info.name());
2017-04-06 01:06:42 +02:00
}
current_room_ = info;
}
ChatPage::~ChatPage()
{
sync_timer_->stop();
delete ui;
}