mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge branch 'master' of ssh://repository.entgra.net:222/community/device-mgt-core into self-guiding-ui-9939
This commit is contained in:
commit
c4e08362ff
@ -900,6 +900,7 @@ public class DeviceManagementServiceImpl implements DeviceManagementService {
|
||||
DeviceManagementProviderService deviceManagementProviderService =
|
||||
DeviceMgtAPIUtils.getDeviceManagementService();
|
||||
int validityTime = 3600;
|
||||
// add scopes for event topics
|
||||
List<String> mqttEventTopicStructure = new ArrayList<>();
|
||||
try {
|
||||
DeviceType deviceType = deviceManagementProviderService.getDeviceType(type);
|
||||
@ -940,10 +941,16 @@ public class DeviceManagementServiceImpl implements DeviceManagementService {
|
||||
topic = topic.replace("${deviceId}", id);
|
||||
}
|
||||
topic = topic.replace("/",":");
|
||||
scopes.append(" perm:topic:sub:".concat(topic));
|
||||
// scopes.append(" perm:topic:sub:".concat(topic));
|
||||
scopes.append(" perm:topic:pub:".concat(topic));
|
||||
}
|
||||
|
||||
// add scopes for retrieve operation topic /tenantDomain/deviceType/deviceId/operation/#
|
||||
scopes.append(" perm:topic:sub:" + tenantDomain + ":" + type + ":" + id + ":operation");
|
||||
|
||||
// add scopes for update operation /tenantDomain/deviceType/deviceId/update/operation
|
||||
scopes.append(" perm:topic:pub:" + tenantDomain + ":" + type + ":" + id + ":update:operation");
|
||||
|
||||
TokenRequest tokenRequest = new TokenRequest(dcrResponse.getClientId(), dcrResponse.getClientSecret(),
|
||||
null, scopes.toString(), "client_credentials", null,
|
||||
null, null, null, validityTime);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user