mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
158 lines
4.9 KiB
C++
158 lines
4.9 KiB
C++
/*
|
|
Copyright (C) 2014 by Project Tox <https://tox.im>
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
This program 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.
|
|
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 COPYING file for more details.
|
|
*/
|
|
|
|
#include "addfriendform.h"
|
|
|
|
#include <QFont>
|
|
#include <QMessageBox>
|
|
#include <tox/tox.h>
|
|
#include "ui_mainwindow.h"
|
|
#include "core.h"
|
|
|
|
#define TOX_ID_LENGTH 2*TOX_FRIEND_ADDRESS_SIZE
|
|
|
|
AddFriendForm::AddFriendForm() : dns(this)
|
|
{
|
|
dns.setType(QDnsLookup::TXT);
|
|
|
|
main = new QWidget(), head = new QWidget();
|
|
QFont bold;
|
|
bold.setBold(true);
|
|
headLabel.setText(tr("Add Friends"));
|
|
headLabel.setFont(bold);
|
|
|
|
toxIdLabel.setText(tr("Tox ID","Tox ID of the person you're sending a friend request to"));
|
|
messageLabel.setText(tr("Message","The message you send in friend requests"));
|
|
sendButton.setText(tr("Send friend request"));
|
|
message.setPlaceholderText(tr("Tox me maybe?","Default message in friend requests if the field is left blank. Write something appropriate!"));
|
|
|
|
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(&sendButton, SIGNAL(clicked()), this, SLOT(onSendTriggered()));
|
|
connect(&dns, SIGNAL(finished()), this, SLOT(handleDnsLookup()));
|
|
}
|
|
|
|
AddFriendForm::~AddFriendForm()
|
|
{
|
|
head->deleteLater();
|
|
main->deleteLater();
|
|
}
|
|
|
|
void AddFriendForm::show(Ui::MainWindow &ui)
|
|
{
|
|
ui.mainContent->layout()->addWidget(main);
|
|
ui.mainHead->layout()->addWidget(head);
|
|
main->show();
|
|
head->show();
|
|
}
|
|
|
|
bool AddFriendForm::isToxId(const QString &value) const
|
|
{
|
|
const QRegularExpression hexRegExp("^[A-Fa-f0-9]+$");
|
|
return value.length() == TOX_ID_LENGTH && value.contains(hexRegExp);
|
|
}
|
|
|
|
void AddFriendForm::showWarning(const QString &message) const
|
|
{
|
|
QMessageBox warning(main);
|
|
warning.setWindowTitle("Tox");
|
|
warning.setText(message);
|
|
warning.setIcon(QMessageBox::Warning);
|
|
warning.exec();
|
|
}
|
|
|
|
QString AddFriendForm::getMessage() const
|
|
{
|
|
const QString msg = message.toPlainText();
|
|
return !msg.isEmpty() ? msg : message.placeholderText();
|
|
}
|
|
|
|
void AddFriendForm::onSendTriggered()
|
|
{
|
|
QString id = toxId.text().trimmed();
|
|
|
|
if (id.isEmpty()) {
|
|
showWarning(tr("Please fill in a valid Tox ID","Tox ID of the friend you're sending a friend request to"));
|
|
} else if (isToxId(id)) {
|
|
if (id.toUpper() == Core::getInstance()->getSelfId().toString().toUpper())
|
|
showWarning(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.setText("");
|
|
this->message.setText("");
|
|
} else {
|
|
id = id.replace("@", "._tox.");
|
|
dns.setName(id);
|
|
dns.lookup();
|
|
}
|
|
}
|
|
|
|
void AddFriendForm::handleDnsLookup()
|
|
{
|
|
const QString idKeyWord("id=");
|
|
|
|
if (dns.error() == QDnsLookup::NotFoundError) {
|
|
showWarning(tr("This address does not exist","The DNS gives the Tox ID associated to toxme.se addresses"));
|
|
return;
|
|
}
|
|
else if (dns.error() != QDnsLookup::NoError) {
|
|
showWarning(tr("Error while looking up DNS","The DNS gives the Tox ID associated to toxme.se addresses"));
|
|
return;
|
|
}
|
|
|
|
const QList<QDnsTextRecord> textRecords = dns.textRecords();
|
|
if (textRecords.length() != 1) {
|
|
showWarning(tr("Unexpected number of text records", "Error with the DNS"));
|
|
return;
|
|
}
|
|
|
|
const QList<QByteArray> textRecordValues = textRecords.first().values();
|
|
if (textRecordValues.length() != 1) {
|
|
showWarning(tr("Unexpected number of values in text record", "Error with the DNS"));
|
|
return;
|
|
}
|
|
|
|
const QString entry(textRecordValues.first());
|
|
int idx = entry.indexOf(idKeyWord);
|
|
if (idx < 0) {
|
|
showWarning(tr("The DNS lookup does not contain any Tox ID", "Error with the DNS"));
|
|
return;
|
|
}
|
|
|
|
idx += idKeyWord.length();
|
|
if (entry.length() < idx + static_cast<int>(TOX_ID_LENGTH)) {
|
|
showWarning(tr("The DNS lookup does not contain a valid Tox ID", "Error with the DNS"));
|
|
return;
|
|
}
|
|
|
|
const QString friendAdress = entry.mid(idx, TOX_ID_LENGTH);
|
|
if (!isToxId(friendAdress)) {
|
|
showWarning(tr("The DNS lookup does not contain a valid Tox ID", "Error with the DNS"));
|
|
return;
|
|
}
|
|
|
|
// finally we got it
|
|
emit friendRequested(friendAdress, getMessage());
|
|
}
|