Merge branch 'master' of github.com:thingsboard/thingsboard
This commit is contained in:
commit
29846d2595
@ -37,6 +37,7 @@ import org.thingsboard.server.common.data.kv.AttributeKvEntry;
|
||||
import org.thingsboard.server.common.data.kv.DataType;
|
||||
import org.thingsboard.server.common.data.kv.KvEntry;
|
||||
import org.thingsboard.server.common.data.kv.TsKvEntry;
|
||||
import org.thingsboard.server.common.data.relation.EntityRelation;
|
||||
import org.thingsboard.server.common.msg.TbMsg;
|
||||
import org.thingsboard.server.common.msg.TbMsgDataType;
|
||||
import org.thingsboard.server.common.msg.TbMsgMetaData;
|
||||
@ -113,6 +114,15 @@ public class EntityActionService {
|
||||
case UNASSIGNED_FROM_EDGE:
|
||||
msgType = DataConstants.ENTITY_UNASSIGNED_FROM_EDGE;
|
||||
break;
|
||||
case RELATION_ADD_OR_UPDATE:
|
||||
msgType = DataConstants.RELATION_ADD_OR_UPDATE;
|
||||
break;
|
||||
case RELATION_DELETED:
|
||||
msgType = DataConstants.RELATION_DELETED;
|
||||
break;
|
||||
case RELATIONS_DELETED:
|
||||
msgType = DataConstants.RELATIONS_DELETED;
|
||||
break;
|
||||
}
|
||||
if (!StringUtils.isEmpty(msgType)) {
|
||||
try {
|
||||
@ -195,6 +205,8 @@ public class EntityActionService {
|
||||
}
|
||||
entityNode.put("startTs", extractParameter(Long.class, 1, additionalInfo));
|
||||
entityNode.put("endTs", extractParameter(Long.class, 2, additionalInfo));
|
||||
} else if (ActionType.RELATION_ADD_OR_UPDATE.equals(actionType) || ActionType.RELATION_DELETED.equals(actionType)) {
|
||||
entityNode = json.valueToTree(extractParameter(EntityRelation.class, 0, additionalInfo));
|
||||
}
|
||||
}
|
||||
TbMsg tbMsg = TbMsg.newMsg(msgType, entityId, customerId, metaData, TbMsgDataType.JSON, json.writeValueAsString(entityNode));
|
||||
|
||||
@ -79,6 +79,10 @@ public class DataConstants {
|
||||
public static final String ENTITY_ASSIGNED_TO_EDGE = "ENTITY_ASSIGNED_TO_EDGE";
|
||||
public static final String ENTITY_UNASSIGNED_FROM_EDGE = "ENTITY_UNASSIGNED_FROM_EDGE";
|
||||
|
||||
public static final String RELATION_ADD_OR_UPDATE = "RELATION_ADD_OR_UPDATE";
|
||||
public static final String RELATION_DELETED = "RELATION_DELETED";
|
||||
public static final String RELATIONS_DELETED = "RELATIONS_DELETED";
|
||||
|
||||
public static final String RPC_CALL_FROM_SERVER_TO_DEVICE = "RPC_CALL_FROM_SERVER_TO_DEVICE";
|
||||
|
||||
public static final String RPC_QUEUED = "RPC_QUEUED";
|
||||
|
||||
@ -36,7 +36,7 @@ import org.thingsboard.server.common.msg.session.SessionMsgType;
|
||||
relationTypes = {"Post attributes", "Post telemetry", "RPC Request from Device", "RPC Request to Device", "RPC Queued", "RPC Sent", "RPC Delivered", "RPC Successful", "RPC Timeout", "RPC Expired", "RPC Failed", "RPC Deleted",
|
||||
"Activity Event", "Inactivity Event", "Connect Event", "Disconnect Event", "Entity Created", "Entity Updated", "Entity Deleted", "Entity Assigned",
|
||||
"Entity Unassigned", "Attributes Updated", "Attributes Deleted", "Alarm Acknowledged", "Alarm Cleared", "Other", "Entity Assigned From Tenant", "Entity Assigned To Tenant",
|
||||
"Timeseries Updated", "Timeseries Deleted"},
|
||||
"Relation Added or Updated", "Relation Deleted", "All Relations Deleted", "Timeseries Updated", "Timeseries Deleted"},
|
||||
nodeDescription = "Route incoming messages by Message Type",
|
||||
nodeDetails = "Sends messages with message types <b>\"Post attributes\", \"Post telemetry\", \"RPC Request\"</b> etc. via corresponding chain, otherwise <b>Other</b> chain is used.",
|
||||
uiResources = {"static/rulenode/rulenode-core-config.js"},
|
||||
@ -111,6 +111,12 @@ public class TbMsgTypeSwitchNode implements TbNode {
|
||||
relationType = "RPC Failed";
|
||||
} else if (msg.getType().equals(DataConstants.RPC_DELETED)) {
|
||||
relationType = "RPC Deleted";
|
||||
} else if (msg.getType().equals(DataConstants.RELATION_ADD_OR_UPDATE)) {
|
||||
relationType = "Relation Added or Updated";
|
||||
} else if (msg.getType().equals(DataConstants.RELATION_DELETED)) {
|
||||
relationType = "Relation Deleted";
|
||||
} else if (msg.getType().equals(DataConstants.RELATIONS_DELETED)) {
|
||||
relationType = "All Relations Deleted";
|
||||
} else {
|
||||
relationType = "Other";
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user