mirror of https://github.com/nymea/nymea.git
127 lines
4.1 KiB
C++
127 lines
4.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 General Public License Usage
|
|
* Alternatively, this project may be redistributed and/or modified under the
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
* Foundation, GNU 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 General
|
|
* Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU 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 "scriptinterfaceaction.h"
|
|
|
|
#include "integrations/thingmanager.h"
|
|
#include "types/action.h"
|
|
|
|
#include <QQmlEngine>
|
|
#include <qqml.h>
|
|
|
|
#include "loggingcategories.h"
|
|
|
|
namespace nymeaserver {
|
|
|
|
ScriptInterfaceAction::ScriptInterfaceAction(QObject *parent) : QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
void ScriptInterfaceAction::classBegin()
|
|
{
|
|
m_thingManager = reinterpret_cast<ThingManager*>(qmlEngine(this)->property("thingManager").toULongLong());
|
|
}
|
|
|
|
void ScriptInterfaceAction::componentComplete()
|
|
{
|
|
|
|
}
|
|
|
|
QString ScriptInterfaceAction::interfaceName() const
|
|
{
|
|
return m_interfaceName;
|
|
}
|
|
|
|
void ScriptInterfaceAction::setInterfaceName(const QString &interfaceName)
|
|
{
|
|
if (m_interfaceName != interfaceName) {
|
|
m_interfaceName = interfaceName;
|
|
emit interfaceNameChanged();
|
|
}
|
|
}
|
|
|
|
QString ScriptInterfaceAction::actionName() const
|
|
{
|
|
return m_actionName;
|
|
}
|
|
|
|
void ScriptInterfaceAction::setActionName(const QString &actionName)
|
|
{
|
|
if (m_actionName != actionName) {
|
|
m_actionName = actionName;
|
|
emit actionNameChanged();
|
|
}
|
|
}
|
|
|
|
void ScriptInterfaceAction::execute(const QVariantMap ¶ms)
|
|
{
|
|
Things things;
|
|
if (!m_interfaceName.isEmpty()) {
|
|
foreach (Thing *thing, m_thingManager->configuredThings()) {
|
|
if (thing->thingClass().interfaces().contains(m_interfaceName)) {
|
|
things.append(thing);
|
|
}
|
|
}
|
|
}
|
|
if (things.isEmpty()) {
|
|
qCWarning(dcScriptEngine) << "No things matching by interface" << m_interfaceName;
|
|
return;
|
|
}
|
|
|
|
foreach (Thing *thing, things) {
|
|
ActionType actionType = thing->thingClass().actionTypes().findByName(m_actionName);
|
|
if (actionType.id().isNull()) {
|
|
qCWarning(dcScriptEngine()) << "Thing" << thing->name() << "does not have action" << m_actionName;
|
|
continue;
|
|
}
|
|
Action action(actionType.id(), thing->id(), Action::TriggeredByScript);
|
|
ParamList paramList;
|
|
foreach (const QString ¶mNameOrId, params.keys()) {
|
|
ParamType paramType;
|
|
if (!ParamTypeId(paramNameOrId).isNull()) {
|
|
paramType = actionType.paramTypes().findById(ParamTypeId(paramNameOrId));
|
|
} else {
|
|
paramType = actionType.paramTypes().findByName(paramNameOrId);
|
|
}
|
|
if (paramType.id().isNull()) {
|
|
qCWarning(dcScriptEngine()) << "Invalid param id or name";
|
|
continue;
|
|
}
|
|
paramList << Param(paramType.id(), params.value(paramNameOrId));
|
|
}
|
|
action.setParams(paramList);
|
|
qCDebug(dcScriptEngine()) << "Executing action:" << action.thingId() << action.actionTypeId() << action.params();
|
|
m_thingManager->executeAction(action);
|
|
}
|
|
}
|
|
|
|
}
|