-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
21 changed files
with
200 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 0 additions & 46 deletions
46
...org/apache/camel/quarkus/component/azure/key/vault/deployment/AzureKeyVaultProcessor.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
83 changes: 83 additions & 0 deletions
83
...org/apache/camel/quarkus/component/azure/key/vault/deployment/AzureKeyVaultProcessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* 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.quarkus.component.azure.key.vault.deployment; | ||
|
||
import java.util.Set; | ||
import java.util.stream.Collectors; | ||
|
||
import com.azure.json.JsonSerializable; | ||
import com.azure.security.keyvault.secrets.implementation.SecretClientImpl; | ||
import com.azure.security.keyvault.secrets.implementation.models.KeyVaultErrorException; | ||
import com.microsoft.azure.proton.transport.proxy.impl.DigestProxyChallengeProcessorImpl; | ||
import io.quarkus.deployment.annotations.BuildProducer; | ||
import io.quarkus.deployment.annotations.BuildStep; | ||
import io.quarkus.deployment.builditem.CombinedIndexBuildItem; | ||
import io.quarkus.deployment.builditem.ExtensionSslNativeSupportBuildItem; | ||
import io.quarkus.deployment.builditem.FeatureBuildItem; | ||
import io.quarkus.deployment.builditem.IndexDependencyBuildItem; | ||
import io.quarkus.deployment.builditem.nativeimage.NativeImageProxyDefinitionBuildItem; | ||
import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem; | ||
import io.quarkus.deployment.builditem.nativeimage.RuntimeInitializedClassBuildItem; | ||
import org.jboss.jandex.ClassInfo; | ||
|
||
class AzureKeyVaultProcessor { | ||
private static final String FEATURE = "camel-azure-key-vault"; | ||
|
||
@BuildStep | ||
FeatureBuildItem feature() { | ||
return new FeatureBuildItem(FEATURE); | ||
} | ||
|
||
@BuildStep | ||
ExtensionSslNativeSupportBuildItem enableNativeSslSupport() { | ||
return new ExtensionSslNativeSupportBuildItem(FEATURE); | ||
} | ||
|
||
@BuildStep | ||
IndexDependencyBuildItem indexDependencies() { | ||
return new IndexDependencyBuildItem("com.azure", "azure-security-keyvault-secrets"); | ||
} | ||
|
||
@BuildStep | ||
void registerForReflection(CombinedIndexBuildItem combinedIndex, BuildProducer<ReflectiveClassBuildItem> reflectiveClass) { | ||
Set<String> keyVaultModelClasses = combinedIndex.getIndex() | ||
.getAllKnownImplementors(JsonSerializable.class) | ||
.stream() | ||
.map(ClassInfo::toString) | ||
.filter(className -> className.startsWith("com.azure.security.keyvault")) | ||
.collect(Collectors.toSet()); | ||
|
||
keyVaultModelClasses.add(KeyVaultErrorException.class.getName()); | ||
|
||
reflectiveClass.produce(ReflectiveClassBuildItem.builder(keyVaultModelClasses.toArray(new String[0])) | ||
.methods(true) | ||
.build()); | ||
} | ||
|
||
@BuildStep | ||
void runtimeInitializedClasses(BuildProducer<RuntimeInitializedClassBuildItem> runtimeInitializedClass) { | ||
runtimeInitializedClass | ||
.produce(new RuntimeInitializedClassBuildItem("com.microsoft.azure.proton.transport.ws.impl.Utils")); | ||
runtimeInitializedClass | ||
.produce(new RuntimeInitializedClassBuildItem(DigestProxyChallengeProcessorImpl.class.getName())); | ||
} | ||
|
||
@BuildStep | ||
NativeImageProxyDefinitionBuildItem nativeImageProxyDefinitions() { | ||
return new NativeImageProxyDefinitionBuildItem(SecretClientImpl.SecretClientService.class.getName()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
.../src/test/java/org/apache/camel/quarkus/component/azure/key/vault/it/AzureKeyVaultIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* 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.quarkus.component.azure.key.vault.it; | ||
|
||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable; | ||
|
||
// Azure Key Vault is not supported by Azurite https://github.com/Azure/Azurite/issues/619 | ||
@EnabledIfEnvironmentVariable(named = "AZURE_TENANT_ID", matches = ".+") | ||
@EnabledIfEnvironmentVariable(named = "AZURE_CLIENT_ID", matches = ".+") | ||
@EnabledIfEnvironmentVariable(named = "AZURE_CLIENT_SECRET", matches = ".+") | ||
@EnabledIfEnvironmentVariable(named = "AZURE_VAULT_NAME", matches = ".+") | ||
@QuarkusIntegrationTest | ||
class AzureKeyVaultIT extends AzureKeyVaultTest { | ||
|
||
} |
File renamed without changes.
Oops, something went wrong.