mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
7be8ad01da
Fix #3421
348 lines
11 KiB
C++
348 lines
11 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 "addfriendform.h"
|
|
#include <QFont>
|
|
#include <QMessageBox>
|
|
#include <QErrorMessage>
|
|
#include <QApplication>
|
|
#include <QClipboard>
|
|
#include <QRegularExpression>
|
|
#include <QTabWidget>
|
|
#include <QSignalMapper>
|
|
#include <tox/tox.h>
|
|
#include "src/nexus.h"
|
|
#include "src/core/core.h"
|
|
#include "src/core/cdata.h"
|
|
#include "src/net/toxdns.h"
|
|
#include "src/net/toxme.h"
|
|
#include "src/persistence/settings.h"
|
|
#include "src/widget/gui.h"
|
|
#include "src/widget/translator.h"
|
|
#include "src/widget/contentlayout.h"
|
|
#include "src/widget/tool/croppinglabel.h"
|
|
#include "src/net/toxme.h"
|
|
#include <QWindow>
|
|
#include <QScrollArea>
|
|
|
|
AddFriendForm::AddFriendForm()
|
|
{
|
|
tabWidget = new QTabWidget();
|
|
main = new QWidget(tabWidget), head = new QWidget();
|
|
QFont bold;
|
|
bold.setBold(true);
|
|
headLabel.setFont(bold);
|
|
toxIdLabel.setTextFormat(Qt::RichText);
|
|
|
|
tabWidget->addTab(main, QString());
|
|
QScrollArea* scrollArea = new QScrollArea(tabWidget);
|
|
QWidget* requestWidget = new QWidget(tabWidget);
|
|
scrollArea->setWidget(requestWidget);
|
|
scrollArea->setWidgetResizable(true);
|
|
requestsLayout = new QVBoxLayout(requestWidget);
|
|
requestsLayout->addStretch(1);
|
|
tabWidget->addTab(scrollArea, QString());
|
|
|
|
main->setLayout(&layout);
|
|
layout.addWidget(&toxIdLabel);
|
|
layout.addWidget(&toxId);
|
|
layout.addWidget(&messageLabel);
|
|
layout.addWidget(&message);
|
|
layout.addWidget(&sendButton);
|
|
|
|
head->setLayout(&headLayout);
|
|
headLayout.addWidget(&headLabel);
|
|
|
|
connect(&toxId, &QLineEdit::returnPressed, this, &AddFriendForm::onSendTriggered);
|
|
connect(&toxId, &QLineEdit::textChanged, this, &AddFriendForm::onIdChanged);
|
|
connect(tabWidget, &QTabWidget::currentChanged, this, &AddFriendForm::onCurrentChanged);
|
|
connect(&sendButton, SIGNAL(clicked()), this, SLOT(onSendTriggered()));
|
|
connect(Nexus::getCore(), &Core::usernameSet, this, &AddFriendForm::onUsernameSet);
|
|
|
|
retranslateUi();
|
|
Translator::registerHandler(std::bind(&AddFriendForm::retranslateUi, this), this);
|
|
|
|
int size = Settings::getInstance().getFriendRequestSize();
|
|
|
|
for (int i = 0; i < size; ++i)
|
|
{
|
|
Settings::Request request = Settings::getInstance().getFriendRequest(i);
|
|
addFriendRequestWidget(request.address, request.message);
|
|
}
|
|
}
|
|
|
|
AddFriendForm::~AddFriendForm()
|
|
{
|
|
Translator::unregister(this);
|
|
head->deleteLater();
|
|
tabWidget->deleteLater();
|
|
}
|
|
|
|
bool AddFriendForm::isShown() const
|
|
{
|
|
if (head->isVisible())
|
|
{
|
|
head->window()->windowHandle()->alert(0);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void AddFriendForm::show(ContentLayout* contentLayout)
|
|
{
|
|
contentLayout->mainContent->layout()->addWidget(tabWidget);
|
|
contentLayout->mainHead->layout()->addWidget(head);
|
|
tabWidget->show();
|
|
head->show();
|
|
setIdFromClipboard();
|
|
toxId.setFocus();
|
|
|
|
// Fix #3421
|
|
// Needed to update tab after opening window
|
|
int index = tabWidget->currentIndex();
|
|
onCurrentChanged(index);
|
|
}
|
|
|
|
QString AddFriendForm::getMessage() const
|
|
{
|
|
const QString msg = message.toPlainText();
|
|
return !msg.isEmpty() ? msg : message.placeholderText();
|
|
}
|
|
|
|
void AddFriendForm::setMode(Mode mode)
|
|
{
|
|
tabWidget->setCurrentIndex(mode);
|
|
}
|
|
|
|
bool AddFriendForm::addFriendRequest(const QString &friendAddress, const QString &message)
|
|
{
|
|
if(Settings::getInstance().addFriendRequest(friendAddress, message))
|
|
{
|
|
addFriendRequestWidget(friendAddress, message);
|
|
if(isShown())
|
|
{
|
|
onCurrentChanged(tabWidget->currentIndex());
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void AddFriendForm::onUsernameSet(const QString& username)
|
|
{
|
|
lastUsername = username;
|
|
retranslateUi();
|
|
}
|
|
|
|
void AddFriendForm::onSendTriggered()
|
|
{
|
|
QString id = toxId.text().trimmed();
|
|
|
|
if (!ToxId::isToxId(id))
|
|
{
|
|
ToxId toxId = Toxme::lookup(id); // Try Toxme
|
|
if (toxId.toString().isEmpty()) // If it isn't supported
|
|
{
|
|
qDebug() << "Toxme didn't return a ToxID, trying ToxDNS";
|
|
if (Settings::getInstance().getProxyType() != ProxyType::ptNone)
|
|
{
|
|
QMessageBox::StandardButton btn = QMessageBox::warning(main, "qTox", tr("qTox needs to use the Tox DNS, but can't do it through a proxy.\n\
|
|
Ignore the proxy and connect to the Internet directly?"), QMessageBox::Yes|QMessageBox::No, QMessageBox::No);
|
|
if (btn != QMessageBox::Yes)
|
|
return;
|
|
}
|
|
toxId = ToxDNS::resolveToxAddress(id, true); // Use ToxDNS
|
|
if (toxId.toString().isEmpty())
|
|
{
|
|
GUI::showWarning(tr("Couldn't add friend"), tr("This Tox ID does not exist","DNS error"));
|
|
return;
|
|
}
|
|
}
|
|
id = toxId.toString();
|
|
}
|
|
|
|
deleteFriendRequest(id);
|
|
if (id.toUpper() == Core::getInstance()->getSelfId().toString().toUpper())
|
|
GUI::showWarning(tr("Couldn't add friend"), tr("You can't add yourself as a friend!","When trying to add your own Tox ID as friend"));
|
|
else
|
|
emit friendRequested(id, getMessage());
|
|
|
|
this->toxId.clear();
|
|
this->message.clear();
|
|
}
|
|
|
|
void AddFriendForm::onIdChanged(const QString &id)
|
|
{
|
|
QString tId = id.trimmed();
|
|
QRegularExpression dnsIdExpression("^\\S+@\\S+$");
|
|
bool isValidId = tId.isEmpty() || ToxId::isToxId(tId) || tId.contains(dnsIdExpression);
|
|
|
|
QString toxIdText(tr("Tox ID", "Tox ID of the person you're sending a friend request to"));
|
|
QString toxIdComment(tr("either 76 hexadecimal characters or name@example.com", "Tox ID format description"));
|
|
|
|
if(isValidId)
|
|
{
|
|
toxIdLabel.setText(toxIdText +
|
|
QStringLiteral(" (") +
|
|
toxIdComment +
|
|
QStringLiteral(")"));
|
|
} else
|
|
{
|
|
toxIdLabel.setText(toxIdText +
|
|
QStringLiteral(" <font color='red'>(") +
|
|
toxIdComment +
|
|
QStringLiteral(")</font>"));
|
|
}
|
|
|
|
toxId.setStyleSheet(isValidId ? QStringLiteral("") : QStringLiteral("QLineEdit { background-color: #FFC1C1; }"));
|
|
toxId.setToolTip(isValidId ? QStringLiteral("") : tr("Invalid Tox ID format"));
|
|
|
|
sendButton.setEnabled(isValidId && !tId.isEmpty());
|
|
}
|
|
|
|
void AddFriendForm::setIdFromClipboard()
|
|
{
|
|
QClipboard* clipboard = QApplication::clipboard();
|
|
QString id = clipboard->text().trimmed();
|
|
if (Core::getInstance()->isReady() && !id.isEmpty() && ToxId::isToxId(id))
|
|
{
|
|
if (!ToxId(id).isSelf())
|
|
toxId.setText(id);
|
|
}
|
|
}
|
|
|
|
void AddFriendForm::deleteFriendRequest(const QString& toxId)
|
|
{
|
|
int size = Settings::getInstance().getFriendRequestSize();
|
|
for (int i = 0; i < size; i++)
|
|
{
|
|
Settings::Request request = Settings::getInstance().getFriendRequest(i);
|
|
if (ToxId(toxId) == ToxId(request.address))
|
|
{
|
|
Settings::getInstance().removeFriendRequest(i);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
void AddFriendForm::onFriendRequestAccepted()
|
|
{
|
|
QPushButton* acceptButton = static_cast<QPushButton*>(sender());
|
|
QWidget* friendWidget = acceptButton->parentWidget();
|
|
int index = requestsLayout->indexOf(friendWidget);
|
|
removeFriendRequestWidget(friendWidget);
|
|
Settings::Request request = Settings::getInstance().getFriendRequest(requestsLayout->count() - index - 1);
|
|
emit friendRequestAccepted(request.address);
|
|
Settings::getInstance().removeFriendRequest(requestsLayout->count() - index - 1);
|
|
Settings::getInstance().savePersonal();
|
|
}
|
|
|
|
void AddFriendForm::onFriendRequestRejected()
|
|
{
|
|
QPushButton* rejectButton = static_cast<QPushButton*>(sender());
|
|
QWidget* friendWidget = rejectButton->parentWidget();
|
|
int index = requestsLayout->indexOf(friendWidget);
|
|
removeFriendRequestWidget(friendWidget);
|
|
Settings::getInstance().removeFriendRequest(requestsLayout->count() - index - 1);
|
|
Settings::getInstance().savePersonal();
|
|
}
|
|
|
|
void AddFriendForm::onCurrentChanged(int index)
|
|
{
|
|
if (index == FriendRequest && Settings::getInstance().getUnreadFriendRequests() != 0)
|
|
{
|
|
Settings::getInstance().clearUnreadFriendRequests();
|
|
Settings::getInstance().savePersonal();
|
|
emit friendRequestsSeen();
|
|
}
|
|
}
|
|
|
|
void AddFriendForm::retranslateUi()
|
|
{
|
|
headLabel.setText(tr("Add Friends"));
|
|
messageLabel.setText(tr("Message","The message you send in friend requests"));
|
|
sendButton.setText(tr("Send friend request"));
|
|
message.setPlaceholderText(tr("%1 here! Tox me maybe?",
|
|
"Default message in friend requests if the field is left blank. Write something appropriate!")
|
|
.arg(lastUsername));
|
|
|
|
onIdChanged(toxId.text());
|
|
|
|
tabWidget->setTabText(0, tr("Add a friend"));
|
|
tabWidget->setTabText(1, tr("Friend requests"));
|
|
|
|
for (QPushButton* acceptButton : acceptButtons)
|
|
retranslateAcceptButton(acceptButton);
|
|
|
|
for (QPushButton* rejectButton : rejectButtons)
|
|
retranslateRejectButton(rejectButton);
|
|
}
|
|
|
|
void AddFriendForm::addFriendRequestWidget(const QString &friendAddress, const QString &message)
|
|
{
|
|
QWidget* friendWidget = new QWidget(tabWidget);
|
|
QHBoxLayout* friendLayout = new QHBoxLayout(friendWidget);
|
|
QVBoxLayout* horLayout = new QVBoxLayout();
|
|
horLayout->setMargin(0);
|
|
friendLayout->addLayout(horLayout);
|
|
|
|
CroppingLabel* friendLabel = new CroppingLabel(friendWidget);
|
|
friendLabel->setText("<b>" + friendAddress + "</b>");
|
|
horLayout->addWidget(friendLabel);
|
|
|
|
QLabel* messageLabel = new QLabel(message);
|
|
messageLabel->setTextFormat(Qt::PlainText);
|
|
messageLabel->setWordWrap(true);
|
|
horLayout->addWidget(messageLabel, 1);
|
|
|
|
QPushButton* acceptButton = new QPushButton(friendWidget);
|
|
acceptButtons.append(acceptButton);
|
|
connect(acceptButton, &QPushButton::released, this, &AddFriendForm::onFriendRequestAccepted);
|
|
friendLayout->addWidget(acceptButton);
|
|
retranslateAcceptButton(acceptButton);
|
|
|
|
QPushButton* rejectButton = new QPushButton(friendWidget);
|
|
rejectButtons.append(rejectButton);
|
|
connect(rejectButton, &QPushButton::released, this, &AddFriendForm::onFriendRequestRejected);
|
|
friendLayout->addWidget(rejectButton);
|
|
retranslateRejectButton(rejectButton);
|
|
|
|
requestsLayout->insertWidget(0, friendWidget);
|
|
}
|
|
|
|
void AddFriendForm::removeFriendRequestWidget(QWidget* friendWidget)
|
|
{
|
|
int index = requestsLayout->indexOf(friendWidget);
|
|
requestsLayout->removeWidget(friendWidget);
|
|
acceptButtons.removeAt(index);
|
|
rejectButtons.removeAt(index);
|
|
friendWidget->deleteLater();
|
|
}
|
|
|
|
void AddFriendForm::retranslateAcceptButton(QPushButton *acceptButton)
|
|
{
|
|
acceptButton->setText(tr("Accept"));
|
|
}
|
|
|
|
void AddFriendForm::retranslateRejectButton(QPushButton *rejectButton)
|
|
{
|
|
rejectButton->setText(tr("Reject"));
|
|
}
|