/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright 2013 - 2020, nymea GmbH * Contact: contact@nymea.io * * This file is part of nymea. * This project including source code and documentation is protected by copyright law, and * remains the property of nymea GmbH. All rights, including reproduction, publication, * editing and translation, are reserved. The use of this project is subject to the terms of a * license agreement to be concluded with nymea GmbH in accordance with the terms * of use of nymea GmbH, available under https://nymea.io/license * * GNU Lesser General Public License Usage * Alternatively, this project may be redistributed and/or modified under the terms of the GNU * Lesser General Public License as published by the Free Software Foundation; version 3. * this project 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along with this project. * If not, see . * * For any further details and any questions please contact us under contact@nymea.io * or see our FAQ/Licensing Information on https://nymea.io/license/faq * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef REMOTEPROXYCONNECTOR_H #define REMOTEPROXYCONNECTOR_H #include #include #include #include #include #include #include Q_DECLARE_LOGGING_CATEGORY(dcRemoteProxyClientConnection) Q_DECLARE_LOGGING_CATEGORY(dcRemoteProxyClientConnectionTraffic) namespace remoteproxyclient { class JsonRpcClient; class ProxyConnection; class RemoteProxyConnection : public QObject { Q_OBJECT public: enum ConnectionType { ConnectionTypeWebSocket, ConnectionTypeTcpSocket }; Q_ENUM(ConnectionType) enum State { StateHostLookup, StateConnecting, StateConnected, StateInitializing, StateReady, StateAuthenticating, StateAuthenticated, StateRemoteConnected, StateDiconnecting, StateDisconnected, }; Q_ENUM(State) explicit RemoteProxyConnection(const QUuid &clientUuid, const QString &clientName, QObject *parent = nullptr); RemoteProxyConnection(const QUuid &clientUuid, const QString &clientName, ConnectionType connectionType, QObject *parent = nullptr); ~RemoteProxyConnection(); RemoteProxyConnection::State state() const; QAbstractSocket::SocketError error() const; void ignoreSslErrors(); void ignoreSslErrors(const QList &errors); bool isConnected() const; bool isAuthenticated() const; bool isRemoteConnected() const; RemoteProxyConnection::ConnectionType connectionType() const; QUrl serverUrl() const; QString serverName() const; QString proxyServerName() const; QString proxyServerVersion() const; QString proxyServerApiVersion() const; QString tunnelPartnerName() const; QString tunnelPartnerUuid() const; private: QUuid m_clientUuid; QString m_clientName; ConnectionType m_connectionType = ConnectionTypeWebSocket; QUrl m_serverUrl; State m_state = StateDisconnected; QAbstractSocket::SocketError m_error = QAbstractSocket::UnknownSocketError; bool m_insecureConnection = false; bool m_remoteConnected = false; JsonRpcClient *m_jsonClient = nullptr; ProxyConnection *m_connection = nullptr; // Server information QString m_serverName; QString m_proxyServerName; QString m_proxyServerVersion; QString m_proxyServerApiVersion; // Tunnel QString m_tunnelPartnerName; QString m_tunnelPartnerUuid; void cleanUp(); void setState(State state); void setError(QAbstractSocket::SocketError error); signals: void connected(); void ready(); void authenticated(); void remoteConnectionEstablished(); void disconnected(); void stateChanged(RemoteProxyConnection::State state); void errorOccured(QAbstractSocket::SocketError error); void sslErrors(const QList &errors); void dataReady(const QByteArray &data); private slots: void onConnectionChanged(bool isConnected); void onConnectionDataAvailable(const QByteArray &data); void onConnectionSocketError(QAbstractSocket::SocketError error); void onConnectionStateChanged(QAbstractSocket::SocketState state); void onHelloFinished(); void onAuthenticateFinished(); void onTunnelEstablished(const QString &clientName, const QString &clientUuid); public slots: bool connectServer(const QUrl &url); bool authenticate(const QString &token, const QString &nonce = QString()); void disconnectServer(); bool sendData(const QByteArray &data); }; } Q_DECLARE_METATYPE(remoteproxyclient::RemoteProxyConnection::State); Q_DECLARE_METATYPE(remoteproxyclient::RemoteProxyConnection::ConnectionType); #endif // REMOTEPROXYCONNECTOR_H