-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #536 from catenax-ng/feat/orchestrator_auth
feat: Add authentication and authorization to Orchestrator
- Loading branch information
Showing
4 changed files
with
135 additions
and
0 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
...kotlin/org/eclipse/tractusx/bpdm/orchestrator/config/BpdmSecurityConfigurerAdapterImpl.kt
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,55 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2021,2023 Contributors to the Eclipse Foundation | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://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. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
******************************************************************************/ | ||
|
||
package org.eclipse.tractusx.bpdm.orchestrator.config | ||
|
||
import org.eclipse.tractusx.bpdm.common.config.BpdmSecurityConfigurerAdapter | ||
import org.eclipse.tractusx.bpdm.common.config.CustomJwtAuthenticationConverter | ||
import org.eclipse.tractusx.bpdm.common.config.SecurityConfigProperties | ||
import org.springframework.context.annotation.Configuration | ||
import org.springframework.http.HttpMethod | ||
import org.springframework.security.config.annotation.web.builders.HttpSecurity | ||
import org.springframework.security.config.http.SessionCreationPolicy | ||
import org.springframework.security.web.util.matcher.AntPathRequestMatcher | ||
|
||
@Configuration | ||
class BpdmSecurityConfigurerAdapterImpl( | ||
val securityConfigProperties: SecurityConfigProperties | ||
) : BpdmSecurityConfigurerAdapter { | ||
|
||
override fun configure(http: HttpSecurity) { | ||
http.csrf { it.disable() } | ||
http.cors {} | ||
http.sessionManagement { it.sessionCreationPolicy(SessionCreationPolicy.STATELESS) } | ||
http.authorizeHttpRequests { | ||
it.requestMatchers(AntPathRequestMatcher("/api/**", HttpMethod.OPTIONS.name())).permitAll() | ||
it.requestMatchers(AntPathRequestMatcher("/")).permitAll() // forwards to swagger | ||
it.requestMatchers(AntPathRequestMatcher("/docs/api-docs/**")).permitAll() | ||
it.requestMatchers(AntPathRequestMatcher("/ui/swagger-ui/**")).permitAll() | ||
it.requestMatchers(AntPathRequestMatcher("/actuator/health/**")).permitAll() | ||
it.requestMatchers(AntPathRequestMatcher("/error")).permitAll() | ||
it.requestMatchers(AntPathRequestMatcher("/api/**")).authenticated() | ||
} | ||
http.oauth2ResourceServer { | ||
it.jwt { | ||
it.jwtAuthenticationConverter(CustomJwtAuthenticationConverter(securityConfigProperties.clientId)) | ||
} | ||
} | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
...main/kotlin/org/eclipse/tractusx/bpdm/orchestrator/config/OrchestratorConfigProperties.kt
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,41 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2021,2023 Contributors to the Eclipse Foundation | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://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. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
******************************************************************************/ | ||
|
||
package org.eclipse.tractusx.bpdm.orchestrator.config | ||
|
||
import org.eclipse.tractusx.orchestrator.api.model.TaskStep | ||
import org.springframework.boot.context.properties.ConfigurationProperties | ||
import org.springframework.context.annotation.Configuration | ||
|
||
@Configuration | ||
@ConfigurationProperties(prefix = "bpdm.orchestrator-security") | ||
data class OrchestratorConfigProperties( | ||
private val createTask: String = "create_task", | ||
private val viewTask: String = "view_task", | ||
private val processTaskPrefix: String = "process_task_step" | ||
) { | ||
fun roleCreateTask() = | ||
"ROLE_$createTask" | ||
|
||
fun roleViewTask() = | ||
"ROLE_$viewTask" | ||
|
||
fun roleProcessTask(step: TaskStep) = | ||
"ROLE_${processTaskPrefix}_${step.name}" | ||
} |
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
34 changes: 34 additions & 0 deletions
34
bpdm-orchestrator/src/main/resources/application-auth.properties
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,34 @@ | ||
################################################################################ | ||
# Copyright (c) 2021,2023 Contributors to the Eclipse Foundation | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License, Version 2.0 which is available at | ||
# https://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. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
################################################################################ | ||
bpdm.security.enabled=true | ||
bpdm.security.cors-origins=* | ||
# OAuth configuration | ||
bpdm.security.client-id=BPDM_ORCHESTRATOR | ||
bpdm.security.realm=master | ||
bpdm.security.auth-server-url=http://localhost:8180 | ||
bpdm.security.auth-url=${bpdm.security.auth-server-url}/realms/${bpdm.security.realm}/protocol/openid-connect/auth | ||
bpdm.security.token-url=${bpdm.security.auth-server-url}/realms/${bpdm.security.realm}/protocol/openid-connect/token | ||
bpdm.security.refresh-url=${bpdm.security.token-url} | ||
# Orchestrator roles | ||
bpdm.orchestrator-security.createTask=create_task | ||
bpdm.orchestrator-security.viewTask=view_task | ||
bpdm.orchestrator-security.processTaskPrefix=process_task_step | ||
# Spring security | ||
spring.security.oauth2.resourceserver.jwt.issuer-uri=${bpdm.security.auth-server-url}/realms/${bpdm.security.realm} | ||
spring.security.oauth2.resourceserver.jwt.jwk-set-uri=${bpdm.security.auth-server-url}/realms/${bpdm.security.realm}/protocol/openid-connect/certs |