summaryrefslogtreecommitdiffstats
path: root/core/uploadDiveLogsDE.h
blob: 0375c95a401b809062bf2279d6077673143538d1 (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
37
38
// 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);

	// only to be used in desktop-widgets::subsurfacewebservices
	bool prepareDives(const QString &tempfile, const bool selected);

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();

	void uploadDives(const QString &filename, const QString &userid, const QString &password);

	QNetworkReply *reply;
	QHttpMultiPart *multipart;
	QTimer timeout;
};
#endif // UPLOADDIVELOGSDE_H