/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2018 Simon Stürz * * * * This file is part of nymea-remoteproxy. * * * * This program 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, either version 3 of the License, or * * (at your option) any later version. * * * * This program 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 this program. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef PROXYCLIENT_H #define PROXYCLIENT_H #include #include #include "remoteproxyconnection.h" using namespace remoteproxyclient; Q_DECLARE_LOGGING_CATEGORY(dcProxyClient) class ProxyClient : public QObject { Q_OBJECT public: explicit ProxyClient(const QString &name, const QUuid &uuid, QObject *parent = nullptr); void setInsecure(bool insecure); void setPingpong(bool enable); private: QString m_name; QUuid m_uuid; QString m_token; QString m_nonce; bool m_insecure = false; bool m_pingpong = false; RemoteProxyConnection *m_connection = nullptr; private slots: void onErrorOccured(QAbstractSocket::SocketError error); void onClientReady(); void onAuthenticationFinished(); void onRemoteConnectionEstablished(); void onDataReady(const QByteArray &data); void onClientDisconnected(); void onSslErrors(const QList errors); void sendPing(); public slots: void start(const QUrl &url, const QString &token, const QString &nonce); }; #endif // PROXYCLIENT_H