118 lines
5.4 KiB
C++
118 lines
5.4 KiB
C++
#pragma once
|
|
|
|
#include "networkDevices/NetworkDevice.h"
|
|
#ifndef CONFIG_IDF_TARGET_ESP32H2
|
|
#include "networkDevices/WifiDevice.h"
|
|
#endif
|
|
#include <Preferences.h>
|
|
#include <vector>
|
|
#include <list>
|
|
#include "NukiConstants.h"
|
|
#include "NukiLockConstants.h"
|
|
#include "NukiNetwork.h"
|
|
#include "QueryCommand.h"
|
|
#include "LockActionResult.h"
|
|
#include "NukiOfficial.h"
|
|
#include "NukiPublisher.h"
|
|
#include "EspMillis.h"
|
|
|
|
class NukiNetworkLock : public MqttReceiver
|
|
{
|
|
public:
|
|
explicit NukiNetworkLock(NukiNetwork* network, NukiOfficial* nukiOfficial, Preferences* preferences, char* buffer, size_t bufferSize);
|
|
virtual ~NukiNetworkLock();
|
|
|
|
void initialize();
|
|
bool update();
|
|
|
|
void publishKeyTurnerState(const NukiLock::KeyTurnerState& keyTurnerState, const NukiLock::KeyTurnerState& lastKeyTurnerState);
|
|
void publishState(NukiLock::LockState lockState);
|
|
void publishAuthorizationInfo(const std::list<NukiLock::LogEntry>& logEntries, bool latest);
|
|
void clearAuthorizationInfo();
|
|
void publishCommandResult(const char* resultStr);
|
|
void publishLockstateCommandResult(const char* resultStr);
|
|
void publishBatteryReport(const NukiLock::BatteryReport& batteryReport);
|
|
void publishConfig(const NukiLock::Config& config);
|
|
void publishAdvancedConfig(const NukiLock::AdvancedConfig& config);
|
|
void publishRssi(const int& rssi);
|
|
void publishRetry(const std::string& message);
|
|
void publishBleAddress(const std::string& address);
|
|
void publishKeypad(const std::list<NukiLock::KeypadEntry>& entries, uint maxKeypadCodeCount);
|
|
void publishTimeControl(const std::list<NukiLock::TimeControlEntry>& timeControlEntries, uint maxTimeControlEntryCount);
|
|
void publishAuth(const std::list<NukiLock::AuthorizationEntry>& authEntries, uint maxAuthEntryCount);
|
|
void publishStatusUpdated(const bool statusUpdated);
|
|
void publishConfigCommandResult(const char* result);
|
|
void publishKeypadCommandResult(const char* result);
|
|
void publishKeypadJsonCommandResult(const char* result);
|
|
void publishTimeControlCommandResult(const char* result);
|
|
void publishAuthCommandResult(const char* result);
|
|
void publishOffAction(const int value);
|
|
|
|
void setLockActionReceivedCallback(LockActionResult (*lockActionReceivedCallback)(const char* value));
|
|
void setOfficialUpdateReceivedCallback(void (*officialUpdateReceivedCallback)(const char* path, const char* value));
|
|
void setConfigUpdateReceivedCallback(void (*configUpdateReceivedCallback)(const char* value));
|
|
void setKeypadCommandReceivedCallback(void (*keypadCommandReceivedReceivedCallback)(const char* command, const uint& id, const String& name, const String& code, const int& enabled));
|
|
void setKeypadJsonCommandReceivedCallback(void (*keypadJsonCommandReceivedReceivedCallback)(const char* value));
|
|
void setTimeControlCommandReceivedCallback(void (*timeControlCommandReceivedReceivedCallback)(const char* value));
|
|
void setAuthCommandReceivedCallback(void (*authCommandReceivedReceivedCallback)(const char* value));
|
|
void onMqttDataReceived(const char* topic, byte* payload, const unsigned int length) override;
|
|
void setupHASS(int type, uint32_t nukiId, char* nukiName, const char* firmwareVersion, const char* hardwareVersion, bool hasDoorSensor, bool hasKeypad);
|
|
|
|
const uint32_t getAuthId() const;
|
|
const char* getAuthName();
|
|
int mqttConnectionState();
|
|
uint8_t queryCommands();
|
|
|
|
private:
|
|
bool comparePrefixedPath(const char* fullPath, const char* subPath);
|
|
|
|
void publishKeypadEntry(const String topic, NukiLock::KeypadEntry entry);
|
|
void buttonPressActionToString(const NukiLock::ButtonPressAction btnPressAction, char* str);
|
|
void motorSpeedToString(const NukiLock::MotorSpeed speed, char* str);
|
|
void homeKitStatusToString(const int hkstatus, char* str);
|
|
void fobActionToString(const int fobact, char* str);
|
|
|
|
void (*_officialUpdateReceivedCallback)(const char* path, const char* value) = nullptr;
|
|
|
|
String concat(String a, String b);
|
|
|
|
void buildMqttPath(const char* path, char* outPath);
|
|
|
|
NukiNetwork* _network = nullptr;
|
|
NukiPublisher* _nukiPublisher = nullptr;
|
|
NukiOfficial* _nukiOfficial = nullptr;
|
|
Preferences* _preferences = nullptr;
|
|
|
|
std::map<uint32_t, String> _authEntries;
|
|
char _mqttPath[181] = {0};
|
|
|
|
bool _firstTunerStatePublish = true;
|
|
bool _haEnabled = false;
|
|
bool _disableNonJSON = false;
|
|
bool _clearNonJsonKeypad = true;
|
|
bool _offConnected = false;
|
|
bool _hybridRebootOnDisconnect = false;
|
|
bool _isUltra = false;
|
|
|
|
String _keypadCommandName = "";
|
|
String _keypadCommandCode = "";
|
|
uint _keypadCommandId = 0;
|
|
int _keypadCommandEnabled = 1;
|
|
uint8_t _queryCommands = 0;
|
|
uint32_t _lastRollingLog = 0;
|
|
uint32_t _authId = 0;
|
|
int64_t _offLastConnected = 0;
|
|
|
|
char _nukiName[33];
|
|
char _authName[33];
|
|
|
|
char* _buffer;
|
|
size_t _bufferSize;
|
|
|
|
LockActionResult (*_lockActionReceivedCallback)(const char* value) = nullptr;
|
|
void (*_configUpdateReceivedCallback)(const char* value) = nullptr;
|
|
void (*_keypadCommandReceivedReceivedCallback)(const char* command, const uint& id, const String& name, const String& code, const int& enabled) = nullptr;
|
|
void (*_keypadJsonCommandReceivedReceivedCallback)(const char* value) = nullptr;
|
|
void (*_timeControlCommandReceivedReceivedCallback)(const char* value) = nullptr;
|
|
void (*_authCommandReceivedReceivedCallback)(const char* value) = nullptr;
|
|
}; |