Merge branch 'develop/2.5.4' into release-2.5
This commit is contained in:
commit
b485320127
@ -28,6 +28,7 @@ import org.thingsboard.rule.engine.api.msg.DeviceNameOrTypeUpdateMsg;
|
|||||||
import org.thingsboard.server.actors.ActorSystemContext;
|
import org.thingsboard.server.actors.ActorSystemContext;
|
||||||
import org.thingsboard.server.actors.TbActorCtx;
|
import org.thingsboard.server.actors.TbActorCtx;
|
||||||
import org.thingsboard.server.actors.shared.AbstractContextAwareMsgProcessor;
|
import org.thingsboard.server.actors.shared.AbstractContextAwareMsgProcessor;
|
||||||
|
import org.thingsboard.server.common.data.DataConstants;
|
||||||
import org.thingsboard.server.common.data.Device;
|
import org.thingsboard.server.common.data.Device;
|
||||||
import org.thingsboard.server.common.data.id.DeviceId;
|
import org.thingsboard.server.common.data.id.DeviceId;
|
||||||
import org.thingsboard.server.common.data.id.TenantId;
|
import org.thingsboard.server.common.data.id.TenantId;
|
||||||
@ -79,8 +80,6 @@ import java.util.UUID;
|
|||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import static org.thingsboard.server.common.data.DataConstants.CLIENT_SCOPE;
|
|
||||||
import static org.thingsboard.server.common.data.DataConstants.SHARED_SCOPE;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Andrew Shvayka
|
* @author Andrew Shvayka
|
||||||
@ -279,17 +278,17 @@ class DeviceActorMessageProcessor extends AbstractContextAwareMsgProcessor {
|
|||||||
ListenableFuture<List<AttributeKvEntry>> clientAttributesFuture;
|
ListenableFuture<List<AttributeKvEntry>> clientAttributesFuture;
|
||||||
ListenableFuture<List<AttributeKvEntry>> sharedAttributesFuture;
|
ListenableFuture<List<AttributeKvEntry>> sharedAttributesFuture;
|
||||||
if (CollectionUtils.isEmpty(request.getClientAttributeNamesList()) && CollectionUtils.isEmpty(request.getSharedAttributeNamesList())) {
|
if (CollectionUtils.isEmpty(request.getClientAttributeNamesList()) && CollectionUtils.isEmpty(request.getSharedAttributeNamesList())) {
|
||||||
clientAttributesFuture = findAllAttributesByScope(CLIENT_SCOPE);
|
clientAttributesFuture = findAllAttributesByScope(DataConstants.CLIENT_SCOPE);
|
||||||
sharedAttributesFuture = findAllAttributesByScope(SHARED_SCOPE);
|
sharedAttributesFuture = findAllAttributesByScope(DataConstants.SHARED_SCOPE);
|
||||||
} else if (!CollectionUtils.isEmpty(request.getClientAttributeNamesList()) && !CollectionUtils.isEmpty(request.getSharedAttributeNamesList())) {
|
} else if (!CollectionUtils.isEmpty(request.getClientAttributeNamesList()) && !CollectionUtils.isEmpty(request.getSharedAttributeNamesList())) {
|
||||||
clientAttributesFuture = findAttributesByScope(toSet(request.getClientAttributeNamesList()), CLIENT_SCOPE);
|
clientAttributesFuture = findAttributesByScope(toSet(request.getClientAttributeNamesList()), DataConstants.CLIENT_SCOPE);
|
||||||
sharedAttributesFuture = findAttributesByScope(toSet(request.getSharedAttributeNamesList()), SHARED_SCOPE);
|
sharedAttributesFuture = findAttributesByScope(toSet(request.getSharedAttributeNamesList()), DataConstants.SHARED_SCOPE);
|
||||||
} else if (CollectionUtils.isEmpty(request.getClientAttributeNamesList()) && !CollectionUtils.isEmpty(request.getSharedAttributeNamesList())) {
|
} else if (CollectionUtils.isEmpty(request.getClientAttributeNamesList()) && !CollectionUtils.isEmpty(request.getSharedAttributeNamesList())) {
|
||||||
clientAttributesFuture = Futures.immediateFuture(Collections.emptyList());
|
clientAttributesFuture = Futures.immediateFuture(Collections.emptyList());
|
||||||
sharedAttributesFuture = findAttributesByScope(toSet(request.getSharedAttributeNamesList()), SHARED_SCOPE);
|
sharedAttributesFuture = findAttributesByScope(toSet(request.getSharedAttributeNamesList()), DataConstants.SHARED_SCOPE);
|
||||||
} else {
|
} else {
|
||||||
sharedAttributesFuture = Futures.immediateFuture(Collections.emptyList());
|
sharedAttributesFuture = Futures.immediateFuture(Collections.emptyList());
|
||||||
clientAttributesFuture = findAttributesByScope(toSet(request.getClientAttributeNamesList()), CLIENT_SCOPE);
|
clientAttributesFuture = findAttributesByScope(toSet(request.getClientAttributeNamesList()), DataConstants.CLIENT_SCOPE);
|
||||||
}
|
}
|
||||||
return Futures.allAsList(Arrays.asList(clientAttributesFuture, sharedAttributesFuture));
|
return Futures.allAsList(Arrays.asList(clientAttributesFuture, sharedAttributesFuture));
|
||||||
}
|
}
|
||||||
@ -316,7 +315,7 @@ class DeviceActorMessageProcessor extends AbstractContextAwareMsgProcessor {
|
|||||||
AttributeUpdateNotificationMsg.Builder notification = AttributeUpdateNotificationMsg.newBuilder();
|
AttributeUpdateNotificationMsg.Builder notification = AttributeUpdateNotificationMsg.newBuilder();
|
||||||
if (msg.isDeleted()) {
|
if (msg.isDeleted()) {
|
||||||
List<String> sharedKeys = msg.getDeletedKeys().stream()
|
List<String> sharedKeys = msg.getDeletedKeys().stream()
|
||||||
.filter(key -> SHARED_SCOPE.equals(key.getScope()))
|
.filter(key -> DataConstants.SHARED_SCOPE.equals(key.getScope()))
|
||||||
.map(AttributeKey::getAttributeKey)
|
.map(AttributeKey::getAttributeKey)
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
if (!sharedKeys.isEmpty()) {
|
if (!sharedKeys.isEmpty()) {
|
||||||
@ -324,7 +323,7 @@ class DeviceActorMessageProcessor extends AbstractContextAwareMsgProcessor {
|
|||||||
hasNotificationData = true;
|
hasNotificationData = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (SHARED_SCOPE.equals(msg.getScope())) {
|
if (DataConstants.SHARED_SCOPE.equals(msg.getScope())) {
|
||||||
List<AttributeKvEntry> attributes = new ArrayList<>(msg.getValues());
|
List<AttributeKvEntry> attributes = new ArrayList<>(msg.getValues());
|
||||||
if (attributes.size() > 0) {
|
if (attributes.size() > 0) {
|
||||||
List<TsKvProto> sharedUpdated = msg.getValues().stream().map(this::toTsKvProto)
|
List<TsKvProto> sharedUpdated = msg.getValues().stream().map(this::toTsKvProto)
|
||||||
@ -334,7 +333,7 @@ class DeviceActorMessageProcessor extends AbstractContextAwareMsgProcessor {
|
|||||||
hasNotificationData = true;
|
hasNotificationData = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
log.debug("[{}] No public server side attributes changed!", deviceId);
|
log.debug("[{}] No public shared side attributes changed!", deviceId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -15,6 +15,7 @@
|
|||||||
*/
|
*/
|
||||||
package org.thingsboard.server.controller;
|
package org.thingsboard.server.controller;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.security.access.prepost.PreAuthorize;
|
import org.springframework.security.access.prepost.PreAuthorize;
|
||||||
import org.springframework.web.bind.annotation.PathVariable;
|
import org.springframework.web.bind.annotation.PathVariable;
|
||||||
@ -59,7 +60,11 @@ public class AdminController extends BaseController {
|
|||||||
public AdminSettings getAdminSettings(@PathVariable("key") String key) throws ThingsboardException {
|
public AdminSettings getAdminSettings(@PathVariable("key") String key) throws ThingsboardException {
|
||||||
try {
|
try {
|
||||||
accessControlService.checkPermission(getCurrentUser(), Resource.ADMIN_SETTINGS, Operation.READ);
|
accessControlService.checkPermission(getCurrentUser(), Resource.ADMIN_SETTINGS, Operation.READ);
|
||||||
return checkNotNull(adminSettingsService.findAdminSettingsByKey(TenantId.SYS_TENANT_ID, key));
|
AdminSettings adminSettings = checkNotNull(adminSettingsService.findAdminSettingsByKey(TenantId.SYS_TENANT_ID, key));
|
||||||
|
if (adminSettings.getKey().equals("mail")) {
|
||||||
|
((ObjectNode) adminSettings.getJsonValue()).put("password", "");
|
||||||
|
}
|
||||||
|
return adminSettings;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw handleException(e);
|
throw handleException(e);
|
||||||
}
|
}
|
||||||
@ -74,6 +79,7 @@ public class AdminController extends BaseController {
|
|||||||
adminSettings = checkNotNull(adminSettingsService.saveAdminSettings(TenantId.SYS_TENANT_ID, adminSettings));
|
adminSettings = checkNotNull(adminSettingsService.saveAdminSettings(TenantId.SYS_TENANT_ID, adminSettings));
|
||||||
if (adminSettings.getKey().equals("mail")) {
|
if (adminSettings.getKey().equals("mail")) {
|
||||||
mailService.updateMailConfiguration();
|
mailService.updateMailConfiguration();
|
||||||
|
((ObjectNode) adminSettings.getJsonValue()).put("password", "");
|
||||||
}
|
}
|
||||||
return adminSettings;
|
return adminSettings;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|||||||
@ -154,7 +154,7 @@ public class DefaultTransportApiService implements TransportApiService {
|
|||||||
return TransportApiResponseMsg.newBuilder()
|
return TransportApiResponseMsg.newBuilder()
|
||||||
.setGetOrCreateDeviceResponseMsg(GetOrCreateDeviceFromGatewayResponseMsg.newBuilder().setDeviceInfo(getDeviceInfoProto(device)).build()).build();
|
.setGetOrCreateDeviceResponseMsg(GetOrCreateDeviceFromGatewayResponseMsg.newBuilder().setDeviceInfo(getDeviceInfoProto(device)).build()).build();
|
||||||
} catch (JsonProcessingException e) {
|
} catch (JsonProcessingException e) {
|
||||||
log.warn("[{}] Failed to lookup device by gateway id and name", gatewayId, requestMsg.getDeviceName(), e);
|
log.warn("[{}][{}] Failed to lookup device by gateway id and name", gatewayId, requestMsg.getDeviceName(), e);
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
} finally {
|
} finally {
|
||||||
deviceCreationLock.unlock();
|
deviceCreationLock.unlock();
|
||||||
|
|||||||
@ -1,29 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright © 2016-2020 The Thingsboard Authors
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
package org.thingsboard.server.common.msg.kv;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.thingsboard.server.common.data.kv.AttributeKey;
|
|
||||||
import org.thingsboard.server.common.data.kv.AttributeKvEntry;
|
|
||||||
|
|
||||||
public interface AttributesKVMsg extends Serializable {
|
|
||||||
|
|
||||||
List<AttributeKvEntry> getClientAttributes();
|
|
||||||
List<AttributeKvEntry> getSharedAttributes();
|
|
||||||
List<AttributeKey> getDeletedAttributes();
|
|
||||||
}
|
|
||||||
@ -1,52 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright © 2016-2020 The Thingsboard Authors
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
package org.thingsboard.server.common.msg.kv;
|
|
||||||
|
|
||||||
import lombok.AccessLevel;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.thingsboard.server.common.data.kv.AttributeKey;
|
|
||||||
import org.thingsboard.server.common.data.kv.AttributeKvEntry;
|
|
||||||
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@RequiredArgsConstructor(access = AccessLevel.PRIVATE)
|
|
||||||
public class BasicAttributeKVMsg implements AttributesKVMsg {
|
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
|
|
||||||
private final List<AttributeKvEntry> clientAttributes;
|
|
||||||
private final List<AttributeKvEntry> sharedAttributes;
|
|
||||||
private final List<AttributeKey> deletedAttributes;
|
|
||||||
|
|
||||||
public static BasicAttributeKVMsg fromClient(List<AttributeKvEntry> attributes) {
|
|
||||||
return new BasicAttributeKVMsg(attributes, Collections.emptyList(), Collections.emptyList());
|
|
||||||
}
|
|
||||||
|
|
||||||
public static BasicAttributeKVMsg fromShared(List<AttributeKvEntry> attributes) {
|
|
||||||
return new BasicAttributeKVMsg(Collections.emptyList(), attributes, Collections.emptyList());
|
|
||||||
}
|
|
||||||
|
|
||||||
public static BasicAttributeKVMsg from(List<AttributeKvEntry> client, List<AttributeKvEntry> shared) {
|
|
||||||
return new BasicAttributeKVMsg(client, shared, Collections.emptyList());
|
|
||||||
}
|
|
||||||
|
|
||||||
public static AttributesKVMsg fromDeleted(List<AttributeKey> shared) {
|
|
||||||
return new BasicAttributeKVMsg(Collections.emptyList(), Collections.emptyList(), shared);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -23,16 +23,29 @@ import java.util.Collections;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.concurrent.BlockingQueue;
|
import java.util.concurrent.BlockingQueue;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
import java.util.concurrent.LinkedBlockingQueue;
|
import java.util.concurrent.LinkedBlockingQueue;
|
||||||
|
import java.util.concurrent.ScheduledExecutorService;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
@Slf4j
|
@Slf4j
|
||||||
public final class InMemoryStorage {
|
public final class InMemoryStorage {
|
||||||
private static InMemoryStorage instance;
|
private static InMemoryStorage instance;
|
||||||
private final ConcurrentHashMap<String, BlockingQueue<TbQueueMsg>> storage;
|
private final ConcurrentHashMap<String, BlockingQueue<TbQueueMsg>> storage;
|
||||||
|
private static ScheduledExecutorService statExecutor;
|
||||||
|
|
||||||
private InMemoryStorage() {
|
private InMemoryStorage() {
|
||||||
storage = new ConcurrentHashMap<>();
|
storage = new ConcurrentHashMap<>();
|
||||||
|
statExecutor = Executors.newSingleThreadScheduledExecutor();
|
||||||
|
statExecutor.scheduleAtFixedRate(this::printStats, 60, 60, TimeUnit.SECONDS);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void printStats() {
|
||||||
|
storage.forEach((topic, queue) -> {
|
||||||
|
if (queue.size() > 0) {
|
||||||
|
log.debug("Topic: [{}], Queue size: [{}]", topic, queue.size());
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public static InMemoryStorage getInstance() {
|
public static InMemoryStorage getInstance() {
|
||||||
@ -77,4 +90,9 @@ public final class InMemoryStorage {
|
|||||||
storage.clear();
|
storage.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void destroy() {
|
||||||
|
if (statExecutor != null) {
|
||||||
|
statExecutor.shutdownNow();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -53,6 +53,6 @@ public class InMemoryTbQueueProducer<T extends TbQueueMsg> implements TbQueuePro
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void stop() {
|
public void stop() {
|
||||||
|
storage.destroy();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -127,7 +127,6 @@ message GetAttributeResponseMsg {
|
|||||||
int32 requestId = 1;
|
int32 requestId = 1;
|
||||||
repeated TsKvProto clientAttributeList = 2;
|
repeated TsKvProto clientAttributeList = 2;
|
||||||
repeated TsKvProto sharedAttributeList = 3;
|
repeated TsKvProto sharedAttributeList = 3;
|
||||||
repeated string deletedAttributeKeys = 4;
|
|
||||||
string error = 5;
|
string error = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -125,7 +125,7 @@ public class JsonCoapAdaptor implements CoapTransportAdaptor {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Response convertToPublish(CoapTransportResource.CoapSessionListener session, TransportProtos.GetAttributeResponseMsg msg) throws AdaptorException {
|
public Response convertToPublish(CoapTransportResource.CoapSessionListener session, TransportProtos.GetAttributeResponseMsg msg) throws AdaptorException {
|
||||||
if (msg.getClientAttributeListCount() == 0 && msg.getSharedAttributeListCount() == 0 && msg.getDeletedAttributeKeysCount() == 0) {
|
if (msg.getClientAttributeListCount() == 0 && msg.getSharedAttributeListCount() == 0) {
|
||||||
return new Response(CoAP.ResponseCode.NOT_FOUND);
|
return new Response(CoAP.ResponseCode.NOT_FOUND);
|
||||||
} else {
|
} else {
|
||||||
Response response = new Response(CoAP.ResponseCode.CONTENT);
|
Response response = new Response(CoAP.ResponseCode.CONTENT);
|
||||||
|
|||||||
@ -35,7 +35,6 @@ import org.thingsboard.server.common.data.kv.JsonDataEntry;
|
|||||||
import org.thingsboard.server.common.data.kv.KvEntry;
|
import org.thingsboard.server.common.data.kv.KvEntry;
|
||||||
import org.thingsboard.server.common.data.kv.LongDataEntry;
|
import org.thingsboard.server.common.data.kv.LongDataEntry;
|
||||||
import org.thingsboard.server.common.data.kv.StringDataEntry;
|
import org.thingsboard.server.common.data.kv.StringDataEntry;
|
||||||
import org.thingsboard.server.common.msg.kv.AttributesKVMsg;
|
|
||||||
import org.thingsboard.server.gen.transport.TransportProtos;
|
import org.thingsboard.server.gen.transport.TransportProtos;
|
||||||
import org.thingsboard.server.gen.transport.TransportProtos.AttributeUpdateNotificationMsg;
|
import org.thingsboard.server.gen.transport.TransportProtos.AttributeUpdateNotificationMsg;
|
||||||
import org.thingsboard.server.gen.transport.TransportProtos.ClaimDeviceMsg;
|
import org.thingsboard.server.gen.transport.TransportProtos.ClaimDeviceMsg;
|
||||||
@ -269,11 +268,6 @@ public class JsonConverter {
|
|||||||
payload.getSharedAttributeListList().forEach(addToObjectFromProto(attrObject));
|
payload.getSharedAttributeListList().forEach(addToObjectFromProto(attrObject));
|
||||||
result.add("shared", attrObject);
|
result.add("shared", attrObject);
|
||||||
}
|
}
|
||||||
if (payload.getDeletedAttributeKeysCount() > 0) {
|
|
||||||
JsonArray attrObject = new JsonArray();
|
|
||||||
payload.getDeletedAttributeKeysList().forEach(attrObject::add);
|
|
||||||
result.add("deleted", attrObject);
|
|
||||||
}
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -290,31 +284,6 @@ public class JsonConverter {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static JsonObject toJson(AttributesKVMsg payload, boolean asMap) {
|
|
||||||
JsonObject result = new JsonObject();
|
|
||||||
if (asMap) {
|
|
||||||
if (!payload.getClientAttributes().isEmpty()) {
|
|
||||||
JsonObject attrObject = new JsonObject();
|
|
||||||
payload.getClientAttributes().forEach(addToObject(attrObject));
|
|
||||||
result.add("client", attrObject);
|
|
||||||
}
|
|
||||||
if (!payload.getSharedAttributes().isEmpty()) {
|
|
||||||
JsonObject attrObject = new JsonObject();
|
|
||||||
payload.getSharedAttributes().forEach(addToObject(attrObject));
|
|
||||||
result.add("shared", attrObject);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
payload.getClientAttributes().forEach(addToObject(result));
|
|
||||||
payload.getSharedAttributes().forEach(addToObject(result));
|
|
||||||
}
|
|
||||||
if (!payload.getDeletedAttributes().isEmpty()) {
|
|
||||||
JsonArray attrObject = new JsonArray();
|
|
||||||
payload.getDeletedAttributes().forEach(addToObject(attrObject));
|
|
||||||
result.add("deleted", attrObject);
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static JsonObject getJsonObjectForGateway(String deviceName, TransportProtos.GetAttributeResponseMsg responseMsg) {
|
public static JsonObject getJsonObjectForGateway(String deviceName, TransportProtos.GetAttributeResponseMsg responseMsg) {
|
||||||
JsonObject result = new JsonObject();
|
JsonObject result = new JsonObject();
|
||||||
result.addProperty("id", responseMsg.getRequestId());
|
result.addProperty("id", responseMsg.getRequestId());
|
||||||
@ -370,10 +339,6 @@ public class JsonConverter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Consumer<AttributeKey> addToObject(JsonArray result) {
|
|
||||||
return key -> result.add(key.getAttributeKey());
|
|
||||||
}
|
|
||||||
|
|
||||||
private static Consumer<TsKvProto> addToObjectFromProto(JsonObject result) {
|
private static Consumer<TsKvProto> addToObjectFromProto(JsonObject result) {
|
||||||
return de -> {
|
return de -> {
|
||||||
switch (de.getKv().getType()) {
|
switch (de.getKv().getType()) {
|
||||||
|
|||||||
@ -15,6 +15,7 @@
|
|||||||
*/
|
*/
|
||||||
package org.thingsboard.server.dao.settings;
|
package org.thingsboard.server.dao.settings;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.apache.commons.lang3.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
@ -52,6 +53,13 @@ public class AdminSettingsServiceImpl implements AdminSettingsService {
|
|||||||
public AdminSettings saveAdminSettings(TenantId tenantId, AdminSettings adminSettings) {
|
public AdminSettings saveAdminSettings(TenantId tenantId, AdminSettings adminSettings) {
|
||||||
log.trace("Executing saveAdminSettings [{}]", adminSettings);
|
log.trace("Executing saveAdminSettings [{}]", adminSettings);
|
||||||
adminSettingsValidator.validate(adminSettings, data -> tenantId);
|
adminSettingsValidator.validate(adminSettings, data -> tenantId);
|
||||||
|
if (adminSettings.getKey().equals("mail") && "".equals(adminSettings.getJsonValue().get("password").asText())) {
|
||||||
|
AdminSettings mailSettings = findAdminSettingsByKey(tenantId, "mail");
|
||||||
|
if (mailSettings != null) {
|
||||||
|
((ObjectNode) adminSettings.getJsonValue()).put("password", mailSettings.getJsonValue().get("password").asText());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return adminSettingsDao.save(tenantId, adminSettings);
|
return adminSettingsDao.save(tenantId, adminSettings);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -46,6 +46,7 @@ public class JpaHsqlTimeseriesDao extends AbstractChunkedAggregationTimeseriesDa
|
|||||||
entity.setDoubleValue(tsKvEntry.getDoubleValue().orElse(null));
|
entity.setDoubleValue(tsKvEntry.getDoubleValue().orElse(null));
|
||||||
entity.setLongValue(tsKvEntry.getLongValue().orElse(null));
|
entity.setLongValue(tsKvEntry.getLongValue().orElse(null));
|
||||||
entity.setBooleanValue(tsKvEntry.getBooleanValue().orElse(null));
|
entity.setBooleanValue(tsKvEntry.getBooleanValue().orElse(null));
|
||||||
|
entity.setJsonValue(tsKvEntry.getJsonValue().orElse(null));
|
||||||
log.trace("Saving entity: {}", entity);
|
log.trace("Saving entity: {}", entity);
|
||||||
return tsQueue.add(entity);
|
return tsQueue.add(entity);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -41,8 +41,8 @@ public class HsqlLatestInsertTsRepository extends AbstractInsertRepository imple
|
|||||||
"ON (ts_kv_latest.entity_id=T.entity_id " +
|
"ON (ts_kv_latest.entity_id=T.entity_id " +
|
||||||
"AND ts_kv_latest.key=T.key) " +
|
"AND ts_kv_latest.key=T.key) " +
|
||||||
"WHEN MATCHED THEN UPDATE SET ts_kv_latest.ts = T.ts, ts_kv_latest.bool_v = T.bool_v, ts_kv_latest.str_v = T.str_v, ts_kv_latest.long_v = T.long_v, ts_kv_latest.dbl_v = T.dbl_v, ts_kv_latest.json_v = T.json_v " +
|
"WHEN MATCHED THEN UPDATE SET ts_kv_latest.ts = T.ts, ts_kv_latest.bool_v = T.bool_v, ts_kv_latest.str_v = T.str_v, ts_kv_latest.long_v = T.long_v, ts_kv_latest.dbl_v = T.dbl_v, ts_kv_latest.json_v = T.json_v " +
|
||||||
"WHEN NOT MATCHED THEN INSERT (entity_id, key, ts, bool_v, str_v, long_v, dbl_v) " +
|
"WHEN NOT MATCHED THEN INSERT (entity_id, key, ts, bool_v, str_v, long_v, dbl_v, json_v) " +
|
||||||
"VALUES (T.entity_id, T.key, T.ts, T.bool_v, T.str_v, T.long_v, T.dbl_v);";
|
"VALUES (T.entity_id, T.key, T.ts, T.bool_v, T.str_v, T.long_v, T.dbl_v, T.json_v);";
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void saveOrUpdate(List<TsKvLatestEntity> entities) {
|
public void saveOrUpdate(List<TsKvLatestEntity> entities) {
|
||||||
|
|||||||
@ -13,6 +13,7 @@ DROP TABLE IF EXISTS relation;
|
|||||||
DROP TABLE IF EXISTS tb_user;
|
DROP TABLE IF EXISTS tb_user;
|
||||||
DROP TABLE IF EXISTS tenant;
|
DROP TABLE IF EXISTS tenant;
|
||||||
DROP TABLE IF EXISTS ts_kv;
|
DROP TABLE IF EXISTS ts_kv;
|
||||||
|
DROP TABLE IF EXISTS ts_kv_dictionary;
|
||||||
DROP TABLE IF EXISTS ts_kv_latest;
|
DROP TABLE IF EXISTS ts_kv_latest;
|
||||||
DROP TABLE IF EXISTS user_credentials;
|
DROP TABLE IF EXISTS user_credentials;
|
||||||
DROP TABLE IF EXISTS widget_type;
|
DROP TABLE IF EXISTS widget_type;
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "thingsboard-js-executor",
|
"name": "thingsboard-js-executor",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "2.5.3",
|
"version": "2.5.4",
|
||||||
"description": "ThingsBoard JavaScript Executor Microservice",
|
"description": "ThingsBoard JavaScript Executor Microservice",
|
||||||
"main": "server.js",
|
"main": "server.js",
|
||||||
"bin": "server.js",
|
"bin": "server.js",
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "thingsboard-web-ui",
|
"name": "thingsboard-web-ui",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "2.5.3",
|
"version": "2.5.4",
|
||||||
"description": "ThingsBoard Web UI Microservice",
|
"description": "ThingsBoard Web UI Microservice",
|
||||||
"main": "server.js",
|
"main": "server.js",
|
||||||
"bin": "server.js",
|
"bin": "server.js",
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "thingsboard",
|
"name": "thingsboard",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "2.5.3",
|
"version": "2.5.4",
|
||||||
"description": "ThingsBoard UI",
|
"description": "ThingsBoard UI",
|
||||||
"licenses": [
|
"licenses": [
|
||||||
{
|
{
|
||||||
|
|||||||
@ -123,16 +123,16 @@
|
|||||||
</md-input-container>
|
</md-input-container>
|
||||||
<md-input-container class="md-block">
|
<md-input-container class="md-block">
|
||||||
<label translate>admin.proxy-password</label>
|
<label translate>admin.proxy-password</label>
|
||||||
<input name="proxyPassword" ng-model="vm.settings.jsonValue.proxyPassword">
|
<input name="proxyPassword" type="password" autocomplete="new-password" ng-model="vm.settings.jsonValue.proxyPassword">
|
||||||
</md-input-container>
|
</md-input-container>
|
||||||
</section>
|
</section>
|
||||||
<md-input-container class="md-block">
|
<md-input-container class="md-block">
|
||||||
<label translate>common.username</label>
|
<label translate>common.username</label>
|
||||||
<input name="username" placeholder="{{ 'common.enter-username' | translate }}" ng-model="vm.settings.jsonValue.username">
|
<input placeholder="{{ 'common.enter-username' | translate }}" ng-model="vm.settings.jsonValue.username" autocomplete="new-username" >
|
||||||
</md-input-container>
|
</md-input-container>
|
||||||
<md-input-container class="md-block">
|
<md-input-container class="md-block">
|
||||||
<label translate>common.password</label>
|
<label translate>common.password</label>
|
||||||
<input name="password" placeholder="{{ 'common.enter-password' | translate }}" type="password" ng-model="vm.settings.jsonValue.password">
|
<input placeholder="{{ 'common.enter-password' | translate }}" type="password" ng-model="vm.settings.jsonValue.password" autocomplete="new-password">
|
||||||
</md-input-container>
|
</md-input-container>
|
||||||
<div layout="row" layout-align="end center" width="100%" layout-wrap>
|
<div layout="row" layout-align="end center" width="100%" layout-wrap>
|
||||||
<md-button ng-disabled="$root.loading || vm.settingsForm.$invalid" ng-click="vm.sendTestMail()" class="md-raised">{{'admin.send-test-mail' | translate}}</md-button>
|
<md-button ng-disabled="$root.loading || vm.settingsForm.$invalid" ng-click="vm.sendTestMail()" class="md-raised">{{'admin.send-test-mail' | translate}}</md-button>
|
||||||
|
|||||||
@ -228,7 +228,7 @@ function AttributeService($http, $q, $filter, types, telemetryWebsocketService)
|
|||||||
}
|
}
|
||||||
var deleteEntityAttributesPromise;
|
var deleteEntityAttributesPromise;
|
||||||
if (deleteAttributes.length) {
|
if (deleteAttributes.length) {
|
||||||
deleteEntityAttributesPromise = deleteEntityAttributes(entityType, entityId, attributeScope, deleteAttributes);
|
deleteEntityAttributesPromise = deleteEntityAttributes(entityType, entityId, attributeScope, deleteAttributes, config);
|
||||||
}
|
}
|
||||||
if (Object.keys(attributesData).length) {
|
if (Object.keys(attributesData).length) {
|
||||||
var url = '/api/plugins/telemetry/' + entityType + '/' + entityId + '/' + attributeScope;
|
var url = '/api/plugins/telemetry/' + entityType + '/' + entityId + '/' + attributeScope;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user