/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2016 Simon Stürz * * * * This file is part of guh. * * * * Guh is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, version 2 of the License. * * * * Guh is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with guh. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef CLOUDINTERFACE_H #define CLOUDINTERFACE_H #include #include #include #include #include "cloudjsonreply.h" #include "cloudconnectionhandler.h" #include "cloudauthenticationhandler.h" namespace guhserver { class CloudInterface : public QObject { Q_OBJECT public: explicit CloudInterface(QObject *parent = 0); Q_INVOKABLE void authenticateConnection(const QString &token); Q_INVOKABLE void getTunnels(); Q_INVOKABLE void sendApiData(const QUuid &tunnelId, const QVariantMap &data); private: int m_id; QUuid m_guhUuid; QHash m_handlers; QHash m_replies; CloudJsonReply *createReply(QString nameSpace, QString method, QVariantMap params = QVariantMap()); CloudAuthenticationHandler *m_authenticationHandler; CloudConnectionHandler *m_connectionHandler; signals: void responseReceived(const int &commandId, const QVariantMap &response); public slots: void dataReceived(const QVariantMap &data); }; } #endif // CLOUDINTERFACE_H