2014-11-03 01:36:27 +08:00
|
|
|
#include "src/corestructs.h"
|
|
|
|
#include "src/core.h"
|
2014-11-06 22:12:10 +08:00
|
|
|
#include <tox/tox.h>
|
2014-09-11 21:44:34 +08:00
|
|
|
#include <QFile>
|
2014-11-06 22:12:10 +08:00
|
|
|
#include <QRegularExpression>
|
|
|
|
|
|
|
|
#define TOX_ID_LENGTH 2*TOX_FRIEND_ADDRESS_SIZE
|
2014-09-11 21:44:34 +08:00
|
|
|
|
|
|
|
ToxFile::ToxFile(int FileNum, int FriendId, QByteArray FileName, QString FilePath, FileDirection Direction)
|
|
|
|
: fileNum(FileNum), friendId(FriendId), fileName{FileName}, filePath{FilePath}, file{new QFile(filePath)},
|
|
|
|
bytesSent{0}, filesize{0}, status{STOPPED}, direction{Direction}, sendTimer{nullptr}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToxFile::setFilePath(QString path)
|
|
|
|
{
|
|
|
|
filePath=path;
|
|
|
|
file->setFileName(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ToxFile::open(bool write)
|
|
|
|
{
|
|
|
|
return write ? file->open(QIODevice::ReadWrite) : file->open(QIODevice::ReadOnly);
|
|
|
|
}
|
2014-11-03 01:36:27 +08:00
|
|
|
|
2015-01-30 04:23:33 +08:00
|
|
|
ToxID::ToxID(const ToxID& other)
|
|
|
|
{
|
|
|
|
publicKey = other.publicKey;
|
|
|
|
noSpam = other.noSpam;
|
|
|
|
checkSum = other.checkSum;
|
|
|
|
}
|
|
|
|
|
2014-11-03 01:36:27 +08:00
|
|
|
QString ToxID::toString() const
|
|
|
|
{
|
|
|
|
return publicKey + noSpam + checkSum;
|
|
|
|
}
|
|
|
|
|
|
|
|
ToxID ToxID::fromString(QString id)
|
|
|
|
{
|
|
|
|
ToxID toxID;
|
|
|
|
toxID.publicKey = id.left(TOX_ID_PUBLIC_KEY_LENGTH);
|
|
|
|
toxID.noSpam = id.mid(TOX_ID_PUBLIC_KEY_LENGTH, TOX_ID_NO_SPAM_LENGTH);
|
2014-11-12 00:35:45 +08:00
|
|
|
toxID.checkSum = id.mid(TOX_ID_PUBLIC_KEY_LENGTH + TOX_ID_NO_SPAM_LENGTH, TOX_ID_CHECKSUM_LENGTH);
|
2014-11-03 01:36:27 +08:00
|
|
|
return toxID;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ToxID::operator==(const ToxID& other) const
|
|
|
|
{
|
|
|
|
return publicKey == other.publicKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ToxID::operator!=(const ToxID& other) const
|
|
|
|
{
|
|
|
|
return publicKey != other.publicKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ToxID::isMine() const
|
|
|
|
{
|
|
|
|
return *this == Core::getInstance()->getSelfId();
|
|
|
|
}
|
2014-11-06 22:12:10 +08:00
|
|
|
|
|
|
|
bool ToxID::isToxId(const QString& value)
|
|
|
|
{
|
|
|
|
const QRegularExpression hexRegExp("^[A-Fa-f0-9]+$");
|
|
|
|
return value.length() == TOX_ID_LENGTH && value.contains(hexRegExp);
|
|
|
|
}
|