mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 20:16:16 +00:00
37 lines
900 B
C
37 lines
900 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#ifndef UPLOADDIVELOGSDE_H
|
||
|
#define UPLOADDIVELOGSDE_H
|
||
|
#include <QNetworkReply>
|
||
|
#include <QHttpMultiPart>
|
||
|
#include <QTimer>
|
||
|
|
||
|
|
||
|
class uploadDiveLogsDE : public QObject {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
static uploadDiveLogsDE *instance();
|
||
|
void doUpload(bool selected, const QString &userid, const QString &password);
|
||
|
|
||
|
private slots:
|
||
|
void updateProgress(qint64 current, qint64 total);
|
||
|
void uploadFinished();
|
||
|
void uploadTimeout();
|
||
|
void uploadError(QNetworkReply::NetworkError error);
|
||
|
|
||
|
signals:
|
||
|
void uploadFinish(bool success, const QString &text);
|
||
|
void uploadProgress(qreal percentage);
|
||
|
|
||
|
private:
|
||
|
uploadDiveLogsDE();
|
||
|
|
||
|
bool prepareDives(bool selected, const QString &filename);
|
||
|
void uploadDives(const QString &filename, const QString &userid, const QString &password);
|
||
|
|
||
|
QNetworkReply *reply;
|
||
|
QHttpMultiPart *multipart;
|
||
|
QTimer timeout;
|
||
|
};
|
||
|
#endif // UPLOADDIVELOGSDE_H
|