2015-06-06 09:40:08 +08:00
|
|
|
/*
|
|
|
|
Copyright © 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-06-04 05:20:47 +08:00
|
|
|
#ifndef PROFILE_H
|
|
|
|
#define PROFILE_H
|
|
|
|
|
|
|
|
#include <QVector>
|
|
|
|
#include <QString>
|
2015-06-04 07:30:17 +08:00
|
|
|
#include <QByteArray>
|
2015-12-06 02:08:28 +08:00
|
|
|
#include <QPixmap>
|
2015-06-28 03:14:35 +08:00
|
|
|
#include <tox/toxencryptsave.h>
|
2015-12-17 18:24:01 +08:00
|
|
|
#include <memory>
|
|
|
|
#include "src/persistence/history.h"
|
2015-06-04 07:30:17 +08:00
|
|
|
|
|
|
|
class Core;
|
|
|
|
class QThread;
|
2015-06-04 05:20:47 +08:00
|
|
|
|
|
|
|
class Profile
|
|
|
|
{
|
|
|
|
public:
|
2016-06-18 12:49:40 +08:00
|
|
|
static Profile* loadProfile(QString name, const QString &password = QString());
|
2015-06-04 08:10:06 +08:00
|
|
|
static Profile* createProfile(QString name, QString password);
|
2015-06-04 05:20:47 +08:00
|
|
|
~Profile();
|
|
|
|
|
2015-06-04 07:30:17 +08:00
|
|
|
Core* getCore();
|
2015-12-17 18:24:01 +08:00
|
|
|
QString getName() const;
|
2015-06-04 08:43:07 +08:00
|
|
|
|
2016-07-27 06:20:54 +08:00
|
|
|
void startCore();
|
|
|
|
void restartCore();
|
2015-06-04 08:43:07 +08:00
|
|
|
bool isNewProfile();
|
2016-07-27 06:20:54 +08:00
|
|
|
bool isEncrypted() const;
|
|
|
|
bool checkPassword();
|
2015-12-17 18:24:01 +08:00
|
|
|
QString getPassword() const;
|
2016-07-27 06:20:54 +08:00
|
|
|
void setPassword(const QString &newPassword);
|
2015-12-17 18:24:01 +08:00
|
|
|
const TOX_PASS_KEY& getPasskey() const;
|
2015-06-04 21:16:25 +08:00
|
|
|
|
2016-07-27 06:20:54 +08:00
|
|
|
QByteArray loadToxSave();
|
|
|
|
void saveToxSave();
|
|
|
|
void saveToxSave(QByteArray data);
|
2015-06-04 18:43:28 +08:00
|
|
|
|
2016-07-27 06:20:54 +08:00
|
|
|
QPixmap loadAvatar();
|
|
|
|
QPixmap loadAvatar(const QString& ownerId);
|
|
|
|
QByteArray loadAvatarData(const QString& ownerId);
|
|
|
|
QByteArray loadAvatarData(const QString& ownerId, const QString& password);
|
|
|
|
void saveAvatar(QByteArray pic, const QString& ownerId);
|
|
|
|
QByteArray getAvatarHash(const QString& ownerId);
|
|
|
|
void removeAvatar(const QString& ownerId);
|
|
|
|
void removeAvatar();
|
2015-12-06 02:08:28 +08:00
|
|
|
|
2015-12-17 18:24:01 +08:00
|
|
|
bool isHistoryEnabled();
|
|
|
|
History* getHistory();
|
|
|
|
|
2016-04-30 05:10:21 +08:00
|
|
|
QVector<QString> remove();
|
2015-06-04 07:30:17 +08:00
|
|
|
|
2015-06-04 19:01:30 +08:00
|
|
|
bool rename(QString newName);
|
|
|
|
|
2015-06-04 05:20:47 +08:00
|
|
|
static void scanProfiles();
|
|
|
|
static QVector<QString> getProfiles();
|
|
|
|
|
2015-06-05 18:44:22 +08:00
|
|
|
static bool exists(QString name);
|
2016-07-27 06:20:54 +08:00
|
|
|
static bool isEncrypted(QString name);
|
2015-06-04 07:30:17 +08:00
|
|
|
|
2015-06-04 05:20:47 +08:00
|
|
|
private:
|
2016-06-18 12:49:40 +08:00
|
|
|
Profile(QString name, const QString &password, bool newProfile);
|
2015-06-04 05:20:47 +08:00
|
|
|
static QVector<QString> getFilesByExt(QString extension);
|
2015-12-06 03:07:59 +08:00
|
|
|
QString avatarPath(const QString& ownerId, bool forceUnencrypted = false);
|
2015-06-04 05:20:47 +08:00
|
|
|
|
|
|
|
private:
|
2015-06-04 07:30:17 +08:00
|
|
|
Core* core;
|
|
|
|
QThread* coreThread;
|
|
|
|
QString name, password;
|
2015-06-28 03:14:35 +08:00
|
|
|
TOX_PASS_KEY passkey;
|
2015-12-17 18:24:01 +08:00
|
|
|
std::unique_ptr<History> history;
|
2016-07-27 06:20:54 +08:00
|
|
|
bool newProfile;
|
|
|
|
bool isRemoved;
|
2015-06-04 18:43:28 +08:00
|
|
|
static QVector<QString> profiles;
|
2015-06-04 07:30:17 +08:00
|
|
|
static constexpr int encryptHeaderSize = 8;
|
2015-06-04 05:20:47 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PROFILE_H
|