This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 2d9a7c8f425 CAMEL-20449 - Azure Storage Files CloudEvent transformer (#13267) 2d9a7c8f425 is described below commit 2d9a7c8f4251894fd06e5b2121d2a020ade1fe84 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Feb 22 13:56:44 2024 +0100 CAMEL-20449 - Azure Storage Files CloudEvent transformer (#13267) Signed-off-by: Andrea Cosentino <anco...@gmail.com> --- .../apache/camel/catalog/transformers.properties | 1 + .../azure-files-application-cloudevents.json | 14 ++++++ components/camel-azure/camel-azure-files/pom.xml | 8 ++++ .../org/apache/camel/transformer.properties | 7 +++ .../azure-files-application-cloudevents | 2 + .../azure-files-application-cloudevents.json | 14 ++++++ .../AzureFilesCloudEventDataTypeTransformer.java | 56 ++++++++++++++++++++++ 7 files changed, 102 insertions(+) diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/transformers.properties b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/transformers.properties index 251aeaf2a31..b13e62c39b8 100644 --- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/transformers.properties +++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/transformers.properties @@ -12,6 +12,7 @@ aws2-ddbstream-application-cloudevents aws2-kinesis-application-cloudevents aws2-s3-application-cloudevents aws2-sqs-application-cloudevents +azure-files-application-cloudevents azure-storage-blob-application-cloudevents azure-storage-queue-application-cloudevents google-sheets-application-x-struct diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/transformers/azure-files-application-cloudevents.json b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/transformers/azure-files-application-cloudevents.json new file mode 100644 index 00000000000..d2c7969ce36 --- /dev/null +++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/transformers/azure-files-application-cloudevents.json @@ -0,0 +1,14 @@ +{ + "transformer": { + "kind": "transformer", + "name": "azure-files:application-cloudevents", + "title": "Azure Files (Application Cloudevents)", + "description": "Adds CloudEvent headers to the Camel message with Azure Storage Files poll response details", + "deprecated": false, + "javaType": "org.apache.camel.component.file.azure.transform.AzureFilesCloudEventDataTypeTransformer", + "groupId": "org.apache.camel", + "artifactId": "camel-azure-files", + "version": "4.5.0-SNAPSHOT" + } +} + diff --git a/components/camel-azure/camel-azure-files/pom.xml b/components/camel-azure/camel-azure-files/pom.xml index fb6edce2b9b..79a72af59d1 100644 --- a/components/camel-azure/camel-azure-files/pom.xml +++ b/components/camel-azure/camel-azure-files/pom.xml @@ -49,6 +49,14 @@ <artifactId>azure-identity</artifactId> </dependency> + <!-- optional CloudEvent support --> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-cloudevents</artifactId> + <scope>provided</scope> + <optional>true</optional> + </dependency> + <dependency> <groupId>org.apache.camel</groupId> diff --git a/components/camel-azure/camel-azure-files/src/generated/resources/META-INF/services/org/apache/camel/transformer.properties b/components/camel-azure/camel-azure-files/src/generated/resources/META-INF/services/org/apache/camel/transformer.properties new file mode 100644 index 00000000000..ae8b5c72db4 --- /dev/null +++ b/components/camel-azure/camel-azure-files/src/generated/resources/META-INF/services/org/apache/camel/transformer.properties @@ -0,0 +1,7 @@ +# Generated by camel build tools - do NOT edit this file! +transformers=azure-files:application-cloudevents +groupId=org.apache.camel +artifactId=camel-azure-files +version=4.5.0-SNAPSHOT +projectName=Camel :: Azure :: Files +projectDescription=Camel Azure Files Component diff --git a/components/camel-azure/camel-azure-files/src/generated/resources/META-INF/services/org/apache/camel/transformer/azure-files-application-cloudevents b/components/camel-azure/camel-azure-files/src/generated/resources/META-INF/services/org/apache/camel/transformer/azure-files-application-cloudevents new file mode 100644 index 00000000000..9b425497741 --- /dev/null +++ b/components/camel-azure/camel-azure-files/src/generated/resources/META-INF/services/org/apache/camel/transformer/azure-files-application-cloudevents @@ -0,0 +1,2 @@ +# Generated by camel build tools - do NOT edit this file! +class=org.apache.camel.component.file.azure.transform.AzureFilesCloudEventDataTypeTransformer diff --git a/components/camel-azure/camel-azure-files/src/generated/resources/META-INF/services/org/apache/camel/transformer/azure-files-application-cloudevents.json b/components/camel-azure/camel-azure-files/src/generated/resources/META-INF/services/org/apache/camel/transformer/azure-files-application-cloudevents.json new file mode 100644 index 00000000000..d2c7969ce36 --- /dev/null +++ b/components/camel-azure/camel-azure-files/src/generated/resources/META-INF/services/org/apache/camel/transformer/azure-files-application-cloudevents.json @@ -0,0 +1,14 @@ +{ + "transformer": { + "kind": "transformer", + "name": "azure-files:application-cloudevents", + "title": "Azure Files (Application Cloudevents)", + "description": "Adds CloudEvent headers to the Camel message with Azure Storage Files poll response details", + "deprecated": false, + "javaType": "org.apache.camel.component.file.azure.transform.AzureFilesCloudEventDataTypeTransformer", + "groupId": "org.apache.camel", + "artifactId": "camel-azure-files", + "version": "4.5.0-SNAPSHOT" + } +} + diff --git a/components/camel-azure/camel-azure-files/src/main/java/org/apache/camel/component/file/azure/transform/AzureFilesCloudEventDataTypeTransformer.java b/components/camel-azure/camel-azure-files/src/main/java/org/apache/camel/component/file/azure/transform/AzureFilesCloudEventDataTypeTransformer.java new file mode 100644 index 00000000000..7b802e4e97b --- /dev/null +++ b/components/camel-azure/camel-azure-files/src/main/java/org/apache/camel/component/file/azure/transform/AzureFilesCloudEventDataTypeTransformer.java @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.apache.camel.component.file.azure.transform; + +import java.util.Map; + +import org.apache.camel.Message; +import org.apache.camel.component.cloudevents.CloudEvent; +import org.apache.camel.component.cloudevents.CloudEvents; +import org.apache.camel.component.file.azure.FilesHeaders; +import org.apache.camel.spi.DataType; +import org.apache.camel.spi.DataTypeTransformer; +import org.apache.camel.spi.Transformer; + +/** + * Data type transformer converts Azure Storage Files poll response to CloudEvent v1_0 data format. The data type sets + * Camel specific CloudEvent headers with values extracted from Azure Storage Files poll response. + */ +@DataTypeTransformer(name = "azure-files:application-cloudevents", + description = "Adds CloudEvent headers to the Camel message with Azure Storage Files poll response details") +public class AzureFilesCloudEventDataTypeTransformer extends Transformer { + + @Override + public void transform(Message message, DataType fromType, DataType toType) { + final Map<String, Object> headers = message.getHeaders(); + + CloudEvent cloudEvent = CloudEvents.v1_0; + headers.putIfAbsent(CloudEvent.CAMEL_CLOUD_EVENT_ID, message.getExchange().getExchangeId()); + headers.putIfAbsent(CloudEvent.CAMEL_CLOUD_EVENT_VERSION, cloudEvent.version()); + headers.put(CloudEvent.CAMEL_CLOUD_EVENT_TYPE, "org.apache.camel.event.azure.storage.files.poll"); + + if (message.getHeaders().containsKey(FilesHeaders.FILE_HOST)) { + headers.put(CloudEvent.CAMEL_CLOUD_EVENT_SOURCE, + "azure.storage.files." + message.getHeader(FilesHeaders.FILE_HOST, String.class)); + } + + headers.put(CloudEvent.CAMEL_CLOUD_EVENT_SUBJECT, message.getHeader(FilesHeaders.FILE_NAME, String.class)); + headers.put(CloudEvent.CAMEL_CLOUD_EVENT_TIME, cloudEvent.getEventTime(message.getExchange())); + headers.put(CloudEvent.CAMEL_CLOUD_EVENT_CONTENT_TYPE, CloudEvent.APPLICATION_OCTET_STREAM_MIME_TYPE); + } +}