mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-08 07:10:32 +00:00
41c9013fa4
Signed-off-by: Jared Van Bortel <jared@nomic.ai>
72 lines
1.7 KiB
C++
72 lines
1.7 KiB
C++
#ifndef NETWORK_H
|
|
#define NETWORK_H
|
|
|
|
#include <QByteArray>
|
|
#include <QJsonValue>
|
|
#include <QList>
|
|
#include <QMap>
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkReply>
|
|
#include <QObject>
|
|
#include <QSslError>
|
|
#include <QString>
|
|
#include <QVariant>
|
|
#include <QVector>
|
|
|
|
struct KeyValue {
|
|
QString key;
|
|
QJsonValue value;
|
|
};
|
|
|
|
class Network : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
static Network *globalInstance();
|
|
|
|
Q_INVOKABLE QString generateUniqueId() const;
|
|
Q_INVOKABLE bool sendConversation(const QString &ingestId, const QString &conversation);
|
|
Q_INVOKABLE void trackChatEvent(const QString &event, QVariantMap props = QVariantMap());
|
|
Q_INVOKABLE void trackEvent(const QString &event, const QVariantMap &props = QVariantMap());
|
|
|
|
Q_SIGNALS:
|
|
void healthCheckFailed(int code);
|
|
void requestMixpanel(const QByteArray &json, bool isOptOut = false);
|
|
|
|
public Q_SLOTS:
|
|
void sendStartup();
|
|
|
|
private Q_SLOTS:
|
|
void handleIpifyFinished();
|
|
void handleHealthFinished();
|
|
void handleJsonUploadFinished();
|
|
void handleSslErrors(QNetworkReply *reply, const QList<QSslError> &errors);
|
|
void handleMixpanelFinished();
|
|
void handleIsActiveChanged();
|
|
void handleUsageStatsActiveChanged();
|
|
void sendMixpanel(const QByteArray &json);
|
|
|
|
private:
|
|
void sendOptOut();
|
|
void sendHealth();
|
|
void sendIpify();
|
|
bool packageAndSendJson(const QString &ingestId, const QString &json);
|
|
|
|
private:
|
|
bool m_sendUsageStats = false;
|
|
bool m_hasSentOptIn;
|
|
bool m_hasSentOptOut;
|
|
QString m_ipify;
|
|
QString m_uniqueId;
|
|
QString m_sessionId;
|
|
QNetworkAccessManager m_networkManager;
|
|
QVector<QNetworkReply*> m_activeUploads;
|
|
|
|
private:
|
|
explicit Network();
|
|
~Network() {}
|
|
friend class MyNetwork;
|
|
};
|
|
|
|
#endif // LLM_H
|