Search in sources :

Example 26 with DeviceProfileId

use of org.thingsboard.server.common.data.id.DeviceProfileId in project thingsboard by thingsboard.

the class DeviceProfileController method deleteDeviceProfile.

@ApiOperation(value = "Delete device profile (deleteDeviceProfile)", notes = "Deletes the device profile. Referencing non-existing device profile Id will cause an error. " + "Can't delete the device profile if it is referenced by existing devices." + TENANT_AUTHORITY_PARAGRAPH, produces = "application/json")
@PreAuthorize("hasAuthority('TENANT_ADMIN')")
@RequestMapping(value = "/deviceProfile/{deviceProfileId}", method = RequestMethod.DELETE)
@ResponseStatus(value = HttpStatus.OK)
public void deleteDeviceProfile(@ApiParam(value = DEVICE_PROFILE_ID_PARAM_DESCRIPTION) @PathVariable(DEVICE_PROFILE_ID) String strDeviceProfileId) throws ThingsboardException {
    checkParameter(DEVICE_PROFILE_ID, strDeviceProfileId);
    try {
        DeviceProfileId deviceProfileId = new DeviceProfileId(toUUID(strDeviceProfileId));
        DeviceProfile deviceProfile = checkDeviceProfileId(deviceProfileId, Operation.DELETE);
        deviceProfileService.deleteDeviceProfile(getTenantId(), deviceProfileId);
        tbClusterService.onDeviceProfileDelete(deviceProfile, null);
        tbClusterService.broadcastEntityStateChangeEvent(deviceProfile.getTenantId(), deviceProfile.getId(), ComponentLifecycleEvent.DELETED);
        logEntityAction(deviceProfileId, deviceProfile, null, ActionType.DELETED, null, strDeviceProfileId);
        sendEntityNotificationMsg(getTenantId(), deviceProfile.getId(), EdgeEventActionType.DELETED);
    } catch (Exception e) {
        logEntityAction(emptyId(EntityType.DEVICE_PROFILE), null, null, ActionType.DELETED, e, strDeviceProfileId);
        throw handleException(e);
    }
}
Also used : DeviceProfile(org.thingsboard.server.common.data.DeviceProfile) DeviceProfileId(org.thingsboard.server.common.data.id.DeviceProfileId) ThingsboardException(org.thingsboard.server.common.data.exception.ThingsboardException) ResponseStatus(org.springframework.web.bind.annotation.ResponseStatus) ApiOperation(io.swagger.annotations.ApiOperation) PreAuthorize(org.springframework.security.access.prepost.PreAuthorize) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 27 with DeviceProfileId

use of org.thingsboard.server.common.data.id.DeviceProfileId in project thingsboard by thingsboard.

the class LwM2mClientContextImpl method doGetAndCache.

private Lwm2mDeviceProfileTransportConfiguration doGetAndCache(UUID profileId) {
    Lwm2mDeviceProfileTransportConfiguration result = profiles.get(profileId);
    if (result == null) {
        log.debug("Fetching profile [{}]", profileId);
        DeviceProfile deviceProfile = deviceProfileCache.get(new DeviceProfileId(profileId));
        if (deviceProfile != null) {
            result = profileUpdate(deviceProfile);
        } else {
            log.warn("Device profile was not found! Most probably device profile [{}] has been removed from the database.", profileId);
        }
    }
    return result;
}
Also used : DeviceProfile(org.thingsboard.server.common.data.DeviceProfile) DeviceProfileId(org.thingsboard.server.common.data.id.DeviceProfileId) Lwm2mDeviceProfileTransportConfiguration(org.thingsboard.server.common.data.device.profile.Lwm2mDeviceProfileTransportConfiguration)

Example 28 with DeviceProfileId

use of org.thingsboard.server.common.data.id.DeviceProfileId in project thingsboard by thingsboard.

the class BaseOtaPackageServiceTest method testSaveFirmwareWithInvalidDeviceProfileId.

@Test
public void testSaveFirmwareWithInvalidDeviceProfileId() {
    OtaPackage firmware = new OtaPackage();
    firmware.setTenantId(tenantId);
    firmware.setDeviceProfileId(new DeviceProfileId(Uuids.timeBased()));
    firmware.setType(FIRMWARE);
    firmware.setTitle(TITLE);
    firmware.setVersion(VERSION);
    firmware.setFileName(FILE_NAME);
    firmware.setContentType(CONTENT_TYPE);
    firmware.setChecksumAlgorithm(CHECKSUM_ALGORITHM);
    firmware.setChecksum(CHECKSUM);
    firmware.setData(DATA);
    thrown.expect(DataValidationException.class);
    thrown.expectMessage("OtaPackage is referencing to non-existent device profile!");
    otaPackageService.saveOtaPackage(firmware);
}
Also used : DeviceProfileId(org.thingsboard.server.common.data.id.DeviceProfileId) OtaPackage(org.thingsboard.server.common.data.OtaPackage) Test(org.junit.Test)

Example 29 with DeviceProfileId

use of org.thingsboard.server.common.data.id.DeviceProfileId in project thingsboard by thingsboard.

the class DefaultTransportService method processToTransportMsg.

protected void processToTransportMsg(TransportProtos.ToTransportMsg toSessionMsg) {
    UUID sessionId = new UUID(toSessionMsg.getSessionIdMSB(), toSessionMsg.getSessionIdLSB());
    SessionMetaData md = sessions.get(sessionId);
    if (md != null) {
        log.trace("[{}] Processing notification: {}", sessionId, toSessionMsg);
        SessionMsgListener listener = md.getListener();
        transportCallbackExecutor.submit(() -> {
            if (toSessionMsg.hasGetAttributesResponse()) {
                listener.onGetAttributesResponse(toSessionMsg.getGetAttributesResponse());
            }
            if (toSessionMsg.hasAttributeUpdateNotification()) {
                listener.onAttributeUpdate(sessionId, toSessionMsg.getAttributeUpdateNotification());
            }
            if (toSessionMsg.hasSessionCloseNotification()) {
                listener.onRemoteSessionCloseCommand(sessionId, toSessionMsg.getSessionCloseNotification());
            }
            if (toSessionMsg.hasToTransportUpdateCredentialsNotification()) {
                listener.onToTransportUpdateCredentials(toSessionMsg.getToTransportUpdateCredentialsNotification());
            }
            if (toSessionMsg.hasToDeviceRequest()) {
                listener.onToDeviceRpcRequest(sessionId, toSessionMsg.getToDeviceRequest());
            }
            if (toSessionMsg.hasToServerResponse()) {
                String requestId = sessionId + "-" + toSessionMsg.getToServerResponse().getRequestId();
                toServerRpcPendingMap.remove(requestId);
                listener.onToServerRpcResponse(toSessionMsg.getToServerResponse());
            }
        });
        if (md.getSessionType() == TransportProtos.SessionType.SYNC) {
            deregisterSession(md.getSessionInfo());
        }
    } else {
        log.trace("Processing broadcast notification: {}", toSessionMsg);
        if (toSessionMsg.hasEntityUpdateMsg()) {
            TransportProtos.EntityUpdateMsg msg = toSessionMsg.getEntityUpdateMsg();
            EntityType entityType = EntityType.valueOf(msg.getEntityType());
            if (EntityType.DEVICE_PROFILE.equals(entityType)) {
                DeviceProfile deviceProfile = deviceProfileCache.put(msg.getData());
                if (deviceProfile != null) {
                    log.info("On device profile update: {}", deviceProfile);
                    onProfileUpdate(deviceProfile);
                }
            } else if (EntityType.TENANT_PROFILE.equals(entityType)) {
                rateLimitService.update(tenantProfileCache.put(msg.getData()));
            } else if (EntityType.TENANT.equals(entityType)) {
                Optional<Tenant> profileOpt = dataDecodingEncodingService.decode(msg.getData().toByteArray());
                if (profileOpt.isPresent()) {
                    Tenant tenant = profileOpt.get();
                    boolean updated = tenantProfileCache.put(tenant.getId(), tenant.getTenantProfileId());
                    if (updated) {
                        rateLimitService.update(tenant.getId());
                    }
                }
            } else if (EntityType.API_USAGE_STATE.equals(entityType)) {
                Optional<ApiUsageState> stateOpt = dataDecodingEncodingService.decode(msg.getData().toByteArray());
                if (stateOpt.isPresent()) {
                    ApiUsageState apiUsageState = stateOpt.get();
                    rateLimitService.update(apiUsageState.getTenantId(), apiUsageState.isTransportEnabled());
                // TODO: if transport is disabled, we should close all sessions and not to check credentials.
                }
            } else if (EntityType.DEVICE.equals(entityType)) {
                Optional<Device> deviceOpt = dataDecodingEncodingService.decode(msg.getData().toByteArray());
                deviceOpt.ifPresent(device -> {
                    onDeviceUpdate(device);
                    eventPublisher.publishEvent(new DeviceUpdatedEvent(device));
                });
            }
        } else if (toSessionMsg.hasEntityDeleteMsg()) {
            TransportProtos.EntityDeleteMsg msg = toSessionMsg.getEntityDeleteMsg();
            EntityType entityType = EntityType.valueOf(msg.getEntityType());
            UUID entityUuid = new UUID(msg.getEntityIdMSB(), msg.getEntityIdLSB());
            if (EntityType.DEVICE_PROFILE.equals(entityType)) {
                deviceProfileCache.evict(new DeviceProfileId(new UUID(msg.getEntityIdMSB(), msg.getEntityIdLSB())));
            } else if (EntityType.TENANT_PROFILE.equals(entityType)) {
                tenantProfileCache.remove(new TenantProfileId(entityUuid));
            } else if (EntityType.TENANT.equals(entityType)) {
                rateLimitService.remove(TenantId.fromUUID(entityUuid));
            } else if (EntityType.DEVICE.equals(entityType)) {
                rateLimitService.remove(new DeviceId(entityUuid));
                onDeviceDeleted(new DeviceId(entityUuid));
            }
        } else if (toSessionMsg.hasResourceUpdateMsg()) {
            TransportProtos.ResourceUpdateMsg msg = toSessionMsg.getResourceUpdateMsg();
            TenantId tenantId = TenantId.fromUUID(new UUID(msg.getTenantIdMSB(), msg.getTenantIdLSB()));
            ResourceType resourceType = ResourceType.valueOf(msg.getResourceType());
            String resourceId = msg.getResourceKey();
            transportResourceCache.update(tenantId, resourceType, resourceId);
            sessions.forEach((id, mdRez) -> {
                log.trace("ResourceUpdate - [{}] [{}]", id, mdRez);
                transportCallbackExecutor.submit(() -> mdRez.getListener().onResourceUpdate(msg));
            });
        } else if (toSessionMsg.hasResourceDeleteMsg()) {
            TransportProtos.ResourceDeleteMsg msg = toSessionMsg.getResourceDeleteMsg();
            TenantId tenantId = TenantId.fromUUID(new UUID(msg.getTenantIdMSB(), msg.getTenantIdLSB()));
            ResourceType resourceType = ResourceType.valueOf(msg.getResourceType());
            String resourceId = msg.getResourceKey();
            transportResourceCache.evict(tenantId, resourceType, resourceId);
            sessions.forEach((id, mdRez) -> {
                log.warn("ResourceDelete - [{}] [{}]", id, mdRez);
                transportCallbackExecutor.submit(() -> mdRez.getListener().onResourceDelete(msg));
            });
        } else {
            // TODO: should we notify the device actor about missed session?
            log.debug("[{}] Missing session.", sessionId);
        }
    }
}
Also used : TbTransportComponent(org.thingsboard.server.queue.util.TbTransportComponent) RpcStatus(org.thingsboard.server.common.data.rpc.RpcStatus) TenantId(org.thingsboard.server.common.data.id.TenantId) GetOrCreateDeviceFromGatewayResponse(org.thingsboard.server.common.transport.auth.GetOrCreateDeviceFromGatewayResponse) Map(java.util.Map) ApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher) DeviceTransportType(org.thingsboard.server.common.data.DeviceTransportType) TransportToDeviceActorMsg(org.thingsboard.server.gen.transport.TransportProtos.TransportToDeviceActorMsg) DeviceProfile(org.thingsboard.server.common.data.DeviceProfile) StringUtils(org.thingsboard.server.common.data.StringUtils) Set(java.util.Set) Executors(java.util.concurrent.Executors) AsyncCallbackTemplate(org.thingsboard.server.queue.common.AsyncCallbackTemplate) Slf4j(lombok.extern.slf4j.Slf4j) TransportProtos(org.thingsboard.server.gen.transport.TransportProtos) ProvisionDeviceResponseMsg(org.thingsboard.server.gen.transport.TransportProtos.ProvisionDeviceResponseMsg) RuleChainId(org.thingsboard.server.common.data.id.RuleChainId) TbQueueConsumer(org.thingsboard.server.queue.TbQueueConsumer) TopicPartitionInfo(org.thingsboard.server.common.msg.queue.TopicPartitionInfo) TransportApiResponseMsg(org.thingsboard.server.gen.transport.TransportProtos.TransportApiResponseMsg) TbMsg(org.thingsboard.server.common.msg.TbMsg) TransportServiceCallback(org.thingsboard.server.common.transport.TransportServiceCallback) Device(org.thingsboard.server.common.data.Device) TransportTenantProfileCache(org.thingsboard.server.common.transport.TransportTenantProfileCache) Scheduled(org.springframework.scheduling.annotation.Scheduled) DataDecodingEncodingService(org.thingsboard.server.common.transport.util.DataDecodingEncodingService) Value(org.springframework.beans.factory.annotation.Value) LinkedHashMap(java.util.LinkedHashMap) SessionMsgListener(org.thingsboard.server.common.transport.SessionMsgListener) Service(org.springframework.stereotype.Service) ToCoreMsg(org.thingsboard.server.gen.transport.TransportProtos.ToCoreMsg) TbApiUsageClient(org.thingsboard.server.queue.usagestats.TbApiUsageClient) AfterStartUp(org.thingsboard.server.queue.util.AfterStartUp) ExecutionException(java.util.concurrent.ExecutionException) ToTransportMsg(org.thingsboard.server.gen.transport.TransportProtos.ToTransportMsg) Futures(com.google.common.util.concurrent.Futures) DeviceUpdatedEvent(org.thingsboard.server.common.transport.DeviceUpdatedEvent) PowerMode(org.thingsboard.server.common.data.device.data.PowerMode) TenantProfileId(org.thingsboard.server.common.data.id.TenantProfileId) ResourceType(org.thingsboard.server.common.data.ResourceType) TbQueueMsgMetadata(org.thingsboard.server.queue.TbQueueMsgMetadata) JsonUtils(org.thingsboard.server.common.transport.util.JsonUtils) JsonObject(com.google.gson.JsonObject) TransportResourceCache(org.thingsboard.server.common.transport.TransportResourceCache) ScheduledFuture(java.util.concurrent.ScheduledFuture) ApiUsageRecordKey(org.thingsboard.server.common.data.ApiUsageRecordKey) TbQueueRequestTemplate(org.thingsboard.server.queue.TbQueueRequestTemplate) DeviceProfileId(org.thingsboard.server.common.data.id.DeviceProfileId) Random(java.util.Random) StatsFactory(org.thingsboard.server.common.stats.StatsFactory) TbMsgMetaData(org.thingsboard.server.common.msg.TbMsgMetaData) PreDestroy(javax.annotation.PreDestroy) SessionMsgType(org.thingsboard.server.common.msg.session.SessionMsgType) AtomicInteger(java.util.concurrent.atomic.AtomicInteger) Gson(com.google.gson.Gson) TransportRateLimitService(org.thingsboard.server.common.transport.limits.TransportRateLimitService) EntityType(org.thingsboard.server.common.data.EntityType) TbServiceInfoProvider(org.thingsboard.server.queue.discovery.TbServiceInfoProvider) TbTransportQueueFactory(org.thingsboard.server.queue.provider.TbTransportQueueFactory) TbQueueCallback(org.thingsboard.server.queue.TbQueueCallback) TbQueueProducer(org.thingsboard.server.queue.TbQueueProducer) TransportDeviceInfo(org.thingsboard.server.common.transport.auth.TransportDeviceInfo) DeviceId(org.thingsboard.server.common.data.id.DeviceId) ProvisionDeviceRequestMsg(org.thingsboard.server.gen.transport.TransportProtos.ProvisionDeviceRequestMsg) ConcurrentHashMap(java.util.concurrent.ConcurrentHashMap) TransportApiRequestMsg(org.thingsboard.server.gen.transport.TransportProtos.TransportApiRequestMsg) ThingsBoardThreadFactory(org.thingsboard.common.util.ThingsBoardThreadFactory) UUID(java.util.UUID) TransportDeviceProfileCache(org.thingsboard.server.common.transport.TransportDeviceProfileCache) TransportService(org.thingsboard.server.common.transport.TransportService) Collectors(java.util.stream.Collectors) TbQueueProducerProvider(org.thingsboard.server.queue.provider.TbQueueProducerProvider) ByteString(com.google.protobuf.ByteString) List(java.util.List) PostConstruct(javax.annotation.PostConstruct) Optional(java.util.Optional) ValidateDeviceCredentialsResponse(org.thingsboard.server.common.transport.auth.ValidateDeviceCredentialsResponse) CustomerId(org.thingsboard.server.common.data.id.CustomerId) PartitionService(org.thingsboard.server.queue.discovery.PartitionService) MoreExecutors(com.google.common.util.concurrent.MoreExecutors) ListenableFuture(com.google.common.util.concurrent.ListenableFuture) TbRateLimitsException(org.thingsboard.server.common.msg.tools.TbRateLimitsException) Tenant(org.thingsboard.server.common.data.Tenant) ConcurrentMap(java.util.concurrent.ConcurrentMap) HashSet(java.util.HashSet) ServiceType(org.thingsboard.server.common.msg.queue.ServiceType) EntityId(org.thingsboard.server.common.data.id.EntityId) SchedulerComponent(org.thingsboard.server.queue.scheduler.SchedulerComponent) ExecutorService(java.util.concurrent.ExecutorService) ThingsBoardExecutors(org.thingsboard.common.util.ThingsBoardExecutors) StatsType(org.thingsboard.server.common.stats.StatsType) MessagesStats(org.thingsboard.server.common.stats.MessagesStats) ApiUsageState(org.thingsboard.server.common.data.ApiUsageState) TimeUnit(java.util.concurrent.TimeUnit) ServiceQueue(org.thingsboard.server.common.msg.queue.ServiceQueue) ToRuleEngineMsg(org.thingsboard.server.gen.transport.TransportProtos.ToRuleEngineMsg) TbProtoQueueMsg(org.thingsboard.server.queue.common.TbProtoQueueMsg) Collections(java.util.Collections) DeviceId(org.thingsboard.server.common.data.id.DeviceId) ByteString(com.google.protobuf.ByteString) DeviceProfile(org.thingsboard.server.common.data.DeviceProfile) DeviceUpdatedEvent(org.thingsboard.server.common.transport.DeviceUpdatedEvent) SessionMsgListener(org.thingsboard.server.common.transport.SessionMsgListener) Tenant(org.thingsboard.server.common.data.Tenant) TenantProfileId(org.thingsboard.server.common.data.id.TenantProfileId) UUID(java.util.UUID) Optional(java.util.Optional) Device(org.thingsboard.server.common.data.Device) TransportProtos(org.thingsboard.server.gen.transport.TransportProtos) ResourceType(org.thingsboard.server.common.data.ResourceType) EntityType(org.thingsboard.server.common.data.EntityType) TenantId(org.thingsboard.server.common.data.id.TenantId) DeviceProfileId(org.thingsboard.server.common.data.id.DeviceProfileId) ApiUsageState(org.thingsboard.server.common.data.ApiUsageState)

Example 30 with DeviceProfileId

use of org.thingsboard.server.common.data.id.DeviceProfileId in project thingsboard by thingsboard.

the class DefaultTransportService method getTransportDeviceInfo.

private TransportDeviceInfo getTransportDeviceInfo(TransportProtos.DeviceInfoProto di) {
    TransportDeviceInfo tdi = new TransportDeviceInfo();
    tdi.setTenantId(TenantId.fromUUID(new UUID(di.getTenantIdMSB(), di.getTenantIdLSB())));
    tdi.setCustomerId(new CustomerId(new UUID(di.getCustomerIdMSB(), di.getCustomerIdLSB())));
    tdi.setDeviceId(new DeviceId(new UUID(di.getDeviceIdMSB(), di.getDeviceIdLSB())));
    tdi.setDeviceProfileId(new DeviceProfileId(new UUID(di.getDeviceProfileIdMSB(), di.getDeviceProfileIdLSB())));
    tdi.setAdditionalInfo(di.getAdditionalInfo());
    tdi.setDeviceName(di.getDeviceName());
    tdi.setDeviceType(di.getDeviceType());
    if (StringUtils.isNotEmpty(di.getPowerMode())) {
        tdi.setPowerMode(PowerMode.valueOf(di.getPowerMode()));
        tdi.setEdrxCycle(di.getEdrxCycle());
        tdi.setPsmActivityTimer(di.getPsmActivityTimer());
        tdi.setPagingTransmissionWindow(di.getPagingTransmissionWindow());
    }
    return tdi;
}
Also used : DeviceProfileId(org.thingsboard.server.common.data.id.DeviceProfileId) TransportDeviceInfo(org.thingsboard.server.common.transport.auth.TransportDeviceInfo) DeviceId(org.thingsboard.server.common.data.id.DeviceId) CustomerId(org.thingsboard.server.common.data.id.CustomerId) UUID(java.util.UUID)

Aggregations

DeviceProfileId (org.thingsboard.server.common.data.id.DeviceProfileId)33 DeviceProfile (org.thingsboard.server.common.data.DeviceProfile)12 UUID (java.util.UUID)9 DeviceId (org.thingsboard.server.common.data.id.DeviceId)9 ApiOperation (io.swagger.annotations.ApiOperation)8 PreAuthorize (org.springframework.security.access.prepost.PreAuthorize)8 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)8 Device (org.thingsboard.server.common.data.Device)8 ThingsboardException (org.thingsboard.server.common.data.exception.ThingsboardException)8 ResponseBody (org.springframework.web.bind.annotation.ResponseBody)7 CustomerId (org.thingsboard.server.common.data.id.CustomerId)6 OtaPackageId (org.thingsboard.server.common.data.id.OtaPackageId)4 TenantId (org.thingsboard.server.common.data.id.TenantId)4 IOException (java.io.IOException)3 EntityType (org.thingsboard.server.common.data.EntityType)3 PageLink (org.thingsboard.server.common.data.page.PageLink)3 TransportDeviceInfo (org.thingsboard.server.common.transport.auth.TransportDeviceInfo)3 ByteString (com.google.protobuf.ByteString)2 ExecutionException (java.util.concurrent.ExecutionException)2 ConstraintViolationException (org.hibernate.exception.ConstraintViolationException)2