/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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 . * * 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 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef HOMECONNECT_H #define HOMECONNECT_H #include #include #include #include "network/networkaccessmanager.h" class HomeConnect : public QObject { Q_OBJECT public: enum EventType { EventTypeKeepAlive, EventTypeStatus, EventTypeEvent, EventTypeNotify, EventTypeDisconnected, EventTypeConnected, EventTypePaired, EventTypeDepaired }; enum Type { Oven, Dishwasher, Washer, Dryer, WasherDryer, FridgeFreezer, Refrigerator, Freezer, WineCooler, CoffeeMaker, Hood, CleaningRobot, CookProcessor }; struct HomeAppliance { QString name; QString brand; QString enumber; QString vib; bool connected; QString type; QString homeApplianceId; }; struct OptionData { QString key; QVariant value; QString unit; }; struct Option { QString key; QVariant value; QString unit; }; /* "key": "Cooking.Oven.Option.SetpointTemperature", "name": "Target temperature for the oven", "uri": "/api/homeappliances/BOSCH-HNG6764B6-0000000011FF/programs/active/options/Cooking.Oven.Option.SetpointTemperature", "timestamp": 1556793979, "level": "hint", "handling": "none", "value": 200, "unit": "°C" */ struct Event { QString key; QString name; QString uri; int timestamp; QVariant value; QString unit; }; HomeConnect(NetworkAccessManager *networkmanager, const QByteArray &clientKey, const QByteArray &clientSecret, bool simulationMode = false, QObject *parent = nullptr); QByteArray accessToken(); QByteArray refreshToken(); void setSimulationMode(bool simulation); QUrl getLoginUrl(const QUrl &redirectUrl, const QString &scope); void getAccessTokenFromRefreshToken(const QByteArray &refreshToken); void getAccessTokenFromAuthorizationCode(const QByteArray &authorizationCode); // DEFAULT void getHomeAppliances(); // Get all home appliances which are paired with the logged-in user account. // PROGRAMS void getPrograms(const QString &haId); //Get all programs of a given home appliance void getProgramsAvailable(const QString &haId); //Get all programs which are currently available on the given home appliance void getProgramsActive(const QString &haId); //Get program which is currently executed void getProgramsSelected(const QString &haId); //Get the program which is currently selected void getProgramsActiveOption(const QString &haId, const QString &optionKey); QUuid selectProgram(const QString &haId, const QString &programKey, QList