2016-10-20 17:00:05 +08:00
|
|
|
/*
|
2016-11-28 21:33:38 +08:00
|
|
|
Copyright © 2015-2016 by The qTox Project Contributors
|
2016-10-20 17:00:05 +08:00
|
|
|
|
|
|
|
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-12-17 18:24:01 +08:00
|
|
|
#ifndef HISTORY_H
|
|
|
|
#define HISTORY_H
|
|
|
|
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QHash>
|
2017-02-26 19:52:45 +08:00
|
|
|
#include <QVector>
|
2016-10-20 17:00:05 +08:00
|
|
|
|
2015-12-17 18:24:01 +08:00
|
|
|
#include <cstdint>
|
2016-10-20 17:00:05 +08:00
|
|
|
#include <tox/toxencryptsave.h>
|
|
|
|
|
2016-12-19 10:26:26 +08:00
|
|
|
#include "src/persistence/db/rawdatabase.h"
|
2015-12-17 18:24:01 +08:00
|
|
|
|
|
|
|
class Profile;
|
|
|
|
class HistoryKeeper;
|
|
|
|
|
|
|
|
class History
|
2017-02-26 19:52:45 +08:00
|
|
|
{
|
2015-12-17 18:24:01 +08:00
|
|
|
public:
|
|
|
|
struct HistMessage
|
|
|
|
{
|
2017-02-26 19:52:45 +08:00
|
|
|
HistMessage(qint64 id, bool isSent, QDateTime timestamp, QString chat, QString dispName,
|
|
|
|
QString sender, QString message)
|
|
|
|
: chat{chat}
|
|
|
|
, sender{sender}
|
|
|
|
, message{message}
|
|
|
|
, dispName{dispName}
|
|
|
|
, timestamp{timestamp}
|
|
|
|
, id{id}
|
|
|
|
, isSent{isSent}
|
2016-10-20 17:00:05 +08:00
|
|
|
{
|
|
|
|
}
|
2015-12-17 18:24:01 +08:00
|
|
|
|
|
|
|
QString chat;
|
|
|
|
QString sender;
|
|
|
|
QString message;
|
|
|
|
QString dispName;
|
|
|
|
QDateTime timestamp;
|
|
|
|
qint64 id;
|
|
|
|
bool isSent;
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2017-06-12 16:33:19 +08:00
|
|
|
explicit History(std::shared_ptr<RawDatabase> db);
|
2015-12-17 18:24:01 +08:00
|
|
|
~History();
|
2016-07-27 06:20:54 +08:00
|
|
|
|
2015-12-17 18:24:01 +08:00
|
|
|
bool isValid();
|
|
|
|
void import(const HistoryKeeper& oldHistory);
|
|
|
|
|
|
|
|
void eraseHistory();
|
|
|
|
void removeFriendHistory(const QString& friendPk);
|
2017-02-26 19:52:45 +08:00
|
|
|
void addNewMessage(const QString& friendPk, const QString& message, const QString& sender,
|
|
|
|
const QDateTime& time, bool isSent, QString dispName,
|
2017-06-12 02:48:44 +08:00
|
|
|
const std::function<void(int64_t)>& insertIdCallback = {});
|
2016-07-27 06:20:54 +08:00
|
|
|
|
2017-02-26 19:52:45 +08:00
|
|
|
QList<HistMessage> getChatHistory(const QString& friendPk, const QDateTime& from,
|
2016-10-20 17:00:05 +08:00
|
|
|
const QDateTime& to);
|
|
|
|
void markAsSent(qint64 messageId);
|
2017-02-26 19:52:45 +08:00
|
|
|
|
2015-12-17 18:24:01 +08:00
|
|
|
protected:
|
2017-02-26 19:52:45 +08:00
|
|
|
QVector<RawDatabase::Query>
|
|
|
|
generateNewMessageQueries(const QString& friendPk, const QString& message,
|
|
|
|
const QString& sender, const QDateTime& time, bool isSent,
|
|
|
|
QString dispName, std::function<void(int64_t)> insertIdCallback = {});
|
2015-12-17 18:24:01 +08:00
|
|
|
|
|
|
|
private:
|
2016-10-20 17:00:05 +08:00
|
|
|
std::shared_ptr<RawDatabase> db;
|
2016-07-27 06:20:54 +08:00
|
|
|
QHash<QString, int64_t> peers;
|
2015-12-17 18:24:01 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HISTORY_H
|