All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.camunda.operate.webapp.security.identity.IdentityConfigurer Maven / Gradle / Ivy

The newest version!
/*
 * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under
 * one or more contributor license agreements. See the NOTICE file distributed
 * with this work for additional information regarding copyright ownership.
 * Licensed under the Camunda License 1.0. You may not use this file
 * except in compliance with the Camunda License 1.0.
 */
package io.camunda.operate.webapp.security.identity;

import io.camunda.identity.sdk.Identity;
import io.camunda.identity.sdk.IdentityConfiguration;
import io.camunda.operate.OperateProfileService;
import io.camunda.operate.property.OperateProperties;
import io.camunda.operate.webapp.security.SecurityContextWrapper;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;

@Configuration
public class IdentityConfigurer {

  @Bean(name = "saasIdentity")
  @Profile(OperateProfileService.SSO_AUTH_PROFILE)
  @ConditionalOnProperty(
      prefix = OperateProperties.PREFIX,
      name = "identity.resourcePermissionsEnabled",
      havingValue = "true")
  public Identity getSaaSIdentity(final OperateProperties operateProperties) {
    return new Identity(
        new IdentityConfiguration.Builder()
            .withBaseUrl(operateProperties.getIdentity().getBaseUrl())
            .withType(IdentityConfiguration.Type.AUTH0.name())
            .build());
  }

  @Bean
  @Profile(
      OperateProfileService.SSO_AUTH_PROFILE + " || " + OperateProfileService.IDENTITY_AUTH_PROFILE)
  public PermissionsService getPermissionsService(
      final OperateProperties operateProperties,
      final SecurityContextWrapper securityContextWrapperComponent) {
    return new PermissionsService(operateProperties, securityContextWrapperComponent);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy