268 lines
9.3 KiB
C++
268 lines
9.3 KiB
C++
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea-plugins.
|
|
*
|
|
* nymea-plugins 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.
|
|
*
|
|
* nymea-plugins 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-plugins. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "integrationplugindweetio.h"
|
|
#include "plugininfo.h"
|
|
|
|
#include <hardwaremanager.h>
|
|
#include <network/networkaccessmanager.h>
|
|
|
|
#include <QUuid>
|
|
#include <QJsonDocument>
|
|
#include <QJsonObject>
|
|
#include <QUrl>
|
|
#include <QUrlQuery>
|
|
|
|
IntegrationPluginDweetio::IntegrationPluginDweetio()
|
|
{
|
|
|
|
}
|
|
|
|
IntegrationPluginDweetio::~IntegrationPluginDweetio()
|
|
{
|
|
hardwareManager()->pluginTimerManager()->unregisterTimer(m_pluginTimer);
|
|
}
|
|
|
|
void IntegrationPluginDweetio::init()
|
|
{
|
|
m_pluginTimer = hardwareManager()->pluginTimerManager()->registerTimer(60);
|
|
connect(m_pluginTimer, &PluginTimer::timeout, this, &IntegrationPluginDweetio::onPluginTimer);
|
|
}
|
|
|
|
void IntegrationPluginDweetio::setupThing(ThingSetupInfo *info)
|
|
{
|
|
if (info->thing()->thingClassId() == postThingClassId) {
|
|
QString thing = info->thing()->paramValue(postThingThingParamTypeId).toString();
|
|
if (thing.isEmpty()){
|
|
qCDebug(dcDweetio()) << "No thing name given, creating one";
|
|
thing = QUuid::createUuid().toString();
|
|
}
|
|
return info->finish(Thing::ThingErrorNoError);
|
|
} else if (info->thing()->thingClassId() == getThingClassId) {
|
|
return info->finish(Thing::ThingErrorNoError);
|
|
}
|
|
|
|
info->finish(Thing::ThingErrorThingClassNotFound);
|
|
}
|
|
|
|
void IntegrationPluginDweetio::postSetupThing(Thing *thing)
|
|
{
|
|
if (thing->thingClassId() == getThingClassId){
|
|
getRequest(thing);
|
|
}
|
|
}
|
|
|
|
void IntegrationPluginDweetio::thingRemoved(Thing *thing)
|
|
{
|
|
if (thing->thingClassId() == getThingClassId) {
|
|
foreach(QNetworkReply *reply, m_getReplies.keys()){
|
|
if (m_getReplies.value(reply) == thing) {
|
|
m_getReplies.remove(reply);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (thing->thingClassId() == postThingClassId) {
|
|
foreach(QNetworkReply *reply, m_postReplies.keys()){
|
|
if (m_postReplies.value(reply) == thing) {
|
|
m_postReplies.remove(reply);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void IntegrationPluginDweetio::executeAction(ThingActionInfo *info)
|
|
{
|
|
Thing *thing = info->thing();
|
|
Action action = info->action();
|
|
qCDebug(dcDweetio) << "Execute action" << thing->id() << action.params();
|
|
|
|
if (thing->thingClassId() == postThingClassId) {
|
|
|
|
if (action.actionTypeId() == postContentDataActionTypeId) {
|
|
|
|
QString content = action.param(postContentDataActionContentDataAreaParamTypeId).value().toString();
|
|
postContent(content, thing, info);
|
|
return;
|
|
}
|
|
return info->finish(Thing::ThingErrorActionTypeNotFound);
|
|
}
|
|
return info->finish(Thing::ThingErrorThingClassNotFound);
|
|
}
|
|
|
|
void IntegrationPluginDweetio::postContent(const QString &content, Thing *thing, ThingActionInfo *info)
|
|
{
|
|
QUrl url = QString("https://dweet.io:443/dweet/for/") + thing->paramValue(postThingThingParamTypeId).toString();
|
|
QNetworkRequest request(url);
|
|
request.setRawHeader("Content-Type", QString("application/json").toLocal8Bit());
|
|
request.setRawHeader("Accept", QString("application/json").toLocal8Bit());
|
|
request.setSslConfiguration(QSslConfiguration::defaultConfiguration());
|
|
|
|
QString key = thing->paramValue(postThingKeyParamTypeId).toString();
|
|
if (!(key.isEmpty()) || !(key == "none")) {
|
|
QUrlQuery query;
|
|
query.addQueryItem("key", key);
|
|
url.setQuery(query);
|
|
}
|
|
|
|
QVariantMap contentMap;
|
|
contentMap.insert(thing->paramValue(postThingContentNameParamTypeId).toString(), content);
|
|
|
|
QByteArray data = QJsonDocument::fromVariant(contentMap).toJson(QJsonDocument::Compact);
|
|
qCDebug(dcDweetio()) << "Dweet: " << data << "Url: " << url;
|
|
|
|
QNetworkReply *reply = hardwareManager()->networkManager()->post(request, data);
|
|
m_asyncActions.insert(reply, info);
|
|
// In case the action is cancelled before the reply returns
|
|
connect(info, &ThingActionInfo::destroyed, this, [this, reply](){ m_asyncActions.remove(reply); });
|
|
connect(reply, &QNetworkReply::finished, this, &IntegrationPluginDweetio::onNetworkReplyFinished);
|
|
m_postReplies.insert(reply, thing);
|
|
|
|
}
|
|
|
|
void IntegrationPluginDweetio::setConnectionStatus(bool status, Thing *thing)
|
|
{
|
|
// Set connection status
|
|
thing->setStateValue(postConnectedStateTypeId, status);
|
|
}
|
|
|
|
void IntegrationPluginDweetio::processPostReply(const QVariantMap &data, Thing *thing)
|
|
{
|
|
QString message = data.value("this").toString();
|
|
qCDebug(dcDweetio()) << "Access Reply: " << message << "Device: " << thing->name();
|
|
}
|
|
|
|
void IntegrationPluginDweetio::processGetReply(const QVariantMap &data, Thing *thing)
|
|
{
|
|
QVariantList withList = data.value("with").toList();
|
|
QVariantMap contentMap = withList.first().toMap().value("content").toMap();
|
|
QString content = contentMap.value(thing->paramValue(getThingContentNameParamTypeId).toString()).toString();
|
|
thing->setStateValue(getContentStateTypeId, content);
|
|
|
|
qCDebug(dcDweetio()) << "Data: " << data << "Device: " << thing->name();
|
|
}
|
|
|
|
void IntegrationPluginDweetio::onNetworkReplyFinished()
|
|
{
|
|
QNetworkReply *reply = static_cast<QNetworkReply *>(sender());
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
if (m_postReplies.contains(reply)) {
|
|
Thing *thing = m_postReplies.value(reply);
|
|
m_postReplies.remove(reply);
|
|
ThingActionInfo *info = m_asyncActions.take(reply);
|
|
|
|
// check HTTP status code
|
|
if ((status != 200) && (status != 204)) {
|
|
qCWarning(dcDweetio) << "Update reply HTTP error:" << status << reply->errorString() << reply->readAll();
|
|
info->finish(Thing::ThingErrorMissingParameter);
|
|
setConnectionStatus(false, thing);
|
|
reply->deleteLater();
|
|
return;
|
|
}
|
|
|
|
info->finish(Thing::ThingErrorNoError);
|
|
setConnectionStatus(true, thing);
|
|
if (status == 204){
|
|
reply->deleteLater();
|
|
return;
|
|
}
|
|
|
|
// check JSON file
|
|
QJsonParseError error;
|
|
QJsonDocument jsonDoc = QJsonDocument::fromJson(reply->readAll(), &error);
|
|
if (error.error != QJsonParseError::NoError) {
|
|
qCWarning(dcDweetio) << "Update reply JSON error:" << error.errorString();
|
|
|
|
reply->deleteLater();
|
|
return;
|
|
}
|
|
|
|
processPostReply(jsonDoc.toVariant().toMap(), thing);
|
|
|
|
} else if (m_getReplies.contains(reply)) {
|
|
|
|
Thing *thing = m_getReplies.value(reply);
|
|
m_getReplies.remove(reply);
|
|
|
|
// check HTTP status code
|
|
if ((status != 200) && (status != 204)) {
|
|
qCWarning(dcDweetio) << "Update reply HTTP error:" << status << reply->errorString() << reply->readAll();
|
|
setConnectionStatus(false, thing);
|
|
reply->deleteLater();
|
|
return;
|
|
}
|
|
|
|
setConnectionStatus(true, thing);
|
|
if (status == 204){
|
|
reply->deleteLater();
|
|
return;
|
|
}
|
|
|
|
// check JSON file
|
|
QJsonParseError error;
|
|
QJsonDocument jsonDoc = QJsonDocument::fromJson(reply->readAll(), &error);
|
|
if (error.error != QJsonParseError::NoError) {
|
|
qCWarning(dcDweetio) << "Update reply JSON error:" << error.errorString();
|
|
|
|
reply->deleteLater();
|
|
return;
|
|
}
|
|
|
|
processGetReply(jsonDoc.toVariant().toMap(), thing);
|
|
}
|
|
}
|
|
|
|
void IntegrationPluginDweetio::getRequest(Thing *thing)
|
|
{
|
|
qCDebug(dcDweetio()) << "Refresh data for" << thing->name();
|
|
|
|
QUrl url = QString("https://dweet.io:443/get/latest/dweet/for/") + thing->paramValue(postThingThingParamTypeId).toString();
|
|
QNetworkRequest request(url);
|
|
request.setRawHeader("Content-Type", QString("application/json").toLocal8Bit());
|
|
request.setRawHeader("Accept", QString("application/json").toLocal8Bit());
|
|
request.setSslConfiguration(QSslConfiguration::defaultConfiguration());
|
|
|
|
QString key = thing->paramValue(getThingKeyParamTypeId).toString();
|
|
if (!(key.isEmpty()) || !(key == "none")) {
|
|
QUrlQuery query;
|
|
query.addQueryItem("key", key);
|
|
url.setQuery(query);
|
|
}
|
|
|
|
QNetworkReply *reply = hardwareManager()->networkManager()->get(QNetworkRequest(url));
|
|
connect(reply, &QNetworkReply::finished, this, &IntegrationPluginDweetio::onNetworkReplyFinished);
|
|
m_getReplies.insert(reply, thing);
|
|
}
|
|
|
|
|
|
void IntegrationPluginDweetio::onPluginTimer()
|
|
{
|
|
foreach (Thing *thing, myThings()) {
|
|
if (thing->thingClassId() == getThingClassId) {
|
|
getRequest(thing);
|
|
}
|
|
}
|
|
}
|