summaryrefslogtreecommitdiffstats
path: root/core/uploadDiveLogsDE.h
blob: d19d20a26f4eed2472968017618f7bbabfad0ab9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// 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