This repository has been archived on 2022-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
fanny-app/headers/serverconn.h

72 lines
1.4 KiB
C
Raw Normal View History

2018-06-21 08:47:09 +02:00
#ifndef SERVERCONN_H
#define SERVERCONN_H
#include <QObject>
2018-06-21 16:41:02 +02:00
#include <QDir>
2018-06-21 18:36:46 +02:00
#include <QUrl>
#include <QtXml>
#include <QTimer>
2018-06-21 08:47:09 +02:00
#include <QtNetwork>
#include <QAuthenticator>
2018-06-21 16:41:02 +02:00
#include <QDesktopServices>
2018-06-21 18:36:46 +02:00
#include <QXmlNamespaceSupport>
2018-06-21 16:41:02 +02:00
#include "headers/appsettings.h"
2018-06-21 08:47:09 +02:00
#ifdef Q_OS_ANDROID
#include <QtAndroidExtras>
#endif
2018-06-21 18:36:46 +02:00
2018-06-21 08:47:09 +02:00
typedef struct strReturnData{
int status_code;
QString text;
}ReturnData_t;
class ServerConn : public QObject
{
Q_OBJECT
Q_PROPERTY(QString state READ getState NOTIFY stateChanged)
2018-06-21 16:41:02 +02:00
private:
QString state;
// can be: loggedIn ; notLoggedIn
2018-06-21 16:41:02 +02:00
QString username;
QString password;
2018-06-21 08:47:09 +02:00
QNetworkAccessManager *networkManager;
2018-06-21 16:41:02 +02:00
QNetworkAccessManager *refreshNetworkManager;
QTimer *checkConnTimer;
int authErrorCount;
ReturnData_t senddata(QUrl serviceUrl, QUrlQuery postData);
private slots:
void setState(QString state);
2018-06-21 16:41:02 +02:00
public:
2018-06-21 08:47:09 +02:00
explicit ServerConn(QObject *parent = nullptr);
2018-06-21 16:41:02 +02:00
~ServerConn();
public slots:
Q_INVOKABLE int login(QString username, QString password, bool permanent);
2018-06-21 16:41:02 +02:00
Q_INVOKABLE int logout();
Q_INVOKABLE int checkConn();
2018-06-25 00:15:18 +02:00
Q_INVOKABLE int getFoodPlan();
Q_INVOKABLE int getEvents(QString day);
2018-06-21 08:47:09 +02:00
Q_INVOKABLE QString getState();
2018-06-22 09:36:20 +02:00
signals:
void stateChanged(QString newState);
2018-06-24 09:23:10 +02:00
public:
QList<QList<QString>> m_weekplan;
QList<QStringList> m_events;
2018-06-24 09:23:10 +02:00
2018-06-21 08:47:09 +02:00
};
extern ServerConn * pGlobalServConn;
2018-06-21 08:47:09 +02:00
#endif // SERVERCONN_H