|
34 | 34 | import org.eclipse.ditto.base.model.exceptions.DittoRuntimeException;
|
35 | 35 | import org.eclipse.ditto.base.model.headers.DittoHeaderDefinition;
|
36 | 36 | import org.eclipse.ditto.base.model.headers.DittoHeaders;
|
37 |
| -import org.eclipse.ditto.base.model.headers.contenttype.ContentType; |
38 | 37 | import org.eclipse.ditto.base.model.namespaces.NamespaceBlockedException;
|
39 | 38 | import org.eclipse.ditto.base.model.signals.Signal;
|
40 | 39 | import org.eclipse.ditto.base.model.signals.commands.CommandResponse;
|
@@ -572,29 +571,25 @@ private CompletionStage<Boolean> doesThingExist() {
|
572 | 571 | private CompletionStage<MessageCommand<?, ?>> performWotBasedMessageCommandValidation(
|
573 | 572 | final MessageCommand<?, ?> messageCommand
|
574 | 573 | ) {
|
575 |
| - if (isJsonMessageContent(messageCommand.getMessage())) { |
576 |
| - @SuppressWarnings("unchecked") final Message<JsonValue> message = |
577 |
| - ((MessageCommand<JsonValue, ?>) messageCommand) |
578 |
| - .getMessage(); |
579 |
| - |
580 |
| - final MessageDirection messageDirection = message.getDirection(); |
581 |
| - final JsonValue messageCommandPayload = message |
582 |
| - .getPayload() |
583 |
| - .orElse(null); |
584 |
| - |
585 |
| - if (messageCommand instanceof SendThingMessage<?> sendThingMessage) { |
586 |
| - return performWotBasedThingMessageValidation(messageCommand, sendThingMessage, messageDirection, |
587 |
| - messageCommandPayload |
588 |
| - ).thenApply(aVoid -> messageCommand); |
589 |
| - } else if (messageCommand instanceof SendFeatureMessage<?> sendFeatureMessage) { |
590 |
| - final String featureId = sendFeatureMessage.getFeatureId(); |
591 |
| - return performWotBasedFeatureMessageValidation(messageCommand, sendFeatureMessage, featureId, |
592 |
| - messageDirection, messageCommandPayload |
593 |
| - ).thenApply(aVoid -> messageCommand); |
| 574 | + @SuppressWarnings("unchecked") final Message<JsonValue> message = |
| 575 | + ((MessageCommand<JsonValue, ?>) messageCommand) |
| 576 | + .getMessage(); |
| 577 | + |
| 578 | + final MessageDirection messageDirection = message.getDirection(); |
| 579 | + final JsonValue messageCommandPayload = message |
| 580 | + .getPayload() |
| 581 | + .orElse(null); |
| 582 | + |
| 583 | + if (messageCommand instanceof SendThingMessage<?> sendThingMessage) { |
| 584 | + return performWotBasedThingMessageValidation(messageCommand, sendThingMessage, messageDirection, |
| 585 | + messageCommandPayload |
| 586 | + ).thenApply(aVoid -> messageCommand); |
| 587 | + } else if (messageCommand instanceof SendFeatureMessage<?> sendFeatureMessage) { |
| 588 | + final String featureId = sendFeatureMessage.getFeatureId(); |
| 589 | + return performWotBasedFeatureMessageValidation(messageCommand, sendFeatureMessage, featureId, |
| 590 | + messageDirection, messageCommandPayload |
| 591 | + ).thenApply(aVoid -> messageCommand); |
594 | 592 |
|
595 |
| - } else { |
596 |
| - return CompletableFuture.completedFuture(messageCommand); |
597 |
| - } |
598 | 593 | } else {
|
599 | 594 | return CompletableFuture.completedFuture(messageCommand);
|
600 | 595 | }
|
@@ -674,56 +669,45 @@ private CompletionStage<Void> performWotBasedFeatureMessageValidation(final Mess
|
674 | 669 | private CompletionStage<MessageCommandResponse<?, ?>> performWotBasedMessageCommandResponseValidation(
|
675 | 670 | final MessageCommandResponse<?, ?> messageCommandResponse
|
676 | 671 | ) {
|
677 |
| - if (isJsonMessageContent(messageCommandResponse.getMessage())) { |
678 |
| - @SuppressWarnings("unchecked") final Message<JsonValue> message = |
679 |
| - ((MessageCommandResponse<JsonValue, ?>) messageCommandResponse) |
680 |
| - .getMessage(); |
681 |
| - |
682 |
| - final MessageDirection messageDirection = message.getDirection(); |
683 |
| - final JsonValue messageCommandPayload = message |
684 |
| - .getPayload() |
685 |
| - .orElse(null); |
686 |
| - |
687 |
| - if (messageDirection == MessageDirection.TO && |
688 |
| - messageCommandResponse instanceof SendThingMessageResponse<?> sendThingMessageResponse) { |
689 |
| - return resolveThingDefinition() |
690 |
| - .thenCompose(optThingDefinition -> thingModelValidator.validateThingActionOutput( |
691 |
| - optThingDefinition.orElse(null), |
692 |
| - sendThingMessageResponse.getMessage().getSubject(), |
693 |
| - messageCommandPayload, |
694 |
| - sendThingMessageResponse.getResourcePath(), |
695 |
| - sendThingMessageResponse.getDittoHeaders() |
696 |
| - )) |
697 |
| - .thenApply(aVoid -> messageCommandResponse); |
698 |
| - } else if (messageDirection == MessageDirection.TO && |
699 |
| - messageCommandResponse instanceof SendFeatureMessageResponse<?> sendFeatureMessageResponse) { |
700 |
| - final String featureId = sendFeatureMessageResponse.getFeatureId(); |
701 |
| - return resolveThingAndFeatureDefinition(featureId) |
702 |
| - .thenCompose(optDefinitionPair -> thingModelValidator.validateFeatureActionOutput( |
703 |
| - optDefinitionPair.first().orElse(null), |
704 |
| - optDefinitionPair.second().orElse(null), |
705 |
| - featureId, |
706 |
| - sendFeatureMessageResponse.getMessage().getSubject(), |
707 |
| - messageCommandPayload, |
708 |
| - sendFeatureMessageResponse.getResourcePath(), |
709 |
| - sendFeatureMessageResponse.getDittoHeaders() |
710 |
| - )) |
711 |
| - .thenApply(aVoid -> messageCommandResponse); |
712 |
| - } else { |
713 |
| - return CompletableFuture.completedFuture(messageCommandResponse); |
714 |
| - } |
| 672 | + @SuppressWarnings("unchecked") final Message<JsonValue> message = |
| 673 | + ((MessageCommandResponse<JsonValue, ?>) messageCommandResponse) |
| 674 | + .getMessage(); |
| 675 | + |
| 676 | + final MessageDirection messageDirection = message.getDirection(); |
| 677 | + final JsonValue messageCommandPayload = message |
| 678 | + .getPayload() |
| 679 | + .orElse(null); |
| 680 | + |
| 681 | + if (messageDirection == MessageDirection.TO && |
| 682 | + messageCommandResponse instanceof SendThingMessageResponse<?> sendThingMessageResponse) { |
| 683 | + return resolveThingDefinition() |
| 684 | + .thenCompose(optThingDefinition -> thingModelValidator.validateThingActionOutput( |
| 685 | + optThingDefinition.orElse(null), |
| 686 | + sendThingMessageResponse.getMessage().getSubject(), |
| 687 | + messageCommandPayload, |
| 688 | + sendThingMessageResponse.getResourcePath(), |
| 689 | + sendThingMessageResponse.getDittoHeaders() |
| 690 | + )) |
| 691 | + .thenApply(aVoid -> messageCommandResponse); |
| 692 | + } else if (messageDirection == MessageDirection.TO && |
| 693 | + messageCommandResponse instanceof SendFeatureMessageResponse<?> sendFeatureMessageResponse) { |
| 694 | + final String featureId = sendFeatureMessageResponse.getFeatureId(); |
| 695 | + return resolveThingAndFeatureDefinition(featureId) |
| 696 | + .thenCompose(optDefinitionPair -> thingModelValidator.validateFeatureActionOutput( |
| 697 | + optDefinitionPair.first().orElse(null), |
| 698 | + optDefinitionPair.second().orElse(null), |
| 699 | + featureId, |
| 700 | + sendFeatureMessageResponse.getMessage().getSubject(), |
| 701 | + messageCommandPayload, |
| 702 | + sendFeatureMessageResponse.getResourcePath(), |
| 703 | + sendFeatureMessageResponse.getDittoHeaders() |
| 704 | + )) |
| 705 | + .thenApply(aVoid -> messageCommandResponse); |
715 | 706 | } else {
|
716 | 707 | return CompletableFuture.completedFuture(messageCommandResponse);
|
717 | 708 | }
|
718 | 709 | }
|
719 | 710 |
|
720 |
| - private static boolean isJsonMessageContent(final Message<?> message) { |
721 |
| - return message |
722 |
| - .getInterpretedContentType() |
723 |
| - .filter(ContentType::isJson) |
724 |
| - .isPresent(); |
725 |
| - } |
726 |
| - |
727 | 711 | private CompletionStage<Optional<ThingDefinition>> resolveThingDefinition() {
|
728 | 712 | return Patterns.ask(getContext().getParent(), SudoRetrieveThing.of(entityId,
|
729 | 713 | JsonFieldSelector.newInstance("definition"),
|
|
0 commit comments