mirror of https://github.com/nymea/nymea.git
142 lines
5.9 KiB
C++
142 lines
5.9 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2018 Michael Zanetti <michael.zanetti@guh.io> *
|
|
* Copyright (C) 2018 Simon Stürz <simon.stuerz@guh.io> *
|
|
* *
|
|
* This file is part of nymea. *
|
|
* *
|
|
* nymea 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. *
|
|
* *
|
|
* nymea 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 nymea. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "cloudtransport.h"
|
|
#include "loggingcategories.h"
|
|
|
|
#include "nymeacore.h"
|
|
|
|
using namespace remoteproxyclient;
|
|
|
|
namespace nymeaserver {
|
|
|
|
CloudTransport::CloudTransport(const ServerConfiguration &config, QObject *parent):
|
|
TransportInterface(config, parent)
|
|
{
|
|
m_proxyUrl = QUrl("wss://remoteproxy.nymea.io");
|
|
}
|
|
|
|
void CloudTransport::sendData(const QUuid &clientId, const QByteArray &data)
|
|
{
|
|
qCDebug(dcCloudTraffic()) << "Sending data" << clientId << data;
|
|
foreach (const ConnectionContext &ctx, m_connections) {
|
|
if (ctx.clientId == clientId) {
|
|
ctx.proxyConnection->sendData(data);
|
|
return;
|
|
}
|
|
}
|
|
qCWarning(dcCloud()) << "Error sending data. No such clientId";
|
|
}
|
|
|
|
void CloudTransport::sendData(const QList<QUuid> &clientIds, const QByteArray &data)
|
|
{
|
|
foreach (const QUuid &clientId, clientIds) {
|
|
sendData(clientId, data);
|
|
}
|
|
}
|
|
|
|
void CloudTransport::terminateClientConnection(const QUuid &clientId)
|
|
{
|
|
foreach (const ConnectionContext &ctx, m_connections) {
|
|
if (ctx.clientId == clientId) {
|
|
ctx.proxyConnection->disconnectServer();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool CloudTransport::startServer()
|
|
{
|
|
qCDebug(dcCloud()) << "Started cloud transport";
|
|
return true;
|
|
}
|
|
|
|
bool CloudTransport::stopServer()
|
|
{
|
|
qCDebug(dcCloud()) << "Stopped cloud transport";
|
|
return true;
|
|
}
|
|
|
|
void CloudTransport::connectToCloud(const QString &token, const QString &nonce)
|
|
{
|
|
qCDebug(dcCloud()) << "Connecting to remote proxy server" << m_proxyUrl.toString();
|
|
|
|
ConnectionContext context;
|
|
context.clientId = QUuid::createUuid();
|
|
context.token = token;
|
|
context.nonce = nonce;
|
|
QString identifier = QString("nymea:core (%1)").arg(NymeaCore::instance()->configuration()->serverName());
|
|
context.proxyConnection = new RemoteProxyConnection(NymeaCore::instance()->configuration()->serverUuid().toString(), identifier, this);
|
|
m_connections.insert(context.proxyConnection, context);
|
|
|
|
connect(context.proxyConnection, &RemoteProxyConnection::ready, this, &CloudTransport::transportReady);
|
|
connect(context.proxyConnection, &RemoteProxyConnection::stateChanged, this, &CloudTransport::remoteConnectionStateChanged);
|
|
connect(context.proxyConnection, &RemoteProxyConnection::dataReady, this, &CloudTransport::transportDataReady);
|
|
connect(context.proxyConnection, &RemoteProxyConnection::remoteConnectionEstablished, this, &CloudTransport::transportConnected);
|
|
connect(context.proxyConnection, &RemoteProxyConnection::disconnected, this, &CloudTransport::transportDisconnected);
|
|
|
|
context.proxyConnection->connectServer(m_proxyUrl);
|
|
}
|
|
|
|
void CloudTransport::remoteConnectionStateChanged(RemoteProxyConnection::State state)
|
|
{
|
|
qCDebug(dcCloudTraffic()) << "Remote connection state changed" << state;
|
|
}
|
|
|
|
void CloudTransport::transportConnected()
|
|
{
|
|
RemoteProxyConnection *proxyConnection = qobject_cast<RemoteProxyConnection*>(sender());
|
|
ConnectionContext context = m_connections.value(proxyConnection);
|
|
|
|
qCDebug(dcCloud()) << "The remote client connected successfully" << proxyConnection->tunnelPartnerName() << proxyConnection->tunnelPartnerUuid();
|
|
emit clientConnected(context.clientId);
|
|
}
|
|
|
|
void CloudTransport::transportDisconnected()
|
|
{
|
|
RemoteProxyConnection *proxyConnection = qobject_cast<RemoteProxyConnection*>(sender());
|
|
ConnectionContext context = m_connections.take(proxyConnection);
|
|
proxyConnection->deleteLater();
|
|
|
|
qCDebug(dcCloud()) << "The remote connection disconnected." << context.clientId;
|
|
emit clientDisconnected(context.clientId);
|
|
}
|
|
|
|
void CloudTransport::transportReady()
|
|
{
|
|
RemoteProxyConnection *proxyConnection = static_cast<RemoteProxyConnection *>(sender());
|
|
qCDebug(dcCloud()) << "Connected successfully to remote proxy server" << proxyConnection->proxyServerName() <<
|
|
proxyConnection->proxyServerVersion() << "API version:" << proxyConnection->proxyServerApiVersion();
|
|
|
|
ConnectionContext context = m_connections.value(proxyConnection);
|
|
context.proxyConnection->authenticate(context.token, context.nonce);
|
|
}
|
|
|
|
void CloudTransport::transportDataReady(const QByteArray &data)
|
|
{
|
|
RemoteProxyConnection *proxyConnection = qobject_cast<RemoteProxyConnection*>(sender());
|
|
ConnectionContext context = m_connections.value(proxyConnection);
|
|
qCDebug(dcCloudTraffic()) << "Data received:" << context.clientId.toString() << data;
|
|
emit dataAvailable(context.clientId, data);
|
|
}
|
|
|
|
}
|