-
Notifications
You must be signed in to change notification settings - Fork 1
/
APIHandler.h
68 lines (55 loc) · 1.42 KB
/
APIHandler.h
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#ifndef APIHANDLER_H
#define APIHANDLER_H
#include <QString>
#include <QObject>
#include <QtNetwork/QNetworkReply>
#include <QJsonObject>
#include <QUrlQuery>
#include <QJsonObject>
#include <QImage>
class APIHandler : public QObject
{
Q_OBJECT
public:
APIHandler();
void setLogo(QString);
QImage logo;
QImage getLogo();
int getUserID();
QString getUsername();
QString getCity();
QString getEmail();
QImage getImage();
void setImage(QString);
QString getSession();
void setSession(QJsonObject);
void destroySession();
void doCheck();
void doLogin(QString, QString);
void doRegister(QString, QString, QString);
void doLogout();
void doPublish(QString);
void doStatus();
void doEditProfile(QString, QString);
void doUploadImage(QString);
void doGetUser(int);
private:
QString baseURL;
QJsonObject session;
QNetworkAccessManager *manager;
void get(QString);
void post(QString, QUrlQuery);
public slots:
void onReply(QNetworkReply *reply);
signals:
void doneCheck(QJsonObject json);
void doneLogin(QJsonObject json);
void doneRegister(QJsonObject json);
void doneLogout(QJsonObject json);
void doneError(QJsonObject json);
void donePublish(QJsonObject json);
void doneStatus(QJsonObject json);
void doneEditProfile(QJsonObject json);
void doneGetUser(QJsonObject json);
};
#endif // APIHANDLER_H