EntandoKeycloakHelper.java
/*
*
* Copyright 2015-Present Entando Inc. (http://www.entando.com) All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
*/
package org.entando.kubernetes.controller.keycloakserver;
import static java.util.Optional.ofNullable;
import java.util.Collections;
import java.util.Map;
import org.entando.kubernetes.controller.spi.common.EntandoOperatorComplianceMode;
import org.entando.kubernetes.controller.spi.common.EntandoOperatorSpiConfig;
import org.entando.kubernetes.model.capability.CapabilityProvisioningStrategy;
import org.entando.kubernetes.model.capability.ExternallyProvidedService;
import org.entando.kubernetes.model.capability.ProvidedCapability;
import org.entando.kubernetes.model.common.DbmsVendor;
import org.entando.kubernetes.model.keycloakserver.EntandoKeycloakServer;
import org.entando.kubernetes.model.keycloakserver.StandardKeycloakImage;
public class EntandoKeycloakHelper {
private EntandoKeycloakHelper() {
}
public static StandardKeycloakImage determineStandardImage(EntandoKeycloakServer entandoKeycloakServer) {
StandardKeycloakImage standardKeycloakImage;
if (EntandoOperatorSpiConfig.getComplianceMode() == EntandoOperatorComplianceMode.REDHAT) {
standardKeycloakImage = StandardKeycloakImage.REDHAT_SSO;
} else {
standardKeycloakImage = entandoKeycloakServer.getSpec().getStandardImage().orElse(StandardKeycloakImage.KEYCLOAK);
}
return standardKeycloakImage;
}
public static DbmsVendor determineDbmsVendor(EntandoKeycloakServer entandoKeycloakServer) {
DbmsVendor dbmsVendor;
if (EntandoOperatorSpiConfig.getComplianceMode() == EntandoOperatorComplianceMode.REDHAT) {
dbmsVendor = entandoKeycloakServer.getSpec().getDbms().orElse(DbmsVendor.POSTGRESQL);
} else {
dbmsVendor = entandoKeycloakServer.getSpec().getDbms().orElse(DbmsVendor.EMBEDDED);
}
if (dbmsVendor == DbmsVendor.NONE) {
dbmsVendor = DbmsVendor.EMBEDDED;
}
return dbmsVendor;
}
public static String deriveFrontEndUrl(ProvidedCapability providedCapability) {
ExternallyProvidedService s = providedCapability.getSpec().getExternallyProvisionedService()
.orElseThrow(IllegalArgumentException::new);
final Map<String, String> capabilityParameters = ofNullable(providedCapability.getSpec().getCapabilityParameters())
.orElse(Collections.emptyMap());
final String port = s.getPort().filter(p -> !(p == 80 || p == 443)).map(p -> ":" + p).orElse("");
String protocol;
if (s.getPort().map(p -> p == 80).orElse(false)) {
protocol = "http";
} else {
protocol = "https";
}
return ofNullable(capabilityParameters.get("frontEndUrl")).orElse(protocol + "://" + s.getHost() + port + "/auth");
}
public static CapabilityProvisioningStrategy provisioningStrategyOf(EntandoKeycloakServer e) {
return e.getSpec().getProvisioningStrategy().orElse(CapabilityProvisioningStrategy.DEPLOY_DIRECTLY);
}
public static CapabilityProvisioningStrategy provisioningStrategyOf(ProvidedCapability e) {
return e.getSpec().getProvisioningStrategy().orElse(CapabilityProvisioningStrategy.DEPLOY_DIRECTLY);
}
}