// 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 . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef INTEGRATIONPLUGINGOECHARGER_H #define INTEGRATIONPLUGINGOECHARGER_H #include #include #include #include #include #include #include #include #include "extern-plugininfo.h" class IntegrationPluginGoECharger: public IntegrationPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID "io.nymea.IntegrationPlugin" FILE "integrationplugingoecharger.json") Q_INTERFACES(IntegrationPlugin) public: enum ApiVersion { ApiVersion1 = 1, ApiVersion2 = 2 }; Q_ENUM(ApiVersion) enum CarState { CarStateUnknown = 0, CarStateReadyNoCar = 1, CarStateCharging = 2, CarStateWaitForCar = 3, CarStateChargedCarConnected = 4 }; Q_ENUM(CarState) enum ForceState { ForceStateNeutral = 0, ForceStateOff = 1, ForceStateOn = 2 }; Q_ENUM(ForceState) enum Access { AccessOpen = 0, AccessRfid = 1, AccessAuto = 2 }; Q_ENUM(Access) enum ErrorCode { ErrorCodeResidualCurrentCircuitBreaker = 1, ErrorCodePhase = 3, ErrorCodeNoGround = 8, ErrorCodeInternalError = 10 }; Q_ENUM(ErrorCode) enum CableLockMode { CableLockModeLockWhileCareConnected = 0, CableLockModeUnlockAfterCharging = 1, CableLockModeAlwaysLock = 2 }; Q_ENUM(CableLockMode) explicit IntegrationPluginGoECharger(); void init() override; void discoverThings(ThingDiscoveryInfo *info) override; void setupThing(ThingSetupInfo *info) override; void postSetupThing(Thing *thing) override; void thingRemoved(Thing *thing) override; void executeAction(ThingActionInfo *info) override; private: PluginTimer *m_refreshTimer = nullptr; QHash m_mqttChannelsV1; QHash m_mqttChannelsV2; QHash m_pendingReplies; QHash m_monitors; ZeroConfServiceBrowser *m_serviceBrowser = nullptr; // General methods void setupGoeHome(ThingSetupInfo *info); QNetworkRequest buildStatusRequest(Thing *thing, bool fullStatus = false); QHostAddress getHostAddress(Thing *thing); ApiVersion getApiVersion(Thing *thing); // API V1 void updateV1(Thing *thing, const QVariantMap &statusMap); QNetworkRequest buildConfigurationRequestV1(const QHostAddress &address, const QString &configuration); void sendActionRequestV1(Thing *thing, ThingActionInfo *info, const QString &configuration, const QVariant &value); void setupMqttChannelV1(ThingSetupInfo *info, const QHostAddress &address, const QVariantMap &statusMap); void reconfigureMqttChannelV1(Thing *thing, const QVariantMap &statusMap); // API V2 void updateV2(Thing *thing, const QVariantMap &statusMap); QNetworkRequest buildConfigurationRequestV2(const QHostAddress &address, const QUrlQuery &configuration); void setupMqttChannelV2(ThingSetupInfo *info, const QHostAddress &address, const QVariantMap &statusMap); void reconfigureMqttChannelV2(Thing *thing); private slots: void refreshHttp(); void onConfigValueChanged(const ParamTypeId ¶mTypeId, const QVariant &value); // ZeroConf void onServiceEntryAdded(const ZeroConfServiceEntry &serviceEntry); // API V1 void onMqttClientV1Connected(MqttChannel* channel); void onMqttClientV1Disconnected(MqttChannel* channel); void onMqttPublishV1Received(MqttChannel* channel, const QString &topic, const QByteArray &payload); // API V2 void onMqttClientV2Connected(MqttChannel* channel); void onMqttClientV2Disconnected(MqttChannel* channel); void markAsDisconnected(Thing *thing); }; #endif // INTEGRATIONPLUGINGOECHARGER_H