|| exType == NoRouteToHostException.class;
}
+ public boolean isNoRouteToHost() {
+ return getCauseClass() == NoRouteToHostException.class;
+ }
+
public boolean isUnknownHost() {
return getCauseClass() == UnknownHostException.class;
}
import java.util.Map;
import org.eclipse.jdt.annotation.NonNullByDefault;
+import org.eclipse.jdt.annotation.Nullable;
import org.openhab.binding.shelly.internal.api1.Shelly1ApiJsonDTO.ShellyOtaCheckResult;
import org.openhab.binding.shelly.internal.api1.Shelly1ApiJsonDTO.ShellyRollerStatus;
import org.openhab.binding.shelly.internal.api1.Shelly1ApiJsonDTO.ShellySettingsDevice;
ShellySettingsDevice getDeviceInfo() throws ShellyApiException;
- ShellyDeviceProfile getDeviceProfile(String thingType) throws ShellyApiException;
+ ShellyDeviceProfile getDeviceProfile(String thingType, @Nullable ShellySettingsDevice device)
+ throws ShellyApiException;
ShellySettingsStatus getStatus() throws ShellyApiException;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.jdt.annotation.Nullable;
+import org.openhab.binding.shelly.internal.api1.Shelly1ApiJsonDTO.ShellySettingsDevice;
import org.openhab.binding.shelly.internal.api1.Shelly1ApiJsonDTO.ShellySettingsDimmer;
import org.openhab.binding.shelly.internal.api1.Shelly1ApiJsonDTO.ShellySettingsGlobal;
import org.openhab.binding.shelly.internal.api1.Shelly1ApiJsonDTO.ShellySettingsInput;
@NonNullByDefault
public class ShellyDeviceProfile {
private final Logger logger = LoggerFactory.getLogger(ShellyDeviceProfile.class);
- private static final Pattern VERSION_PATTERN = Pattern.compile("v\\d+\\.\\d+\\.\\d+(-[a-z0-9]*)?");
+ private static final Pattern GEN1_VERSION_PATTERN = Pattern.compile("v\\d+\\.\\d+\\.\\d+(-[a-z0-9]*)?");
+ private static final Pattern GEN2_VERSION_PATTERN = Pattern.compile("\\d+\\.\\d+\\.\\d+(-[a-fh-z0-9]*)?");
public boolean initialized = false; // true when initialized
public String thingName = "";
- public String deviceType = "";
public boolean extFeatures = false;
public String settingsJson = "";
+ public ShellySettingsDevice device = new ShellySettingsDevice();
public ShellySettingsGlobal settings = new ShellySettingsGlobal();
public ShellySettingsStatus status = new ShellySettingsStatus();
- public String hostname = "";
public String name = "";
- public String model = "";
- public String mode = "";
public boolean discoverable = true;
- public boolean auth = false;
public boolean alwaysOn = true;
public boolean isGen2 = false;
public boolean isBlu = false;
public String hwRev = "";
public String hwBatchId = "";
- public String mac = "";
public String fwVersion = "";
public String fwDate = "";
public ShellyDeviceProfile() {
}
- public ShellyDeviceProfile initialize(String thingType, String jsonIn) throws ShellyApiException {
+ public ShellyDeviceProfile initialize(String thingType, String jsonIn, @Nullable ShellySettingsDevice device)
+ throws ShellyApiException {
Gson gson = new Gson();
-
initialized = false;
+ if (device != null) {
+ this.device = device;
+ }
initFromThingType(thingType);
settings = fromJson(gson, json, ShellySettingsGlobal.class);
// General settings
+ if (getString(device.hostname).isEmpty() && !getString(device.mac).isEmpty()) {
+ device.hostname = device.mac.length() >= 12 ? "shelly-" + device.mac.toUpperCase().substring(6, 11)
+ : "unknown";
+ }
name = getString(settings.name);
- deviceType = getString(settings.device.type);
- mac = getString(settings.device.mac);
- hostname = !getString(settings.device.hostname).isEmpty() ? settings.device.hostname.toLowerCase()
- : mac.length() >= 12 ? "shelly-" + mac.toUpperCase().substring(6, 11) : "unknown";
- mode = getString(settings.mode).toLowerCase();
hwRev = settings.hwinfo != null ? getString(settings.hwinfo.hwRevision) : "";
hwBatchId = settings.hwinfo != null ? getString(settings.hwinfo.batchId.toString()) : "";
- fwDate = substringBefore(settings.fw, "/");
- fwVersion = extractFwVersion(settings.fw);
+ fwDate = substringBefore(device.fw, "-");
+ fwVersion = extractFwVersion(device.fw);
ShellyVersionDTO version = new ShellyVersionDTO();
extFeatures = version.compare(fwVersion, SHELLY_API_FW_110) >= 0;
discoverable = (settings.discoverable == null) || settings.discoverable;
+ String mode = getString(device.mode);
isRoller = mode.equalsIgnoreCase(SHELLY_MODE_ROLLER);
inColor = isLight && mode.equalsIgnoreCase(SHELLY_MODE_COLOR);
- numRelays = !isLight ? getInteger(settings.device.numOutputs) : 0;
+ numRelays = !isLight ? getInteger(device.numOutputs) : 0;
if ((numRelays > 0) && (settings.relays == null)) {
numRelays = 0;
}
hasRelays = (numRelays > 0) || isDimmer;
- numRollers = getInteger(settings.device.numRollers);
+ numRollers = getInteger(device.numRollers);
numInputs = settings.inputs != null ? settings.inputs.size() : hasRelays ? isRoller ? 2 : 1 : 0;
isEMeter = settings.emeters != null;
- numMeters = !isEMeter ? getInteger(settings.device.numMeters) : getInteger(settings.device.numEMeters);
+ numMeters = !isEMeter ? getInteger(device.numMeters) : getInteger(device.numEMeters);
if ((numMeters == 0) && isLight) {
// RGBW2 doesn't report, but has one
- numMeters = inColor ? 1 : getInteger(settings.device.numOutputs);
+ numMeters = inColor ? 1 : getInteger(device.numOutputs);
}
initialized = true;
isGen2 = isGeneration2(thingType);
isBlu = isBluSeries(thingType); // e.g. SBBT for BLU Button
- isDimmer = deviceType.equalsIgnoreCase(SHELLYDT_DIMMER) || deviceType.equalsIgnoreCase(SHELLYDT_DIMMER2)
- || deviceType.equalsIgnoreCase(SHELLYDT_PLUSDIMMERUS)
+ String type = getString(device.type);
+ isDimmer = type.equalsIgnoreCase(SHELLYDT_DIMMER) || type.equalsIgnoreCase(SHELLYDT_DIMMER2)
+ || type.equalsIgnoreCase(SHELLYDT_PLUSDIMMERUS)
|| thingType.equalsIgnoreCase(THING_TYPE_SHELLYPLUSDIMMERUS_STR);
isBulb = thingType.equals(THING_TYPE_SHELLYBULB_STR);
isDuo = thingType.equals(THING_TYPE_SHELLYDUO_STR) || thingType.equals(THING_TYPE_SHELLYVINTAGE_STR)
.replace("/v1.12-", "/v1.12.0");
// Extract version from string, e.g. 20210226-091047/v1.10.0-rc2-89-g623b41ec0-master
- Matcher matcher = VERSION_PATTERN.matcher(vers);
+ Matcher matcher = version.startsWith("v") ? GEN1_VERSION_PATTERN.matcher(vers)
+ : GEN2_VERSION_PATTERN.matcher(vers);
if (matcher.find()) {
return matcher.group(0);
}
protected int timeoutErrors = 0;
protected int timeoutsRecovered = 0;
private ShellyDeviceProfile profile;
+ protected boolean basicAuth = false;
public ShellyHttpClient(String thingName, ShellyThingInterface thing) {
this(thingName, thing.getThingConfig(), thing.getHttpClient());
this.httpClient.setConnectTimeout(SHELLY_API_TIMEOUT_MS);
}
- public void initialize() throws ShellyApiException {
- }
-
public void setConfig(String thingName, ShellyThingConfiguration config) {
this.thingName = thingName;
this.config = config;
authHeader = formatAuthResponse(uri,
buildAuthResponse(uri, auth, SHELLY2_AUTHDEF_USER, config.password));
} else {
- if (!uri.equals(SHELLYRPC_ENDPOINT)) {
+ if (basicAuth) {
String bearer = config.userId + ":" + config.password;
authHeader = HTTP_AUTH_TYPE_BASIC + " " + Base64.getEncoder().encodeToString(bearer.getBytes());
}
public static class ShellySettingsDevice {
public String type;
+ public String mode; // Gen 1
+ public String id; // Gen2: service name
+ public String name; // Gen2: configured device name
+ public String profile; // Gen 2
public String mac;
public String hostname;
public String fw;
public static class ShellySettingsGlobal {
// https://shelly-api-docs.shelly.cloud/#shelly1pm-settings
- public ShellySettingsDevice device = new ShellySettingsDevice();
@SerializedName("wifi_ap")
public ShellySettingsWiFiAp wifiAp = new ShellySettingsWiFiAp();
@SerializedName("wifi_sta")
for (Option opt : options) {
if (opt.getNumber() == COIOT_OPTION_GLOBAL_DEVID) {
String devid = opt.getStringValue();
- if (devid.contains("#") && profile.mac != null) {
+ if (devid.contains("#") && profile.device.mac != null) {
// Format: <device type>#<mac address>#<coap version>
String macid = substringBetween(devid, "#", "#");
- if (profile.mac.toUpperCase().contains(macid.toUpperCase())) {
+ if (getString(profile.device.mac).toUpperCase().contains(macid.toUpperCase())) {
match = true;
break;
}
import java.util.Map;
import org.eclipse.jdt.annotation.NonNullByDefault;
+import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.jetty.client.HttpClient;
import org.openhab.binding.shelly.internal.api.ShellyApiException;
import org.openhab.binding.shelly.internal.api.ShellyApiInterface;
this.profile = new ShellyDeviceProfile();
}
+ @Override
+ public void initialize() throws ShellyApiException {
+ profile.device = getDeviceInfo();
+ }
+
@Override
public ShellySettingsDevice getDeviceInfo() throws ShellyApiException {
ShellySettingsDevice info = callApi(SHELLY_URL_DEVINFO, ShellySettingsDevice.class);
info.gen = 1;
+ basicAuth = getBool(info.auth);
+
+ if (getString(info.mode).isEmpty()) { // older Gen1 Firmware
+ if (getInteger(info.numRollers) > 0) {
+ info.mode = SHELLY_CLASS_ROLLER;
+ } else if (getInteger(info.numOutputs) > 0) {
+ info.mode = SHELLY_CLASS_RELAY;
+ } else {
+ info.mode = "";
+ }
+ }
return info;
}
* @throws ShellyApiException
*/
@Override
- public ShellyDeviceProfile getDeviceProfile(String thingType) throws ShellyApiException {
+ public ShellyDeviceProfile getDeviceProfile(String thingType, @Nullable ShellySettingsDevice device)
+ throws ShellyApiException {
+ if (device != null) {
+ profile.device = device;
+ }
+ if (profile.device.type == null) {
+ profile.device = getDeviceInfo();
+ }
String json = httpRequest(SHELLY_URL_SETTINGS);
if (json.contains("\"type\":\"SHDM-")) {
logger.trace("{}: Detected a Shelly Dimmer: fix Json (replace lights[] tag with dimmers[]", thingName);
}
// Map settings to device profile for Light and Sense
- profile.initialize(thingType, json);
+ profile.initialize(thingType, json, profile.device);
// 2nd level initialization
- profile.thingName = profile.hostname;
+ profile.thingName = profile.device.hostname;
if (profile.isLight && (profile.numMeters == 0)) {
logger.debug("{}: Get number of meters from light status", thingName);
ShellyStatusLight status = getLightStatus();
*/
@Override
public void setLightMode(String mode) throws ShellyApiException {
- if (!mode.isEmpty() && !profile.mode.equals(mode)) {
+ if (!mode.isEmpty() && !profile.device.mode.equals(mode)) {
setLightSetting(SHELLY_API_MODE, mode);
- profile.mode = mode;
- profile.inColor = profile.isLight && profile.mode.equalsIgnoreCase(SHELLY_MODE_COLOR);
+ profile.device.mode = mode;
+ profile.inColor = profile.isLight && mode.equalsIgnoreCase(SHELLY_MODE_COLOR);
}
}
MAP_ROLLER_STATE.put(SHELLY2_RSTATE_STOPPED, SHELLY_RSTATE_STOP);
MAP_ROLLER_STATE.put(SHELLY2_RSTATE_CALIB, SHELLY2_RSTATE_CALIB); // Gen2-only
}
+ protected static final Map<String, String> MAP_PROFILE = new HashMap<>();
+ static {
+ MAP_PROFILE.put(SHELLY_CLASS_RELAY, SHELLY2_PROFILE_RELAY);
+ MAP_PROFILE.put(SHELLY_CLASS_ROLLER, SHELLY2_PROFILE_COVER);
+ }
protected @Nullable ArrayList<@Nullable ShellySettingsRelay> fillRelaySettings(ShellyDeviceProfile profile,
Shelly2GetConfigResult dc) {
// Component types
public static final String SHELLY2_PROFILE_RELAY = "switch";
- public static final String SHELLY2_PROFILE_ROLLER = "cover";
+ public static final String SHELLY2_PROFILE_COVER = "cover";
// Button types/modes
public static final String SHELLY2_BTNT_MOMENTARY = "momentary";
public String id;
public String mac;
public String model;
+ public String profile;
public Integer gen;
@SerializedName("fw_id")
- public String firmware;
+ public String fw;
public String ver;
public String app;
@SerializedName("auth_en")
- public Boolean authEnable;
+ public Boolean auth;
@SerializedName("auth_domain")
public String authDomain;
}
this.thingName = thingName;
this.thing = thing;
this.thingTable = thingTable;
- try {
- getProfile().initFromThingType(thing.getThingType());
- } catch (ShellyApiException e) {
- logger.info("{}: Shelly2 API initialization failed!", thingName, e);
- }
}
/**
@SuppressWarnings("null")
@Override
- public ShellyDeviceProfile getDeviceProfile(String thingType) throws ShellyApiException {
+ public ShellyDeviceProfile getDeviceProfile(String thingType, @Nullable ShellySettingsDevice devInfo)
+ throws ShellyApiException {
ShellyDeviceProfile profile = thing != null ? getProfile() : new ShellyDeviceProfile();
+ if (devInfo != null) {
+ profile.device = devInfo;
+ }
+ if (profile.device.type == null) {
+ profile.device = getDeviceInfo();
+ }
+
Shelly2GetConfigResult dc = apiRequest(SHELLYRPC_METHOD_GETCONFIG, null, Shelly2GetConfigResult.class);
profile.isGen2 = true;
profile.settingsJson = gson.toJson(dc);
profile.numRelays = profile.settings.relays != null ? profile.settings.relays.size() : 0;
profile.numRollers = profile.settings.rollers != null ? profile.settings.rollers.size() : 0;
profile.hasRelays = profile.numRelays > 0 || profile.numRollers > 0;
- profile.mode = "";
- if (profile.hasRelays) {
- profile.mode = profile.isRoller ? SHELLY_CLASS_ROLLER : SHELLY_CLASS_RELAY;
- }
-
- ShellySettingsDevice device = getDeviceInfo();
- profile.settings.device = device;
- if (!getString(device.fw).isEmpty()) {
- profile.fwDate = substringBefore(device.fw, "/");
- profile.fwVersion = profile.status.update.oldVersion = "v" + substringAfter(device.fw, "/");
+ if (getString(profile.device.mode).isEmpty() && profile.hasRelays) {
+ profile.device.mode = profile.isRoller ? SHELLY_CLASS_ROLLER : SHELLY_CLASS_RELAY;
}
- profile.hostname = device.hostname;
- profile.deviceType = device.type;
- profile.mac = device.mac;
- profile.auth = device.auth;
+ ShellySettingsDevice device = profile.device;
profile.isGen2 = device.gen == 2;
if (config.serviceName.isEmpty()) {
- config.serviceName = getString(profile.hostname);
+ config.serviceName = getString(profile.device.hostname);
}
- profile.fwDate = substringBefore(device.fw, "/");
- profile.fwVersion = substringBefore(ShellyDeviceProfile.extractFwVersion(device.fw.replace("/", "/v")), "-");
- profile.status.update.oldVersion = profile.fwVersion;
+ profile.settings.fw = device.fw;
+ profile.fwDate = substringBefore(substringBefore(device.fw, "/"), "-");
+ profile.fwVersion = profile.status.update.oldVersion = ShellyDeviceProfile.extractFwVersion(device.fw);
profile.status.hasUpdate = profile.status.update.hasUpdate = false;
if (dc.eth != null) {
Shelly2DeviceSettings device = callApi("/shelly", Shelly2DeviceSettings.class);
ShellySettingsDevice info = new ShellySettingsDevice();
info.hostname = getString(device.id);
- info.fw = getString(device.firmware);
+ info.name = getString(device.name);
+ info.fw = getString(device.fw);
info.type = getString(device.model);
info.mac = getString(device.mac);
- info.auth = getBool(device.authEnable);
+ info.auth = getBool(device.auth);
info.gen = getInteger(device.gen);
+ info.mode = mapValue(MAP_PROFILE, device.profile);
return info;
}
profile.settings.sleepMode.period = ds.sys.wakeupPeriod / 60;
}
- status.hasUpdate = status.update.hasUpdate = false;
- status.update.oldVersion = getProfile().fwVersion;
if (ds.sys.availableUpdates != null) {
status.update.hasUpdate = ds.sys.availableUpdates.stable != null;
if (ds.sys.availableUpdates.stable != null) {
- status.update.newVersion = "v" + getString(ds.sys.availableUpdates.stable.version);
+ status.update.newVersion = ShellyDeviceProfile
+ .extractFwVersion(getString(ds.sys.availableUpdates.stable.version));
status.hasUpdate = new ShellyVersionDTO().compare(profile.fwVersion, status.update.newVersion) < 0;
}
if (ds.sys.availableUpdates.beta != null) {
- status.update.betaVersion = "v" + getString(ds.sys.availableUpdates.beta.version);
+ status.update.betaVersion = ShellyDeviceProfile
+ .extractFwVersion(getString(ds.sys.availableUpdates.beta.version));
status.hasUpdate = new ShellyVersionDTO().compare(profile.fwVersion, status.update.betaVersion) < 0;
}
}
import java.util.HashMap;
import java.util.Map;
+import org.eclipse.jdt.annotation.Nullable;
import org.openhab.binding.shelly.internal.api.ShellyApiException;
import org.openhab.binding.shelly.internal.api.ShellyDeviceProfile;
import org.openhab.binding.shelly.internal.api1.Shelly1ApiJsonDTO.ShellyInputState;
}
@Override
- public ShellyDeviceProfile getDeviceProfile(String thingType) throws ShellyApiException {
+ public ShellyDeviceProfile getDeviceProfile(String thingType, @Nullable ShellySettingsDevice devInfo)
+ throws ShellyApiException {
ShellyDeviceProfile profile = thing != null ? getProfile() : new ShellyDeviceProfile();
+ if (devInfo != null) {
+ profile.device = devInfo;
+ }
profile.isBlu = true;
profile.settingsJson = "{}";
profile.thingName = thingName;
}
ShellySettingsDevice device = getDeviceInfo();
- profile.settings.device = device;
- profile.hostname = device.hostname;
- profile.deviceType = device.type;
- profile.mac = device.mac;
- profile.auth = device.auth;
if (config.serviceName.isEmpty()) {
- config.serviceName = getString(profile.hostname);
+ config.serviceName = getString(profile.device.hostname);
}
profile.fwDate = substringBefore(device.fw, "/");
profile.fwVersion = substringBefore(ShellyDeviceProfile.extractFwVersion(device.fw.replace("/", "/v")), "-");
import org.openhab.binding.shelly.internal.api.ShellyApiInterface;
import org.openhab.binding.shelly.internal.api.ShellyApiResult;
import org.openhab.binding.shelly.internal.api.ShellyDeviceProfile;
+import org.openhab.binding.shelly.internal.api1.Shelly1ApiJsonDTO.ShellySettingsDevice;
import org.openhab.binding.shelly.internal.api1.Shelly1HttpApi;
import org.openhab.binding.shelly.internal.api2.Shelly2ApiRpc;
import org.openhab.binding.shelly.internal.config.ShellyBindingConfiguration;
boolean gen2 = "2".equals(service.getPropertyString("gen"));
ShellyApiInterface api = null;
+ ShellySettingsDevice devInfo;
try {
api = gen2 ? new Shelly2ApiRpc(name, config, httpClient) : new Shelly1HttpApi(name, config, httpClient);
api.initialize();
- profile = api.getDeviceProfile(thingType);
+ devInfo = api.getDeviceInfo();
+ model = devInfo.type;
+ if (devInfo.name != null) {
+ deviceName = devInfo.name;
+ }
+ profile = api.getDeviceProfile(thingType, devInfo);
+ api.close();
logger.debug("{}: Shelly settings : {}", name, profile.settingsJson);
deviceName = profile.name;
- model = profile.deviceType;
- mode = profile.mode;
+ mode = devInfo.mode;
properties = ShellyBaseHandler.fillDeviceProperties(profile);
logger.trace("{}: thingType={}, deviceType={}, mode={}, symbolic name={}", name, thingType,
- profile.deviceType, mode.isEmpty() ? "<standard>" : mode, deviceName);
+ devInfo.type, mode.isEmpty() ? "<standard>" : mode, deviceName);
// get thing type from device name
thingUID = ShellyThingCreator.getThingUID(name, model, mode, false);
updateStatus(ThingStatus.UNKNOWN, ThingStatusDetail.CONFIGURATION_PENDING,
messages.get("status.unknown.initializing"));
- profile.initFromThingType(thingType); // do some basic initialization
-
// Gen 1 only: Setup CoAP listener to we get the CoAP message, which triggers initialization even the thing
// could not be fully initialized here. In this case the CoAP messages triggers auto-initialization (like the
// Action URL does when enabled)
+ profile.initFromThingType(thingType);
if (coap != null && config.eventsCoIoT && !profile.alwaysOn) {
coap.start(thingName, config);
}
// Initialize API access, exceptions will be catched by initialize()
api.initialize();
- ShellySettingsDevice devInfo = api.getDeviceInfo();
- if (getBool(devInfo.auth) && config.password.isEmpty()) {
+ ShellySettingsDevice device = profile.device = api.getDeviceInfo();
+ if (getBool(device.auth) && config.password.isEmpty()) {
setThingOffline(ThingStatusDetail.CONFIGURATION_ERROR, "offline.conf-error-no-credentials");
return false;
}
if (config.serviceName.isEmpty()) {
- config.serviceName = getString(profile.hostname).toLowerCase();
+ config.serviceName = getString(device.hostname).toLowerCase();
}
api.setConfig(thingName, config);
- ShellyDeviceProfile tmpPrf = api.getDeviceProfile(thingType);
- tmpPrf.isGen2 = gen2;
- tmpPrf.auth = devInfo.auth; // missing in /settings
-
+ ShellyDeviceProfile tmpPrf = api.getDeviceProfile(thingType, profile.device);
+ String mode = getString(tmpPrf.device.mode);
if (this.getThing().getThingTypeUID().equals(THING_TYPE_SHELLYPROTECTED)) {
- changeThingType(thingName, tmpPrf.mode);
+ changeThingType(thingName, mode);
return false; // force re-initialization
}
// Validate device mode
String reqMode = thingType.contains("-") ? substringAfter(thingType, "-") : "";
- if (!reqMode.isEmpty() && !tmpPrf.mode.equals(reqMode)) {
- setThingOffline(ThingStatusDetail.CONFIGURATION_ERROR, "offline.conf-error-wrong-mode", tmpPrf.mode,
- reqMode);
+ if (!reqMode.isEmpty() && !mode.equals(reqMode)) {
+ setThingOffline(ThingStatusDetail.CONFIGURATION_ERROR, "offline.conf-error-wrong-mode", mode, reqMode);
return false;
}
- if (!getString(devInfo.coiot).isEmpty()) {
+ if (!getString(tmpPrf.device.coiot).isEmpty()) {
// New Shelly devices might use a different endpoint for the CoAP listener
- tmpPrf.coiotEndpoint = devInfo.coiot;
+ tmpPrf.coiotEndpoint = tmpPrf.device.coiot;
}
if (tmpPrf.settings.sleepMode != null && !tmpPrf.isTRV) {
// Sensor, usually 12h, H&T in USB mode 10min
status = "offline.conf-error-access-denied";
} else if (isWatchdogStarted()) {
if (!isWatchdogExpired()) {
+ logger.debug("{}: Ignore API Timeout on {} {}, retry later", thingName, res.method, res.url);
if (profile.alwaysOn) { // suppress for battery powered sensors
logger.debug("{}: Ignore API Timeout on {} {}, retry later", thingName, res.method, res.url);
}
- } else {
- if (isThingOnline()) {
- status = "offline.status-error-watchdog";
- }
}
} else if (e.isJSONException()) {
status = "offline.status-error-unexpected-api-result";
private void showThingConfig(ShellyDeviceProfile profile) {
logger.debug("{}: Initializing device {}, type {}, Hardware: Rev: {}, batch {}; Firmware: {} / {}", thingName,
- profile.hostname, profile.deviceType, profile.hwRev, profile.hwBatchId, profile.fwVersion,
+ profile.device.hostname, profile.device.type, profile.hwRev, profile.hwBatchId, profile.fwVersion,
profile.fwDate);
- logger.debug("{}: Shelly settings info for {}: {}", thingName, profile.hostname, profile.settingsJson);
- logger.debug(
- """
- {}: Device \
- hasRelays:{} (numRelays={}),isRoller:{} (numRoller={}),isDimmer:{},numMeter={},isEMeter:{}), ext. Switch Add-On: {}\
- ,isSensor:{},isDS:{},hasBattery:{}{},isSense:{},isMotion:{},isLight:{},isBulb:{},isDuo:{},isRGBW2:{},inColor:{}, BLU Gateway support: {}\
- ,alwaysOn:{}, updatePeriod:{}sec\
- """,
- thingName, profile.hasRelays, profile.numRelays, profile.isRoller, profile.numRollers, profile.isDimmer,
- profile.numMeters, profile.isEMeter, profile.settings.extSwitch != null ? "installed" : "n/a",
- profile.isSensor, profile.isDW, profile.hasBattery,
- profile.hasBattery ? " (low battery threshold=" + config.lowBattery + "%)" : "", profile.isSense,
- profile.isMotion, profile.isLight, profile.isBulb, profile.isDuo, profile.isRGBW2, profile.inColor,
- profile.alwaysOn, profile.updatePeriod, config.enableBluGateway);
+ logger.debug("{}: Shelly settings info for {}: {}", thingName, profile.device.hostname, profile.settingsJson);
+ logger.debug("{}: Device "
+ + "hasRelays:{} (numRelays={}),isRoller:{} (numRoller={}),isDimmer:{},numMeter={},isEMeter:{}), ext. Switch Add-On: {}"
+ + ",isSensor:{},isDS:{},hasBattery:{}{},isSense:{},isMotion:{},isLight:{},isBulb:{},isDuo:{},isRGBW2:{},inColor:{}, BLU Gateway support: {}"
+ + ",alwaysOn:{}, updatePeriod:{}sec", thingName, profile.hasRelays, profile.numRelays, profile.isRoller,
+ profile.numRollers, profile.isDimmer, profile.numMeters, profile.isEMeter,
+ profile.settings.extSwitch != null ? "installed" : "n/a", profile.isSensor, profile.isDW,
+ profile.hasBattery, profile.hasBattery ? " (low battery threshold=" + config.lowBattery + "%)" : "",
+ profile.isSense, profile.isMotion, profile.isLight, profile.isBulb, profile.isDuo, profile.isRGBW2,
+ profile.inColor, profile.alwaysOn, profile.updatePeriod, config.enableBluGateway);
if (profile.status.extTemperature != null || profile.status.extHumidity != null
|| profile.status.extVoltage != null || profile.status.extAnalogInput != null) {
logger.debug("{}: Shelly Add-On detected with at least 1 external sensor", thingName);
// no fw version available (e.g. BLU device)
return;
}
-
ShellyVersionDTO version = new ShellyVersionDTO();
if (version.checkBeta(getString(prf.fwVersion))) {
- logger.info("{}: {}", prf.hostname, messages.get("versioncheck.beta", prf.fwVersion, prf.fwDate));
+ logger.info("{}: {}", prf.device.hostname,
+ messages.get("versioncheck.beta", prf.fwVersion, prf.fwDate));
} else {
String minVersion = !gen2 ? SHELLY_API_MIN_FWVERSION : SHELLY2_API_MIN_FWVERSION;
if (version.compare(prf.fwVersion, minVersion) < 0) {
- logger.warn("{}: {}", prf.hostname,
- messages.get("versioncheck.tooold", prf.fwVersion, prf.fwDate, minVersion));
+ logger.warn("{}: {}", prf.device.hostname,
+ messages.get("versioncheck.beta", prf.fwVersion, prf.fwDate));
}
}
if (!gen2 && bindingConfig.autoCoIoT && ((version.compare(prf.fwVersion, SHELLY_API_MIN_FWCOIOT)) >= 0)
Map<String, Object> properties = new TreeMap<>();
properties.put(PROPERTY_VENDOR, VENDOR);
if (profile.isInitialized()) {
- properties.put(PROPERTY_MODEL_ID, getString(profile.settings.device.type));
- properties.put(PROPERTY_MAC_ADDRESS, profile.mac);
+ properties.put(PROPERTY_MODEL_ID, getString(profile.device.type));
+ properties.put(PROPERTY_MAC_ADDRESS, profile.device.mac);
properties.put(PROPERTY_FIRMWARE_VERSION, profile.fwVersion + "/" + profile.fwDate);
- properties.put(PROPERTY_DEV_MODE, profile.mode);
+ properties.put(PROPERTY_DEV_MODE, profile.device.mode);
if (profile.hasRelays) {
properties.put(PROPERTY_NUM_RELAYS, String.valueOf(profile.numRelays));
properties.put(PROPERTY_NUM_ROLLERS, String.valueOf(profile.numRollers));
try {
refreshSettings |= forceRefresh;
if (refreshSettings) {
- profile = api.getDeviceProfile(thingType);
+ profile = api.getDeviceProfile(thingType, null);
if (!isThingOnline()) {
logger.debug("{}: Device profile re-initialized (thingType={})", thingName, thingType);
}
try {
ShellyColorUtils oldCol = getCurrentColors(lightId);
- oldCol.mode = profile.mode;
+ oldCol.mode = profile.device.mode;
ShellyColorUtils col = new ShellyColorUtils(oldCol);
boolean update = true;
}
ShellyStatusLight status = api.getLightStatus();
- logger.trace("{}: Updating light status in {} mode, {} channel(s)", thingName, profile.mode,
+ logger.trace("{}: Updating light status in {} mode, {} channel(s)", thingName, profile.device.mode,
status.lights.size());
// In white mode we have multiple channels
list.put(ACTION_RES_STATS, "Reset Statistics");
list.put(ACTION_RESTART, "Reboot Device");
- if (gen2) {
+ if (!gen2 || !profile.isBlu) {
list.put(ACTION_PROTECT, "Protect Device");
}
String deviceType = getDeviceType(properties);
String uri = !url.isEmpty() && connection.equals(CONNECTION_TYPE_CUSTOM) ? url
- : getFirmwareUrl(config.deviceIp, deviceType, profile.mode, version,
+ : getFirmwareUrl(config.deviceIp, deviceType, profile.device.mode, version,
connection.equals(CONNECTION_TYPE_LOCAL));
if (connection.equalsIgnoreCase(CONNECTION_TYPE_INTERNET)) {
// If target
}
} else if (connection.equalsIgnoreCase(CONNECTION_TYPE_LOCAL)) {
// redirect to local server -> http://<oh-ip>:<oh-port>/shelly/manager/ota?deviceType=xxx&version=xxx
- String modeParm = !profile.mode.isEmpty() ? "&" + URLPARM_DEVMODE + "=" + profile.mode : "";
+ String modeParm = !profile.device.mode.isEmpty() ? "&" + URLPARM_DEVMODE + "=" + profile.device.mode
+ : "";
url = URLPARM_URL + "=http://" + localIp + ":" + localPort + SHELLY_MGR_OTA_URI + urlEncode(
"?" + URLPARM_DEVTYPE + "=" + deviceType + modeParm + "&" + URLPARM_VERSION + "=" + version);
} else if (connection.equalsIgnoreCase(CONNECTION_TYPE_CUSTOM)) {
try {
if (!profile.isGen2) { // currently there is no public firmware repo for Gen2
logger.debug("{}: Load firmware version list for device type {}", LOG_PREFIX, deviceType);
- FwRepoEntry fw = getFirmwareRepoEntry(deviceType, profile.mode);
+ FwRepoEntry fw = getFirmwareRepoEntry(deviceType, profile.device.mode);
pVersion = extractFwVersion(fw.version);
bVersion = extractFwVersion(fw.betaVer);
// return handler.getChannelValue(CHANNEL_GROUP_DEV_STATUS, CHANNEL_DEVST_UPDATE) == OnOffType.ON;
return getBool(profile.status.hasUpdate);
case FILTER_UNPROTECTED:
- return !profile.auth;
+ if (profile.device.auth != null) {
+ return !profile.device.auth;
+ }
case "*":
default:
return true;
properties.put(ATTRIBUTE_APR_TRESHOLD,
profile.settings.apRoaming != null ? getOption(profile.settings.apRoaming.threshold) : "n/a");
properties.put(ATTRIBUTE_PWD_PROTECT,
- profile.auth ? "enabled, user=" + getString(profile.settings.login.username) : "disabled");
+ getBool(profile.device.auth) ? "enabled, user=" + getString(profile.settings.login.username)
+ : "disabled");
String tz = getString(profile.settings.timezone);
properties.put(ATTRIBUTE_TIMEZONE,
(tz.isEmpty() ? "n/a" : tz) + ", auto-detect: " + getBool(profile.settings.tzautodetect));