mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
b5cdfb3dce
qTox will automatically import the old history on startup. This new database code is much more robust. It is very resilient and will not corrupt or disappear after a crash or power failure, unlike the old code. The on-disk database format is also much more compact now. The database sync option in the advanced settings has been removed, we know run many database operations asynchronously so performance should not be a problem anymore, but we always ensure resiliency in case of abrupt termination, so there is no tradeoff anymore.
172 lines
3.7 KiB
C++
172 lines
3.7 KiB
C++
/*
|
|
Copyright © 2014-2015 by The qTox Project
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
qTox is libre 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.
|
|
|
|
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "group.h"
|
|
#include "widget/groupwidget.h"
|
|
#include "widget/form/groupchatform.h"
|
|
#include "friendlist.h"
|
|
#include "friend.h"
|
|
#include "src/core/core.h"
|
|
#include "widget/gui.h"
|
|
#include <QDebug>
|
|
#include <QTimer>
|
|
|
|
Group::Group(int GroupId, QString Name, bool IsAvGroupchat)
|
|
: groupId(GroupId), nPeers{0}, avGroupchat{IsAvGroupchat}
|
|
{
|
|
widget = new GroupWidget(groupId, Name);
|
|
chatForm = new GroupChatForm(this);
|
|
|
|
//in groupchats, we only notify on messages containing your name <-- dumb
|
|
// sound notifications should be on all messages, but system popup notification
|
|
// on naming is appropriate
|
|
hasNewMessages = 0;
|
|
userWasMentioned = 0;
|
|
}
|
|
|
|
Group::~Group()
|
|
{
|
|
delete chatForm;
|
|
widget->deleteLater();
|
|
}
|
|
|
|
void Group::updatePeer(int peerId, QString name)
|
|
{
|
|
ToxId id = Core::getInstance()->getGroupPeerToxId(groupId, peerId);
|
|
QString toxid = id.publicKey;
|
|
peers[peerId] = name;
|
|
toxids[toxid] = name;
|
|
|
|
Friend *f = FriendList::findFriend(id);
|
|
|
|
if (f != nullptr && f->hasAlias())
|
|
{
|
|
widget->onUserListChanged();
|
|
chatForm->onUserListChanged();
|
|
emit userListChanged(getGroupWidget());
|
|
}
|
|
}
|
|
|
|
void Group::setName(const QString& name)
|
|
{
|
|
chatForm->setName(name);
|
|
|
|
if (widget->isActive())
|
|
GUI::setWindowTitle(name);
|
|
|
|
emit titleChanged(this->getGroupWidget());
|
|
}
|
|
|
|
QString Group::getName() const
|
|
{
|
|
return widget->getName();
|
|
}
|
|
|
|
void Group::regeneratePeerList()
|
|
{
|
|
peers = Core::getInstance()->getGroupPeerNames(groupId);
|
|
toxids.clear();
|
|
nPeers = peers.size();
|
|
for (int i = 0; i < nPeers; i++)
|
|
{
|
|
ToxId id = Core::getInstance()->getGroupPeerToxId(groupId, i);
|
|
if (id.isSelf())
|
|
selfPeerNum = i;
|
|
|
|
QString toxid = id.publicKey;
|
|
toxids[toxid] = peers[i];
|
|
Friend *f = FriendList::findFriend(id);
|
|
if (f)
|
|
{
|
|
peers[i] = f->getDisplayedName();
|
|
toxids[toxid] = f->getDisplayedName();
|
|
}
|
|
}
|
|
|
|
widget->onUserListChanged();
|
|
chatForm->onUserListChanged();
|
|
emit userListChanged(getGroupWidget());
|
|
}
|
|
|
|
bool Group::isAvGroupchat() const
|
|
{
|
|
return avGroupchat;
|
|
}
|
|
|
|
int Group::getGroupId() const
|
|
{
|
|
return groupId;
|
|
}
|
|
|
|
int Group::getPeersCount() const
|
|
{
|
|
return nPeers;
|
|
}
|
|
|
|
GroupChatForm *Group::getChatForm()
|
|
{
|
|
return chatForm;
|
|
}
|
|
|
|
GroupWidget *Group::getGroupWidget()
|
|
{
|
|
return widget;
|
|
}
|
|
|
|
QStringList Group::getPeerList() const
|
|
{
|
|
return peers;
|
|
}
|
|
|
|
bool Group::isSelfPeerNumber(int num) const
|
|
{
|
|
return num == selfPeerNum;
|
|
}
|
|
|
|
void Group::setEventFlag(int f)
|
|
{
|
|
hasNewMessages = f;
|
|
}
|
|
|
|
int Group::getEventFlag() const
|
|
{
|
|
return hasNewMessages;
|
|
}
|
|
|
|
void Group::setMentionedFlag(int f)
|
|
{
|
|
userWasMentioned = f;
|
|
}
|
|
|
|
int Group::getMentionedFlag() const
|
|
{
|
|
return userWasMentioned;
|
|
}
|
|
|
|
QString Group::resolveToxId(const ToxId &id) const
|
|
{
|
|
QString key = id.publicKey;
|
|
auto it = toxids.find(key);
|
|
|
|
if (it != toxids.end())
|
|
return *it;
|
|
|
|
return QString();
|
|
}
|