2014-10-02 03:03:10 +08:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HISTORYKEEPER_H
|
|
|
|
#define HISTORYKEEPER_H
|
|
|
|
|
|
|
|
#include <QMap>
|
|
|
|
#include <QList>
|
|
|
|
#include <QDateTime>
|
|
|
|
|
2014-10-15 22:46:36 +08:00
|
|
|
class GenericDdInterface;
|
2014-11-12 20:56:24 +08:00
|
|
|
namespace Db { enum class syncType; }
|
2014-10-15 22:46:36 +08:00
|
|
|
|
2014-10-02 03:03:10 +08:00
|
|
|
class HistoryKeeper
|
|
|
|
{
|
|
|
|
public:
|
2014-10-14 21:43:03 +08:00
|
|
|
enum ChatType {ctSingle = 0, ctGroup};
|
|
|
|
|
2014-10-02 03:03:10 +08:00
|
|
|
struct HistMessage
|
|
|
|
{
|
2014-12-04 23:22:17 +08:00
|
|
|
HistMessage(qint64 id, QString chat, QString sender, QString message, QDateTime timestamp, bool isSent) :
|
|
|
|
id(id), chat(chat), sender(sender), message(message), timestamp(timestamp), isSent(isSent) {}
|
|
|
|
|
2014-11-10 19:30:56 +08:00
|
|
|
qint64 id;
|
2014-12-04 23:22:17 +08:00
|
|
|
QString chat;
|
2014-10-02 03:03:10 +08:00
|
|
|
QString sender;
|
|
|
|
QString message;
|
|
|
|
QDateTime timestamp;
|
2014-11-10 01:02:43 +08:00
|
|
|
bool isSent;
|
2014-10-02 03:03:10 +08:00
|
|
|
};
|
|
|
|
|
2014-10-19 01:38:47 +08:00
|
|
|
virtual ~HistoryKeeper();
|
|
|
|
|
2014-10-02 03:03:10 +08:00
|
|
|
static HistoryKeeper* getInstance();
|
|
|
|
static void resetInstance();
|
2014-10-22 21:36:36 +08:00
|
|
|
|
2014-12-03 08:48:50 +08:00
|
|
|
static QString getHistoryPath(QString currentProfile = QString(), int encrypted = -1); // -1 defaults to checking settings, 0 or 1 to specify
|
2014-12-04 23:22:17 +08:00
|
|
|
static bool checkPassword(int encrypted = -1);
|
2014-11-04 00:44:01 +08:00
|
|
|
static bool isFileExist();
|
2014-10-19 01:38:47 +08:00
|
|
|
static void renameHistory(QString from, QString to);
|
2014-12-04 23:22:17 +08:00
|
|
|
static bool removeHistory(int encrypted = -1);
|
2014-12-05 00:55:14 +08:00
|
|
|
static QList<HistMessage> exportMessagesDeleteFile(int encrypted = -1);
|
2014-10-02 03:03:10 +08:00
|
|
|
|
2014-12-04 23:22:17 +08:00
|
|
|
qint64 addChatEntry(const QString& chat, const QString& message, const QString& sender, const QDateTime &dt, bool isSent);
|
|
|
|
qint64 addGroupChatEntry(const QString& chat, const QString& message, const QString& sender, const QDateTime &dt);
|
2014-10-22 22:14:42 +08:00
|
|
|
QList<HistMessage> getChatHistory(ChatType ct, const QString &chat, const QDateTime &time_from, const QDateTime &time_to);
|
2014-11-09 20:32:19 +08:00
|
|
|
void markAsSent(int m_id);
|
2014-10-02 03:03:10 +08:00
|
|
|
|
2014-12-04 23:22:17 +08:00
|
|
|
QList<HistMessage> exportMessages();
|
|
|
|
void importMessages(const QList<HistoryKeeper::HistMessage> &lst);
|
|
|
|
|
2014-11-12 20:56:24 +08:00
|
|
|
void setSyncType(Db::syncType sType);
|
|
|
|
|
2014-10-02 03:03:10 +08:00
|
|
|
private:
|
2014-10-15 22:46:36 +08:00
|
|
|
HistoryKeeper(GenericDdInterface *db_);
|
|
|
|
HistoryKeeper(HistoryKeeper &hk) = delete;
|
2014-10-02 03:03:10 +08:00
|
|
|
HistoryKeeper& operator=(const HistoryKeeper&) = delete;
|
|
|
|
|
|
|
|
void updateChatsID();
|
|
|
|
void updateAliases();
|
|
|
|
QPair<int, ChatType> getChatID(const QString &id_str, ChatType ct);
|
|
|
|
int getAliasID(const QString &id_str);
|
|
|
|
QString wrapMessage(const QString &str);
|
|
|
|
QString unWrapMessage(const QString &str);
|
2014-12-04 23:22:17 +08:00
|
|
|
QList<QString> generateAddChatEntryCmd(const QString& chat, const QString& message, const QString& sender, const QDateTime &dt, bool isSent);
|
2014-10-02 03:03:10 +08:00
|
|
|
|
2014-10-14 21:43:03 +08:00
|
|
|
ChatType convertToChatType(int);
|
|
|
|
|
2014-10-15 22:46:36 +08:00
|
|
|
GenericDdInterface *db;
|
2014-10-02 03:03:10 +08:00
|
|
|
QMap<QString, int> aliases;
|
|
|
|
QMap<QString, QPair<int, ChatType>> chats;
|
2014-12-04 23:22:17 +08:00
|
|
|
qint64 messageID;
|
2014-10-02 03:03:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HISTORYKEEPER_H
|