nymea-plugins/httpcommander/integrationpluginhttpcomman...

140 lines
6.1 KiB
C++

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* 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 <https://www.gnu.org/licenses/>.
*
* 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
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "integrationpluginhttpcommander.h"
#include "network/networkaccessmanager.h"
#include "plugininfo.h"
#include <QNetworkInterface>
IntegrationPluginHttpCommander::IntegrationPluginHttpCommander()
{
}
void IntegrationPluginHttpCommander::setupThing(ThingSetupInfo *info)
{
Thing *thing = info->thing();
qDebug(dcHttpCommander()) << "Setup thing" << thing->name() << thing->params();
if (thing->thingClassId() == httpRequestThingClassId) {
QUrl url = thing->paramValue(httpRequestThingUrlParamTypeId).toUrl();
if (!url.isValid()) {
qDebug(dcHttpCommander()) << "Given URL is not valid";
//: Error setting up thing
return info->finish(Thing::ThingErrorInvalidParameter, QT_TR_NOOP("The given url is not valid."));
}
return info->finish(Thing::ThingErrorNoError);
}
if (thing->thingClassId() == httpServerThingClassId) {
quint16 port = static_cast<uint16_t>(thing->paramValue(httpServerThingPortParamTypeId).toUInt());
HttpSimpleServer *httpSimpleServer = new HttpSimpleServer(port, this);
connect(httpSimpleServer, &HttpSimpleServer::requestReceived, this, &IntegrationPluginHttpCommander::onHttpSimpleServerRequestReceived);
m_httpSimpleServer.insert(thing, httpSimpleServer);
return info->finish(Thing::ThingErrorNoError);
}
info->finish(Thing::ThingErrorNoError);
}
void IntegrationPluginHttpCommander::executeAction(ThingActionInfo *info)
{
Thing *thing = info->thing();
Action action = info->action();
if (thing->thingClassId() == httpRequestThingClassId) {
if (action.actionTypeId() == httpRequestRequestActionTypeId) {
QUrl url = thing->paramValue(httpRequestThingUrlParamTypeId).toUrl();
url.setPort(thing->paramValue(httpRequestThingPortParamTypeId).toInt());
QString method = action.param(httpRequestRequestActionMethodParamTypeId).value().toString();
QByteArray payload = action.param(httpRequestRequestActionBodyParamTypeId).value().toByteArray();
QNetworkReply *reply = nullptr;
if (method == "GET") {
reply = hardwareManager()->networkManager()->get(QNetworkRequest(url));
} else if (method == "POST") {
reply = hardwareManager()->networkManager()->post(QNetworkRequest(url), payload);
} else if (method == "PUT") {
reply = hardwareManager()->networkManager()->put(QNetworkRequest(url), payload);
} else if (method == "DELETE") {
reply = hardwareManager()->networkManager()->deleteResource(QNetworkRequest(url));
} else {
qCWarning(dcHttpCommander()) << "Unsupported HTTP method" << method;
info->finish(Thing::ThingErrorInvalidParameter);
return;
}
connect(reply, &QNetworkReply::finished, this, [thing, reply, this](){
qDebug(dcHttpCommander()) << "POST reply finished";
QByteArray data = reply->readAll();
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
thing->setStateValue(httpRequestResponseStateTypeId, data);
thing->setStateValue(httpRequestStatusStateTypeId, status);
// Check HTTP status code
if (status != 200 || reply->error() != QNetworkReply::NoError) {
qCWarning(dcHttpCommander()) << "Request error:" << status << reply->errorString();
}
reply->deleteLater();
});
return info->finish(Thing::ThingErrorNoError);
}
return info->finish(Thing::ThingErrorActionTypeNotFound);
}
return info->finish(Thing::ThingErrorThingClassNotFound);
}
void IntegrationPluginHttpCommander::onHttpSimpleServerRequestReceived(const QString &type, const QString &path, const QString &body)
{
//qCDebug(dcHttpCommander()) << "Request recieved" << type << body;
HttpSimpleServer *httpServer = static_cast<HttpSimpleServer *>(sender());
Thing *thing = m_httpSimpleServer.key(httpServer);
Event ev = Event(httpServerTriggeredEventTypeId, thing->id());
ParamList params;
params.append(Param(httpServerTriggeredEventRequestTypeParamTypeId, type));
params.append(Param(httpServerTriggeredEventPathParamTypeId, path));
params.append(Param(httpServerTriggeredEventBodyParamTypeId, body));
ev.setParams(params);
emit emitEvent(ev);
}
void IntegrationPluginHttpCommander::thingRemoved(Thing *thing)
{
if (thing->thingClassId() == httpServerThingClassId) {
HttpSimpleServer* httpSimpleServer= m_httpSimpleServer.take(thing);
httpSimpleServer->deleteLater();
}
}